  /* =========================================
     RESET & BASE
  ========================================= */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --color-bg: #faf8f5;
    --color-text: #1a1a1a;
    --color-text-muted: #5f6b6b;
    --color-text-light: #8a9696;
    --color-primary: #1b3a4b;
    --color-primary-hover: #152f3d;
    --color-primary-light: #e8f0f0;
    --color-primary-mid: #a3c4c9;
    --color-muted-bg: #f0edea;
    --color-border: #ddd8d2;
    --color-white: #ffffff;
    --color-dark: #0f2027;
    --color-accent: #e07a5f;
    --color-accent-hover: #c96a52;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    font-feature-settings: "cv02","cv03","cv04","cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button, input, select { font-family: var(--font); }

  /* =========================================
     LAYOUT UTILITIES
  ========================================= */
  .container { width: 100%; max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
  .container--narrow { max-width: 760px; }
  .section { padding-top: 5rem; padding-bottom: 5rem; }
  .section--sm { padding-top: 3.5rem; padding-bottom: 3.5rem; }

  /* =========================================
     TYPOGRAPHY
  ========================================= */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--color-primary); background-color: var(--color-primary-light);
    padding: 0.3rem 0.875rem; border-radius: 99px; margin-bottom: 1.25rem;
  }
  .eyebrow::before {
    content: ""; display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background-color: var(--color-primary); flex-shrink: 0;
  }
  .section-heading {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.03em; color: var(--color-text); margin-bottom: 1rem;
  }
  .section-subtext { font-size: 1.0625rem; color: var(--color-text-muted); line-height: 1.7; max-width: 560px; }
  .text-center { text-align: center; }
  .text-center .section-subtext { margin-left: auto; margin-right: auto; }

  /* =========================================
     BUTTONS
  ========================================= */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
    font-family: var(--font); font-weight: 600; border: none; cursor: pointer;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease, color 0.18s ease;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn--primary { background-color: var(--color-accent); color: var(--color-white); border-radius: var(--radius); padding: 0.65rem 1.375rem; font-size: 0.9375rem; }
  .btn--primary:hover { background-color: var(--color-accent-hover); box-shadow: 0 4px 14px rgba(224,122,95,0.35); }
  .btn--pill { border-radius: 6rem; padding: 0.6rem 1.5rem; font-size: 0.875rem; letter-spacing: 0.01em; }
  .btn--primary-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; border-radius: var(--radius); }
  .btn--white { background-color: var(--color-white); color: var(--color-accent); border-radius: var(--radius); padding: 0.75rem 1.625rem; font-size: 1rem; }
  .btn--white:hover { background-color: var(--color-primary-light); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
  .btn--primary-lg { padding: 0.875rem 1.75rem; font-size: 1rem; border-radius: var(--radius); }
  .btn--ghost { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-border); border-radius: var(--radius); padding: calc(0.65rem - 1.5px) 1.375rem; font-size: 0.9375rem; }
  .btn--ghost:hover { border-color: var(--color-primary); background-color: var(--color-primary-light); box-shadow: 0 4px 14px rgba(27,58,75,0.1); }
  .btn--ghost--inverted { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); border-radius: var(--radius); padding: calc(0.65rem - 1.5px) 1.375rem; font-size: 0.9375rem; }
  .btn--ghost--inverted:hover { border-color: rgba(255,255,255,0.8); background-color: rgba(255,255,255,0.1); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }

  /* =========================================
     FORMS / INPUTS
  ========================================= */
  .input {
    font-family: var(--font); font-size: 0.9375rem; color: var(--color-text);
    background: var(--color-white); border: 1.5px solid var(--color-border);
    border-radius: var(--radius); padding: 0.65rem 1rem; outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease; width: 100%;
  }
  .input::placeholder { color: var(--color-text-light); }
  .input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(27,58,75,0.12); }

  /* =========================================
     NAV
  ========================================= */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background-color 0.25s ease, box-shadow 0.25s ease; padding: 1.125rem 0;
  }
  .nav.scrolled {
    background-color: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 var(--color-border), 0 4px 24px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
  .nav__wordmark { display: inline-flex; align-items: center; text-decoration: none; user-select: none; gap: 0; flex-shrink: 0; }
  .nav__wordmark .wm-text { font-family: "Inter", var(--font); font-weight: 600; font-size: 0.9375rem; color: var(--color-text); letter-spacing: -0.02em; line-height: 1; }
  .nav__links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
  .nav__links a { font-size: 0.8125rem; font-weight: 500; color: var(--color-text-muted); transition: color 0.15s ease; letter-spacing: 0.01em; }
  .nav__links a:hover { color: var(--color-text); }
  .nav__actions { display: flex; align-items: center; gap: 1rem; }
  .nav__actions .btn--primary { padding: 0.5rem 1.125rem; font-size: 0.8125rem; border-radius: 6rem; font-weight: 600; letter-spacing: 0.01em; }
  .nav__mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; flex-direction: column; gap: 5px; }
  .nav__mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  @media (max-width: 680px) {
    .nav__links, .nav__actions .btn { display: none; }
    .nav__mobile-toggle { display: flex; }
  }

  /* =========================================
     HERO
  ========================================= */
  .hero { padding-top: 10rem; padding-bottom: 7rem; position: relative; overflow: hidden; background-color: var(--color-bg); }
  .hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
  .hero__bg::before {
    content: ""; position: absolute; top: -20%; left: -10%; width: 70%; height: 80%;
    background: radial-gradient(ellipse, rgba(27,58,75,0.07) 0%, transparent 65%);
    animation: bgPulse 8s ease-in-out infinite alternate;
  }
  .hero__bg::after {
    content: ""; position: absolute; bottom: -10%; right: -5%; width: 55%; height: 70%;
    background: radial-gradient(ellipse, rgba(224,122,95,0.05) 0%, transparent 65%);
    animation: bgPulse 10s ease-in-out infinite alternate-reverse;
  }
  .hero__grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(27,58,75,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(27,58,75,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  }
  .hero__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .hero__particle { position: absolute; border-radius: 50%; background: rgba(27,58,75,0.25); animation: particleFloat linear infinite; }
  .hero__particle:nth-child(1) { width:3px; height:3px; top:15%; left:12%; animation-duration:14s; animation-delay:0s; opacity:0.6; }
  .hero__particle:nth-child(2) { width:2px; height:2px; top:72%; left:22%; animation-duration:18s; animation-delay:-3s; opacity:0.4; }
  .hero__particle:nth-child(3) { width:4px; height:4px; top:38%; left:80%; animation-duration:12s; animation-delay:-6s; opacity:0.5; background:rgba(224,122,95,0.2); }
  .hero__particle:nth-child(4) { width:2px; height:2px; top:60%; left:55%; animation-duration:20s; animation-delay:-1s; opacity:0.35; }
  .hero__particle:nth-child(5) { width:3px; height:3px; top:25%; left:68%; animation-duration:16s; animation-delay:-8s; opacity:0.5; }
  .hero__particle:nth-child(6) { width:2px; height:2px; top:82%; left:88%; animation-duration:11s; animation-delay:-4s; opacity:0.4; background:rgba(224,122,95,0.2); }
  .hero__particle:nth-child(7) { width:5px; height:5px; top:10%; left:45%; animation-duration:22s; animation-delay:-11s; opacity:0.25; }
  .hero__particle:nth-child(8) { width:2px; height:2px; top:50%; left:5%; animation-duration:15s; animation-delay:-7s; opacity:0.45; }

  @keyframes bgPulse { from { transform: translate(0,0) scale(1); } to { transform: translate(3%,4%) scale(1.08); } }
  @keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); opacity: var(--o, 0.5); }
    33% { transform: translateY(-18px) translateX(8px); }
    66% { transform: translateY(-8px) translateX(-6px); }
    100% { transform: translateY(0px) translateX(0px); opacity: var(--o, 0.5); }
  }

  .hero__content { position: relative; z-index: 1; display: flex; align-items: center; gap: 4rem; text-align: left; }
  .hero__left { flex: 1; min-width: 0; }
  .hero__right { flex: 0 0 420px; display: flex; align-items: center; justify-content: center; }
  @media (max-width: 900px) {
    .hero__content { flex-direction: column; text-align: center; }
    .hero__right { flex: 0 0 auto; width: 100%; max-width: 380px; }
  }
  .hero .eyebrow { background-color: var(--color-primary-light); color: var(--color-primary); border: none; }
  .hero__h1 { font-size: clamp(2.5rem,5.5vw,4.25rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.035em; color: var(--color-text); max-width: 820px; margin-bottom: 1.5rem; }
  .hero__h1 .word { display: inline-block; opacity: 0; transform: translateY(30px); animation: wordReveal 0.6s cubic-bezier(0.22,1,0.36,1) forwards; }
  .hero__h1 em { font-style: normal; position: relative; display: inline-block; }
  .hero__h1 em .word { background: linear-gradient(135deg, #e07a5f 0%, #c96a52 50%, #e07a5f 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero__h1 em::after { content: ""; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #e07a5f, #e8a090, #e07a5f); background-size: 200% 100%; animation: shimmer 3s linear infinite; border-radius: 2px; opacity: 0.7; }
  @keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }
  @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

  .hero__sub { font-size: 1.0625rem; color: var(--color-text-muted); line-height: 1.75; max-width: 540px; margin-bottom: 2.25rem; opacity: 0; animation: wordReveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.9s forwards; }
  .hero__form { display: flex; flex-wrap: wrap; gap: 0.5rem; width: 100%; max-width: 480px; margin-bottom: 0.875rem; opacity: 0; animation: wordReveal 0.7s cubic-bezier(0.22,1,0.36,1) 1.1s forwards; }
  .hero__form .input { flex: 1; font-size: 0.9375rem; padding: 0.75rem 1.125rem; }
  .hero__form .btn { flex-shrink: 0; padding: 0.75rem 1.375rem; font-size: 0.9375rem; }
  .hero__note { font-size: 0.8125rem; color: var(--color-text-light); opacity: 0; animation: wordReveal 0.7s cubic-bezier(0.22,1,0.36,1) 1.25s forwards; margin-bottom: 1.75rem; }
  .hero__cta-subline { margin-top: 0.5rem; font-size: 0.8125rem; color: rgba(255,255,255,0.5); text-align: center; }
  .hero__social-proof { display: flex; align-items: center; gap: 0.75rem; opacity: 0; animation: wordReveal 0.7s cubic-bezier(0.22,1,0.36,1) 1.4s forwards; }
  .hero__avatars { display: flex; align-items: center; }
  .hero__avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #0d0d1a; margin-left: -10px; flex-shrink: 0; object-fit: cover; display: flex; align-items: center; justify-content: center; }
  .hero__avatar:first-child { margin-left: 0; }
  .hero__avatar--count { background: #fff; color: #111; font-size: 0.6875rem; font-weight: 700; }
  .hero__social-proof-text { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.4; }
  .hero__social-proof-text strong { color: var(--color-text); font-weight: 600; }
  .hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.375rem; opacity: 0; animation: wordReveal 0.7s ease 1.6s forwards; z-index: 1; }
  .hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(27,58,75,0.5), transparent); animation: scrollLine 2s ease-in-out infinite; }
  @keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity: 0.7; } 50% { transform: scaleY(0.6); opacity: 0.3; } }
  @media (max-width: 520px) { .hero__form { flex-direction: column; } .hero__form .btn { width: 100%; } }

  /* =========================================
     PROBLEM AGITATION
  ========================================= */
  .problem-section { background: #f0edea; }
  .problem-section__headline { color: #1b3a4b; max-width: 820px; margin-left: auto; margin-right: auto; }
  .problem-section__headline-muted { color: #5f6b6b; display: block; }
  .text-deploy-highlight {
    background: linear-gradient(90deg, #e07a5f 0%, #e8956d 20%, #f0b87a 40%, #a3c4c9 65%, #4ab8c8 85%, #1b3a4b 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    padding-bottom: 0.05em; display: inline-block;
  }
  .problem-section__body { font-size: 1.0625rem; color: #5f6b6b; line-height: 1.8; max-width: 620px; margin-top: 1.25rem; }
  .problem-section__body em { font-style: normal; font-weight: 600; color: #1b3a4b; }

  /* =========================================
     FINAL CTA / NEWSLETTER BOTTOM
  ========================================= */
  .final-cta { background: linear-gradient(135deg, #0f2027 0%, #1b3a4b 50%, #2c5364 100%); padding-top: 5rem; padding-bottom: 5rem; text-align: center; }
  .final-cta__heading { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; color: #ffffff; margin-bottom: 1rem; max-width: 680px; margin-left: auto; margin-right: auto; }
  .final-cta__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 480px; margin: 0 auto 2rem; }
  .final-cta__form { display: flex; gap: 0.5rem; max-width: 460px; margin: 0 auto 0.875rem; }
  .final-cta__form .input { flex: 1; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: white; }
  .final-cta__form .input::placeholder { color: rgba(255,255,255,0.5); }
  .final-cta__form .input:focus { border-color: rgba(255,255,255,0.6); box-shadow: 0 0 0 3px rgba(255,255,255,0.12); }
  .final-cta__note { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
  @media (max-width: 520px) { .final-cta__form { flex-direction: column; } .final-cta__form .btn { width: 100%; } }

  .newsletter-bottom { background: linear-gradient(135deg, #0f2027 0%, #1b3a4b 50%, #2c5364 100%); padding: 5rem 0; text-align: center; }
  .newsletter-bottom__heading { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; margin-bottom: 0.75rem; max-width: 600px; margin-left: auto; margin-right: auto; }
  .newsletter-bottom__sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
  .newsletter-bottom__form { display: flex; flex-wrap: wrap; gap: 0.5rem; max-width: 460px; margin: 0 auto; justify-content: center; }
  .newsletter-bottom__input { flex: 1; padding: 0.65rem 1rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.12); color: #fff; font-size: 0.9375rem; outline: none; }
  .newsletter-bottom__input::placeholder { color: rgba(255,255,255,0.5); }
  .newsletter-bottom__input:focus { border-color: rgba(255,255,255,0.6); }
  @media (max-width: 520px) { .newsletter-bottom__form { flex-direction: column; } .newsletter-bottom__form .btn { width: 100%; } }

  /* =========================================
     FAQ
  ========================================= */
  .faq-section { background: var(--color-white); }
  .faq-list { max-width: 680px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
  .faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
  .faq-item__q { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.5rem; }
  .faq-item__a { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; }

  /* =========================================
     FEAR SECTION
  ========================================= */
  .fear-section { background-color: var(--color-bg); }
  .fear-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .fear-section__left .eyebrow { margin-bottom: 1.25rem; }
  .fear-section .section-heading { font-size: clamp(1.5rem,3vw,2.25rem); color: var(--color-text); margin-bottom: 0; letter-spacing: -0.035em; line-height: 1.15; text-align: left; }
  .fear-section__right { padding-top: 0.25rem; }
  .fear-section__body { font-size: 1rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
  .fear-section__cta-line { font-size: 1rem; color: var(--color-text); line-height: 1.75; }
  .fear-section__cta-line strong { color: var(--color-accent); }
  @media (max-width: 768px) { .fear-section__grid { grid-template-columns: 1fr; gap: 2rem; } }

  /* =========================================
     WHAT YOU GET
  ========================================= */
  .what-you-get { background: linear-gradient(135deg, #0f2027 0%, #1b3a4b 50%, #1a3a4a 100%); }
  .what-you-get__header { margin-bottom: 3rem; }
  .what-you-get .eyebrow { color: var(--color-accent); background: rgba(224,122,95,0.15); }
  .what-you-get .eyebrow::before { background: var(--color-accent); }
  .what-you-get .section-heading { color: #ffffff; }
  .what-you-get .section-subtext { color: rgba(255,255,255,0.7); }

  .cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
  .feature-card { background: #ffffff; border: 1px solid var(--color-border); border-radius: 1.25rem; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s ease, transform 0.25s ease; }
  .feature-card:hover { box-shadow: 0 16px 48px rgba(27,58,75,0.12); transform: translateY(-4px); }
  .feature-card__gradient { position: relative; height: 180px; display: flex; align-items: flex-end; justify-content: space-between; padding: 1.25rem 1.5rem; overflow: hidden; }
  .feature-card__gradient--blue   { background: linear-gradient(135deg, #1b3a4b 0%, #2a6a82 45%, #a3c4c9 100%); }
  .feature-card__gradient--violet { background: linear-gradient(135deg, #1b3a4b 0%, #c96a52 50%, #f0b87a 100%); }
  .feature-card__gradient--teal   { background: linear-gradient(135deg, #1b3a4b 0%, #1a7a62 50%, #7acfb0 100%); }
  .feature-card__gradient-icon { position: absolute; top: 1.25rem; right: 1.5rem; opacity: 0.2; color: #ffffff; }
  .feature-card__image-tag { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #ffffff; background: rgba(255,255,255,0.18); backdrop-filter: blur(4px); padding: 0.3rem 0.75rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); }
  .feature-card__body { padding: 1.75rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
  .feature-card__title { font-size: 1.125rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.625rem; letter-spacing: -0.02em; line-height: 1.3; }
  .feature-card__desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.75; }
  .feature-card__footer { margin-top: auto; padding-top: 1.25rem; }
  .feature-card__btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; padding: 0.625rem 1.25rem; border-radius: 999px; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease; }
  .feature-card__btn--blue   { background: linear-gradient(90deg, #1b3a4b, #2a6a82); color: #ffffff; }
  .feature-card__btn--coral  { background: linear-gradient(90deg, #c96a52, #e07a5f); color: #ffffff; }
  .feature-card__btn--teal   { background: linear-gradient(90deg, #1b3a4b, #1a7a62); color: #ffffff; }
  .feature-card__btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
  .feature-card__btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .feature-card__email-form { display: flex; flex-direction: column; gap: 0.625rem; }
  .feature-card__email-input { width: 100%; padding: 0.6rem 1rem; border: 1px solid var(--color-border); border-radius: 999px; font-size: 0.875rem; font-family: var(--font); background: var(--color-bg); color: var(--color-text); outline: none; }
  .feature-card__email-input:focus { border-color: var(--color-primary-mid); }
  .feature-card__email-form .feature-card__btn { justify-content: center; }
  .coming-soon-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 500; color: var(--color-text-muted); letter-spacing: 0.04em; }
  .coming-soon-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--color-border); flex-shrink: 0; }
  @media (max-width: 860px) { .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

  /* =========================================
     SOCIAL PROOF / TESTIMONIALS
  ========================================= */
  .social-proof { background-color: var(--color-white); }
  .social-proof__header { margin-bottom: 3rem; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-bottom: 1.5rem; max-width: 860px; margin-left: auto; margin-right: auto; }
  .testimonial-card { background: var(--color-white); border: none; border-left: 3px solid var(--color-accent); border-radius: var(--radius-lg); padding: 2rem 2rem 1.75rem; box-shadow: 0 4px 24px rgba(27,58,75,0.08); transition: box-shadow 0.25s ease, transform 0.25s ease; }
  .testimonial-card:hover { box-shadow: 0 12px 36px rgba(27,58,75,0.12); transform: translateY(-2px); }
  .testimonial-result-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #1b3a4b; background: #e8f0f0; padding: 0.25rem 0.65rem; border-radius: 999px; margin-bottom: 1rem; }
  .testimonial-quote-mark { display: block; font-size: 3rem; line-height: 1; color: var(--color-accent); opacity: 0.3; font-family: Georgia, serif; margin-bottom: -0.5rem; }
  .testimonial-quote { font-size: 0.9375rem; color: var(--color-text); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
  .testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--color-primary); }
  .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .testimonial-author-info { display: flex; flex-direction: column; gap: 0.1rem; }
  .testimonial-name { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); }
  .testimonial-role { font-size: 0.8125rem; color: var(--color-text-muted); }
  .testimonials-note { text-align: center; font-size: 0.8125rem; color: var(--color-text-light); }
  @media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; } }

  /* =========================================
     GUIDES & RESOURCES
  ========================================= */
  .guides { background-color: var(--color-white); }
  .guides__layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
  .guides__featured-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem; }
  .guides__featured-title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; color: var(--color-text); margin-bottom: 0.75rem; }
  .guides__featured-desc { font-size: 1.0625rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.25rem; max-width: 540px; }
  .guides__featured-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
  .guides__tag { display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 4px; background: var(--color-primary-light); color: var(--color-primary); }
  .guides__read-time { font-size: 0.8125rem; color: var(--color-text-light); }
  .guides__featured-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.9375rem; font-weight: 600; color: var(--color-primary); transition: gap 0.15s ease; }
  .guides__featured-link:hover { gap: 0.625rem; }
  .guides__featured-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
  .feature-card .guides__featured-link { color: var(--color-primary); font-size: 0.875rem; font-weight: 600; }
  .feature-card .guides__featured-link:hover { color: var(--color-primary-hover); }
  .guides__divider { border: none; border-top: 1px solid var(--color-border); margin: 2.5rem 0; }
  .guides__coming-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-light); margin-bottom: 1.25rem; }
  .guides__coming-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .guides__coming-card { padding: 1.25rem; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-white); transition: border-color 0.15s ease; }
  .guides__coming-card:hover { border-color: var(--color-primary-mid); }
  .guides__coming-badge { display: inline-flex; align-items: center; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.2rem 0.5rem; border-radius: 4px; background: var(--color-muted-bg); color: var(--color-text-light); margin-bottom: 0.75rem; }
  .guides__coming-card-title { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.25rem; }
  .guides__coming-card-desc { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.5; }
  .guides__sidebar { position: sticky; top: 5rem; }
  .guides__sidebar-box { border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-white); overflow: hidden; }
  .guides__sidebar-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text); padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); }
  .guides__sidebar-list { list-style: none; padding: 0.5rem 0; }
  .guides__sidebar-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; font-size: 0.9375rem; font-weight: 500; color: var(--color-text); transition: background-color 0.12s ease; }
  .guides__sidebar-item:hover { background: var(--color-muted-bg); }
  .guides__sidebar-num { font-size: 0.8125rem; font-weight: 600; color: var(--color-text-light); min-width: 20px; }
  .guides__sidebar-cta { padding: 1.25rem 1.5rem; border-top: 1px solid var(--color-border); background: var(--color-muted-bg); }
  .guides__sidebar-cta-title { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.25rem; }
  .guides__sidebar-cta-desc { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 0.875rem; line-height: 1.5; }
  @media (max-width: 860px) { .guides__layout { grid-template-columns: 1fr; } .guides__sidebar { position: static; } .guides__coming-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .guides__coming-grid { grid-template-columns: 1fr; } }

  /* =========================================
     NEWSLETTER SECTION
  ========================================= */
  .newsletter { background-color: var(--color-muted-bg); }
  .newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .newsletter__eyebrow { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-primary); margin-bottom: 0.625rem; }
  .newsletter__heading { font-size: clamp(1.25rem,2vw,1.625rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; color: var(--color-text); margin-bottom: 1rem; }
  .newsletter__desc { font-size: 1rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.75rem; }
  .newsletter__bullets { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
  .newsletter__bullets li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: var(--color-text); }
  .newsletter__bullets li::before { content: "✓"; color: var(--color-primary); font-weight: 700; flex-shrink: 0; margin-top: 0.1em; }
  .newsletter__form-box { background: var(--color-white); border: 1.5px solid var(--color-border); border-radius: var(--radius-lg); padding: 2.25rem; }
  .newsletter__form-label { font-size: 1.0625rem; font-weight: 700; color: var(--color-text); margin-bottom: 1.25rem; display: block; }
  .newsletter__form-label span { color: var(--color-primary); }
  .newsletter__form { display: flex; flex-direction: column; gap: 0.75rem; }
  .newsletter__form .btn { width: 100%; padding: 0.75rem 1.5rem; font-size: 1rem; justify-content: center; }
  .newsletter__form-note { font-size: 0.8125rem; color: var(--color-text-light); text-align: center; }
  @media (max-width: 820px) { .newsletter__inner { grid-template-columns: 1fr; gap: 2.5rem; } }

  /* =========================================
     FOOTER
  ========================================= */
  .footer { background-color: var(--color-bg); border-top: 1px solid var(--color-border); padding-top: 3.5rem; padding-bottom: 2rem; }
  .footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--color-border); margin-bottom: 1.75rem; }
  .footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }
  .footer__wordmark { display: inline-flex; align-items: center; gap: 0; }
  .footer__wordmark .wm-text { font-family: "Inter", var(--font); font-weight: 600; font-size: 0.9375rem; color: var(--color-text); letter-spacing: -0.02em; line-height: 1; }
  .footer__tagline { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.6; max-width: 280px; }
  .footer__social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
  .footer__social-icon { color: var(--color-text-muted); transition: color 0.15s ease; text-decoration: none; display: inline-flex; }
  .footer__social-icon:hover { color: var(--color-text); }
  .footer__col-title { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text); margin-bottom: 1rem; }
  .footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
  .footer__col-links a { font-size: 0.8125rem; color: var(--color-text-muted); text-decoration: none; transition: color 0.15s ease; }
  .footer__col-links a:hover { color: var(--color-primary); }
  .footer__bottom { font-size: 0.75rem; color: var(--color-text-light); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
  @media (max-width: 720px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
  @media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }

  /* =========================================
     SECTION DIVIDER, ANIMATIONS, MISC
  ========================================= */
  .section-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); border-radius: 2px; margin-bottom: 1.5rem; }
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

  /* =========================================
     GLOBE
  ========================================= */
  .globe-wrapper { position: relative; width: 420px; height: 420px; margin: 0 auto; border-radius: 50%; background: radial-gradient(circle at 38% 38%, #0f3d38 0%, #0d2d2a 45%, #061a18 100%); box-shadow: 0 0 0 1px rgba(20,184,166,0.15), 0 0 60px rgba(13,45,42,0.6), 0 0 120px rgba(6,26,24,0.4), 0 20px 60px rgba(0,0,0,0.35); overflow: visible; }
  .globe-wrapper::before { content: ""; position: absolute; inset: -2px; border-radius: 50%; background: transparent; box-shadow: inset 0 0 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(20,184,166,0.12); z-index: 3; pointer-events: none; }
  .globe-wrapper::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(6,26,24,0.55) 70%, rgba(4,16,14,0.85) 100%); z-index: 2; pointer-events: none; }
  #globe-canvas { display: block; border-radius: 50%; width: 420px; height: 420px; position: relative; z-index: 1; }
  .globe-card { position: absolute; display: flex; flex-direction: column; align-items: center; z-index: 10; opacity: 0; transform: translateY(10px); pointer-events: none; }
  .globe-card.visible { animation: cardReveal 0.55s cubic-bezier(0.22,1,0.36,1) forwards; }
  @keyframes cardReveal { to { opacity: 1; transform: translateY(0); } }
  .globe-card.floating { animation: cardBob var(--bob-duration, 3.2s) ease-in-out infinite; }
  @keyframes cardBob { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-6px); } }
  .globe-card__pill { display: flex; align-items: center; gap: 0.35rem; background: #ffffff; border-radius: 99px; box-shadow: 0 3px 14px rgba(0,0,0,0.11); padding: 0.25rem 0.7rem 0.25rem 0.25rem; white-space: nowrap; }
  .globe-card__avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; display: block; flex-shrink: 0; background: #e5e7eb; }
  .globe-card__name { font-weight: 600; font-size: 0.75rem; color: #171717; letter-spacing: -0.01em; }
  .globe-card__pin { display: block; margin-top: 1px; width: 9px; height: 12px; }
  @media (max-width: 900px) { .globe-wrapper, #globe-canvas { width: 340px; height: 340px; } }
  @media (max-width: 600px) { .globe-wrapper, #globe-canvas { width: 300px; height: 300px; } }
  @media (max-width: 380px) { .globe-wrapper, #globe-canvas { width: 260px; height: 260px; } }

  /* =========================================
     APPLY MODAL
  ========================================= */
  .apply-modal-overlay { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(17,24,39,0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1.5rem; }
  .apply-modal-overlay.is-open { display: flex; }
  .apply-modal { background: var(--color-white); border-radius: var(--radius-lg); padding: 2.25rem; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.18); }
  .apply-modal__close { position: absolute; top: 1.125rem; right: 1.125rem; background: none; border: none; cursor: pointer; color: var(--color-text-muted); padding: 0.25rem; line-height: 1; font-size: 1.25rem; transition: color 0.15s ease; }
  .apply-modal__close:hover { color: var(--color-text); }
  .apply-modal__title { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.03em; color: var(--color-text); margin-bottom: 0.25rem; }
  .apply-modal__sub { font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: 1.75rem; }
  .apply-modal__form { display: flex; flex-direction: column; gap: 1.25rem; }
  .apply-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  @media (max-width: 480px) { .apply-modal__row { grid-template-columns: 1fr; } }
  .apply-modal__field { display: flex; flex-direction: column; gap: 0.4rem; }
  .apply-modal__label { font-size: 0.875rem; font-weight: 600; color: var(--color-text); }
  .apply-modal__label span { color: var(--color-primary); }
  .apply-modal__select { font-family: var(--font); font-size: 0.9375rem; color: var(--color-text); background: var(--color-white); border: 1.5px solid var(--color-border); border-radius: var(--radius); padding: 0.65rem 1rem; outline: none; width: 100%; cursor: pointer; appearance: auto; transition: border-color 0.18s ease, box-shadow 0.18s ease; }
  .apply-modal__select:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(27,58,75,0.12); }
  .apply-modal__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .apply-modal__chip { padding: 0.4rem 0.875rem; border-radius: 999px; border: 1.5px solid var(--color-border); background: var(--color-white); font-size: 0.875rem; font-weight: 500; color: var(--color-text-muted); cursor: pointer; transition: all 0.15s ease; user-select: none; }
  .apply-modal__chip:hover { border-color: var(--color-primary); color: var(--color-primary); }
  .apply-modal__chip.is-selected { background: var(--color-primary-light); border-color: var(--color-primary); color: var(--color-primary); font-weight: 600; }
  .apply-modal__btn { width: 100%; padding: 0.875rem; font-size: 1rem; font-weight: 700; background: var(--color-accent); color: white; border: none; border-radius: var(--radius); cursor: pointer; transition: background-color 0.18s ease, box-shadow 0.18s ease; margin-top: 0.25rem; }
  .apply-modal__btn:hover { background: var(--color-accent-hover); box-shadow: 0 4px 14px rgba(224,122,95,0.35); }
  .apply-modal__note { text-align: center; font-size: 0.8125rem; color: var(--color-text-light); margin-top: 0.5rem; }

/* =========================================
   GUIDE PAGE TEMPLATE
========================================= */

/* Guide layout: content + sticky sidebar */
.guide-layout { display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: flex-start; }
.guide-sidebar { position: sticky; top: 6rem; align-self: flex-start; }
@media (max-width: 860px) { .guide-layout { grid-template-columns: 1fr; } .guide-sidebar { display: none; } }

/* Guide header */
.guide-header { margin-bottom: 2.5rem; }
.guide-header__breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.8125rem; }
.guide-header__breadcrumb a { color: var(--color-text-muted); text-decoration: none; transition: color 0.15s ease; }
.guide-header__breadcrumb a:hover { color: var(--color-primary); }
.guide-header__breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--color-border); }
.guide-header__h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1rem; }
.guide-header__desc { font-size: 1.125rem; color: var(--color-text-muted); line-height: 1.7; max-width: 540px; margin-bottom: 1.5rem; }
.guide-header__meta { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; color: var(--color-text-muted); flex-wrap: wrap; margin-bottom: 1.5rem; }
.guide-header__meta-item { display: flex; align-items: center; gap: 0.4rem; }
.guide-header__meta-item svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }

/* Share button — inline with meta bar */
.guide-share {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--color-white);
  background: var(--color-primary); border: 1px solid var(--color-primary);
  border-radius: 99px; padding: 0.375rem 1rem;
  cursor: pointer; transition: background 0.15s ease, transform 0.15s ease;
  font-family: var(--font); white-space: nowrap;
}
.guide-share:hover { background: var(--color-primary-hover); transform: translateY(-1px); }
.guide-share.copied { background: #2a7a5a; border-color: #2a7a5a; }
.guide-share svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Keyword tags */
.guide-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.guide-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  color: var(--color-text-muted); background: var(--color-muted-bg);
  border-radius: 99px; padding: 0.25rem 0.75rem;
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.guide-tag:hover { background: var(--color-primary-light); color: var(--color-primary); }

/* Guide body (markdown content) */
.guide-body { font-size: 1.0625rem; line-height: 1.75; color: var(--color-text); }
.guide-body h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 2.5rem 0 1rem; color: var(--color-text); }
.guide-body h3 { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--color-text); }
.guide-body h4 { font-size: 1.0625rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.guide-body p { margin-bottom: 1.25rem; }
.guide-body ul, .guide-body ol { margin: 0 0 1.25rem 1.5rem; }
.guide-body li { margin-bottom: 0.5rem; }
.guide-body code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 0.875em; background: var(--color-muted-bg); padding: 0.15em 0.4em; border-radius: 0.25rem; color: var(--color-primary); }
.guide-body pre { background: var(--color-dark); border-radius: var(--radius); padding: 1.25rem 1.5rem; overflow-x: auto; margin: 1.5rem 0; }
.guide-body pre code { background: none; color: #e2e8f0; font-size: 0.875rem; padding: 0; }
.guide-body hr { border: none; border-top: 1px solid var(--color-border); margin: 2rem 0; }
.guide-body strong { font-weight: 600; }
.guide-body a { color: var(--color-primary); font-weight: 500; }
.guide-body a:hover { text-decoration: underline; }

/* Sticky sidebar TOC */
.guide-sidebar__box {
  background: var(--color-white); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  max-height: calc(100vh - 8rem); overflow-y: auto;
}
.guide-sidebar__toc-heading {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-muted); padding: 1rem 1.25rem; border-bottom: 1px solid var(--color-border);
}
.guide-sidebar__toc-list { list-style: none; margin: 0; padding: 0; }
.guide-sidebar__toc-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--color-border); text-decoration: none;
  color: var(--color-text-muted); font-size: 0.9375rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.guide-sidebar__toc-item:last-child { border-bottom: none; }
.guide-sidebar__toc-item:hover { background: var(--color-muted-bg); color: var(--color-text); }
.guide-sidebar__toc-item.is-active { color: var(--color-primary); background: var(--color-primary-light); font-weight: 600; }
.guide-sidebar__toc-num {
  font-size: 0.75rem; font-weight: 700; color: var(--color-text-light);
  min-width: 1.25rem; font-variant-numeric: tabular-nums;
}
.guide-sidebar__cta {
  padding: 1.125rem 1.25rem; background: var(--color-muted-bg);
  border-top: 1px solid var(--color-border);
}
.guide-sidebar__cta-title { font-weight: 700; margin-bottom: 0.375rem; font-size: 0.9375rem; }
.guide-sidebar__cta-desc { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 1rem; }

/* Dark CTA button (sidebar) */
.btn--dark {
  background-color: var(--color-dark); color: var(--color-white);
  border-radius: var(--radius); padding: 0.65rem 1.375rem; font-size: 0.9375rem;
  width: 100%; justify-content: center;
}
.btn--dark:hover { background-color: var(--color-text); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2); }

/* What's Next section */
.guide-next { padding: 5rem 0; background: #f7f5f2; border-top: 1px solid var(--color-border); }
.guide-next__header { text-align: center; margin-bottom: 3rem; }
.guide-next h2 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.guide-next__sub { font-size: 0.9375rem; color: var(--color-text-muted); max-width: 480px; margin: 0 auto; }
.guide-next__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .guide-next__grid { grid-template-columns: 1fr; } }
.guide-next__card {
  border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem; background: var(--color-white);
  transition: box-shadow 0.2s ease, transform 0.2s ease; text-decoration: none; color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.guide-next__card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07); transform: translateY(-2px); border-color: rgba(0,0,0,0.08); }
.guide-next__card-tag {
  display: inline-block; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-primary); background: var(--color-primary-light);
  border-radius: 99px; padding: 0.2rem 0.625rem; width: fit-content;
}
.guide-next__card-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--color-text); }
.guide-next__card-desc { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; flex: 1; }
.guide-next__card-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--color-primary); margin-top: 0.5rem;
}
.guide-next__card-link:hover { color: var(--color-primary-hover); }
.guide-next__card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Chapter grid */
.guide-chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 3.5rem;
}
@media (max-width: 900px) { .guide-chapters { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guide-chapters { grid-template-columns: 1fr; } }
.guide-chapter {
  display: flex; align-items: flex-start; gap: 0.875rem;
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.125rem 1.25rem;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.guide-chapter:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); transform: translateY(-1px); }
.guide-chapter__num {
  flex-shrink: 0; width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-light); color: var(--color-primary);
  border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700;
}
.guide-chapter__title { font-size: 0.9375rem; font-weight: 700; line-height: 1.35; color: var(--color-text); }
.guide-chapter__desc { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.25rem; line-height: 1.45; }

/* Guide subscribe section */
.guide-subscribe { padding: 5rem 0; border-top: 1px solid var(--color-border); background: var(--color-muted-bg); text-align: center; }
.guide-subscribe__inner { max-width: 480px; margin: 0 auto; }
.guide-subscribe h2 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.guide-subscribe__sub { font-size: 1.0625rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 2rem; }
.guide-subscribe__form { display: flex; gap: 0.75rem; max-width: 400px; margin: 0 auto; }
.guide-subscribe__input {
  flex: 1; padding: 0.65rem 1rem; font-size: 0.9375rem; font-family: var(--font);
  border: 1px solid var(--color-border); border-radius: var(--radius);
  background: var(--color-white); color: var(--color-text); transition: border-color 0.15s ease;
}
.guide-subscribe__input::placeholder { color: var(--color-text-light); }
.guide-subscribe__input:focus { outline: none; border-color: var(--color-primary-mid); }
@media (max-width: 480px) { .guide-subscribe__form { flex-direction: column; } }

/* =========================================
   MOBILE RESPONSIVENESS FIXES
========================================= */

/* Tablet: reduce section padding and spacing */
@media (max-width: 768px) {
  .section { padding-top: 3rem; padding-bottom: 3rem; }
  .section--sm { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .hero { padding-top: 6rem; padding-bottom: 4rem; }
  .hero__h1 { max-width: 100%; }
  .hero__sub { max-width: 100%; }
  .btn { min-height: 44px; }
  .nav__mobile-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .newsletter-bottom { padding: 3.5rem 0; }
  .newsletter-bottom__heading { font-size: clamp(1.25rem, 3vw, 2rem); }
  .guide-next { padding: 3.5rem 0; }
  .guide-body h2 { font-size: 1.25rem; }
  .guide-body h3 { font-size: 1.125rem; }
  .guide-body ul, .guide-body ol { margin-left: 1rem; }
  .guide-body pre { padding: 1rem; }
  .testimonial-card { padding: 1.5rem; }
}

/* Small phones: tighter spacing */
@media (max-width: 480px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .hero { padding-top: 4rem; padding-bottom: 3rem; }
  .hero__h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero__sub { font-size: 0.9375rem; margin-bottom: 1.5rem; }
  .hero__social-proof { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .newsletter-bottom { padding: 2.5rem 0; }
  .newsletter-bottom__input { padding: 0.75rem 1rem; }
  .guide-next { padding: 2.5rem 0; }
  .guide-next__grid { gap: 1rem; }
  .feature-card__gradient { height: 140px; }
  .feature-card__body { padding: 1.25rem 1rem; }
  .fear-section__grid { gap: 1.5rem; }
}
