    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=DM+Mono:ital,wght@0,400;0,500;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

    :root {
      --bg-dark: #120B1F;
      --bg-hero: #0D0F1A;
      --card-dark: #1B132B;
      --gold: #D7A84E;
      --gold-light: #F0D9A4;
      --sage: #86A58C;
      --sage-light: #D8E6D8;
      --cream: #F6EBDD;
      --muted: #B7AEC4;
      --light-bg: #F7F4FB;
      --problem-bg: #F7F5F1;
      --white: #FFFFFF;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --font-mono: 'DM Mono', ui-monospace, monospace;
      --radius: 16px;
      --radius-sm: 10px;
      --header-h: 72px;
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--cream);
      background: var(--bg-dark);
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; }
    ul { margin: 0; padding: 0; list-style: none; }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .skip-link:focus {
      position: fixed;
      left: 16px;
      top: 16px;
      width: auto;
      height: auto;
      z-index: 10000;
      padding: 12px 20px;
      background: var(--gold);
      color: var(--bg-hero);
      border-radius: 8px;
    }

    /* —— Header —— */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--header-h);
      display: flex;
      align-items: center;
      background: rgba(18, 11, 31, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(215, 168, 78, 0.12);
      transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
    }
    .site-header.is-scrolled {
      background: rgba(13, 15, 26, 0.96);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    }
    .header-inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .brand img.icon {
      width: 36px;
      height: 36px;
      border-radius: 6px;
    }
    .brand--image .brand-logo {
      height: 40px;
      width: auto;
      max-width: min(200px, 42vw);
      object-fit: contain;
      display: block;
    }
    @media (min-width: 768px) {
      .brand--image .brand-logo { height: 44px; max-width: 220px; }
    }
    .wordmark {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .wordmark .w-mac, .wordmark .w-sales { color: var(--white); }
    .wordmark .w-n { color: var(--gold); }

    .nav-desktop {
      display: none;
      align-items: center;
      gap: 28px;
    }
    @media (min-width: 1024px) {
      .nav-desktop { display: flex; }
    }
    .nav-desktop .nav-toplink,
    .nav-desktop .nav-dd-parent {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted);
      position: relative;
      padding: 8px 0;
      transition: color 0.2s;
    }
    .nav-desktop .nav-toplink::after,
    .nav-desktop .nav-dd-parent::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transition: width 0.3s var(--ease);
    }
    .nav-desktop .nav-toplink:hover,
    .nav-desktop .nav-dd-parent:hover { color: var(--cream); }
    .nav-desktop .nav-toplink:hover::after,
    .nav-desktop .nav-dd-parent:hover::after { width: 100%; }

    .nav-item-dd {
      position: relative;
      padding-bottom: 4px;
    }
    .nav-dropdown-panel {
      position: absolute;
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      top: 100%;
      min-width: 220px;
      padding: 12px 0;
      background: var(--card-dark);
      border: 1px solid rgba(215, 168, 78, 0.25);
      border-radius: var(--radius-sm);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
      z-index: 1200;
    }
    .nav-dropdown-panel a {
      display: block;
      padding: 10px 20px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--cream);
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown-panel a:hover {
      background: rgba(215, 168, 78, 0.12);
      color: var(--gold-light);
    }
    .nav-item-dd:hover .nav-dropdown-panel,
    .nav-item-dd:focus-within .nav-dropdown-panel {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-panel-dd {
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: 0;
    }
    .nav-panel-dd summary {
      list-style: none;
      padding: 14px 0;
      font-weight: 600;
      color: var(--cream);
      cursor: pointer;
    }
    .nav-panel-dd summary::-webkit-details-marker { display: none; }
    .nav-panel-dd[open] summary { color: var(--gold); }
    .nav-panel-dd a {
      display: block;
      padding: 10px 0 10px 14px;
      font-size: 0.9rem;
      color: var(--muted);
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
    .nav-panel-dd a:hover { color: var(--gold-light); }

    .btn-cta-header {
      display: none;
      padding: 12px 22px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.85rem;
      background: var(--gold);
      color: var(--bg-hero);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    @media (min-width: 1024px) {
      .btn-cta-header { display: inline-flex; align-items: center; gap: 8px; }
    }
    .btn-cta-header:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(215, 168, 78, 0.35);
    }

    .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 44px;
      height: 44px;
      background: transparent;
      padding: 8px;
      border-radius: 8px;
      border: 1px solid rgba(215, 168, 78, 0.25);
    }
    @media (min-width: 1024px) {
      .menu-toggle { display: none; }
    }
    .menu-toggle span {
      display: block;
      height: 2px;
      background: var(--cream);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-overlay {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      top: var(--header-h);
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
      z-index: 1001;
    }
    body.nav-open .nav-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(320px, 88vw);
      height: 100vh;
      background: var(--card-dark);
      z-index: 1002;
      padding: calc(var(--header-h) + 24px) 28px 32px;
      transform: translateX(100%);
      transition: transform 0.4s var(--ease);
      border-left: 1px solid rgba(215, 168, 78, 0.15);
      box-shadow: -12px 0 40px rgba(0, 0, 0, 0.4);
    }
    body.nav-open .nav-panel { transform: translateX(0); }
    .nav-panel a {
      display: block;
      padding: 14px 0;
      font-weight: 600;
      color: var(--cream);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-panel a:hover { color: var(--gold); }
    .nav-panel .btn-cta-header {
      display: inline-flex;
      margin-top: 24px;
      width: 100%;
      justify-content: center;
    }

    main { padding-top: var(--header-h); }

    /* —— Sections shared —— */
    .section {
      position: relative;
      padding: 88px 20px;
    }
    @media (min-width: 768px) {
      .section { padding: 112px 32px; }
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: inline-block;
    }
    .section-label.on-light { color: #9a7a3a; }
    h2.section-title {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 4.5vw, 3rem);
      font-weight: 600;
      line-height: 1.15;
      margin: 0 0 16px;
      color: var(--cream);
    }
    .section.light h2.section-title { color: #1a1428; }
    .section-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 720px;
      margin: 0 0 40px;
    }
    .section.light .section-sub { color: #5c5368; }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .accent-line {
      position: relative;
      display: inline-block;
    }
    .accent-line::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--gold), var(--sage));
      border-radius: 2px;
      transition: width 0.9s var(--ease);
    }
    .reveal.is-visible .accent-line::after { width: 100%; }

    /* —— Hero —— */
    .hero {
      min-height: calc(100vh - var(--header-h));
      background: var(--bg-hero);
      display: flex;
      align-items: center;
      padding: 48px 20px 72px;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .hero-circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.12;
    }
    .hero-circle.c1 {
      width: min(480px, 90vw);
      height: min(480px, 90vw);
      background: var(--sage);
      top: -12%;
      right: -8%;
      animation: spin-slow 60s linear infinite;
    }
    .hero-circle.c2 {
      width: min(360px, 70vw);
      height: min(360px, 70vw);
      background: var(--gold);
      bottom: -15%;
      left: -10%;
      animation: spin-slow 60s linear infinite reverse;
    }
    .hero-circle.c3 {
      width: 200px;
      height: 200px;
      border: 2px solid var(--sage-light);
      opacity: 0.08;
      top: 40%;
      left: 35%;
      animation: spin-slow 90s linear infinite;
    }
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .hero-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    @media (min-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
    }

    .hero-copy .section-label { margin-bottom: 18px; }
    .hero h1 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(2.5rem, 6vw, 4rem);
      line-height: 1.08;
      margin: 0 0 20px;
    }
    .hero h1 .line1 { color: var(--cream); display: block; }
    .hero h1 .line2 { color: var(--gold); font-style: italic; display: block; }
    .hero h1 .line3 { color: var(--white); font-weight: 700; display: block; }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
      margin: 0 0 32px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 40px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      background: var(--gold);
      color: var(--bg-hero);
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.45) 50%, transparent 60%);
      background-size: 200% 100%;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .btn-primary:hover::before {
      opacity: 1;
      animation: shimmer 1.2s ease infinite;
    }
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(215, 168, 78, 0.35);
    }
    .btn-ghost {
      background: transparent;
      color: var(--cream);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: underline;
      text-underline-offset: 6px;
      text-decoration-color: var(--gold);
      padding: 8px 0;
    }
    .btn-ghost:hover { color: var(--gold-light); }

    .hero-visual {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(215, 168, 78, 0.2);
      background: var(--card-dark);
      aspect-ratio: 4/3;
      position: relative;
    }
    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-visual .ph {
      width: 100%;
      height: 100%;
      background: linear-gradient(145deg, var(--card-dark) 0%, #2a1f42 50%, var(--card-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 0.85rem;
      padding: 24px;
      text-align: center;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    @media (min-width: 768px) {
      .hero-stats { grid-template-columns: repeat(4, 1fr); }
    }
    .stat-box {
      background: rgba(27, 19, 43, 0.85);
      border: 1px solid rgba(215, 168, 78, 0.15);
      border-radius: var(--radius-sm);
      padding: 18px 16px;
      text-align: center;
    }
    .stat-box .num {
      font-family: var(--font-mono);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--gold-light);
      display: block;
      margin-bottom: 6px;
    }
    .stat-box .lbl {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.35;
    }

    /* —— Problem —— */
    .section.problem {
      background: var(--problem-bg);
      color: #1a1428;
    }
    .problem-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) {
      .problem-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .problem-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 24px;
      border: 1px solid rgba(26, 20, 40, 0.06);
      box-shadow: 0 4px 24px rgba(18, 11, 31, 0.06);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .problem-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(18, 11, 31, 0.1);
    }
    .problem-card .ico { font-size: 1.75rem; margin-bottom: 12px; }
    .problem-card h3 {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 700;
      margin: 0 0 10px;
      color: #1a1428;
    }
    .problem-card p {
      margin: 0;
      font-size: 0.92rem;
      color: #5c5368;
      line-height: 1.55;
    }
    .problem-closing {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 3vw, 1.85rem);
      font-style: italic;
      font-weight: 600;
      color: #1a1428;
      text-align: center;
      margin: 48px auto 0;
      max-width: 800px;
      line-height: 1.35;
    }

    /* —— Solution —— */
    .section.solution { background: var(--bg-dark); }
    .pillars {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
      align-items: stretch;
    }
    @media (min-width: 992px) {
      .pillars { grid-template-columns: 1fr 1.08fr 1fr; align-items: stretch; }
    }
    .pillar {
      background: var(--card-dark);
      border-radius: var(--radius);
      padding: 28px;
      border-top: 4px solid var(--sage);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, border-color 0.25s;
    }
    .pillar:hover { transform: translateY(-4px); }
    .pillar.gold-top { border-top-color: var(--gold); }
    .pillar.cream-top { border-top-color: var(--cream); }
    .pillar.featured {
      transform: scale(1.02);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }
    @media (max-width: 991px) {
      .pillar.featured { transform: none; }
    }
    .pillar-badge {
      display: inline-block;
      align-self: flex-start;
      font-size: 0.65rem;
      font-family: var(--font-mono);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--bg-hero);
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .pillar-num {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .pillar h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      margin: 0 0 12px;
      color: var(--cream);
    }
    .pillar p.lead { color: var(--muted); font-size: 0.95rem; margin: 0 0 16px; }
    .pillar ul.feat {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .pillar ul.feat li {
      font-size: 0.82rem;
      color: var(--muted);
      padding: 6px 0;
      padding-left: 18px;
      position: relative;
    }
    .pillar ul.feat li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.85em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.7;
    }

    /* —— How it works —— */
    .section.how { background: var(--light-bg); color: #1a1428; }
    .steps-wrap {
      display: grid;
      gap: 32px;
    }
    @media (min-width: 900px) {
      .steps-wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
      }
      .steps-wrap::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold));
        opacity: 0.35;
        z-index: 0;
      }
    }
    .step {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    @media (min-width: 900px) {
      .step { text-align: left; padding-right: 12px; }
    }
    .step-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-weight: 600;
      font-size: 1.1rem;
      margin: 0 auto 16px;
      background: var(--card-dark);
      color: var(--gold);
      border: 2px solid var(--gold);
    }
    @media (min-width: 900px) {
      .step-circle { margin: 0 0 16px; }
    }
    .step h3 {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 700;
      margin: 0 0 10px;
      color: #1a1428;
    }
    .step p {
      margin: 0;
      font-size: 0.9rem;
      color: #5c5368;
      line-height: 1.55;
    }
    .how-visual {
      margin-top: 48px;
      border-radius: var(--radius);
      overflow: hidden;
      max-height: 380px;
      border: 1px solid rgba(18, 11, 31, 0.08);
    }
    .how-visual img { width: 100%; height: 100%; object-fit: cover; max-height: 380px; }

    /* —— Who we serve —— */
    .section.serve { background: var(--bg-hero); }
    .pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--card-dark);
      border: 1px solid rgba(215, 168, 78, 0.2);
      font-size: 0.85rem;
      color: var(--cream);
      transition: background 0.2s, border-color 0.2s;
    }
    .pill:hover {
      background: rgba(215, 168, 78, 0.12);
      border-color: var(--gold);
    }
    .serve-note {
      text-align: center;
      margin-top: 40px;
      color: var(--muted);
      font-size: 1rem;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .serve-note strong { color: var(--gold-light); }

    /* —— Results —— */
    .section.results { background: var(--problem-bg); color: #1a1428; }
    .results-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 48px;
    }
    @media (min-width: 768px) {
      .results-stats { grid-template-columns: repeat(5, 1fr); }
    }
    .big-stat {
      background: var(--white);
      border-radius: var(--radius);
      padding: 24px 16px;
      text-align: center;
      border: 1px solid rgba(18, 11, 31, 0.06);
      transition: transform 0.2s;
    }
    .big-stat:hover { transform: translateY(-3px); }
    .big-stat .n {
      font-family: var(--font-mono);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 500;
      color: #9a7a3a;
      display: block;
      margin-bottom: 8px;
    }
    .big-stat .d {
      font-size: 0.78rem;
      color: #5c5368;
      line-height: 1.35;
    }
    .case-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) {
      .case-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .case-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(18, 11, 31, 0.06);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.25s;
    }
    .case-card:hover { box-shadow: 0 16px 40px rgba(18, 11, 31, 0.1); }
    .case-card .thumb {
      height: 160px;
      background: var(--light-bg);
    }
    .case-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
    .case-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
    .case-meta {
      font-size: 0.75rem;
      font-family: var(--font-mono);
      color: #9a7a3a;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }
    .case-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      margin: 0 0 12px;
      color: #1a1428;
    }
    .case-card .before-after {
      font-size: 0.88rem;
      color: #5c5368;
      margin-bottom: 12px;
    }
    .case-card .result-line {
      font-weight: 600;
      color: #1a1428;
      margin-bottom: 12px;
      font-size: 0.92rem;
    }
    .case-card blockquote {
      margin: 0;
      padding-left: 14px;
      border-left: 3px solid var(--gold);
      font-style: italic;
      font-size: 0.88rem;
      color: #5c5368;
      line-height: 1.5;
    }
    .guarantee-inline {
      margin-top: 48px;
      background: var(--card-dark);
      border: 2px solid var(--gold);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
      color: var(--cream);
    }
    .guarantee-inline p {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2.5vw, 1.45rem);
      font-style: italic;
      line-height: 1.45;
    }

    /* —— Pricing —— */
    .section.pricing { background: var(--bg-dark); }
    .price-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 992px) {
      .price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
    }
    .price-card {
      background: var(--card-dark);
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .price-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    }
    .price-card.popular {
      border: 2px solid var(--gold);
      position: relative;
    }
    .price-card .pop-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--bg-hero);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 999px;
      font-family: var(--font-mono);
    }
    .price-label {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .price-tag {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 600;
      color: var(--gold-light);
      margin: 0 0 4px;
    }
    .price-period { font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
    .price-old {
      font-size: 0.85rem;
      color: var(--muted);
      text-decoration: line-through;
      margin-bottom: 20px;
    }
    .price-card ul { flex: 1; margin-bottom: 20px; }
    .price-card ul li {
      font-size: 0.88rem;
      color: var(--cream);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding-left: 22px;
      position: relative;
    }
    .price-card ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--sage);
      font-weight: 700;
    }
    .price-promise {
      font-size: 0.82rem;
      color: var(--gold);
      font-weight: 600;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(215, 168, 78, 0.2);
    }
    .pricing-footnote {
      text-align: center;
      margin-top: 36px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    /* —— Guarantee block —— */
    .section.guarantee {
      background: var(--sage);
      color: var(--bg-dark);
    }
    .guarantee-inner {
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
    }
    .shield-ico {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      color: var(--bg-dark);
    }
    .section.guarantee h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin: 0 0 20px;
      color: var(--bg-dark);
    }
    .guarantee-quote {
      font-family: var(--font-display);
      font-size: clamp(1.15rem, 2.5vw, 1.5rem);
      font-style: italic;
      line-height: 1.45;
      margin: 0 0 20px;
      color: #0d0a14;
    }
    .guarantee-small {
      font-size: 0.88rem;
      color: #2a2438;
      line-height: 1.6;
      margin: 0;
    }

    /* —— Who we are —— */
    .section.about { background: var(--problem-bg); color: #1a1428; }
    .about-grid {
      display: grid;
      gap: 40px;
      align-items: start;
    }
    @media (min-width: 900px) {
      .about-grid { grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
    }
    .about-prose p {
      margin: 0 0 18px;
      font-size: 1rem;
      color: #3d3649;
      line-height: 1.65;
    }
    .trust-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .trust-box {
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 20px;
      border: 1px solid rgba(18, 11, 31, 0.08);
      transition: transform 0.2s;
    }
    .trust-box:hover { transform: translateY(-2px); }
    .trust-box .ti { font-size: 1.5rem; margin-bottom: 8px; }
    .trust-box h4 {
      margin: 0 0 6px;
      font-size: 1rem;
      font-weight: 700;
      color: #1a1428;
    }
    .trust-box p { margin: 0; font-size: 0.85rem; color: #5c5368; }
    .about-visual {
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 24px;
      max-height: 320px;
    }
    .about-visual img { width: 100%; object-fit: cover; max-height: 320px; }

    /* —— FAQ —— */
    .section.faq { background: var(--bg-hero); }
    .faq-layout {
      display: grid;
      gap: 40px;
    }
    @media (min-width: 900px) {
      .faq-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
    }
    .faq-list { border-top: 1px solid rgba(255, 255, 255, 0.08); }
    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .faq-q {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 0;
      background: none;
      color: var(--cream);
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
    }
    .faq-q:hover { color: var(--gold-light); }
    .faq-q span.ico {
      font-family: var(--font-mono);
      font-size: 1.25rem;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item.is-open .faq-q span.ico { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s var(--ease);
    }
    .faq-item.is-open .faq-a { max-height: 1200px; }
    .faq-a-inner {
      padding: 0 0 20px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 640px;
    }

    /* —— Contact —— */
    .section.contact {
      background: var(--bg-hero);
      position: relative;
      overflow: hidden;
    }
    .contact-bg .hero-circle { opacity: 0.08; }
    .contact-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
    .contact-inner .wordmark { justify-content: center; font-size: 1.75rem; margin-bottom: 24px; }
    .contact-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      margin: 0 0 16px;
      color: var(--cream);
    }
    .contact-inner > p.sub { color: var(--muted); margin: 0 0 28px; font-size: 1.02rem; }
    .contact-form-wrap {
      background: var(--card-dark);
      border-radius: var(--radius);
      padding: 28px 22px;
      margin-top: 40px;
      text-align: left;
      border: 1px solid rgba(215, 168, 78, 0.15);
    }
    .form-row { margin-bottom: 18px; }
    .form-row label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(13, 15, 26, 0.6);
      color: var(--cream);
      font-family: var(--font-body);
      font-size: 1rem;
    }
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(215, 168, 78, 0.15);
    }
    .form-row textarea { min-height: 120px; resize: vertical; }
    .form-error {
      color: #e8a598;
      font-size: 0.8rem;
      margin-top: 6px;
      display: none;
    }
    .form-row.has-error .form-error { display: block; }
    .form-row.has-error input,
    .form-row.has-error select,
    .form-row.has-error textarea { border-color: #c75c5c; }
    .form-success {
      display: none;
      padding: 16px;
      background: rgba(134, 165, 140, 0.2);
      border: 1px solid var(--sage);
      border-radius: var(--radius-sm);
      color: var(--sage-light);
      margin-bottom: 20px;
      text-align: center;
    }
    .form-success.is-on { display: block; }
    .contact-links {
      margin-top: 24px;
      font-size: 0.95rem;
      color: var(--muted);
    }
    .contact-inner .brand-logo {
      height: 48px;
      width: auto;
      max-width: min(240px, 70vw);
      object-fit: contain;
      margin: 0 auto;
    }
    .respond-badge {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 18px;
      background: var(--sage);
      color: var(--bg-dark);
      font-size: 0.82rem;
      font-weight: 600;
      border-radius: 999px;
    }

    /* —— Footer (matches header: dark glass) —— */
    .site-footer {
      background-color: #120B1F;
      padding: 0;
      margin: 0;
      border: none;
    }
    .footer-main {
      background-color: #120B1F;
      background: rgba(18, 11, 31, 0.98);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 56px 20px 48px;
      border-top: 1px solid rgba(215, 168, 78, 0.12);
    }
    .footer-grid--light {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 40px;
      grid-template-columns: 1fr;
      text-align: left;
      color: var(--cream);
    }
    @media (min-width: 900px) {
      .footer-grid--light {
        grid-template-columns: 1.2fr 0.9fr 1fr;
        gap: 48px;
      }
    }
    .footer-brand-logo {
      max-width: 200px;
      height: auto;
      display: block;
      margin-bottom: 16px;
    }
    .footer-about-text {
      font-size: 0.92rem;
      line-height: 1.65;
      color: var(--muted);
      margin: 0 0 20px;
      max-width: 340px;
    }
    .footer-contact-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.9rem;
      color: var(--muted);
    }
    .footer-contact-row .fi {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(215, 168, 78, 0.15);
      color: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.85rem;
    }
    .footer-contact-row a {
      color: var(--gold-light);
      font-weight: 600;
    }
    .footer-contact-row a:hover { color: var(--gold); }
    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }
    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(215, 168, 78, 0.22);
      color: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
    }
    .footer-social a:hover {
      background: var(--gold);
      color: var(--bg-hero);
      border-color: var(--gold);
      transform: translateY(-2px);
    }
    .footer-col-title {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 700;
      margin: 0 0 18px;
      color: var(--cream);
    }
    .footer-links--arrows {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links--arrows a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 500;
      transition: color 0.2s, transform 0.2s;
    }
    .footer-links--arrows a span {
      font-size: 0.75rem;
      opacity: 0.55;
      color: var(--gold);
    }
    .footer-links--arrows a:hover {
      color: var(--gold-light);
      transform: translateX(4px);
    }
    .footer-office-row {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .footer-map {
      margin-top: 8px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      background-color: #000000;
      background-image: radial-gradient(circle at 50% 50%, rgba(215, 168, 78, 0.06) 0%, transparent 55%);
      border: 1px solid rgba(215, 168, 78, 0.12);
      padding: 12px;
      min-height: 100px;
    }
    .footer-map img {
      width: 100%;
      height: auto;
      display: block;
    }
    .footer-bar {
      background: rgba(13, 15, 26, 0.96);
      border-top: 1px solid rgba(215, 168, 78, 0.1);
      padding: 16px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px 24px;
      font-size: 0.82rem;
      color: var(--muted);
    }
    @media (min-width: 768px) {
      .footer-bar {
        justify-content: space-between;
      }
    }
    .footer-bar a {
      color: var(--cream);
      margin-left: 16px;
    }
    .footer-bar a:hover { color: var(--gold); }
    .footer-bar-left { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
    .footer-bar-right { display: flex; align-items: center; gap: 8px; }
    .back-to-top {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(215, 168, 78, 0.35);
      background: rgba(255, 255, 255, 0.06);
      color: var(--cream);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: background 0.2s, transform 0.2s;
    }
    .back-to-top:hover {
      background: var(--gold);
      color: var(--bg-hero);
      transform: translateY(-2px);
    }

    /* —— Multi-page: nav active + inner page hero —— */
    .nav-desktop .nav-toplink.is-active,
    .nav-desktop .nav-dd-parent.is-active,
    .nav-panel a.is-active {
      color: var(--gold-light);
    }
    .nav-desktop .nav-toplink.is-active::after,
    .nav-desktop .nav-dd-parent.is-active::after {
      width: 100%;
    }

    .page-intro {
      position: relative;
      min-height: min(52vh, 420px);
      padding: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      text-align: center;
      border-bottom: none;
      overflow: hidden;
      background: var(--bg-hero);
    }
    .page-intro--banner {
      align-items: center;
      min-height: min(56vh, 480px);
    }
    .page-intro--banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--page-banner-img);
      background-size: cover;
      background-position: center;
      transform: scale(1.03);
      filter: brightness(0.42) saturate(0.92);
    }
    .page-intro--banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 85% 70% at 50% 45%, rgba(13, 15, 26, 0.2) 0%, rgba(8, 10, 18, 0.75) 72%, rgba(5, 6, 12, 0.92) 100%),
        linear-gradient(to bottom, rgba(5, 8, 16, 0.55) 0%, rgba(13, 15, 26, 0.25) 45%, rgba(13, 15, 26, 0.88) 100%);
    }
    .page-intro .section-inner {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 100px 20px 48px;
    }
    .page-intro--banner .section-inner {
      padding: 64px 20px;
    }
    .page-intro h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3.25rem);
      font-weight: 600;
      color: var(--cream);
      margin: 0 0 12px;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
    }
    .page-intro .lead {
      color: var(--muted);
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.6;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-intro--banner .lead {
      color: rgba(245, 240, 232, 0.88);
      text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
    }
    .page-intro .breadcrumb {
      color: var(--gold-light);
      margin-bottom: 16px;
    }
    .page-intro .breadcrumb a {
      color: inherit;
    }
    .page-intro--plain {
      background: var(--problem-bg);
      min-height: auto;
    }
    .page-intro--plain::before,
    .page-intro--plain::after {
      display: none;
    }
    .page-intro--plain h1 {
      color: #1a1428;
      text-shadow: none;
    }
    .page-intro--plain .lead {
      color: #5c5368;
    }
    .page-intro--plain .breadcrumb {
      color: #9a7a3a;
    }
    .breadcrumb {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 16px;
      color: #9a7a3a;
    }
    .breadcrumb a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 4px;
    }
    .breadcrumb a:hover {
      color: var(--cream);
    }
    .page-intro--plain .breadcrumb a:hover {
      color: #1a1428;
    }

    .cta-consult {
      background: linear-gradient(135deg, #2a1f42 0%, var(--card-dark) 50%, #1a1428 100%);
      border-top: 1px solid rgba(215, 168, 78, 0.2);
      border-bottom: 1px solid rgba(215, 168, 78, 0.15);
      padding: 36px 20px;
      text-align: center;
    }
    .cta-consult .inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .cta-consult h2 {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 3vw, 2rem);
      color: var(--cream);
      margin: 0 0 10px;
    }
    .cta-consult p {
      color: var(--muted);
      margin: 0 0 20px;
      font-size: 0.98rem;
    }

    .home-metrics {
      background: var(--bg-hero);
      padding: 64px 20px;
    }
    .home-metrics-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    @media (min-width: 768px) {
      .home-metrics-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .home-metric {
      background: var(--card-dark);
      border: 1px solid rgba(215, 168, 78, 0.15);
      border-radius: var(--radius);
      padding: 28px 16px;
      text-align: center;
    }
    .home-metric .big {
      font-family: var(--font-mono);
      font-size: clamp(1.75rem, 4vw, 2.35rem);
      color: var(--gold-light);
      display: block;
      margin-bottom: 8px;
    }
    .home-metric .lbl {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.4;
    }
    .home-split {
      background: var(--light-bg);
      padding: 72px 20px;
    }
    .home-split-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      gap: 36px;
      align-items: center;
    }
    @media (min-width: 900px) {
      .home-split-inner { grid-template-columns: 1fr 1fr; }
    }
    .home-split h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: #1a1428;
      margin: 0 0 16px;
    }
    .home-split p {
      color: #5c5368;
      line-height: 1.65;
      margin: 0 0 14px;
    }
    .home-checks {
      list-style: none;
      margin: 20px 0 0;
      padding: 0;
    }
    .home-checks li {
      padding: 10px 0 10px 28px;
      position: relative;
      color: #3d3649;
      font-weight: 500;
    }
    .home-checks li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--sage);
      font-weight: 700;
    }
    .home-testimonials {
      background: var(--problem-bg);
      padding: 72px 20px;
    }
    .home-testimonials h2 {
      font-family: var(--font-display);
      text-align: center;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: #1a1428;
      margin: 0 0 12px;
    }
    .home-testimonials .sub {
      text-align: center;
      color: #5c5368;
      max-width: 560px;
      margin: 0 auto 36px;
    }
    .home-t-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
      .home-t-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .home-t-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 24px;
      border: 1px solid rgba(18, 11, 31, 0.06);
      box-shadow: 0 8px 28px rgba(18, 11, 31, 0.06);
    }
    .home-t-card blockquote {
      margin: 0 0 16px;
      font-style: italic;
      color: #4a425c;
      font-size: 0.95rem;
      line-height: 1.55;
    }
    .home-t-card .who {
      font-weight: 700;
      color: #1a1428;
      font-size: 0.88rem;
    }
    .home-t-card .role {
      font-size: 0.78rem;
      color: #9a7a3a;
      margin-top: 4px;
    }
    .home-logos {
      background: #fff;
      padding: 40px 20px;
      border-top: 1px solid rgba(18, 11, 31, 0.06);
    }
    .home-logos p {
      text-align: center;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #9a7a3a;
      margin: 0 0 20px;
    }
    .home-logos-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px 40px;
      max-width: 900px;
      margin: 0 auto;
      opacity: 0.75;
    }
    .home-logos-row span {
      font-weight: 700;
      font-size: 1.05rem;
      color: #b5a8c9;
      letter-spacing: 0.08em;
    }

    .section.cta-mid {
      background: var(--bg-hero);
      text-align: center;
      padding: 64px 20px;
    }
    .section.cta-mid h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      font-weight: 600;
      margin: 0 0 16px;
      color: var(--cream);
    }
    .section.cta-mid p {
      color: var(--muted);
      margin: 0 0 24px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .section.resources-block {
      padding: 72px 20px;
    }
    .section.resources-block.light {
      background: var(--problem-bg);
      color: #1a1428;
    }
    .section.resources-block.dark {
      background: var(--bg-dark);
    }
    .section.resources-block h2 {
      font-family: var(--font-display);
      font-size: clamp(1.65rem, 3vw, 2.35rem);
      margin: 0 0 12px;
    }
    .section.resources-block.light h2 { color: #1a1428; }
    .section.resources-block.dark h2 { color: var(--cream); }
    .section.resources-block .intro {
      max-width: 640px;
      margin: 0 0 28px;
      line-height: 1.6;
    }
    .section.resources-block.light .intro { color: #5c5368; }
    .section.resources-block.dark .intro { color: var(--muted); }
    .resource-cards {
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
      .resource-cards { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .resource-cards.three { grid-template-columns: repeat(3, 1fr); }
    }
    .resource-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 22px;
      border: 1px solid rgba(18, 11, 31, 0.08);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .section.resources-block.dark .resource-card {
      background: var(--card-dark);
      border-color: rgba(215, 168, 78, 0.15);
    }
    .resource-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }
    .resource-card .tag {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #9a7a3a;
      margin-bottom: 8px;
    }
    .section.resources-block.dark .resource-card .tag { color: var(--gold); }
    .resource-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      margin: 0 0 10px;
      color: #1a1428;
    }
    .section.resources-block.dark .resource-card h3 { color: var(--cream); }
    .resource-card p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.55;
      color: #5c5368;
    }
    .section.resources-block.dark .resource-card p { color: var(--muted); }
    .resource-card a {
      display: inline-block;
      margin-top: 14px;
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--gold);
    }
    .resource-card a:hover { text-decoration: underline; }

    .brand-aliases {
      margin: 14px 0 0;
      max-width: 520px;
      font-size: 0.82rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.55);
    }
    .brand-aliases strong {
      color: rgba(255, 255, 255, 0.78);
      font-weight: 600;
    }

    .legal-doc-inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .legal-doc h2 {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2.2vw, 1.45rem);
      margin: 2rem 0 0.75rem;
      color: #1a1428;
    }
    .legal-doc h2:first-of-type {
      margin-top: 0;
    }
    .legal-doc p,
    .legal-doc li {
      font-size: 0.95rem;
      line-height: 1.65;
      color: #3d3649;
    }
    .legal-doc ul {
      margin: 0 0 1rem;
      padding-left: 1.25rem;
    }
    .legal-doc li {
      margin-bottom: 0.45rem;
    }
    .legal-doc a {
      color: #7a5a1f;
      font-weight: 600;
    }
    .legal-doc a:hover {
      text-decoration: underline;
    }
    .legal-lead {
      font-size: 1.02rem;
      line-height: 1.65;
      margin: 0 0 1.5rem;
      color: #2a2438;
    }
    .legal-disclaimer {
      margin-top: 2.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(18, 11, 31, 0.1);
      font-size: 0.88rem;
      color: #5c5368;
      line-height: 1.55;
    }