
  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-2: #1A1A1A;
    --dark-3: #242424;
    --dark-4: #2E2E2E;
    --white: #F5F0E8;
    --white-dim: rgba(245,240,232,0.7);
    --white-faint: rgba(245,240,232,0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    max-width: 1600px;
    margin: 0 auto;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }

  /* ── UTILITY ── */
  .gold { color: var(--gold); }
  .section-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.5rem 0;
  }
  .divider.center { margin: 1.5rem auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 120px; }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0;
    left: max(0px, calc(50vw - 800px));
    right: max(0px, calc(50vw - 800px));
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    height: 80px;
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.85) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: all 0.3s ease;
  }
  nav.scrolled {
    height: 80px;
    background: rgba(10,10,10,0.98);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-logo span { color: var(--gold); }
  .nav-logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black) !important;
    font-weight: 600 !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    letter-spacing: 0.1em;
    font-size: 0.68rem !important;
    transition: opacity 0.2s, transform 0.2s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); color: var(--black) !important; }

  /* ── NAV DROPDOWN ── */
  .nav-links li { position: relative; }
  .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 2px;
    padding: 0.5rem 0;
    min-width: 200px;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    z-index: 200;
  }
  .nav-links li:hover .nav-dropdown { display: block; }
  .nav-dropdown li { list-style: none; }
  .nav-dropdown a {
    display: block;
    padding: 0.55rem 1.25rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color 0.2s, background 0.2s;
  }
  .nav-dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
  .nav-dropdown a::after { display: none !important; }

  /* ── TICKER ── */
  .ticker {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 1rem 0;
    overflow: hidden;
    position: fixed;
    top: 80px;
    left: max(0px, calc(50vw - 800px));
    right: max(0px, calc(50vw - 800px));
    z-index: 99;
  }
  .ticker-track {
    display: flex;
    gap: 4rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  .ticker-item .metal { color: var(--gold); font-weight: 600; }
  .ticker-item .price { color: var(--white); }
  .ticker-item .change { color: #4ade80; font-size: 0.9rem; }
  .ticker-item .change.down { color: #f87171; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 4rem 6rem;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/extracted/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.55;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 100% at 0% 50%, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 60%, transparent 100%),
      linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.6) 100%);
  }
  .hero-grid {
    display: none;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before { content: '◆'; font-size: 0.5rem; }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--white-dim);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
  .btn-primary:hover::after { opacity: 1; }
  .btn-ghost {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--gold); }
  .btn-ghost::after { content: '→'; font-size: 0.9rem; }

  .hero-trust {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .trust-stat { text-align: center; }
  .trust-stat .number {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }
  .trust-stat .label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-top: 0.25rem;
  }
  .trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,0.25);
  }

  .hero-coin {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s 0.3s ease both;
  }
  .coin-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
    animation: pulse-ring 4s ease-in-out infinite;
  }
  .coin-ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
  .coin-ring:nth-child(2) { width: 80%; height: 80%; animation-delay: 0.7s; border-color: rgba(201,168,76,0.3); }
  @keyframes pulse-ring {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
  }
  .coin-center {
    width: 320px; height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
      0 0 80px rgba(201,168,76,0.4),
      0 0 160px rgba(201,168,76,0.15);
    animation: coin-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(201,168,76,0.3);
  }
  .coin-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  @keyframes coin-float {
    0%, 100% { transform: translateY(0); }
    33% { transform: translateY(-14px); }
    66% { transform: translateY(7px); }
  }
  .coin-inner { display: none; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ── TRUST BADGES ── */
  .trust-bar {
    background: var(--dark-2);
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-dim);
  }
  .trust-badge-icon {
    width: 32px; height: 32px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: var(--gold);
    flex-shrink: 0;
  }
  .trust-sep {
    width: 1px; height: 30px;
    background: rgba(201,168,76,0.15);
  }

  /* ── SECTIONS COMMON ── */
  section { padding: 7rem 4rem; }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .section-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-header h2 em { font-style: italic; color: var(--gold); }
  .section-header p {
    font-size: 0.88rem;
    color: var(--white-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
  }

  /* ── WHY INVEST ── */
  .why-invest {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .why-invest::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./images/extracted/why-invest-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.07;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.12);
  }
  .benefit-card {
    background: var(--dark);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .benefit-card:hover { background: var(--dark-2); }
  .benefit-card:hover::before { opacity: 1; }
  .benefit-icon {
    width: 50px; height: 50px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .benefit-card:hover .benefit-icon {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
  }
  .benefit-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
  }
  .benefit-card p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--white-dim);
  }

  /* ── HOW IT WORKS ── */
  .how-it-works {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./images/extracted/how-it-works-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
  }
  .steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
  }
  .steps-container::before {
    content: '';
    position: absolute;
    top: 3.5rem;
    left: calc(16.67% + 1.5rem);
    right: calc(16.67% + 1.5rem);
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    opacity: 0.3;
  }
  .step {
    text-align: center;
    position: relative;
  }
  .step-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(201,168,76,0.3), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }
  .step:hover .step-number {
    background: radial-gradient(circle at 35% 35%, rgba(201,168,76,0.5), rgba(201,168,76,0.15));
    box-shadow: 0 0 30px rgba(201,168,76,0.2);
  }
  .step h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  .step p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--white-dim);
  }
  .step-cta {
    margin-top: 4rem;
    text-align: center;
  }

  /* ── IRA OPTIONS ── */
  .ira-options { background: var(--dark); }
  .ira-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .ira-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .ira-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .ira-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: var(--dark-3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .ira-card:hover::after { transform: scaleX(1); }
  .ira-card.featured {
    border-color: rgba(201,168,76,0.3);
    background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  }
  .ira-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem; right: 1rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
  }
  .ira-metal {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .ira-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  .ira-card p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
  }
  .ira-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
  }
  .ira-link:hover { gap: 0.75rem; }
  .ira-link::after { content: '→'; }

  /* ── ENDORSEMENTS ── */
  .endorsements { background: var(--black); }
  .endorsers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .endorser-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
  }
  .endorser-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-3px);
  }
  .endorser-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold-dark));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 700;
    border: 2px solid rgba(201,168,76,0.3);
  }
  .endorser-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .endorser-title {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .endorser-quote {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--white-dim);
    font-style: italic;
    font-family: var(--serif);
  }
  .media-logos {
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.12);
    padding-top: 3rem;
  }
  .media-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
  }
  .media-names {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .media-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(245,240,232,0.25);
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .media-name:hover { color: rgba(245,240,232,0.5); }

  /* ── NEWS ── */
  .news { background: var(--dark); }
  .news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
  }
  .news-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .news-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }
  .news-card-img {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
  }
  .news-card:first-child .news-card-img { height: 240px; }
  .news-card:not(:first-child) .news-card-img { height: 140px; }
  .news-card-img .img-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
  }
  .news-card-body { padding: 1.5rem; }
  .news-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .news-card h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
  }
  .news-card:first-child h3 { font-size: 1.4rem; }
  .news-card:hover h3 { color: var(--gold-light); }
  .news-card p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--white-dim);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-meta {
    margin-top: 1rem;
    font-size: 0.65rem;
    color: rgba(245,240,232,0.35);
    letter-spacing: 0.05em;
  }

  /* ── FAQ ── */
  .faq {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./images/extracted/faq-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    overflow: hidden;
  }
  .faq-item {
    background: var(--dark);
    padding: 2.5rem;
    transition: background 0.2s;
    cursor: pointer;
  }
  .faq-item:hover { background: var(--dark-2); }
  .faq-item h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--white);
  }
  .faq-item h4::before {
    content: 'Q.';
    color: var(--gold);
    font-style: italic;
    flex-shrink: 0;
  }
  .faq-item p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--white-dim);
  }

  /* ── CTA SECTION ── */
  .cta-section {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./images/extracted/cta-section-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139,105,20,0.12) 0%, transparent 70%);
  }
  .cta-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .cta-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .cta-text h2 em { font-style: italic; color: var(--gold); }
  .cta-text p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--white-dim);
    margin-bottom: 2rem;
  }
  .cta-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-features li {
    font-size: 0.8rem;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cta-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
  }
  .cta-form {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 3rem;
  }
  .cta-form h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .cta-form .subtitle {
    font-size: 0.78rem;
    color: var(--white-dim);
    margin-bottom: 2rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }
  .form-group label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
  }
  .form-group input, .form-group select {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input:focus, .form-group select:focus {
    border-color: rgba(201,168,76,0.5);
  }
  .form-group input::placeholder { color: rgba(245,240,232,0.3); }
  .form-group select { appearance: none; cursor: pointer; }
  .form-group select option { background: var(--dark-3); }
  .form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }
  .form-submit:hover {
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
    transform: translateY(-2px);
  }
  .form-disclaimer {
    font-size: 0.62rem;
    color: rgba(245,240,232,0.3);
    line-height: 1.6;
    margin-top: 1rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 5rem 4rem 3rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .footer-brand .logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .footer-brand .logo span { color: var(--gold); }
  .footer-brand p {
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
    max-width: 280px;
  }
  .footer-contact-item {
    font-size: 0.78rem;
    color: var(--white-dim);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-contact-item a { transition: color 0.2s; }
  .footer-contact-item a:hover { color: var(--gold); }
  .footer-col h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a {
    font-size: 0.78rem;
    color: var(--white-dim);
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-copy {
    font-size: 0.7rem;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.05em;
  }
  .footer-legal {
    display: flex;
    gap: 2rem;
  }
  .footer-legal a {
    font-size: 0.68rem;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--gold); }

  .why-invest .section-header,
  .why-invest .benefits-grid,
  .how-it-works .section-header,
  .how-it-works .steps-container,
  .how-it-works .step-cta,
  .faq .section-header,
  .faq .faq-grid {
    position: relative;
    z-index: 1;
  }
  /* ── SCROLL ANIMATIONS ── */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ══════════════════════════════════════════════
     SHARED SUB-PAGE STYLES
  ══════════════════════════════════════════════ */

  /* ── EYEBROW LABEL ── */
  .eyebrow {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 160px 4rem 80px;
    background: var(--dark);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.25rem;
  }
  .page-hero p {
    font-size: 1rem;
    color: var(--white-dim);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.75;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── STAT BAR ── */
  .stat-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--dark-2);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    flex-wrap: wrap;
  }
  .stat-item {
    padding: 1.5rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(201,168,76,0.1);
  }
  .stat-item:last-child { border-right: none; }
  .stat-item .num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
  }
  .stat-item .label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-dim);
  }

  /* ── SECTIONS ── */
  .section {
    padding: 80px 4rem;
    background: var(--dark);
  }
  .section-alt {
    padding: 80px 4rem;
    background: var(--dark-2);
  }
  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .section-header h2 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .section-header p {
    font-size: 0.9rem;
    color: var(--white-dim);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
  }

  /* ── CARDS GRID ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .card {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
  }
  .card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-3px);
  }
  .card-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .card p {
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.7;
  }

  /* ── TWO COLUMN LAYOUT ── */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .text-col h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .text-col p {
    font-size: 0.88rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 0.9rem;
  }
  .actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  /* ── STEPS ── */
  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
  }
  .step-body h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .step-body p {
    font-size: 0.84rem;
    color: var(--white-dim);
    line-height: 1.7;
  }

  /* ── FAQ ── */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .faq-item summary {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    letter-spacing: 0.02em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p {
    font-size: 0.84rem;
    color: var(--white-dim);
    line-height: 1.8;
    padding-bottom: 1.25rem;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 3.5rem;
    text-align: center;
  }
  .cta-banner h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .cta-banner p {
    font-size: 0.9rem;
    color: var(--white-dim);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.75;
  }
  .cta-banner .actions { justify-content: center; }

  /* ── STYLED TABLE ── */
  .styled-table {
    width: 100%;
    border-collapse: collapse;
  }
  .styled-table th {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .styled-table td {
    font-size: 0.82rem;
    color: var(--white-dim);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    line-height: 1.5;
  }
  .styled-table tr:last-child td { border-bottom: none; }
  .styled-table tr:hover td { background: rgba(201,168,76,0.03); }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    transition: opacity 0.2s, transform 0.2s;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
  .btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    border: 1px solid rgba(245,240,232,0.25);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-brand .logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .footer-brand .logo span { color: var(--gold); }
  .footer-brand p {
    font-size: 0.78rem;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
  .footer-contact-item {
    font-size: 0.78rem;
    color: var(--white-dim);
    margin-bottom: 0.4rem;
  }
  .footer-contact-item a { transition: color 0.2s; }
  .footer-contact-item a:hover { color: var(--gold); }
  .footer-col h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a {
    font-size: 0.78rem;
    color: var(--white-dim);
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copy {
    font-size: 0.7rem;
    color: rgba(245,240,232,0.35);
    letter-spacing: 0.05em;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-legal a {
    font-size: 0.7rem;
    color: rgba(245,240,232,0.35);
    transition: color 0.2s;
    letter-spacing: 0.05em;
  }
  .footer-legal a:hover { color: var(--gold); }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ── RESPONSIVE: TABLET (≤1024px) ── */
  @media (max-width: 1024px) {
    nav { padding: 0 2rem; }
    .section, .section-alt { padding: 70px 2.5rem; }
    .page-hero { padding: 130px 2.5rem 70px; }
    .cards-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.25rem !important; }
    .footer-top { grid-template-columns: 1fr 1fr; padding: 3rem 2rem; gap: 2rem; }
    .two-col { gap: 2rem; }
    .nav-links { gap: 1.25rem; }
    .nav-links a { font-size: 0.65rem; letter-spacing: 0.08em; }
  }

  /* ── RESPONSIVE: MOBILE NAV (≤768px) ── */
  @media (max-width: 768px) {
    nav { padding: 0 1.25rem; height: 60px; }
    nav.scrolled { height: 60px; }
    .nav-hamburger { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: rgba(10,10,10,0.98);
      backdrop-filter: blur(16px);
      flex-direction: column;
      align-items: stretch;
      padding: 1rem 1.5rem 1.5rem;
      gap: 0;
      border-top: 1px solid rgba(201,168,76,0.2);
      z-index: 105;
    }
    .nav-links.open { display: flex; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a {
      display: block;
      padding: 0.9rem 0;
      font-size: 1.05rem;
      letter-spacing: 0.04em;
      color: var(--white);
      border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .nav-links > li:last-child > a { border-bottom: none; }
    .nav-links > li > a::after { display: none !important; }
    .nav-dropdown { display: none !important; }
    .nav-cta { margin-top: 0.75rem; width: 100%; text-align: center; padding: 0.85rem 0; border: 1px solid rgba(201,168,76,0.4); border-radius: 2px; font-size: 0.8rem !important; letter-spacing: 0.12em !important; background: none; }
    .section, .section-alt { padding: 60px 1.5rem; }
    .page-hero { padding: 130px 1.5rem 40px; }
    .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .two-col { grid-template-columns: 1fr !important; gap: 2rem; }
    .cards-grid { grid-template-columns: 1fr !important; }
    .product-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .product-card { padding: 0 !important; overflow: hidden !important; border-radius: 4px !important; }
    .product-icon { margin: 0 !important; height: 200px !important; overflow: hidden !important; border-radius: 0 !important; display: block !important; width: 100% !important; }
    .product-icon img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
    .product-card h3, .product-card p, .product-purity, .product-tag, .product-card .actions { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
    .product-card h3 { padding-top: 1.25rem !important; }
    .product-card p:last-of-type { padding-bottom: 1.25rem !important; }
    .reviews-grid { grid-template-columns: 1fr !important; }
    .value-grid { grid-template-columns: 1fr !important; }
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
    .platform-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .faq-grid { grid-template-columns: 1fr !important; }
    .footer-top { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.5rem; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
    .footer-legal { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
    .cta-banner { padding: 2rem 1.5rem; }
    .cta-banner .actions { flex-direction: column; align-items: center; gap: 0.75rem; }
    .steps { gap: 1.5rem; }
    .comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .section-inner table { min-width: 0; width: 100%; }
    .section-inner { overflow-x: hidden; }
    .visual-col { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .styled-table { font-size: 0.7rem !important; }
    .styled-table th, .styled-table td { padding: 0.5rem 0.6rem !important; word-break: break-word; }
    /* Benefit card icons - ensure images show, not icon size */
    .benefit-icon { width: auto !important; display: block !important; }
    /* Review card mobile */
    .review-card { padding: 1.5rem !important; }
    /* Ticker fallback */
    .ticker { top: 60px; }
    /* CTA form section */
    .cta-inner { grid-template-columns: 1fr !important; gap: 2rem; padding: 3rem 1.5rem; }
    .cta-form { padding: 1.75rem 1.25rem; }
    .form-row { grid-template-columns: 1fr !important; gap: 0; }
    .cta-section { padding: 0; }
  }

  /* ── RESPONSIVE: SMALL MOBILE (≤480px) ── */
  @media (max-width: 480px) {
    nav { padding: 0 1rem; }
    .section, .section-alt { padding: 50px 1rem; }
    .page-hero { padding: 125px 1rem 40px; }
    .page-hero h1 { font-size: 1.5rem; }
    .cards-grid { grid-template-columns: 1fr !important; }
    .product-grid { grid-template-columns: 1fr !important; }
    .team-grid { grid-template-columns: 1fr !important; }
    .platform-grid { grid-template-columns: 1fr !important; }
    .reviews-grid { grid-template-columns: 1fr !important; }
    .footer-top { grid-template-columns: 1fr; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .faq-nav { flex-wrap: wrap; gap: 0.5rem; }
    .job-tags { flex-wrap: wrap; }
    .section-inner h2 { font-size: 1.5rem; }
    .badge-row { justify-content: center; }
  }

  /* ── RESPONSIVE: LANDSCAPE PHONE (narrow landscape) ── */
  @media (max-width: 1024px) and (orientation: landscape) and (max-height: 500px) {
    nav { padding: 0 1rem; height: 56px; }
    nav.scrolled { height: 56px; }
    .nav-links { gap: 0.75rem; }
    .nav-links a { font-size: 0.6rem; letter-spacing: 0.05em; }
    .ticker { top: 56px; }
    .page-hero { padding: 80px 2rem 30px; }
    .page-hero h1 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
    .section, .section-alt { padding: 40px 2rem; }
    .two-col { grid-template-columns: 1fr 1fr !important; gap: 1.5rem; }
    .product-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
  }
