    /* =============================================
       TEMPLATE 3 — ZEONGROW PREMIUM GOLD
       Dark background · Gold accents · Flat/Solid
       ============================================= */

    :root {
      --bg:          #0d0a05;
      --bg-2:        #131008;
      --bg-3:        #1a1509;
      --surface:     #1e1a0e;
      --surface-2:   #252010;
      --border:      rgba(212, 168, 67, 0.18);
      --border-soft: rgba(255, 255, 255, 0.06);
      --text:        #f0e8d5;
      --muted:       #8a7a5e;
      --accent:      #d4a843;
      --accent-2:    #c9922a;
      --accent-dim:  rgba(212, 168, 67, 0.12);
      --red:         #e05252;
      --third-color: #d4a843;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: "Manrope", system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .hero-atmos {
      pointer-events: none;
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 100vw;
      height: min(100vh, 920px);
      height: min(100dvh, 920px);
      z-index: 0;
      overflow: hidden;
    }

    .hero-atmos__img {
      position: absolute;
      inset: -2px;
      background-image: url("../zeongrow/image.png");
      background-size: cover;
      background-position: center 20%;
      background-repeat: no-repeat;
      filter: brightness(0.28) saturate(0.55) sepia(0.3);
      transform: scale(1.04);
    }

    .hero-atmos__dark {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        170deg,
        rgba(13,10,5,0.88) 0%,
        rgba(13,10,5,0.72) 30%,
        rgba(13,10,5,0.52) 55%,
        rgba(13,10,5,0.92) 80%,
        var(--bg) 100%
      );
    }

    .hero-atmos__accent {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 55% at 72% 6%,  rgba(212,168,67,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 48%, rgba(201,146,42,0.08) 0%, transparent 50%);
    }

    .hero-atmos__edge {
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 140px rgba(0,0,0,0.7);
    }

    /* Flat style — no decorative noise/orbs */
    .noise { display: none; }
    .orb   { display: none; }

    .wrap {
      position: relative;
      z-index: 1;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    .wrap > header,
    .wrap > main {
      position: relative;
      z-index: 1;
    }

    /* ---- HEADER ---- */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0 44px;
      border-bottom: 1px solid var(--border);
    }

    .logo-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo {
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-img {
      display: block;
      height: 32px;
      width: auto;
      object-fit: contain;
    }

    .site-nav {
      display: none;
      align-items: center;
      gap: 28px;
    }

    .site-nav a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .site-nav a:hover,
    .site-nav a[aria-current="page"] {
      color: var(--accent);
    }

    @media (min-width: 960px) { .site-nav { display: flex; } }

    nav a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav a:hover { color: var(--text); }

    /* ---- BUTTONS ---- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .btn:active { transform: scale(0.98); }

    .btn-primary {
      background: var(--accent);
      color: #0d0a05;
      border-color: var(--accent);
    }

    .btn-primary:hover { background: #e0b84e; border-color: #e0b84e; }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      border-color: rgba(212,168,67,0.3);
    }

    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

    /* ---- HERO ---- */
    .hero {
      display: grid;
      gap: 48px;
      align-items: center;
      padding: 56px 0 72px;
    }

    @media (min-width: 900px) {
      .hero { grid-template-columns: 1fr 1fr; gap: 64px; }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 4px;
      background: var(--accent-dim);
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 24px;
      border: 1px solid var(--border);
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.35; }
    }

    h1 {
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-bottom: 22px;
    }

    h1 span { color: var(--accent); }

    .lead {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 34ch;
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

    .trust {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      align-items: center;
      font-size: 0.82rem;
      color: var(--muted);
      padding-top: 24px;
      border-top: 1px solid var(--border-soft);
    }

    .trust strong { color: var(--text); font-weight: 700; }

    /* Hero card */
    .card-stack { position: relative; min-height: 240px; }

    .glass-card {
      position: absolute;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 24px;
    }

    .card-main  { inset: 0; z-index: 2; }
    .card-float { width: 88%; left: 6%; bottom: -14px; z-index: 1; opacity: 0.4; transform: scale(0.96); }

    .rate-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }

    .rate-label {
      font-size: 0.72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
    }

    .rate-value {
      font-size: 1.75rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: inline-block;
      margin: 8px 0 18px;
      padding: 10px 18px;
      border-radius: 6px;
      background: var(--accent-dim);
      border: 1px solid var(--border);
      color: var(--accent);
    }

    .rate-change { color: var(--accent); font-size: 0.88rem; font-weight: 700; }

    .row-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .row-actions .btn { width: 100%; padding: 14px; }

    /* ---- SECTIONS ---- */
    section { padding: 64px 0; border-top: 1px solid var(--border-soft); }

    section h2 {
      font-size: clamp(1.6rem, 3vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.025em;
      margin-bottom: 14px;
      text-align: center;
    }

    .section-sub {
      text-align: center;
      color: var(--muted);
      max-width: 500px;
      margin: 0 auto 44px;
      font-size: 0.98rem;
      line-height: 1.65;
    }

    /* ---- FEATURES ---- */
    .grid-3 { display: grid; gap: 2px; }

    @media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

    .feature {
      padding: 32px 28px;
      background: var(--surface);
      border: 1px solid var(--border-soft);
      transition: border-color 0.2s, background 0.2s;
    }

    .feature:hover { border-color: var(--border); background: var(--surface-2); }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 18px;
      background: var(--accent-dim);
      border: 1px solid var(--border);
    }

    .feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
    .feature p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

    /* ---- REVIEWS ---- */
    .reviews { background: var(--bg-2); }
    .reviews-grid { display: grid; gap: 2px; }

    @media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

    .review-card {
      padding: 28px;
      background: var(--surface);
      border: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: border-color 0.2s;
    }

    .review-card:hover { border-color: var(--border); }
    .review-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 0.1em; }

    .review-text { font-size: 0.93rem; color: var(--text); line-height: 1.7; flex: 1; }

    .review-text::before {
      content: "\201C";
      color: var(--accent);
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 0;
      margin-right: 4px;
      vertical-align: -0.2em;
    }

    .review-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 16px;
      border-top: 1px solid var(--border-soft);
    }

    .review-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid var(--border);
    }

    .review-meta-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .review-name { font-weight: 700; font-size: 0.9rem; }
    .review-role { font-size: 0.8rem; color: var(--muted); }

    /* ---- OFFER BAR ---- */
    .offer-bar {
      margin-top: 52px;
      padding: 28px 32px;
      border-radius: 6px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 4px solid var(--accent);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .offer-bar p { font-size: 1rem; font-weight: 600; max-width: 500px; line-height: 1.55; }
    .offer-bar em { font-style: normal; color: var(--accent); }

    /* ---- CALCULATOR ---- */
    .calc-section { padding: 64px 0 8px; }
    .calc-section h2 { text-align: center; }

    .calc-layout { display: grid; gap: 36px; max-width: 1000px; margin: 0 auto; align-items: stretch; }

    @media (min-width: 880px) { .calc-layout { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } }

    .calc-inputs { display: flex; flex-direction: column; gap: 36px; }
    .calc-field  { display: flex; flex-direction: column; gap: 10px; }

    .calc-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .calc-value { font-size: clamp(1.35rem,3vw,1.65rem); font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }

    .calc-range { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

    .calc-field input[type="range"] {
      width: 100%; height: 4px; border-radius: 4px;
      background: var(--surface-2); appearance: none; cursor: pointer;
    }

    .calc-field input[type="range"]::-webkit-slider-thumb {
      appearance: none; width: 22px; height: 22px; border-radius: 50%;
      background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent);
    }

    .calc-field input[type="range"]::-moz-range-thumb {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent);
    }

    .calc-field input[type="range"]::-moz-range-track {
      height: 4px; border-radius: 4px; background: var(--surface-2);
    }

    .calc-result-card {
      border-radius: 6px; padding: 36px 32px;
      border: 1px solid var(--border); border-top: 4px solid var(--accent);
      background: var(--surface); text-align: center;
    }

    .calc-result-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
      color: var(--muted); text-transform: uppercase; margin-bottom: 14px;
    }

    .calc-result-main {
      font-size: clamp(2rem,5vw,2.65rem); font-weight: 800; color: var(--accent);
      letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 28px;
    }

    .calc-result-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    .calc-stat {
      background: var(--bg-3); border: 1px solid var(--border-soft); border-radius: 6px;
      padding: 16px 12px; display: flex; flex-direction: column; gap: 8px;
    }

    .calc-stat-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
    .calc-stat-value { font-size: 1.15rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
    .calc-stat-value.accent { color: var(--accent); }

    .calc-disclaimer { text-align: center; font-size: 0.78rem; color: var(--muted); max-width: 520px; margin: 20px auto 0; line-height: 1.5; }

    .calc-cta {
      display: flex; margin: 28px auto 0; max-width: 420px; width: 100%;
      border-radius: 6px; padding: 16px 28px; font-size: 0.9rem;
      justify-content: center; text-align: center;
    }

    /* ---- COMPARE TABLE ---- */
    .compare-section { padding: 64px 0; }

    .compare-wrap {
      max-width: 920px; margin: 0 auto; border-radius: 6px;
      border: 1px solid var(--border); overflow: hidden; background: var(--surface);
    }

    .compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }

    .compare-table thead th {
      padding: 18px 16px; font-weight: 800; font-size: 0.72rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: #0d0a05; background: var(--accent);
      border-bottom: 2px solid var(--accent-2);
    }

    .compare-table thead th:first-child { text-align: left; padding-left: 22px; }
    .compare-table thead th:nth-child(2),
    .compare-table thead th:nth-child(3) { text-align: center; }

    .compare-table tbody th,
    .compare-table tbody td {
      padding: 16px 14px; vertical-align: middle;
      border-bottom: 1px solid var(--border-soft); color: var(--text); line-height: 1.45;
    }

    .compare-table tbody th[scope="row"] { text-align: left; padding-left: 22px; padding-right: 12px; font-weight: 600; }
    .compare-table tbody td { text-align: center; width: 120px; }

    .compare-table tbody tr:last-child th,
    .compare-table tbody tr:last-child td { border-bottom: none; }

    .compare-table tbody tr:hover th,
    .compare-table tbody tr:hover td { background: var(--surface-2); }

    .compare-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 30px; height: 30px; border-radius: 4px;
      font-size: 0.95rem; font-weight: 800; line-height: 1;
    }

    .compare-icon--yes { background: var(--accent); color: #0d0a05; }
    .compare-icon--no  { background: rgba(224,82,82,0.15); color: var(--red); border: 1px solid rgba(224,82,82,0.3); }

    @media (max-width: 640px) {
      .compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .compare-table  { min-width: 520px; }
      .compare-table tbody th[scope="row"] { font-size: 0.85rem; }
    }

    /* ---- EMPOWER ---- */
    .empower-section {
      padding: 64px 0;
      background: var(--bg-2);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }

    .empower-panel {
      margin-top: 8px; border-radius: 6px; padding: clamp(28px,4vw,48px);
      border: 1px solid var(--border); background: var(--surface);
    }

    .empower-split { display: grid; gap: 40px; align-items: center; }

    @media (min-width: 900px) {
      .empower-split { grid-template-columns: 1fr minmax(260px,0.95fr); gap: 48px; }
    }

    .empower-features { display: grid; grid-template-columns: 1fr; gap: 28px 32px; }

    @media (min-width: 520px) { .empower-features { grid-template-columns: 1fr 1fr; } }

    .empower-item { display: flex; gap: 16px; align-items: flex-start; }

    .empower-icon {
      flex-shrink: 0; width: 44px; height: 44px; border-radius: 6px;
      background: var(--accent-dim); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; color: var(--accent);
    }

    .empower-icon svg { width: 20px; height: 20px; }
    .empower-text { font-size: 0.9rem; line-height: 1.65; color: var(--muted); font-weight: 500; }

    .empower-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
      min-height: 260px; padding: 16px; border: 1px solid var(--border); border-radius: 6px;
    }

    .empower-img {
      position: relative; z-index: 1; max-width: min(100%,380px); width: 100%; height: auto;
      transform: rotate(-5deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    }

    @media (max-width: 899px) {
      .empower-split  { grid-template-columns: 1fr; }
      .empower-visual { order: -1; min-height: 200px; }
      .empower-img    { max-width: min(300px,85vw); transform: rotate(-3deg); }
    }

    /* ---- SUBPAGES ---- */
    .subpage-intro { padding: 40px 0 56px; max-width: 720px; }

    .subpage-intro h1 {
      font-size: clamp(1.85rem,4vw,2.35rem); font-weight: 800;
      letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 18px; text-align: left;
    }

    .subpage-intro .lead { max-width: none; margin-bottom: 0; }

    .subpage-card {
      padding: 28px 32px; border-radius: 6px; background: var(--surface);
      border: 1px solid var(--border-soft); border-left: 3px solid var(--accent); margin-bottom: 24px;
    }

    .subpage-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; text-align: left; }
    .subpage-card p,
    .subpage-card li { font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
    .subpage-card ul { margin: 12px 0 0 1.1rem; }
    .subpage-card li + li { margin-top: 8px; }

    /* ---- OWNER SPOTLIGHT ---- */
    .owner-spotlight {
      display: grid; gap: 28px; align-items: center; padding: 32px 28px;
      border-radius: 6px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 32px;
    }

    @media (min-width: 720px) {
      .owner-spotlight { grid-template-columns: minmax(200px,280px) 1fr; gap: 36px; padding: 36px 40px; }
    }

    .owner-photo {
      margin: 0; border-radius: 6px; overflow: hidden;
      border: 1px solid var(--border); aspect-ratio: 4/5; max-height: 380px;
    }

    .owner-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .owner-body .owner-name {
      font-size: clamp(1.35rem,3vw,1.65rem); font-weight: 800;
      letter-spacing: -0.02em; margin-bottom: 6px;
    }

    .owner-body .owner-role {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
    }

    .owner-body p { font-size: 0.93rem; line-height: 1.7; color: var(--muted); margin-bottom: 12px; }
    .owner-body p:last-child { margin-bottom: 0; }

    .owner-facts {
      margin: 20px 0 0; padding: 0; list-style: none;
      border-top: 1px solid var(--border-soft); padding-top: 18px;
    }

    .owner-facts li {
      display: grid; grid-template-columns: minmax(120px,38%) 1fr;
      gap: 8px 16px; font-size: 0.88rem; line-height: 1.45; padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--muted);
    }

    .owner-facts li:last-child { border-bottom: none; }
    .owner-facts strong { color: var(--text); font-weight: 600; }

    @media (max-width: 520px) { .owner-facts li { grid-template-columns: 1fr; } }

    /* ---- PLANS ---- */
    .plans-pricing { padding: 8px 0 40px; }

    .plans-pricing-title {
      text-align: center; font-size: clamp(1.45rem,3.2vw,1.85rem);
      font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px;
    }

    .plans-pricing-lead {
      text-align: center; color: var(--muted); font-size: 0.95rem;
      max-width: 520px; margin: 0 auto 40px; line-height: 1.55;
    }

    .plans-grid { display: grid; gap: 2px; max-width: 1060px; margin: 0 auto; }

    @media (min-width: 900px) { .plans-grid { grid-template-columns: repeat(3,1fr); align-items: stretch; } }

    .plan-card {
      display: flex; flex-direction: column; background: var(--surface);
      border: 1px solid var(--border-soft); padding: 32px 24px;
    }

    .plan-card--featured {
      border-color: var(--accent); background: var(--surface-2); border-top: 4px solid var(--accent);
    }

    .plan-card-name {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
    }

    .plan-card--featured .plan-card-name { color: var(--accent); }

    .plan-card-price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; margin-bottom: 10px; min-height: 3.2rem; }

    .plan-card-price { font-size: clamp(1.6rem,2.8vw,2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }

    .plan-card-price-box {
      display: inline-block; padding: 10px 18px; border-radius: 6px;
      background: var(--accent-dim); border: 1px solid var(--border); color: var(--accent);
    }

    .plan-card-price-box--long { font-size: clamp(1.1rem,2.1vw,1.4rem); line-height: 1.25; }

    .plan-badge {
      font-size: 0.68rem; font-weight: 800; padding: 4px 10px;
      border-radius: 4px; background: var(--accent); color: #0d0a05; letter-spacing: 0.02em;
    }

    .plan-card-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }

    .plan-features { list-style: none; margin: 0; padding: 0; flex: 1 1 auto; }

    .plan-features li {
      position: relative; padding-left: 18px; margin-bottom: 12px;
      font-size: 0.88rem; color: var(--muted); line-height: 1.5;
    }

    .plan-features li::before {
      content: ""; position: absolute; left: 0; top: 0.6em;
      width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    }

    .plan-card .plan-cta {
      margin-top: 24px; width: 100%; justify-content: center; text-align: center;
      padding: 14px 20px; border-radius: 6px; font-weight: 700; text-decoration: none;
    }

    .plans-footnote { text-align: center; font-size: 0.8rem; color: var(--muted); max-width: 640px; margin: 28px auto 0; line-height: 1.55; }

    /* ---- LEGAL DOC ---- */
    .legal-doc { padding: 24px 0 64px; max-width: 800px; margin: 0 auto; }

    .legal-doc h1 {
      font-size: clamp(1.75rem,4vw,2.25rem); font-weight: 800;
      letter-spacing: -0.03em; margin-bottom: 14px; text-align: left;
    }

    .legal-doc .legal-updated {
      font-size: 0.85rem; color: var(--muted); margin-bottom: 36px;
      padding-bottom: 20px; border-bottom: 1px solid var(--border-soft);
    }

    .legal-doc section { margin-bottom: 36px; border-top: none; padding: 0; }

    .legal-doc h2 { font-size: 1.05rem; font-weight: 800; color: var(--accent); margin-bottom: 14px; text-align: left; }
    .legal-doc p  { font-size: 0.93rem; line-height: 1.75; color: var(--muted); margin-bottom: 12px; }
    .legal-doc ul { margin: 0 0 14px 1.15rem; color: var(--muted); font-size: 0.93rem; line-height: 1.7; }
    .legal-doc li + li { margin-top: 8px; }

    /* ---- CONTACT ---- */
    .contact-block {
      margin: 36px -24px 0;
      padding: 56px 24px 64px;
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    @media (min-width: 900px) {
      .contact-block {
        margin-left: 0; margin-right: 0; padding: 64px 52px 72px;
        border-radius: 6px; border: 1px solid var(--border); border-top: 4px solid var(--accent);
      }
    }

    .contact-grid { display: grid; gap: 40px; align-items: start; max-width: 1040px; margin: 0 auto; }

    @media (min-width: 900px) {
      .contact-grid { grid-template-columns: 1fr minmax(320px,400px); gap: 56px; align-items: center; }
    }

    .contact-copy h2 {
      font-size: clamp(1.5rem,3vw,1.85rem); font-weight: 800;
      letter-spacing: -0.02em; margin-bottom: 18px; text-align: left;
    }

    .contact-copy p { color: var(--muted); font-size: 0.96rem; line-height: 1.7; margin-bottom: 14px; }
    .contact-copy p:last-child { margin-bottom: 0; }

    .contact-form-shell {
      background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 28px 24px 32px;
    }

    .contact-form-shell .contact-form h3 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin: 0; }

    #contact .form { background: transparent; border: none; padding: 0; text-align: left; color: var(--text); }

    #contact #form .input_group { display: block; width: 100%; margin-bottom: 16px; box-sizing: border-box; }
    #contact #form .input_group.input_submit { margin-bottom: 0; margin-top: 4px; }

    #contact .rf-form-input:not(.phone_input),
    #contact .form input[type="text"],
    #contact .form input[type="email"] {
      width: 100%; height: 48px; padding: 10px 16px; border-radius: 6px;
      border: 1px solid var(--border-soft); background: var(--bg-3);
      color: var(--text); font-family: inherit; font-size: 0.95rem;
    }

    #contact #form .iti__flag-container {
      position: absolute; top: 0; bottom: 0; left: 0;
      z-index: 2; display: flex; align-items: center;
      padding: 0 0 0 10px; pointer-events: auto;
    }

    #contact #form .iti__selected-flag {
      display: flex; align-items: center; justify-content: center; height: 100%; padding: 0 8px 0 4px;
    }

    #contact #form .iti input#phone_input.rf-form-input,
    #contact #form .iti input.phone_input[type="tel"] {
      width: 100%; height: 48px; box-sizing: border-box; margin: 0;
      padding: 10px 16px 10px 58px; border: none; border-radius: 6px;
      background: transparent; color: var(--text); font-family: inherit; font-size: 0.95rem;
    }

    #contact #form .iti:focus-within input#phone_input.rf-form-input { outline: none; }
    #contact #form .iti:focus-within { border-color: var(--accent); }

    #contact .rf-form-input::placeholder { color: var(--muted) !important; }

    #contact .rf-form-input:not(.phone_input):focus {
      outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim);
    }

    #contact .iti__country-name { color: #1a1a2e; }
    #contact .iti__selected-dial-code { color: var(--muted); }

    #contact #form .iti {
      position: relative; display: block; width: 100%;
      border-radius: 6px; border: 1px solid var(--border-soft); background: var(--bg-3);
    }

    #contact #form .iti--separate-dial-code {
      background: var(--bg-3); border: 1px solid var(--border-soft); border-radius: 6px;
    }

    #contact #form .iti--separate-dial-code:hover,
    #contact #form .iti--separate-dial-code:focus-within { border-color: var(--accent); }

    #contact .form .btn-submit {
      height: 48px; border-radius: 6px; background: var(--accent);
      color: #0d0a05; font-weight: 700; letter-spacing: 0.04em; border: 2px solid var(--accent);
    }

    #contact .form .btn-submit:hover { background: #e0b84e; border-color: #e0b84e; }

    #contact .form_error,
    #contact .form_success { background: var(--surface); color: var(--text); border: 1px solid var(--border); border-radius: 6px; }

    #contact .form-disclaimer { font-size: 0.78rem; color: var(--muted); line-height: 1.55; margin-top: 16px; text-align: center; }
    #contact .form-disclaimer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

    #contact .error-msg:not(.hide) { display: block; color: var(--red); font-size: 0.82rem; margin-top: 8px; }
    #contact .phone-error .rf-form-input { border-color: var(--red); }

    /* ---- FOOTER ---- */
    footer {
      padding-top: 48px; border-top: 1px solid var(--border-soft);
      text-align: center; color: var(--muted); font-size: 0.8rem; line-height: 1.6;
    }

    /* ---- FAQ ---- */
    .faq { max-width: 720px; margin: 0 auto; }

    .faq details {
      border: 1px solid var(--border-soft); border-radius: 6px; margin-bottom: 8px;
      background: var(--surface); overflow: hidden; transition: border-color 0.2s;
    }

    .faq details[open] { border-color: var(--border); }

    .faq summary {
      cursor: pointer; padding: 18px 52px 18px 22px;
      font-weight: 600; font-size: 0.96rem; list-style: none;
      position: relative; user-select: none; color: var(--text);
    }

    .faq summary::-webkit-details-marker { display: none; }

    .faq summary::after {
      content: ""; position: absolute; right: 22px; top: 50%;
      width: 10px; height: 10px;
      border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
      transform: translateY(-60%) rotate(45deg); transition: transform 0.2s;
    }

    .faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
    .faq .faq-a { padding: 0 22px 20px; font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

    /* ---- UTILITIES ---- */
    .hidden, .hide { display: none !important; }
    .clear_both { clear: both; }

    @media (max-width: 720px) { nav { display: none; } }

    /* =============================================
       MOBILE NAVIGATION
       ============================================= */

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px; height: 44px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      cursor: pointer; padding: 0;
      transition: border-color 0.2s;
      flex-shrink: 0;
    }

    .nav-toggle:hover { border-color: var(--accent); }

    .nav-toggle__bar {
      display: block; width: 20px; height: 2px;
      background: var(--text); border-radius: 2px;
      transition: transform 0.25s, opacity 0.2s;
      transform-origin: center;
    }

    .nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: #0d0a05; overflow-y: auto;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.22s ease, visibility 0.22s;
    }

    .mobile-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

    .mobile-nav__inner { display: flex; flex-direction: column; min-height: 100%; padding: 0 24px 48px; }

    .mobile-nav__header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0 8px; border-bottom: 1px solid var(--border); margin-bottom: 16px;
    }

    .mobile-nav__close {
      display: flex; align-items: center; justify-content: center;
      width: 44px; height: 44px; background: var(--surface);
      border: 1px solid var(--border); border-radius: 6px;
      cursor: pointer; color: var(--text); transition: border-color 0.15s, color 0.15s;
    }

    .mobile-nav__close:hover { border-color: var(--accent); color: var(--accent); }

    .mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }

    .mobile-nav nav a:not(.btn) {
      display: block; padding: 14px 16px; font-size: 0.88rem; font-weight: 700;
      color: var(--text); text-decoration: none; border-radius: 6px;
      border: 1px solid transparent; text-transform: uppercase; letter-spacing: 0.06em;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }

    .mobile-nav nav a:not(.btn):hover,
    .mobile-nav nav a:not(.btn)[aria-current="page"] {
      background: var(--accent-dim); color: var(--accent); border-color: var(--border);
    }

    .mobile-nav__cta {
      margin-top: 20px; width: 100%; justify-content: center; text-align: center;
      padding: 16px 24px; font-size: 0.9rem; border-radius: 6px;
    }

    body.nav-open { overflow: hidden; }

    @media (max-width: 959px) {
      .nav-toggle { display: flex; }
      .mobile-nav { display: block; }
      .header-cta { display: none; }
      header      { position: relative; }
    }

    /* =============================================
       COMPARE — MOBILE CARDS
       ============================================= */

    @media (max-width: 600px) {
      .compare-scroll { display: none; }
      .compare-cards  { display: flex !important; flex-direction: column; gap: 8px; }
    }

    @media (min-width: 601px) { .compare-cards { display: none; } }

    .compare-card-item {
      background: var(--surface); border: 1px solid var(--border-soft); border-radius: 6px;
      padding: 14px 16px; display: grid; grid-template-columns: 1fr auto auto;
      gap: 10px 14px; align-items: center;
    }

    .compare-card-item .ccol-label { font-size: 0.88rem; font-weight: 600; color: var(--text); line-height: 1.4; }

    .compare-card-item .ccol-head {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--muted); text-align: center;
    }

    .compare-card-item .ccol-icon { display: flex; flex-direction: column; align-items: center; gap: 4px; }

    /* =============================================
       GENERAL MOBILE IMPROVEMENTS
       ============================================= */

    @media (max-width: 600px) {
      .hero         { padding: 28px 0 48px; gap: 36px; }
      .card-stack   { min-height: 200px; }
      section       { padding: 44px 0; }
      .offer-bar    { padding: 22px 18px; flex-direction: column; align-items: flex-start; gap: 16px; }
      .contact-block{ margin: 24px -24px 0; padding: 36px 20px 44px; }
      .plans-grid   { gap: 8px; }
      .subpage-card { padding: 20px 18px; }
      .empower-panel{ padding: 24px 20px; }
      .calc-section { padding: 44px 0 8px; }
      .legal-doc    { padding: 16px 0 40px; }
      footer        { padding-top: 36px; font-size: 0.78rem; }
      .btn          { min-height: 44px; }
      .hero-cta     { flex-direction: column; gap: 12px; }
      .hero-cta .btn{ width: 100%; justify-content: center; }
      .calc-cta     { padding: 14px 20px; }
    }

    @media (max-width: 400px) {
      .wrap          { padding: 0 16px 60px; }
      .contact-block { margin: 24px -16px 0; padding: 28px 16px 36px; }
    }
