:root {
    --black: #0a0a0a;
    --black-mid: #111111;
    --black-light: #1a1a1a;
    --gold: #C9A84C;
    --gold-light: #E2C579;
    --gold-dark: #8B6914;
    --white: #F8F5EF;
    --white-dim: #D4CFC6;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    letter-spacing: 0.02em;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4rem 6rem 6rem;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 2.5rem; height: 1px;
    background: var(--gold);
  }
  h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--white-dim);
    max-width: 36ch;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .hero-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.05em;
  }
  .hero-title {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
  }
  .hero-phone {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
  }
  .hero-credentials {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .cred-badge {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 0.3rem 0.7rem;
    background: rgba(201,168,76,0.05);
  }
  .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
  }
  .btn-secondary:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
  .hero-right {
    position: relative;
    background: var(--black-mid);
    overflow: hidden;
  }
  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%);
    z-index: 1;
  }
  .hero-geometric {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.12);
    animation: rotate-slow 30s linear infinite;
  }
  .geo-ring:nth-child(1) { width: 300px; height: 300px; }
  .geo-ring:nth-child(2) { width: 500px; height: 500px; animation-duration: 45s; animation-direction: reverse; border-color: rgba(201,168,76,0.07); }
  .geo-ring:nth-child(3) { width: 700px; height: 700px; animation-duration: 60s; border-color: rgba(201,168,76,0.04); }
  .geo-center {
    width: 180px; height: 180px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 2;
  }
  .geo-center::before, .geo-center::after {
    content: '';
    position: absolute;
    background: var(--gold);
  }
  .geo-center::before { width: 1px; height: 60%; top: 20%; left: 50%; }
  .geo-center::after { height: 1px; width: 60%; left: 20%; top: 50%; }
  .geo-initials {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.6;
    position: relative; z-index: 3;
  }
  .hero-stat-row {
    position: absolute;
    bottom: 3rem; left: 3rem; right: 3rem;
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: rgba(201,168,76,0.15);
    z-index: 5;
  }
  .hero-stat {
    background: var(--black-mid);
    padding: 1.2rem 1.5rem;
    text-align: center;
  }
  .hero-stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }
  .hero-stat span {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-dim);
    display: block;
    margin-top: 0.35rem;
  }
  @keyframes rotate-slow { to { transform: rotate(360deg); } }

  /* ── DIVIDER ── */
  .gold-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
  }

  /* ── SECTIONS SHARED ── */
  section { padding: 7rem 6rem; }
  .section-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .section-label::after {
    content: ''; flex: none;
    width: 2rem; height: 1px; background: var(--gold);
  }
  h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  h2 em { font-style: italic; color: var(--gold); }

  /* ── CREDIBILITY ── */
  #credibility {
    background: var(--black-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .cred-text p {
    font-size: 0.875rem;
    line-height: 1.9;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
    max-width: 48ch;
  }
  .cred-certs {
    margin-top: 2rem;
  }
  .cred-certs p {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .cert-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 0.6rem;
    transition: border-color 0.3s;
  }
  .cert-item:hover { border-color: rgba(201,168,76,0.5); }
  .cert-icon { color: var(--gold); font-size: 1rem; }
  .cert-item span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white);
  }
  .cred-right {
    display: flex; flex-direction: column; gap: 1.5rem;
  }
  .cred-pillar {
    padding: 2rem;
    border-left: 2px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.03);
    transition: border-color 0.3s;
  }
  .cred-pillar:hover { border-color: var(--gold); }
  .cred-pillar h4 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .cred-pillar p {
    font-size: 0.78rem;
    color: var(--white-dim);
    line-height: 1.7;
  }

  /* ── METHODOLOGY ── */
  #methodology { background: var(--black); }
  .methodology-header { text-align: center; max-width: 60ch; margin: 0 auto 5rem; }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 4.5rem; left: calc(16.67% + 0.5rem); right: calc(16.67% + 0.5rem);
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.3) 50%, var(--gold) 100%);
    z-index: 0;
  }
  .step-card {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(201,168,76,0.1);
    margin: 0 0.5rem;
    transition: border-color 0.3s, background 0.3s;
  }
  .step-card:hover {
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.03);
  }
  .step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 3rem; height: 3rem;
    background: var(--black);
    border: 1px solid var(--gold);
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
  }
  .step-tag {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    padding: 0.3rem 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .step-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.6rem;
  }
  .step-card p {
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--white-dim);
  }

  /* ── GRANDFATHER BANNER ── */
  .grandfather-banner {
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 1.2rem 2rem;
    margin-bottom: 3rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .grandfather-left {
    display: flex; align-items: center; gap: 1rem;
  }
  .grandfather-icon {
    font-size: 1.4rem;
  }
  .grandfather-text h4 {
    font-family: var(--serif); font-size: 1.1rem;
    color: var(--gold); font-weight: 400; margin-bottom: 0.2rem;
  }
  .grandfather-text p {
    font-size: 0.65rem; color: var(--white-dim); letter-spacing: 0.05em;
  }
  .grandfather-spots {
    display: flex; align-items: center; gap: 0.5rem;
  }
  .spot-dot {
    width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%;
    opacity: 0.9;
  }
  .spot-dot.taken { background: rgba(201,168,76,0.2); }
  .spots-label {
    font-size: 0.58rem; color: var(--gold);
    letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 600; margin-left: 0.5rem;
  }

  /* ── PACKAGES ── */
  #packages {
    background: var(--black-mid);
    position: relative;
    overflow: hidden;
  }
  #packages::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .packages-header { text-align: center; max-width: 50ch; margin: 0 auto 4rem; }
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .package-card {
    padding: 3rem 2.5rem;
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
    transition: border-color 0.4s, transform 0.3s;
    background: var(--black);
  }
  .package-card:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-6px);
  }
  .package-card.featured {
    border-color: rgba(201,168,76,0.5);
    background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, var(--black) 60%);
  }
  .package-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px; right: 2rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    padding: 0.35rem 0.8rem;
  }
  .pkg-name {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }
  .pkg-price {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .pkg-price sup {
    font-size: 1.4rem;
    vertical-align: super;
    color: var(--gold-light);
  }
  .pkg-period {
    font-size: 0.6rem;
    color: var(--white-dim);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
  }
  .pkg-divider {
    height: 1px;
    background: rgba(201,168,76,0.2);
    margin-bottom: 1.8rem;
  }
  .pkg-features { list-style: none; margin-bottom: 2.5rem; }
  .pkg-features li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--white-dim);
    padding: 0.5rem 0;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .pkg-features li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.7rem;
  }

  /* ── WHO ── */
  #who { background: var(--black); }
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
  }
  .who-list { list-style: none; margin-top: 1rem; }
  .who-item {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.03em;
  }
  .who-item::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    flex-shrink: 0;
    border-radius: 0;
    transform: rotate(45deg);
  }
  .who-right {
    background: var(--black-mid);
    padding: 3.5rem;
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
  }
  .who-right::before {
    content: '"';
    position: absolute;
    top: -1.5rem; left: 2rem;
    font-family: var(--serif);
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
  }
  .who-quote {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
  }
  .who-quote em { color: var(--gold); font-style: normal; }

  /* ── AUTHORITY ── */
  #authority {
    background: var(--black-mid);
    text-align: center;
  }
  .authority-inner { max-width: 900px; margin: 0 auto; }
  .authority-expertise {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(201,168,76,0.12);
    margin: 4rem 0;
  }
  .exp-item {
    background: var(--black-mid);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: background 0.3s;
  }
  .exp-item:hover { background: rgba(201,168,76,0.05); }
  .exp-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    display: block;
  }
  .exp-item h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .exp-item p {
    font-size: 0.7rem;
    color: var(--white-dim);
    line-height: 1.7;
  }
  .authority-statement {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--white-dim);
    max-width: 60ch;
    margin: 0 auto;
  }

  /* ── PEDIGREE ── */
  #pedigree { background: var(--black); }
  .pedigree-header { margin-bottom: 4rem; }
  .pedigree-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .pedigree-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 2rem;
    padding: 2.2rem 2.5rem;
    border: 1px solid rgba(201,168,76,0.15);
    background: var(--black-mid);
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
  }
  .pedigree-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  .pedigree-card:hover { border-color: rgba(201,168,76,0.4); transform: translateX(4px); }
  .pedigree-card:hover::before { opacity: 1; }
  .pedigree-logo-box {
    display: flex; align-items: flex-start;
    padding-top: 0.2rem;
  }
  .pedigree-icon {
    width: 2.8rem; height: 2.8rem;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .pedigree-content {}
  .pedigree-company {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }
  .pedigree-role {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .pedigree-desc {
    font-size: 0.73rem;
    line-height: 1.75;
    color: var(--white-dim);
  }
  .pedigree-tag {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.2rem 0.6rem;
  }
  .pedigree-legal {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding: 2.2rem 2.5rem;
    border: 1px solid rgba(201,168,76,0.3);
    background: linear-gradient(120deg, rgba(201,168,76,0.05) 0%, var(--black-mid) 60%);
    display: flex; align-items: center; gap: 3rem;
  }
  .legal-badge {
    flex-shrink: 0;
    width: 5rem; height: 5rem;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.1rem;
  }
  .legal-badge span:first-child {
    font-size: 1.4rem; color: var(--gold);
  }
  .legal-badge span:last-child {
    font-size: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .legal-text {}
  .legal-text h4 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.4rem;
  }
  .legal-text p {
    font-size: 0.75rem;
    line-height: 1.75;
    color: var(--white-dim);
    max-width: 65ch;
  }

  /* ── RESULTS BAR ── */
  #results {
    background: var(--gold);
    padding: 3rem 6rem;
  }
  .results-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.15);
    max-width: 1100px;
    margin: 0 auto;
  }
  .result-stat {
    background: var(--gold);
    padding: 1.8rem 2rem;
    text-align: center;
  }
  .result-stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1;
  }
  .result-stat span {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10,10,10,0.65);
    display: block;
    margin-top: 0.4rem;
  }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--black-mid); }
  .testimonials-header { text-align: center; margin-bottom: 4rem; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  .testimonial-card {
    padding: 3rem;
    border: 1px solid rgba(201,168,76,0.15);
    background: var(--black);
    position: relative;
    transition: border-color 0.3s;
  }
  .testimonial-card:hover { border-color: rgba(201,168,76,0.4); }
  .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.2rem; left: 2rem;
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.18;
    line-height: 1;
  }
  .testimonial-text {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    position: relative; z-index: 1;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 1rem;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 1.2rem;
  }
  .author-avatar {
    width: 2.4rem; height: 2.4rem;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--gold);
    flex-shrink: 0;
  }
  .author-name {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    display: block;
  }
  .author-role {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    display: block;
    margin-top: 0.15rem;
  }

  /* ── CONTACT FORM ── */
  #contact { background: var(--black); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
  }
  .contact-info h2 { margin-bottom: 1rem; }
  .contact-info p {
    font-size: 0.82rem;
    line-height: 1.85;
    color: var(--white-dim);
    margin-bottom: 2rem;
  }
  .contact-detail {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    font-size: 0.78rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-detail:hover { color: var(--gold); }
  .contact-detail-icon { color: var(--gold); font-size: 1rem; width: 1.5rem; }
  .contact-form {
    background: var(--black-mid);
    padding: 3rem;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-group label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--black);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--black-mid); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-note {
    font-size: 0.62rem;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .form-success {
    display: none;
    text-align: center;
    padding: 2rem;
  }
  .form-success h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .form-success p { font-size: 0.78rem; color: var(--white-dim); }

  /* ── CTA ── */
  #cta {
    background: var(--black);
    text-align: center;
    padding: 9rem 6rem;
    position: relative;
    overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; }
  #cta h2 { margin-bottom: 1rem; }
  #cta p {
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }
  .cta-phone {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin: 1.5rem 0;
    letter-spacing: 0.06em;
  }
  .cta-or {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin: 1.5rem 0;
    display: block;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 2.5rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-brand {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
  }
  .footer-note {
    font-size: 0.62rem;
    color: rgba(212,207,198,0.4);
    letter-spacing: 0.1em;
  }
  .footer-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(212,207,198,0.4);
  }

  /* ── FADE ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }
  .fade-in:nth-child(2) { transition-delay: 0.1s; }
  .fade-in:nth-child(3) { transition-delay: 0.2s; }
  .fade-in:nth-child(4) { transition-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { display: none; }
    section { padding: 5rem 2rem; }
    #hero { grid-template-columns: 1fr; }
    .hero-left { padding: 8rem 2rem 4rem; }
    .hero-right { height: 280px; }
    #credibility, .who-grid { grid-template-columns: 1fr; gap: 3rem; }
    .steps-grid, .packages-grid { grid-template-columns: 1fr; }
    .results-inner { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    #results { padding: 3rem 2rem; }
    .authority-expertise { grid-template-columns: repeat(2,1fr); }
    .pedigree-grid { grid-template-columns: 1fr; }
    .pedigree-legal { flex-direction: column; gap: 1.5rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .steps-grid::before { display: none; }
  }

  /* ── DIAGNOSTIC ── */
  #diagnostic {
    background: linear-gradient(135deg, var(--black-mid) 0%, rgba(201,168,76,0.06) 100%);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 6rem;
  }
  .diagnostic-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .diagnostic-left h2 { margin-bottom: 1rem; }
  .diagnostic-left p {
    font-size: 0.85rem; line-height: 1.9; color: var(--white-dim); margin-bottom: 1.5rem;
  }
  .diagnostic-promise {
    display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem;
  }
  .dp-item {
    display: flex; align-items: flex-start; gap: 1rem;
    font-size: 0.78rem; color: var(--white); line-height: 1.6;
  }
  .dp-item::before {
    content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem;
  }
  .diagnostic-form {
    background: var(--black); padding: 3rem;
    border: 1px solid rgba(201,168,76,0.2);
    position: relative;
  }
  .diagnostic-form::before {
    content: 'BY APPLICATION';
    position: absolute; top: -1px; right: 2rem;
    background: var(--gold); color: var(--black);
    font-size: 0.5rem; font-weight: 800;
    letter-spacing: 0.2em; padding: 0.3rem 1rem;
  }
  .diag-form-title {
    font-family: var(--serif); font-size: 1.6rem;
    color: var(--white); margin-bottom: 0.4rem;
  }
  .diag-form-sub {
    font-size: 0.65rem; color: var(--gold);
    letter-spacing: 0.12em; margin-bottom: 2rem;
    text-transform: uppercase;
  }

  /* ── WHY AURUM COMPARISON ── */
  #why-aurum { background: var(--black); }
  .comparison-table {
    width: 100%; border-collapse: collapse;
    margin-top: 3rem;
  }
  .comparison-table th {
    padding: 1.2rem 1.5rem; font-size: 0.6rem;
    font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; text-align: center;
  }
  .comparison-table th:first-child { text-align: left; }
  .comparison-table th.highlight {
    background: var(--gold); color: var(--black);
  }
  .comparison-table th:not(.highlight) {
    background: var(--black-mid); color: var(--white-dim);
  }
  .comparison-table td {
    padding: 1rem 1.5rem; font-size: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: center; color: var(--white-dim);
  }
  .comparison-table td:first-child {
    text-align: left; color: var(--white);
    font-weight: 400; letter-spacing: 0.02em;
  }
  .comparison-table td.highlight {
    background: rgba(201,168,76,0.05);
    color: var(--gold); font-weight: 500;
  }
  .comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
  .comparison-table tr:hover td.highlight { background: rgba(201,168,76,0.08); }
  .check { color: var(--gold); font-size: 1rem; }
  .cross { color: rgba(255,255,255,0.2); font-size: 1rem; }
  .partial { color: rgba(201,168,76,0.5); font-size: 0.75rem; }

  /* ── ROI CALCULATOR ── */
  #calculator {
    background: var(--black-mid);
    padding: 7rem 6rem;
  }
  .calc-inner { max-width: 900px; margin: 0 auto; }
  .calc-header { text-align: center; margin-bottom: 4rem; }
  .calc-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  }
  .calc-inputs { display: flex; flex-direction: column; gap: 2rem; }
  .calc-input-group { display: flex; flex-direction: column; gap: 0.8rem; }
  .calc-label {
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  }
  .calc-slider-row {
    display: flex; align-items: center; gap: 1rem;
  }
  .calc-slider {
    flex: 1; -webkit-appearance: none; appearance: none;
    height: 2px; background: rgba(201,168,76,0.2);
    outline: none; cursor: pointer;
  }
  .calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 16px; height: 16px; background: var(--gold);
    cursor: pointer; border-radius: 0;
  }
  .calc-value {
    font-family: var(--serif); font-size: 1.2rem;
    color: var(--gold); min-width: 80px; text-align: right;
  }
  .calc-results {
    background: var(--black); border: 1px solid rgba(201,168,76,0.2);
    padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem;
  }
  .calc-result-item { border-bottom: 1px solid rgba(201,168,76,0.1); padding-bottom: 1.2rem; }
  .calc-result-item:last-child { border-bottom: none; padding-bottom: 0; }
  .calc-result-label {
    font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--white-dim); margin-bottom: 0.4rem;
  }
  .calc-result-value {
    font-family: var(--serif); font-size: 2rem;
    font-weight: 300; color: var(--gold); line-height: 1;
  }
  .calc-result-value.big { font-size: 2.8rem; }
  .calc-result-sub {
    font-size: 0.62rem; color: var(--white-dim);
    margin-top: 0.3rem; line-height: 1.6;
  }
  .calc-disclaimer {
    font-size: 0.6rem; color: rgba(212,207,198,0.35);
    text-align: center; margin-top: 2rem; line-height: 1.6;
  }

  /* ── REGULATED INDUSTRIES ── */
  #regulated {
    background: var(--black);
    padding: 7rem 6rem;
  }
  .regulated-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .regulated-industries {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
  }
  .reg-industry {
    padding: 1.8rem; border: 1px solid rgba(201,168,76,0.15);
    background: var(--black-mid); transition: border-color 0.3s, transform 0.3s;
  }
  .reg-industry:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
  .reg-industry span { font-size: 1.5rem; display: block; margin-bottom: 0.6rem; }
  .reg-industry h4 {
    font-family: var(--serif); font-size: 1.05rem;
    color: var(--white); margin-bottom: 0.3rem;
  }
  .reg-industry p { font-size: 0.68rem; color: var(--white-dim); line-height: 1.6; }
  .reg-qualifications { display: flex; flex-direction: column; gap: 1rem; }
  .reg-qual {
    display: flex; align-items: flex-start; gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    border-left: 2px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.03);
    transition: border-color 0.3s;
  }
  .reg-qual:hover { border-color: var(--gold); }
  .reg-qual-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
  .reg-qual-text h5 {
    font-size: 0.72rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.2rem; letter-spacing: 0.05em;
  }
  .reg-qual-text p { font-size: 0.68rem; color: var(--white-dim); line-height: 1.6; }

  @media (max-width: 900px) {
    #diagnostic { padding: 4rem 1.5rem; }
    .diagnostic-grid { grid-template-columns: 1fr; gap: 3rem; }
    .calc-grid { grid-template-columns: 1fr; }
    .regulated-grid { grid-template-columns: 1fr; gap: 3rem; }
    .regulated-industries { grid-template-columns: 1fr; }
  }
/* ===== PRODUCTION ADDITIONS ===== */

/* Sticky nav on scroll */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

/* Mobile hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile styles */
@media (max-width: 800px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 0.9rem; }
}

/* Inline form validation */
.error-msg {
  display: block;
  color: #ff6b6b;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  min-height: 1rem;
  font-family: var(--sans);
}
input.input-error,
select.input-error,
textarea.input-error {
  border-color: #ff6b6b !important;
}
input.input-error:focus,
select.input-error:focus,
textarea.input-error:focus {
  box-shadow: 0 0 0 2px rgba(255,107,107,0.2);
}

/* Button loading state */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ROI Chart canvas */
#roiChart {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
}

/* Ecosystem Hover Effects */
.eco-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
}
.eco-card:hover .eco-hover-glow {
  opacity: 1;
}
.eco-card .eco-icon {
  transition: transform 0.3s;
}
.eco-card:hover .eco-icon {
  transform: scale(1.1);
}

/* Aurum Beacon — subtle “beacon” glow on the lockup (nav, hero, auth). */
@keyframes beacon-shine {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.35)) drop-shadow(0 0 28px rgba(226, 197, 121, 0.12));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(226, 197, 121, 0.55)) drop-shadow(0 0 42px rgba(201, 168, 76, 0.22));
  }
}

.beacon-logo {
  animation: beacon-shine 3.8s ease-in-out infinite;
  will-change: filter;
}

@media (prefers-reduced-motion: reduce) {
  .beacon-logo {
    animation: none;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
  }
}

/* Beacon stage — hero lockup halo + one-time sweep */
.beacon-stage {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.beacon-stage::before {
  content: '';
  position: absolute;
  inset: -22%;
  background: radial-gradient(circle, rgba(201,168,76,0.45) 0%, rgba(201,168,76,0.18) 35%, transparent 65%);
  filter: blur(28px);
  z-index: -1;
  animation: beaconPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.beacon-stage::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(110deg, transparent 38%, rgba(255,225,150,0.55) 50%, transparent 62%);
  z-index: 6;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  animation: beaconSweep 1.8s ease-out 0.6s 1 forwards;
}
@keyframes beaconPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
@keyframes beaconSweep {
  0%   { opacity: 0; transform: translateX(-40%); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(40%); }
}
.nav-logo img {
  transition: filter 0.4s ease;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.6)) brightness(1.08);
}
.beacon-hero-logo {
  filter: drop-shadow(0 0 24px rgba(201,168,76,0.35));
}

@media (prefers-reduced-motion: reduce) {
  .beacon-stage::before,
  .beacon-stage::after {
    animation: none;
  }
  .beacon-stage::after {
    opacity: 0;
  }
}
