/* ============================================
   ONYX SUITE — style.css
   Design: Luxury/Refined — Dark Premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #1e1e1e;
  --gold: #c9a84c;
  --gold-light: #e2c06e;
  --gold-pale: #f5e6c0;
  --white: #f8f4ee;
  --white-soft: #e8e0d4;
  --grey: #7a7060;
  --grey-light: #a09888;
  --green: #2a7c5a;
  --green-light: #34a06e;
  --red: #8c3030;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 2px;
  --radius-lg: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--black); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; }

p { font-size: 1rem; line-height: 1.75; color: var(--grey-light); }

a { color: inherit; text-decoration: none; transition: var(--transition); }

strong { font-weight: 600; color: var(--white); }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title { margin-bottom: 1.5rem; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--black-border);
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: var(--transition);
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.6rem 1.4rem;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
}

.nav__cta:hover { background: var(--gold-light) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  transition: var(--transition);
}

.nav__mobile a:hover { color: var(--gold); }

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 48px;
  border-radius: var(--radius);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--black-border);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--grey-light);
  padding: 0;
  letter-spacing: 0.08em;
}

.btn--ghost:hover { color: var(--gold); }

.btn svg { width: 16px; height: 16px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease forwards;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  animation: fadeInUp 0.7s ease 0.1s both;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--grey-light);
  margin-bottom: 3rem;
  max-width: 520px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero__launch {
  margin-top: 3rem;
  padding: 1.2rem 1.8rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero__launch-icon { font-size: 1.5rem; }

.hero__launch-text { font-size: 0.85rem; color: var(--grey-light); }

.hero__launch-text strong { color: var(--gold-light); display: block; font-size: 0.9rem; }

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--black-border);
  animation: fadeInUp 0.7s ease 0.5s both;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero__stat-number span { color: var(--gold); }

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps { background: var(--black-soft); }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--black-border);
}

.step {
  padding: 2.5rem;
  border-right: 1px solid var(--black-border);
  position: relative;
  transition: var(--transition);
}

.step:last-child { border-right: none; }

.step:hover { background: rgba(201,168,76,0.03); }

.step__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
}

.step__text { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* ============================================
   FEATURES
   ============================================ */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  margin-top: 4rem;
}

.feature {
  background: var(--black);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature:hover::before { transform: scaleX(1); }
.feature:hover { background: var(--black-card); }

.feature__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
}

.feature__text { font-size: 0.9rem; color: var(--grey); line-height: 1.65; }

/* ============================================
   PRICING
   ============================================ */

.pricing { background: var(--black-soft); }

.pricing__launch-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 1.2rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing__launch-icon { font-size: 1.5rem; }

.pricing__launch-text { flex: 1; }

.pricing__launch-text strong { color: var(--gold); display: block; font-size: 1rem; margin-bottom: 0.2rem; }

.pricing__launch-text span { font-size: 0.85rem; color: var(--grey-light); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.plan {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

.plan:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.plan--featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--black-card), rgba(201,168,76,0.04));
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.plan__tagline {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

.plan__setup {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0.3rem;
}

.plan__setup strong { color: var(--white-soft); }

.plan__setup--launch { color: var(--gold); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.2rem 0 2rem;
}

.plan__amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.plan__amount--gold { color: var(--gold); }

.plan__currency {
  font-size: 1.2rem;
  color: var(--grey);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.plan__period { font-size: 0.9rem; color: var(--grey); }

.plan__features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.plan__features li {
  font-size: 0.9rem;
  color: var(--grey-light);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.plan__features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.plan__features li.disabled { color: var(--grey); }
.plan__features li.disabled::before { content: '—'; color: var(--grey); }

.plan__divider {
  height: 1px;
  background: var(--black-border);
  margin: 1.5rem 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial__role { font-size: 0.8rem; color: var(--grey); }

.testimonial--placeholder {
  border-style: dashed;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
}

.testimonial--placeholder p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ============================================
   FAQ
   ============================================ */

.faq { background: var(--black-soft); }

.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq__item { border-bottom: 1px solid var(--black-border); }
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  color: var(--white);
}

.faq__question:hover { background: rgba(201,168,76,0.03); }

.faq__question span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  flex: 1;
}

.faq__icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1rem;
}

.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--gold); color: var(--black); border-color: var(--gold); }

.faq__answer {
  display: none;
  padding: 0 2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.75;
}

.faq__item.open .faq__answer { display: block; }

/* ============================================
   CONTACT FORM
   ============================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.contact__info-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact__info-text {
  font-size: 0.95rem;
  color: var(--grey-light);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.contact__detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact__response {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(42,124,90,0.1);
  border: 1px solid rgba(42,124,90,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--green-light);
}

.form { display: flex; flex-direction: column; gap: 1.2rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form__group { display: flex; flex-direction: column; gap: 0.5rem; }

.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.form__input, .form__select, .form__textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
  min-height: 48px;
}

.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.1);
}

.form__textarea { min-height: 140px; resize: vertical; }

.form__select { appearance: none; cursor: pointer; }

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.cta-band__content { position: relative; z-index: 1; }

.cta-band h2 { margin-bottom: 1rem; }

.cta-band p {
  font-size: 1.1rem;
  color: var(--grey-light);
  margin-bottom: 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__logo span { color: var(--gold); }

.footer__desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--grey);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy { font-size: 0.8rem; color: var(--grey); }

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--grey);
  transition: var(--transition);
}

.footer__legal a:hover { color: var(--gold); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--black-border);
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.page-header__content { position: relative; z-index: 1; }

.page-header h1 { margin-bottom: 1rem; }

.page-header p {
  font-size: 1.15rem;
  color: var(--grey-light);
  max-width: 560px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.agents__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.agent {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.agent:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.agent__number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 1rem;
}

.agent__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
}

.agent__desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.agent__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.agent__tag {
  font-size: 0.75rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--gold-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ============================================
   LEGAL / CGV PAGES
   ============================================ */

.legal { padding: 4rem 0 6rem; }

.legal h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
}

.legal p {
  font-size: 0.95rem;
  color: var(--grey-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

.divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider--center { margin: 1.5rem auto; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.tag--green {
  background: rgba(42,124,90,0.15);
  border: 1px solid rgba(42,124,90,0.3);
  color: var(--green-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--black-border); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .agents__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .steps__grid { grid-template-columns: 1fr; border: none; gap: 1px; background: var(--black-border); }
  .step { border-right: none; border-bottom: none; }
  .features__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form__row { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { gap: 2rem; flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-band .hero__actions { align-items: center; }
}
