
.typing {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 24px;
  margin: auto;
    width: fit-content;
}

.typing span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  animation: bounce 1s ease-in-out infinite;
}

.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.30s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-10px); }
}


#bookResult {color: var(--gold-light);
    font-size: 24px;
    padding: 30px;}
	
#bookBlk{margin: 30px auto; width: 50%;}

@media (max-width: 900px) {
    #bookBlk{margin: 30px auto; width: 50%;}
	
}

@media (max-width: 600px) {
	#bookBlk{margin: 30px auto; width: 90%;}
}


  /* ─── Reset & Base ─────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink:       #0e0d0b;
    --ink-2:     #2a2825;
    --ink-3:     #5a5750;
    --paper:     #f8f5ef;
    --cream:     #ede9e0;
    --gold:      #b8935a;
    --gold-light:#d4aa72;
    --gold-pale: #f2e8d5;
    --rust:      #9e4a2a;
    --warm-wh:   #fdfaf4;
    --hero-bg:   #0d0c0a;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  }

  html { scroll-behavior: smooth; }
.hid {display: none}

  body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ─── Utility ──────────────────────────────────────────── */
  .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .gold-line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 12px;
  }

  .eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* ─── Animations ───────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes lineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,147,90,0); }
    50%       { box-shadow: 0 0 0 8px rgba(184,147,90,0.12); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── NAV ──────────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(13, 12, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(184,147,90,0.15);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--warm-wh);
    letter-spacing: 0.02em;
  }
  .nav-logo span {
    color: var(--gold);
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(253,250,244,0.7);
    transition: color 0.2s;
    text-transform: uppercase;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    color: var(--gold) !important;
    border: 1px solid rgba(184,147,90,0.5);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-cta:hover {
    background: var(--gold);
    color: var(--ink) !important;
  }

  /* Mobile nav toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--warm-wh);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ─── HERO ─────────────────────────────────────────────── */
  #hero {
    min-height: 100vh;
    background: var(--hero-bg);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  /* Grain texture overlay */
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
  }

  /* Warm atmospheric glow */
  #hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(184,147,90,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 0 6rem;
  }

  .hero-content {}

  .hero-eyebrow {
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
    margin-bottom: 1.75rem;
  }

  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--warm-wh);
    letter-spacing: -0.01em;
    animation: fadeUp 0.9s var(--ease-out) 0.35s both;
    margin-bottom: 1.5rem;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
  }

  .hero-subhead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(253,250,244,0.6);
    max-width: 480px;
    animation: fadeUp 0.9s var(--ease-out) 0.5s both;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s var(--ease-out) 0.65s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    animation: pulse-gold 3s ease-in-out 2s infinite;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }
  .btn-primary svg { flex-shrink: 0; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(253,250,244,0.75);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 1.75rem;
    border-radius: 2px;
    border: 1px solid rgba(253,250,244,0.2);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover {
    border-color: rgba(184,147,90,0.5);
    color: var(--gold-light);
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(253,250,244,0.08);
    animation: fadeUp 0.9s var(--ease-out) 0.8s both;
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .hero-stat-label {
    font-size: 12px;
    color: rgba(253,250,244,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* Hero visual side */
  .hero-visual {
    position: relative;
    animation: fadeIn 1.2s var(--ease-out) 0.4s both;
  }
  .hero-portrait {
    width: 100%;
    aspect-ratio: 3/4;
    background: #1a1815;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184,147,90,0.2);
  }
  .hero-portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(160deg, #1a1815 0%, #120f0c 100%);
  }
  .portrait-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(184,147,90,0.15);
    border: 1px solid rgba(184,147,90,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .portrait-icon svg { color: var(--gold); }
  .portrait-note {
    font-size: 12px;
    color: rgba(184,147,90,0.5);
    letter-spacing: 0.08em;
    text-align: center;
    max-width: 200px;
  }

  .hero-quote-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--gold);
    color: var(--ink);
    padding: 1.25rem 1.5rem;
    max-width: 260px;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .hero-quote-badge p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  .hero-quote-badge cite {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s var(--ease-out) 1.2s both;
  }
  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.3);
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(184,147,90,0.6), transparent);
    animation: fadeUp 1s ease infinite;
  }

  /* ─── PROBLEM SECTION ──────────────────────────────────── */
  #problem {
    background: var(--ink);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
  }
  #problem::before {
    content: '"';
    position: absolute;
    top: -2rem;
    right: 5%;
    font-family: var(--font-display);
    font-size: 30rem;
    color: rgba(184,147,90,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .problem-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .problem-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--warm-wh);
    margin-bottom: 2rem;
  }
  .problem-headline em {
    color: var(--gold-light);
    font-style: italic;
  }
  .problem-body {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(253,250,244,0.55);
    margin-bottom: 2.5rem;
  }
  .problem-body strong {
    color: rgba(253,250,244,0.85);
    font-weight: 400;
  }
  .problem-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
    transform-origin: left;
  }

  /* ─── SERVICES / PILLARS ───────────────────────────────── */
  #services {
    padding: 7rem 0;
    background: var(--warm-wh);
  }
  .services-header {
    max-width: 560px;
    margin-bottom: 4rem;
  }
  .services-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-top: 1rem;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: rgba(90,87,80,0.12);
  }
  .service-card {
    background: var(--warm-wh);
    padding: 3rem 2.5rem;
    transition: background 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
  }
  .service-card:hover { background: var(--paper); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(184,147,90,0.2);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.25s;
  }
  .service-card:hover .service-num { color: rgba(184,147,90,0.4); }
  .service-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }
  .service-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-3);
    margin-bottom: 1.5rem;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }
  .tag {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 3px 10px;
    border-radius: 1px;
    font-weight: 500;
  }
  .service-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s, color 0.2s;
  }
  .service-link:hover { gap: 0.75rem; color: var(--gold); }

  /* ─── PROOF / TESTIMONIALS ─────────────────────────────── */
  #proof {
    padding: 7rem 0;
    background: var(--paper);
  }
  .proof-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }
  .proof-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-top: 1rem;
  }
  .proof-intro {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ink-3);
    padding-top: 1rem;
  }
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(90,87,80,0.12);
    margin-bottom: 4rem;
  }
  .testimonial {
    background: var(--warm-wh);
    padding: 2.5rem;
    position: relative;
  }
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 1.75rem;
  }
  .testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -0.7rem;
    margin-right: 0.15rem;
    font-style: normal;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid rgba(184,147,90,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    flex-shrink: 0;
  }
  .author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
  }
  .author-role {
    font-size: 11px;
    color: var(--ink-3);
    margin-top: 1px;
  }
  .testimonial-featured {
    background: var(--ink);
  }
  .testimonial-featured .testimonial-quote {
    color: var(--warm-wh);
  }
  .testimonial-featured .author-avatar {
    background: rgba(184,147,90,0.2);
  }
  .testimonial-featured .author-name { color: var(--warm-wh); }
  .testimonial-featured .author-role { color: rgba(253,250,244,0.45); }

  /* Logo bar */
  .logo-bar {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.35;
    filter: grayscale(1);
  }
  .logo-bar-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
    opacity: 1;
    filter: none;
    white-space: nowrap;
    margin-right: 1rem;
  }
  .logo-placeholder {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: 0.05em;
  }

  /* ─── ABOUT / FOUNDER ──────────────────────────────────── */
  #about {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  #about::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .about-portrait {
    aspect-ratio: 3/4;
    background: #1a1815;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184,147,90,0.2);
  }
  .about-portrait-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1e1b17 0%, #110e0c 100%);
    gap: 1rem;
  }
  .about-content {
    padding: 2rem 0;
  }
  .about-eyebrow { margin-bottom: 1.5rem; }
  .about-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .about-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ink-3);
    margin-bottom: 2rem;
  }
  .about-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .credential {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .credential-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.45rem;
    flex-shrink: 0;
  }
  .credential-text {
    font-size: 13px;
    color: var(--ink-2);
    font-weight: 400;
  }

  /* ─── AI SECTION ───────────────────────────────────────── */
  #ai {
    padding: 7rem 0;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
  }
  .ai-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(184,147,90,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,147,90,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .ai-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .ai-content .eyebrow { margin-bottom: 1.5rem; }
  .ai-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--warm-wh);
    margin-bottom: 1.5rem;
  }
  .ai-headline em { color: var(--gold-light); font-style: italic; }
  .ai-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(253,250,244,0.55);
    margin-bottom: 2.5rem;
  }
  .ai-tools {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .ai-tool {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(253,250,244,0.04);
    border: 1px solid rgba(184,147,90,0.15);
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s;
    cursor: default;
  }
  .ai-tool:hover {
    background: rgba(184,147,90,0.06);
    border-color: rgba(184,147,90,0.35);
  }
  .ai-tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background: rgba(184,147,90,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ai-tool-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--warm-wh);
    margin-bottom: 2px;
  }
  .ai-tool-desc {
    font-size: 12px;
    color: rgba(253,250,244,0.45);
  }
  .ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(184,147,90,0.12);
    border: 1px solid rgba(184,147,90,0.25);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }
  .ai-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2s ease infinite;
  }

  /* ─── LEAD MAGNET ──────────────────────────────────────── */
  #magnet {
    padding: 6rem 0;
    background: var(--gold-pale);
    border-top: 1px solid rgba(184,147,90,0.2);
    border-bottom: 1px solid rgba(184,147,90,0.2);
  }
  .magnet-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .magnet-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .magnet-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-3);
  }
  .magnet-form {
    background: var(--warm-wh);
    padding: 2.5rem;
    border-radius: 2px;
    border: 1px solid rgba(184,147,90,0.2);
  }
  .magnet-offer {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .magnet-offer-detail {
    font-size: 13px;
    color: var(--ink-3);
    margin-bottom: 1.75rem;
  }
  .form-field {
    margin-bottom: 1rem;
  }
  .form-field input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(90,87,80,0.2);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-field input:focus {
    border-color: var(--gold);
  }
  .form-field input::placeholder {
    color: var(--ink-3);
    opacity: 0.7;
  }
  .form-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--ink);
    color: var(--warm-wh);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--ink-2); }
  .form-privacy {
    font-size: 11px;
    color: var(--ink-3);
    text-align: center;
    margin-top: 0.75rem;
    opacity: 0.7;
  }
  .magnet-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .magnet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 13px;
    color: var(--ink-2);
    font-weight: 300;
  }
  .magnet-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ─── FINAL CTA ────────────────────────────────────────── */
  #cta-final {
    padding: 8rem 0;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,147,90,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-final-eyebrow { margin-bottom: 1.75rem; justify-content: center; }
  .cta-final-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--warm-wh);
    margin-bottom: 1.5rem;
    position: relative;
  }
  .cta-final-headline em {
    color: var(--gold-light);
    font-style: italic;
  }
  .cta-final-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(253,250,244,0.5);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.75;
  }
  .cta-final-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ─── FOOTER ───────────────────────────────────────────── */
  footer {
    padding: 3rem 0;
    background: var(--hero-bg);
    border-top: 1px solid rgba(184,147,90,0.1);
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: rgba(253,250,244,0.5);
  }
  .footer-logo span { color: var(--gold); }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.3);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 12px;
    color: rgba(253,250,244,0.2);
  }

  /* ─── RESPONSIVE ───────────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 6rem 0 4rem;
    }
    .hero-visual { max-width: 380px; margin: 0 auto; }
    .hero-quote-badge { left: -0.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .proof-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    #about::before { display: none; }
    .ai-inner { grid-template-columns: 1fr; gap: 3rem; }
    .magnet-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-credentials { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--hero-bg);
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      z-index: 99;
    }
    .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.08em; }
    .nav-toggle { display: flex; z-index: 101; }
  }

  @media (max-width: 600px) {
    .container { padding: 0 1.25rem; }
    #problem, #services, #proof, #about, #ai, #magnet, #cta-final { padding: 5rem 0; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .cta-final-headline { font-size: 2.2rem; }
  }


