:root {
      --green: #2E7D6B;
      --green-light: #D4EDE7;
      --green-mid: #9FE1CB;
      --green-dark: #085041;
      --green-deeper: #0F6E56;
      --bg: #ffffff;
      --bg-soft: #F0F7F5;
      --bg-alt: #F8FAF9;
      --text: #1A1A1A;
      --muted: #6B7280;
      --border: #D9E8E3;
      --border-light: #E5EDE9;
      --red: #A32D2D;
      --amber: #BA7517;
      --purple: #534AB7;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }

    /* ── NAV ─────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-mark {
      flex-shrink: 0;
    }

    .logo-wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo-text {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
      font-family: Georgia, serif;
    }

    .logo-text .ever { color: #1A1A1A; }
    .logo-text .docs { color: var(--green); }

    .logo-tagline {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1.8px;
      color: var(--green-mid);
      text-transform: uppercase;
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      gap: 36px;
    }

    .nav-links a {
      font-size: 14px;
      color: var(--muted);
      transition: color 0.2s;
    }

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

    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn-outline {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 9px 20px;
      border-radius: 10px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--text);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }
    
    .btn-gold {
      border-color: #C9A84C !important;
      color: #7A5200 !important;
    }
    .btn-gold:hover {
      background: #FDF3D0 !important;
    }

    .btn-solid {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 10px;
      border: none;
      background: var(--green);
      color: #fff;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-solid:hover { background: var(--green-deeper); transform: translateY(-1px); }
    .btn-solid:active { transform: translateY(0); }

    .nav-back {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      padding: 8px;
      min-width: 44px;
      min-height: 44px;
      -webkit-tap-highlight-color: rgba(46, 125, 107, 0.15);
    }
    .nav-back span {
      display: none;
    }
    .nav-back svg {
      flex-shrink: 0;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text);
      padding: 8px;
      margin: -8px;
      line-height: 0;
    }
    .hamburger .icon-close { display: none; }
    nav.nav-open .hamburger .icon-menu { display: none; }
    nav.nav-open .hamburger .icon-close { display: block; }
    .desktop-only { display: block; }

    .blog-back-link,
    .blog-page-back {
      display: inline-flex;
      align-items: center;
      color: var(--green);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      margin-bottom: 20px;
      min-height: 44px;
      -webkit-tap-highlight-color: rgba(46, 125, 107, 0.15);
    }

    /* ── HERO ────────────────────────────────── */
    .hero {
      padding: 80px 48px 72px;
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(circle, rgba(46,125,107,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 99px;
      background: var(--green-light);
      color: var(--green-dark);
      margin-bottom: 28px;
      border: 1px solid var(--green-mid);
      letter-spacing: 0.2px;
      animation: fadeUp 0.6s ease both;
    }

    .pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 54px;
      font-weight: 400;
      color: var(--text);
      line-height: 1.12;
      letter-spacing: -1px;
      margin-bottom: 20px;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero h1 em {
      color: var(--green);
      font-style: italic;
    }

    .hero-sub {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 640px;
      margin: 0 auto 36px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      margin-bottom: 56px;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-hero {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 13px 28px;
      border-radius: 12px;
      border: none;
      background: var(--green);
      color: #fff;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-hero:hover { background: var(--green-deeper); transform: translateY(-2px); }

    .btn-hero-ghost {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      padding: 13px 28px;
      border-radius: 12px;
      border: 1.5px solid var(--green-mid);
      background: #fff;
      color: var(--green);
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-hero-ghost:hover { background: var(--green-light); transform: translateY(-2px); }

    /* ── DASHBOARD MOCKUP ────────────────────── */
    .mockup-frame {
      max-width: 960px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(46,125,107,0.12), 0 4px 16px rgba(0,0,0,0.06);
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .mockup-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border-light);
    }

    .dot { width: 11px; height: 11px; border-radius: 50%; }
    .dot-r { background: #FF5F57; }
    .dot-y { background: #FEBC2E; }
    .dot-g { background: #28C840; }

    .url-bar {
      flex: 1;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mockup-body {
      display: grid;
      grid-template-columns: 200px 1fr;
      min-height: 320px;
    }

    .sidebar {
      background: var(--bg-soft);
      border-right: 1px solid var(--border-light);
      padding: 20px 16px;
    }

    .sidebar-logo {
      font-size: 14px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sidebar-section {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .sidebar-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 8px 10px;
      border-radius: 8px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 2px;
      cursor: pointer;
    }

    .sidebar-item.active {
      background: var(--green-light);
      color: var(--green-dark);
      font-weight: 500;
    }

    .main-panel {
      padding: 20px 24px;
    }

    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .panel-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }

    .stat-chips {
      display: flex;
      gap: 10px;
    }

    .chip {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 99px;
    }

    .chip-green { background: var(--green-light); color: var(--green-dark); }
    .chip-amber { background: #FAEEDA; color: #633806; }

    .doc-list { display: flex; flex-direction: column; gap: 8px; }

    .doc-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-radius: 10px;
      border: 1px solid var(--border-light);
      background: var(--bg-soft);
    }

    .doc-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .doc-icon.green { background: var(--green-light); }
    .doc-icon.amber { background: #FAEEDA; }
    .doc-icon.gray { background: #F1EFE8; }

    .doc-info { flex: 1; }
    .doc-name { font-size: 13px; font-weight: 500; color: var(--text); }
    .doc-meta { font-size: 11px; color: var(--muted); margin-top: 1px; }

    .tag {
      font-size: 10px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 99px;
    }

    .tag-green { background: var(--green-light); color: var(--green-dark); }
    .tag-amber { background: #FAEEDA; color: #633806; }
    .tag-gray { background: #F1EFE8; color: #5F5E5A; }

    /* ── STATS STRIP ─────────────────────────── */
    .stats-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid var(--border);
    }

    .stat-item {
      padding: 28px 32px;
      text-align: center;
      border-right: 1px solid var(--border);
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 32px;
      color: var(--green);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 13px;
      color: var(--muted);
    }

    /* ── SECTIONS ────────────────────────────── */
    .section {
      padding: 80px 48px;
      scroll-margin-top: 72px;
    }

    .section-alt {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }

    .section-h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 38px;
      font-weight: 400;
      color: var(--text);
      letter-spacing: -0.6px;
      line-height: 1.15;
      margin-bottom: 14px;
      max-width: 100%;
      width: 100%;
    }

    .section-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 48px;
    }

    /* ── PROBLEM ─────────────────────────────── */
    .prob-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .prob-card {
      border-radius: 16px;
      border: 1px solid var(--border-light);
      padding: 28px;
      background: var(--bg);
      transition: border-color 0.2s, transform 0.2s;
    }

    .prob-card:hover { border-color: var(--green-mid); transform: translateY(-3px); }

    .prob-ico {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .prob-card h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }

    .prob-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── STEPS ───────────────────────────────── */
    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .step-item {
      padding: 36px 28px;
      border-right: 1px solid var(--border);
      background: var(--bg);
      position: relative;
    }

    .step-item:last-child { border-right: none; }

    .step-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .step-circle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .step-connector {
      flex: 1;
      height: 1px;
      background: var(--green-mid);
    }

    .step-item:last-child .step-connector { display: none; }

    .step-item h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }

    .step-item p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── SECURITY ────────────────────────────── */
    .sec-banner {
      border-radius: 16px;
      border: 1px solid var(--green-mid);
      background: var(--bg-soft);
      padding: 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-bottom: 24px;
    }

    .sec-point {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .sec-ico {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sec-point h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--green-dark);
    }

    .sec-point p {
      font-size: 13px;
      color: var(--green-deeper);
      line-height: 1.7;
    }

    .trust-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 99px;
      border: 1px solid var(--green-mid);
      color: var(--green-dark);
      background: #fff;
    }

    /* ── DOCUMENT CATEGORIES ─────────────────── */
    .doc-cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      width: 100%;
    }

    .doc-cat {
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-decoration: none;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 20px;
      background: #fff;
      box-sizing: border-box;
      min-width: 0;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      -webkit-tap-highlight-color: rgba(46, 125, 107, 0.12);
    }

    .doc-cat:hover {
      border-color: var(--green-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(15, 110, 86, 0.06);
    }

    .doc-cat h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin: 0;
      letter-spacing: -0.2px;
      line-height: 1.3;
    }

    .doc-cat p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.45;
      margin: 0;
    }

    .doc-cat-static {
      cursor: default;
      opacity: 0.92;
      background: var(--bg-soft, #faf9f6);
    }

    .doc-cat-static:hover {
      transform: none;
      box-shadow: none;
      border-color: var(--border);
    }

    @media (max-width: 900px) and (min-width: 769px) {
      .doc-cat-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .feat-card {
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 26px;
      background: var(--bg);
      transition: border-color 0.2s, transform 0.2s;
    }

    .feat-card:hover { border-color: var(--green-mid); transform: translateY(-3px); }

    .feat-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
    }

    .feat-ico {
      width: 40px;
      height: 40px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feat-card h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }

    .feat-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── PRICING ─────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 100%;
    }

    .p-card {
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px 28px;
      background: var(--bg);
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .p-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(46,125,107,0.10); }

    .p-card.pro {
      border: 2px solid var(--green);
      background: var(--bg-soft);
    }

    .p-card.p-card-promo {
      box-shadow: 0 10px 32px rgba(15, 110, 86, 0.12);
      background:
        linear-gradient(180deg, #E8F7F1 0%, var(--bg-soft) 42%);
    }

    .p-card.p-card-promo:hover {
      box-shadow: 0 14px 40px rgba(15, 110, 86, 0.16);
    }

    .pro-badge-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .pro-badge-row .pro-badge {
      margin-bottom: 0;
    }

    .sale-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 99px;
      letter-spacing: 0.6px;
      color: #7A2E0B;
      background: linear-gradient(135deg, #F6C453, #F0A202);
      box-shadow: 0 2px 8px rgba(240, 162, 2, 0.35);
    }

    .p-price-block {
      margin-bottom: 10px;
    }

    .p-price-was {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .p-price-was s {
      color: #8A8F8C;
      text-decoration-thickness: 1.5px;
    }

    .p-price-sale {
      color: var(--green-dark);
      margin-bottom: 8px;
    }

    .p-price-suffix {
      font-family: 'DM Sans', sans-serif !important;
      font-size: 13px !important;
      font-weight: 500 !important;
      color: var(--muted) !important;
    }

    .p-annual-total {
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      margin: -2px 0 10px;
      line-height: 1.4;
    }

    .p-price-block .p-annual-total {
      margin: 0 0 10px;
    }

    .p-promo-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      color: #085041;
      background: #CDEFE3;
      border: 1px solid #9ED9C5;
      border-radius: 8px;
      padding: 5px 10px;
      margin-bottom: 10px;
    }

    .promo-countdown {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 2px;
      margin-bottom: 4px;
    }

    .promo-countdown-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
    }

    .promo-countdown-label span {
      color: var(--green-dark);
      font-weight: 700;
    }

    .promo-countdown-units {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 6px;
    }

    .promo-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 8px 4px;
      min-width: 0;
    }

    .promo-unit-val {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.1;
      font-variant-numeric: tabular-nums;
    }

    .promo-unit-lab {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .btn-promo {
      font-weight: 700;
      letter-spacing: 0.2px;
      box-shadow: 0 4px 14px rgba(15, 110, 86, 0.28);
    }

    .btn-promo:hover {
      box-shadow: 0 6px 18px rgba(15, 110, 86, 0.34);
    }

    .p-card.pro-gold {
      border: 2px solid #C9A84C;
      background: #FFFDF5;
    }

    .pro-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 99px;
      background: var(--green);
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }

    .pro-badge.gold {
      background: linear-gradient(135deg, #C9A84C, #E8C97A);
      color: #5A3E00;
    }

    .p-plan-icon {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .p-name {
      font-size: 12px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 8px;
    }

    .p-tagline {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.5;
      font-style: italic;
    }

    .p-price {
      font-family: 'DM Serif Display', serif;
      font-size: 48px;
      color: var(--text);
      line-height: 1;
      margin-bottom: 4px;
    }

    .p-price sup {
      font-family: 'DM Sans', sans-serif;
      font-size: 20px;
      font-weight: 500;
      vertical-align: super;
    }

    .p-price span:not([id]) {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: var(--muted);
    }

    .p-sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 22px;
      line-height: 1.6;
    }

    .p-divider {
      height: 1px;
      background: var(--border-light);
      margin-bottom: 20px;
    }

    .p-list {
      list-style: none;
      margin-bottom: 28px;
      flex: 1;
    }

    .p-list li {
      font-size: 13px;
      color: var(--text);
      padding: 8px 0;
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .p-list li:last-child { border-bottom: none; }

    .p-list li::before {
      content: '';
      width: 18px;
      height: 18px;
      min-width: 18px;
      border-radius: 50%;
      background: var(--green-light);
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%232E7D6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      flex-shrink: 0;
    }

    .p-card.pro-gold .p-list li::before {
      background-color: #FDF3D0;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .p-storage-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 99px;
      background: var(--green-light);
      color: var(--green-dark);
      margin-bottom: 20px;
    }

    .p-card.pro-gold .p-storage-badge {
      background: #FDF3D0;
      color: #7A5200;
    }


    /* ── TESTIMONIAL ─────────────────────────── */
    .testimonial-section {
      text-align: center;
      padding: 80px 48px;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--bg);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 32px;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .testimonial-quote-small {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
      font-style: italic;
      flex-grow: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--green-dark);
    }

    .author-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }

    .author-role {
      font-size: 13px;
      color: var(--muted);
    }

    .testimonial-stars {
      color: #E8B84B;
      font-size: 15px;
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 16px;
    }

    .testimonial-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 40px;
    }

    .testimonial-summary .testimonial-stars { margin-bottom: 0; font-size: 16px; }
    .testimonial-summary strong { color: var(--text); }

    .testimonial-dots { display: none; }

    /* ── EMOTIONAL ───────────────────────────── */
    .emotional {
      padding: 80px 48px;
      text-align: center;
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .emotional-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      border: 1px solid var(--green-mid);
    }

    .emotional h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 36px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.4px;
    }

    .emotional p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
      max-width: 520px;
      margin: 0 auto;
    }

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

    .faq-item {
      border-bottom: 1px solid var(--border-light);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border-light);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 4px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      list-style: none;
      gap: 16px;
      transition: color 0.2s;
    }

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

    .faq-q::after {
      content: '+';
      font-size: 22px;
      font-weight: 300;
      color: var(--green);
      flex-shrink: 0;
      transition: transform 0.25s;
      line-height: 1;
    }

    details[open] .faq-q::after {
      transform: rotate(45deg);
    }

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

    .faq-a {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      padding: 0 4px 20px;
      max-width: 640px;
    }

    /* ── ACCESSIBILITY ───────────────────────── */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      border: 0;
    }

    /* ── FINAL CTA ───────────────────────────── */
    .final-cta {
      padding: 96px 48px;
      text-align: center;
    }

    .final-cta h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 44px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 14px;
      letter-spacing: -0.6px;
    }

    .final-cta h2 em {
      color: var(--green);
      font-style: italic;
    }

    .final-cta p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .final-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
    }

    /* ── FOOTER ──────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 56px 48px 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 12px;
      max-width: 240px;
    }

    .f-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: 0.2px;
    }

    .f-col a {
      display: block;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 10px;
      transition: color 0.2s;
      text-decoration: none;
      -webkit-tap-highlight-color: rgba(46, 125, 107, 0.15);
    }

    .f-col a:hover { color: var(--green); }

    .footer-bottom {
      border-top: 1px solid var(--border-light);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom span {
      font-size: 13px;
      color: var(--muted);
    }

    .footer-tagline {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--green);
      font-weight: 500;
    }

    /* ── LEGAL & BLOG LAYOUT ─────────────────── */
    .legal-content {
      max-width: 800px;
      margin: 80px auto;
      padding: 0 24px;
      color: var(--text);
    }
    .legal-content h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 42px;
      margin-bottom: 24px;
    }
    .legal-content h2 {
      font-size: 24px;
      margin-top: 40px;
      margin-bottom: 16px;
    }
    .legal-content p {
      margin-bottom: 16px;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── BLOG ────────────────────────────────── */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 32px;
      justify-content: center;
    }
    .blog-card {
      background: var(--bg);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .blog-card h2 {
      font-size: 18px;
      margin: 20px 20px 8px;
      color: var(--text);
    }
    .blog-card .excerpt {
      font-size: 14px;
      margin: 0 20px 16px;
      color: var(--muted);
      line-height: 1.6;
    }
    .blog-card time {
      display: block;
      margin: 0 20px 20px;
      font-size: 12px;
      font-weight: 500;
      color: var(--green);
    }

    /* ── COOKIE BANNER ───────────────────────── */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 16px 24px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
      z-index: 1000;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .cookie-banner.show {
      transform: translateY(0);
    }
    .cookie-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .cookie-content p {
      font-size: 14px;
      color: var(--muted);
      margin: 0;
    }
    .cookie-content a {
      color: var(--green);
      text-decoration: underline;
    }

    /* ── ANIMATIONS ──────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── MOBILE ──────────────────────────────── */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .hamburger { display: block; }
      .nav-back { display: inline-flex; }
      .desktop-only { display: none; }
      /* On blog pages: Home/Blog back sits on the right with the menu */
      nav:has(.nav-back) {
        justify-content: space-between;
        gap: 10px;
      }
      nav:has(.nav-back) .nav-actions {
        margin-left: 0;
        display: flex;
        align-items: center;
        gap: 4px;
      }
      nav:has(.nav-back) .nav-back {
        order: 0;
        padding: 8px 6px;
        margin: 0;
      }
      nav:has(.nav-back) .logo-tagline { display: none; }
      nav:has(.nav-back) .logo-text { font-size: 18px; }
      nav:has(.nav-back) .logo-mark svg,
      nav:has(.nav-back) .logo-mark { width: 32px; height: 32px; }
      nav:has(.nav-back) .logo {
        gap: 8px;
        min-width: 0;
      }
      .nav-links {
        display: none !important;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 8px 20px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 200;
      }
      nav.nav-open .nav-links {
        display: flex !important;
      }
      .nav-links a {
        display: block;
        padding: 14px 4px;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
        min-height: 48px;
        box-sizing: border-box;
      }
      .nav-links a:last-child {
        border-bottom: none;
      }
      /* Compressed hero: value prop + CTA fit in the first viewport */
      .hero { padding: 28px 20px 32px; }
      .hero-pill { margin-bottom: 16px; padding: 5px 14px; font-size: 11px; }
      .hero h1 { font-size: 32px; line-height: 1.14; margin-bottom: 12px; }
      .hero-sub { font-size: 15px; line-height: 1.55; margin-bottom: 22px; }
      .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 28px; }
      .hero-btns a { display: block; }
      .hero-btns .btn-hero, .hero-btns .btn-hero-ghost {
        width: 100%;
        min-height: 52px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .mockup-frame { margin-top: 4px; }
      .mockup-body { grid-template-columns: 1fr; }
      .sidebar { display: none; }
      .stats-strip { grid-template-columns: repeat(2, 1fr); }
      .section { padding: 48px 20px; scroll-margin-top: 80px; }
      .section-desc { max-width: 100%; margin-bottom: 28px; }
      .prob-grid, .feat-grid, .steps-row { grid-template-columns: 1fr; }

      /* Documents + Features: denser mobile layout for more viewability */
      #documents.section,
      #features.section {
        padding-top: 40px;
        padding-bottom: 40px;
      }
      #documents .section-h2,
      #features .section-h2 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
      }
      #documents .section-desc,
      #features .section-desc {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
      }
      #documents .eyebrow,
      #features .eyebrow {
        margin-bottom: 8px;
      }

      .doc-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }
      .doc-cat {
        padding: 12px;
        border-radius: 12px;
        gap: 4px;
        border: 1px solid var(--border);
        background: #fff;
        box-shadow: none;
      }
      .doc-cat:hover {
        transform: none;
        box-shadow: none;
      }
      .doc-cat h3 {
        font-size: 13px;
        line-height: 1.25;
        margin-bottom: 0;
      }
      .doc-cat p {
        font-size: 11px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .feat-grid {
        gap: 10px;
      }
      .feat-card {
        padding: 14px 16px;
        border-radius: 12px;
      }
      .feat-card:hover {
        transform: none;
      }
      .feat-top {
        gap: 10px;
        margin-bottom: 6px;
      }
      .feat-ico {
        width: 34px;
        height: 34px;
        border-radius: 9px;
      }
      .feat-ico svg {
        width: 18px;
        height: 18px;
      }
      .feat-card h3 {
        font-size: 14px;
        line-height: 1.3;
      }
      .feat-card p {
        font-size: 12px;
        line-height: 1.45;
      }
      .steps-row { border-radius: 16px; }
      .step-item { border-right: none; border-bottom: 1px solid var(--border); }
      .step-item:last-child { border-bottom: none; }
      .sec-banner { grid-template-columns: 1fr; padding: 24px; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .final-cta { padding: 56px 20px; }
      .final-cta h2 { font-size: 30px; }
      .final-btns {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 10px;
        width: 100%;
      }
      .final-btns a {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        text-decoration: none;
      }
      .final-btns .btn-hero,
      .final-btns .btn-hero-ghost {
        width: 100%;
        min-height: 56px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.25;
        padding: 12px 10px;
        font-size: 13px;
        box-sizing: border-box;
        white-space: normal;
      }
      .section-h2 { font-size: 28px; }
      .cookie-content { flex-direction: column; text-align: center; gap: 16px; }

      /* Testimonials → horizontal swipe carousel */
      .testimonial-section { padding: 56px 0; }
      .testimonial-section .eyebrow,
      .testimonial-section .section-h2,
      .testimonial-summary { padding-left: 20px; padding-right: 20px; }
      .testimonial-summary { margin-bottom: 24px; }
      .testimonial-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 20px 8px;
        margin: 0;
      }
      .testimonial-grid::-webkit-scrollbar { display: none; }
      .testimonial-card {
        flex: 0 0 84%;
        scroll-snap-align: center;
        padding: 24px;
      }
      .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 18px;
      }
      .testimonial-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: var(--green-mid);
        opacity: 0.5;
        transition: opacity 0.2s, width 0.2s, background 0.2s;
        cursor: pointer;
      }
      .testimonial-dots button.active {
        opacity: 1;
        width: 20px;
        border-radius: 99px;
        background: var(--green);
      }

      /* Compact multi-column footer */
      footer { padding: 36px 20px 24px; }
      .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
        margin-bottom: 28px;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-brand p { max-width: 100%; margin-top: 10px; }
      .f-col h4 { margin-bottom: 10px; }
      .f-col a {
        margin-bottom: 4px;
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
      }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      /* Keep footer links clear of the cookie banner */
      body { padding-bottom: 0; }
      body.has-cookie-banner { padding-bottom: 120px; }
    }

    /* ── BILLING SEGMENTED CONTROL ───────────── */
    .billing-segment {
      display: inline-flex;
      align-items: center;
      background: var(--bg-soft);
      border: 1px solid var(--border-light);
      border-radius: 99px;
      padding: 6px;
    }
    
    .segment-btn {
      background: transparent;
      border: none;
      border-radius: 99px;
      padding: 10px 24px;
      font-size: 15px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      font-family: inherit;
    }
    
    .segment-btn:hover:not(.active) {
      color: var(--text);
    }
    
    .segment-btn.active {
      background: #fff;
      color: var(--green-dark);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
