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

    :root {
      --dark:       #4A5252;
      --sand:       #D4CBC0;
      --teal:       #8AC2B9;
      --taupe:      #B8AFA4;
      --slate:      #6A7A7A;
      --white:      #FFFFFF;
      --black:      #000000;
      --bg:         #F5F3F0;
      --nav-bg:     #3D4848;
      --teal-dark:  #5FA99E;
      --teal-text:  #6AADA4;
      --green-dot:  #C8D8C0;
      --red-dot:    #E8857A;
      --yellow-dot: #E8C87A;
      --score-bar:  #8AC2B9;
      --score-bg:   #E8DDD4;
      --incomplete: #D4635A;
      --check:      #6AADA4;
      --border:     #E4DDD8;
      --shadow:     rgba(74,82,82,0.10);
      --tip-bg:     #EDF5F3;
      --tip-border: #C8E0DC;
      --muted:      #6A7A7A;
      --card-bg:    #F7F5F3;
      --premium-bg: #4A7E79;
      --section-bg: #8BBFB8;
      --footer-bg:  #3D4F4F;
      --label-teal: #6BB8AD;
      --teal-light: #EDF5F3;
      --jm-bg:      #8AC2B9;
      --ep-bg:      #B8AFA4;
      --netflix:    #E87A7A;
      --spotify:    #6AC28A;
      --apple:      #B8AFA4;
      --youtube:    #E8857A;
      --dup-bg:     #FFF8E8;
      --dup-text:   #B8902A;
      --border-light: #EDE8E2;
      --step-line:  #C8E0DC;
    }

    html { font-size: 16px; scroll-behavior: smooth; }
    body {
      font-family: 'Figtree', sans-serif;
      background: var(--bg);
      color: var(--dark);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      background: var(--dark);
      height: 60px;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    }
    .nav-inner {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
    }
    .logo {
      font-family: 'Karla', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.5px;
      margin-right: 48px;
      text-decoration: none;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .logo-icon {
      width: 28px; height: 18px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      flex: 1;
      list-style: none;
    }
    .nav-links li a {
      font-family: 'Figtree', sans-serif;
      font-size: 18px;
      font-weight: 300;
      color: #fff;
      text-decoration: none;
      padding: 0 22px;
      letter-spacing: 0.01em;
      transition: color 0.2s;
    }
    .nav-links li a:hover { color: #fff; }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }
    .btn-started {
        background: #8AC2B9;
        color: var(--white);
        border: none;
        border-radius: 50px;
        padding: 13px 30px;
        font-family: 'Figtree', sans-serif;
        font-size: 15px;
        font-weight: 400;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.2s, transform 0.15s;
    }
    .btn-started:hover { background: var(--teal-dark); transform: translateY(-1px); }
    .btn-login {
        background: #E8E0D8;
        color: var(--dark);
        border: none;
        border-radius: 50px;
        padding: 13px 3.5vw;
        font-family: 'Figtree', sans-serif;
        font-size: 15px;
        font-weight: 400;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.2s, transform 0.15s;
    }
    .btn-login:hover { background: var(--white); transform: translateY(-1px); }

    /* BURGER */
    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px; height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 8px;
      margin-left: auto;
      gap: 5px;
      transition: background 0.2s;
    }
    .burger:hover { background: rgba(255,255,255,0.1); }
    .burger-line {
      display: block;
      width: 22px; height: 2px;
      background: rgba(255,255,255,0.9);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .burger.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* MOBILE DRAWER */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: var(--nav-bg);
      z-index: 99;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s cubic-bezier(0.4,0,0.2,1);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu.is-open { max-height: 420px; padding: 16px 20px 24px; }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
    .mobile-menu ul li a {
      display: block;
      font-family: 'Figtree', sans-serif;
      font-size: 16px;
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      padding: 12px 4px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s, padding-left 0.2s;
    }
    .mobile-menu ul li:last-child a { border-bottom: none; }
    .mobile-menu ul li a:hover { color: var(--teal); padding-left: 8px; }
    .mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
    .mobile-menu-actions .btn-started,
    .mobile-menu-actions .btn-login { width: 100%; text-align: center; padding: 12px 24px; font-size: 15px; }
    .mobile-menu-actions .btn-login { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

    .menu-overlay {
      display: none;
      position: fixed;
      inset: 0; top: 60px;
      background: rgba(0,0,0,0.35);
      z-index: 98;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .menu-overlay.is-open { opacity: 1; }
    body.menu-open { overflow: hidden; }

    /* ── HERO ── */
    .hero {
      max-width: 1280px;
      margin: 0 auto;
      padding: 70px 40px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 48px;
      min-height: calc(100vh - 60px);
    }
    .hero-left { display: flex; flex-direction: column; }
    .hero-tagline {
        font-family: 'Figtree', sans-serif;
        font-size: 15.5px;
        font-weight: 400;
        color: #5E9C93;
        margin-bottom: 20px;
        letter-spacing: 0.01em;
    }
    .hero-headline {
        font-family: 'Karla', sans-serif;
        font-size: clamp(52px, 6vw, 85px);
        font-weight: 400;
        line-height: 1.06;
        color: var(--dark);
        letter-spacing: 0px;
    }
    .hero-headline .teal-line {
        color: #5E9C93;
        display: block;
    }
    .headline-row {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .leaf-icon { width: 68px; height: 42px; flex-shrink: 0; margin-top: 4px; }
    .hero-desc {
        font-family: 'Figtree', sans-serif;
        font-size: 15px;
        color: #5E9C93;
        line-height: 1.65;
        max-width: 500px;
        margin-top: 30px;
        margin-bottom: 34px;
    }
    .hero-cta {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .btn-primary {
      background: var(--teal);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 15px 30px;
      font-family: 'Figtree', sans-serif;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 4px 16px rgba(138,194,185,0.35);
    }
    .btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
    .btn-secondary {
        background: transparent;
        color: var(--dark);
        border: 1.5px solid #D4CBC0;
        border-radius: 50px;
        padding: 15px 30px;
        font-family: 'Figtree', sans-serif;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.2s, transform 0.15s;
    }
    .btn-secondary:hover { background: var(--white); transform: translateY(-1px); }
    .trust-badges {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .trust-badges span {
      font-family: 'Figtree', sans-serif;
      font-size: 13px;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* RIGHT DASHBOARD MOCKUP */
    .hero-right { display: flex; justify-content: flex-end; align-items: center; }
    .browser-window {
      background: var(--white);
      border-radius: 16px;
      box-shadow: 6px 6px 0px rgba(74, 82, 82, 0.08);
      overflow: hidden;
      width: 100%;
      max-width: 560px;
    }
    .browser-bar {
      background: #F2EFEC;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--border);
    }
    .dots { display: flex; gap: 6px; }
    .dot { width: 12px; height: 12px; border-radius: 50%; }
    .dot-red    { background: var(--red-dot); }
    .dot-yellow { background: var(--yellow-dot); }
    .dot-green  { background: var(--green-dot); }
    .address-bar {
      flex: 1;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 12px;
      font-family: 'Figtree', sans-serif;
      font-size: 12.5px;
      color: var(--slate);
      text-align: center;
    }
    .browser-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--teal);
      opacity: 0.7;
      flex-shrink: 0;
    }
    .dashboard { padding: 26px 26px 22px; background: var(--white); }
    .dash-greeting {
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--teal-text);
      margin-bottom: 6px;
    }
    .dash-title {
      font-family: 'Karla', sans-serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 18px;

    }
    .score-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .score-label { font-family: 'Figtree', sans-serif; font-size: 13px; color: var(--slate); min-width: 110px; }
    .score-bar-wrap { flex: 1; height: 9px; background: var(--score-bg); border-radius: 10px; overflow: hidden; }
    .score-bar-fill { height: 100%; width: 67%; background: linear-gradient(90deg, var(--teal) 0%, #A8D4CE 100%); border-radius: 10px; }
    .score-pct { font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 600; color: var(--teal-dark); min-width: 32px; text-align: right; }

    .dash-cards-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin-bottom: 14px;
    }
    .mini-card {
      background: #F5F3F0;
      border: 1px solid #E8E0D8;
      border-radius: 10px;
      padding: 13px 14px;
      position: relative;
    }
    .top-border-set{
        position: relative;
    }
    .top-border-set:before{
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        background: #8AC2B9;
        top: 0;
        left: 0;
        border-radius: 8px;

    }
    .left-border-set{
        position: relative;
    }
    .left-border-set:before{
        content: "";
        position: absolute;
        width: 3px;
        height: 100%;
        background: #8AC2B9;
        top: 0;
        left: 0;
        border-radius: 8px;

    }
    .mini-card-title { font-family: 'Karla', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
    .mini-card-sub { font-family: 'Figtree', sans-serif; color: #5E9C93; font-size: 10px; }
    .sub-teal { color: var(--teal-dark); }
    .sub-incomplete { color: var(--incomplete); }

    .doc-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
    .doc-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #ffffff;
      border: 1px solid #E8E0D8;
      border-radius: 10px;
      padding: 11px 14px;
      gap: 10px;
    }
    .doc-left { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .doc-name { font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 500; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .doc-meta { font-family: 'Figtree', sans-serif; font-size: 11.5px; color: #6A7A7A; }
    .secured-badge {
        font-family: 'Figtree', sans-serif;
        font-size: 11.5px;
        font-weight: 500;
        color: #3D8478;
        background: #EDF7F5;
        border-radius: 6px;
        padding: 3px 9px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .tip-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--tip-bg);
      border: 1px solid var(--tip-border);
      border-radius: 10px;
      padding: 12px 14px;
      gap: 10px;
    }
    .tip-text { font-family: 'Figtree', sans-serif; font-size: 12.5px; color: #3D8478; display: flex; align-items: center; gap: 8px; }
    .tip-icon { font-size: 14px; flex-shrink: 0; }
    .review-btn {
      font-family: 'Figtree', sans-serif;
      font-size: 12px;
      font-weight: 500;
      color: var(--dark);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 13px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background 0.15s;
    }
    .review-btn:hover { background: var(--bg); }

    /* ── SHARED ── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

    .eyebrow {
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #5E9C93;
      text-align: center;
      display: block;
      margin-bottom: 18px;
    }
    .eyebrow-left { text-align: left; margin-bottom: 14px; }

    /* ── SECTION 1: CARDS GRID ── */
    .section-cards {
      background: var(--bg);
      padding: 88px 0 96px;
    }
    .section-cards h2 {
      font-family: 'Karla', sans-serif;
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 400;
      color: var(--dark);
      text-align: center;
      letter-spacing: -1px;
      margin-bottom: 52px;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .feature-card {
      background: var(--white);
      border-radius: 14px;
      padding: 26px 22px 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 3px solid transparent;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .feature-card:hover { box-shadow: 0 8px 28px rgba(74,82,82,0.12); transform: translateY(-2px); }
    .card-teal   { border-top-color: #8AC2B9; }
    .card-yellow { border-top-color: #E8C85A; }
    .card-blue   { border-top-color: #7AAFD4; }
    .card-orange { border-top-color: #E8855A; }
    .card-red    { border-top-color: #D46A6A; }
    .card-green  { border-top-color: #8AC28A; }
    .card-purple { border-top-color: #A08AC8; }
    .card-teal2  { border-top-color: #8AC2B9; }
    .card-icon {
        font-size: 26px;
        line-height: 1;
        margin-bottom: 4px;
        padding: 10px;
        background: #EDF7F5;
        border-radius: 10px;
        max-width: 53px;
        text-align: center;
    }
    .card-headline {
        font-family: 'Karla';
        font-size: 14.5px;
        font-weight: 500;
        color: var(--dark);
        line-height: 1.8;
    }    
    .card-sub { font-family: 'Figtree', sans-serif; font-size: 12.5px; color: var(--slate); line-height: 1.55; flex: 1; }
    .card-link {
        font-family: 'Figtree', sans-serif;
        font-size: 13.5px;
        font-weight: 500;
        color: #5E9C93;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 4px;
        transition: gap 0.15s;
    }
    .card-link:hover { gap: 7px; }
    .card-link::after { content: "→"; }

    /* ── SECTION 2: THREE STEPS ── */
    .section-steps {
      background: var(--white);
      padding: 96px 0 104px;
    }
    .section-steps h2 {
        font-family: 'Karla', sans-serif;
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 400;
        color: var(--dark);
        text-align: center;
        letter-spacing: -1px;
        line-height: 1.18;
        max-width: 500px;
        margin: 0 auto 64px;
    }
    .steps-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 0;
      max-width: 760px;
      margin: 0 auto;
    }
    .step-connector {
      height: 2px;
      background: var(--step-line);
      width: 60px;
      margin-top: -60px;
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
    }
    .step-icon-wrap {
      width: 62px; height: 62px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step-icon-wrap.s1 { background: #EDF7F5; }
    .step-icon-wrap.s2 { background: #C4E2DC; }
    .step-icon-wrap.s3 { background: #8AC2B9; }
    .step-icon-wrap svg { width: 26px; height: 26px; }
    .step-label { font-family: 'Figtree', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.10em; text-transform: uppercase; color: var(--taupe); }
    .step-title { font-family: 'Karla', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; }
    .step-desc { font-family: 'Figtree', sans-serif; font-size: 13.5px; color: var(--slate); line-height: 1.55; max-width: 180px; }

    /* ── TWO-COL LAYOUT ── */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 64px;
    }
    .two-col.reverse { direction: rtl; }
    .two-col.reverse > * { direction: ltr; }
    .copy-block { display: flex; flex-direction: column; }
    .copy-block h2 {
        font-family: 'Karla', sans-serif;
        font-size: clamp(28px, 3.5vw, 42px);
        font-weight: 400;
        color: var(--dark);
        letter-spacing: -1px;
        line-height: 1.15;
        margin-bottom: 20px;
    }
    .copy-block p {
      font-family: 'Figtree', sans-serif;
      font-size: 15px;
      color: var(--slate);
      line-height: 1.68;
      margin-bottom: 28px;
    }
    .copy-link {
      font-family: 'Figtree', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--teal-dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.15s;
    }
    .copy-link:hover { gap: 7px; }
    .copy-link::after { content: "→"; }

    /* ── SECTION 3: MY VAULT ── */
    .section-vault { background: var(--white); padding: 96px 0 104px; }
    .mockup-card {
        background: #F5F3F0;
        border-radius: 18px;
        /* box-shadow: 0 16px 50px rgba(74, 82, 82, 0.12), 0 2px 8px rgba(74, 82, 82, 0.06); */
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border: 1px solid #E8E0D8 !important;
    }
    .doc-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #ffffff;
      gap: 10px;
      transition: background 0.15s;
    }
    .doc-item:hover { background: #F5F2EF; }
    .doc-item-left { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .doc-item-name { font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 500; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .doc-item-meta { font-family: 'Figtree', sans-serif; font-size: 11.5px; color: var(--taupe); }
    .sec-badge {
        font-family: 'Figtree', sans-serif;
        font-size: 11.5px;
        font-weight: 500;
        color: #3D8478;
        background: #EDF7F5;
        border-radius: 6px;
        padding: 3px 9px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ── SECTION 4: GUARDIAN ── */
    .section-guardian { background: var(--white); padding: 96px 0 104px; }
    .guardian-mockup {
        background: #F5F3F0;
        border-radius: 18px;
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        border: 1px solid #E8E0D8;
    }
    .person-header {
        background: white;
    }
    .guardian-person { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .person-header { display: flex; align-items: center; gap: 12px; padding: 14px 16px 12px; }
    .avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Karla', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }
    .avatar-jm { background: var(--jm-bg); }
    .avatar-ep { background: var(--ep-bg); }
    .person-info { display: flex; flex-direction: column; gap: 2px; }
    .person-name { font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); }
    .person-role { font-family: 'Figtree', sans-serif; font-size: 12px; color: var(--taupe); }
    .person-access { background: var(--tip-bg); padding: 10px 16px; border-top: 1px solid var(--border); }
    .access-text { font-family: 'Figtree', sans-serif; font-size: 12.5px; color: var(--teal-dark); display: flex; align-items: center; gap: 6px; }
    .access-text a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; cursor: pointer; }
    .access-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
    .person-access-plain { background: #FAFAF9; padding: 10px 16px; border-top: 1px solid var(--border); }
    .access-plain-text { font-family: 'Figtree', sans-serif; font-size: 12.5px; color: var(--slate); display: flex; align-items: center; gap: 6px; }
    .access-dot-grey { width: 6px; height: 6px; border-radius: 50%; background: var(--taupe); flex-shrink: 0; }

    /* ── SECTION 5: SUBSCRIPTIONS ── */
    .section-subscriptions { background: var(--white); padding: 96px 0 104px; }
    .sub-mockup {
        background: #F5F3F0;
        border-radius: 18px;
        padding: 22px;
        border: 1px solid #E8E0D8;
    }

    .sub-mockup-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #E8E0D8;
}
    .sub-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .sub-total { display: flex; flex-direction: column; gap: 3px; }
    .sub-amount { font-family: 'Karla', sans-serif; font-size: 30px; font-weight: 800; color: var(--dark); letter-spacing: -1px; }
    .sub-amount span { font-size: 18px; font-weight: 500; }
    .sub-label { font-family: 'Figtree', sans-serif; font-size: 12px; color: var(--taupe); }
    .dup-badge {
      background: var(--dup-bg);
      color: var(--dup-text);
      border: 1px solid #F0D898;
      border-radius: 8px;
      padding: 5px 11px;
      font-family: 'Figtree', sans-serif;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .sub-list { display: flex; flex-direction: column; }
    .sub-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 0;
      border-bottom: 1px solid var(--border-light);
      gap: 10px;
    }
    .sub-row:last-child { border-bottom: none; }
    .sub-name-wrap { display: flex; align-items: center; gap: 10px; min-width: 0; }
    .sub-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .sub-name { font-family: 'Figtree', sans-serif; font-size: 13.5px; color: var(--dark); }
    .sub-price { font-family: 'Figtree', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--slate); white-space: nowrap; }
    .sub-right { display: flex; align-items: center; gap: 10px; }
    .dup-tag {
      background: var(--dup-bg);
      color: var(--dup-text);
      border: 1px solid #F0D898;
      border-radius: 6px;
      padding: 2px 8px;
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 600;
    }
    .sub-tip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--tip-bg);
      border: 1px solid var(--tip-border);
      border-radius: 10px;
      padding: 12px 14px;
      margin-top: 14px;
      gap: 10px;
    }
    .sub-tip-text { font-family: 'Figtree', sans-serif; font-size: 12.5px; color: var(--teal-dark); display: flex; align-items: center; gap: 7px; }

    /* ── PROBLEM SECTION ── */
    #problem {
      background: #4A5252;
      color: var(--white);
      padding: 88px 0 80px;
    }
    #problem .eyebrow { 
        color: #8AC2B9 !important; 
        font-weight: 400 !important;
        font-size: 13px !important;
    }
    #problem h2 {
      font-family: 'Karla', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      color: var(--white);
      text-align: center;
      line-height: 1.15;
      margin-bottom: 6px;
    }
    #problem h2 span { color: var(--teal); display: block; }
    #problem .intro {
        font-size: 17px;
        line-height: 1.65;
        text-align: center;
        color: #D4CBC0;
        max-width: 640px;
        margin: 20px auto 52px;
        font-weight: 300;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(106, 122, 122, 0.4);
    border-radius: 12px;
    padding: 50px 22px 22px;
    transition: background 0.2s;
    position: relative;
}
    img.stat-card-img {
        width: 60px;
        position: absolute;
        top: -10px;
    }
    .stat-card:hover { background: rgba(255,255,255,0.09); }
    .stat-icon {
      width: 36px; height: 22px;
      margin-bottom: 16px;
      display: block;
    }
    .stat-card h3 {
        font-family: 'Karla', sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: var(--white);
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .stat-card p {
        font-size: 13px;
        color: #B8AFA4;
        line-height: 1.55;
    }
    .problem-cta { text-align: center; margin-top: 60px; }
    .problem-cta p {
        font-family: 'Karla', sans-serif;
        font-size: 28px;
        font-weight: 400;
        color: var(--white);
        margin-bottom: 10px;
    }
    .problem-cta a {
        color: #8AC2B9;
        text-decoration: none;
        font-size: 26px;
        font-weight: 400;
    }
    .problem-cta a:hover { text-decoration: underline; }

    /* ── VAULT FEATURES ── */
    #vault-features {
        background: #F5F3F0;
        padding: 96px 0 80px;
    }
    #vault-features .eyebrow {
        font-family: 'Figtree', sans-serif;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #5E9C93;
        text-align: center;
        display: block;
        margin-bottom: 18px;
    }
    #vault-features h2 {
        font-family: 'Karla', sans-serif;
        font-size: clamp(2rem, 4vw, 44px);
        font-weight: 400;
        color: var(--dark);
        text-align: center;
        line-height: 1.15;
        margin-bottom: 6px;
    }
    #vault-features h2 span {
        color: #5E9C93;
        display: block;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 56px;
    }
    .feature-col .col-title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Karla', sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #3D8478;
        margin-bottom: 14px;
        background: #EDF7F5;
        padding: 14px;
        border-radius: 10px;
    }
    .feature-col ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
    .feature-col ul li {
        font-size: 13px;
        color: var(--dark);
        line-height: 1.5;
        font-family: 'Figtree';
        font-weight: 400;
    }
    .vault-banner {
        margin-top: 52px;
        border: 1.5px solid #C4E2DC;
        border-radius: 12px;
        padding: 28px 32px;
        text-align: center;
        background: #EDF7F5;
    }
    .vault-banner p {
        font-family: 'Karla', sans-serif;
        font-size: 26px;
        font-weight: 700;
        color: #3D8478;
        margin-bottom: 6px;
    }
    .vault-banner small {
        font-size: 14px;
        color: #5E9C93;
        letter-spacing: 0.03em;
        font-family: 'Figtree';
        font-weight: 400;
    }
    .vault-banner small span { margin: 0 8px; opacity: 0.5; }

    /* ── PRICING (monthly) ── */
    #pricing { background: #F5F3F0; padding: 88px 0 104px; }
    .pricing-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 20px;
      flex-wrap: wrap;
    }
    .pricing-logo {
      font-family: 'Karla', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-heading-block { text-align: right; }
    .pricing-heading-block .eyebrow { text-align: right; }
    .pricing-heading-block h2 {
      font-family: 'Karla', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
    }
    .founding-banner {
        background: #EDF7F5;
        border: 1.5px solid #C4E2DC;
        border-radius: 12px;
        padding: 18px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }
.founding-title {
    font-family: 'Karla', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.founding-sub {
    font-size: 15px;
    color: #5E9C93;
    font-weight: 500;
    margin-left: 6.4% !important;
}

.plan-card.first-card {
    background: white;
    border: 1px solid #E8E0D8;
}
    .btn-claim {
    background: var(--teal);
    color: var(--white);
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 14px 30px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
    .btn-claim:hover { background: var(--teal-dark); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      align-items: stretch;
    }


    .plan-card {
        border: 1px solid #E8E0D8;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: box-shadow 0.2s;
        background: white;
    }

    .price-plan-top-box {
        padding: 24px;
        background: #d4cbc04d;
        border-radius: 11px;
        margin-bottom: 20px;
    }
    .price-plan-bottom-box {
        padding: 24px;
    }
    .plan-card:hover { box-shadow: 0 8px 28px rgba(74,82,82,0.10); }
    .plan-card.popular { border-color: var(--teal); border-width: 2px; }
    .plan-card.dark { background: #3C4646; border-color: #3C4646; }
    .plan-card.dark h3,
    .plan-card.dark .plan-price,
    .plan-card.dark .plan-period,
    .plan-card.dark .plan-savings { color: var(--white) !important; }
    .plan-card.dark li { color: rgba(255,255,255,0.85); }
    .plan-card.dark li.disabled { color: rgba(255,255,255,0.35) !important; }
    .badge-popular {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--teal);
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .plan-card h3 {
        font-family: 'Karla', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #4A5252;
        margin-bottom: 10px;
    }
    .plan-card.popular h3 { color: var(--teal); margin-top: 8px; }
    .plan-price {
        font-family: 'Karla', sans-serif;
        font-size: 30px;
        font-weight: 500;
        color: #8AC2B9;
        line-height: 1;
    }
    .plan-card.popular .plan-price { color: var(--teal); }
    .plan-period {
        font-size: 13px;
        color: #6A7A7A;
        display: inline;
    }
    .plan-savings { font-size: 0.75rem; color: var(--teal-dark); font-weight: 500; margin: 6px 0 18px; min-height: 18px; }
    .plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 16px; }
    .plan-card.dark .plan-divider { border-color: rgba(255,255,255,0.12); }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1; margin-bottom: 24px; }
    .plan-features li {
        font-size: 11px;
        color: #6A7A7A;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.4;
    }
    .plan-card.first-card .price-plan-top-box{
      background: white;
    }
    .plan-card.popular.third-card .price-plan-top-box{
      background: #EDF7F5;
    }

    .plan-card.fourth-card .price-plan-top-box{
        background: #4A5252;
        border-radius: 11px 11px 0px 0px;
    }



    .plan-features li.disabled { color: var(--taupe); }
    .plan-features li .check { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
    .plan-features li .cross { color: var(--taupe); flex-shrink: 0; margin-top: 1px; }
    .btn-plan {
    display: block;
    width: 100%;
    padding: 13px 0;
    border-radius: 15px;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: 1.5px solid #D4CBC0;
    background: var(--white);
    color: var(--dark);
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
    .btn-plan:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
    .btn-plan.filled { background: var(--teal); border-color: var(--teal); color: var(--white); }
    .btn-plan.filled:hover { background: var(--teal-dark); }
    .plan-card.dark .btn-plan { border-color: rgba(255,255,255,0.25); color: var(--white); background: transparent; }
    .plan-card.dark .btn-plan:hover { border-color: var(--white); }

    /* ── LIFETIME PRICING ── */
    .pricing-section { padding: 88px 0 104px; background: var(--white); border-top: 1px solid var(--border); }
    .pricing-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 2.5rem;
      align-items: start;
    }
    .pricing-intro { padding-top: 1rem; }
.pricing-eyebrow {
    font-family: 'Karla', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--label-teal);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}
.pricing-heading-text {
    font-family: 'Karla', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 1.4rem;
    text-align: center;
}
    .pricing-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6A7A7A;
    margin-bottom: 15px;
    max-width: 220px;
}
    .btn-contact {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: 15px;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #F5F3F0;
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
    cursor: pointer;
    background: #3D8478;
    transition: background 0.2s, color 0.2s;
}

.lt-plan-name {
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    margin-top: 0.3rem;
}
    .btn-contact:hover { background: var(--dark); color: var(--white); }
    .lifetime-cards-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      align-items: start;
    }
    .lt-card {
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1.5px solid var(--border);
    }
    .lt-card--dark { background: #3C4646; border-color: #3C4646; }
    .lt-card--teal { background: var(--premium-bg); border-color: var(--premium-bg); position: relative; }
    .lt-card--light { background: var(--white); }
    .lt-card-header { padding: 1.5rem 1.6rem 1.2rem; position: relative; }
    .lt-value-badge {
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      background: var(--teal);
      color: var(--white);
      font-family: 'Karla', sans-serif;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.28rem 0.9rem;
      border-radius: 0 0 6px 6px;
    }
    .lt-plan-name { font-family: 'Karla', sans-serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; margin-top: 0.3rem; }
    .lt-card--dark .lt-plan-name,
    .lt-card--teal .lt-plan-name { color: rgba(255,255,255,0.9); }
    .lt-card--light .lt-plan-name { color: var(--dark); }
    .lt-card-price { font-family: 'Karla', sans-serif; font-size: 2.2rem; font-weight: 700; line-height: 1.1; margin-bottom: 0.4rem; }
    .lt-card--dark .lt-card-price {
    color: #8AC2B9;
}
    .lt-card--teal .lt-card-price { color: var(--white); }
    .lt-card--light .lt-card-price { color: var(--dark); }
    .lt-tagline { font-size: 0.72rem; opacity: 0.7; }
    .lt-card--dark .lt-tagline {
    color: rgba(212, 203, 192, 0.6);
}
    .lt-card--teal .lt-tagline { color: rgba(255,255,255,0.8); }
    .lt-card--light .lt-tagline { color: var(--slate); }
    .lt-divider { height: 1px; margin: 0 1.6rem; }
    .lt-card--dark .lt-divider { background: rgba(255,255,255,0.12); }
    .lt-card--teal .lt-divider { background: rgba(255,255,255,0.2); }
    .lt-card--light .lt-divider { background: var(--border); }
    .lt-features { padding: 1.2rem 1.6rem 1.6rem; list-style: none; flex: 1; }
    .lt-features li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.8rem; line-height: 1.5; margin-bottom: 0.6rem; }
    .lt-card--dark .lt-features li { color: rgba(255,255,255,0.85); }
    .lt-card--teal .lt-features li { color: rgba(255,255,255,0.9); }
    .lt-card--light .lt-features li { color: var(--dark); }
    .lt-check { flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px; }
    .lt-card--dark .lt-check { color: var(--teal); }
    .lt-card--teal .lt-check { color: rgba(255,255,255,0.85); }
    .lt-card--light .lt-check { color: var(--teal-dark); }
    .lt-cta { padding: 0 1.6rem 1.6rem; }
    .btn-lt {
      display: block;
      width: 100%;
      padding: 0.8rem 1.2rem;
      border-radius: 8px;
      font-family: 'Figtree', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      border: none;
    }
    .btn-lt:hover { opacity: 0.88; transform: translateY(-1px); }
    .lt-card--dark .btn-lt { background: var(--white); color: var(--dark); }
    .lt-card--teal .btn-lt { background: var(--white); color: var(--premium-bg); }
    .lt-card--light .btn-lt { background: var(--white); color: var(--dark); border: 1.5px solid var(--border); }

    /* ── CTA SECTION ── */
    .cta-section {
      background: var(--section-bg);
      padding: 120px 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
    content: '';
    position: absolute;
    left: -420px;
    bottom: -60px;
    background-image: url(/img/lyff/bg-image.png);
    background-size: contain;
    background-position: center;
    width: 55%;
    height: 38vw;
    background-repeat: no-repeat;
}

    .cta-section::after {
      content: '';
      position: absolute;
      right: -80px; bottom: -30px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      pointer-events: none;
    }
    .cta-heading {
    font-family: 'Karla', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
    .cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 451px;
    margin: 0 auto 2.2rem;
    line-height: 1.7;
}
.btn-cta {
    display: inline-block;
    padding: 1rem 2.4rem;
    border: 2px solid var(--white);
    border-radius: 99px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5E9C93;
    text-decoration: none;
    cursor: pointer;
    background: #FFFFFF;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 1.8rem;
    position: relative;
}
    .btn-cta:hover { background: var(--white); color: var(--section-bg); }
    .cta-badges { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; }
    .cta-badge { font-size: 0.75rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.35rem; }

    /* ── FOOTER ── */
    .site-footer {
        background-color: var(--footer-bg);
        background-image: url(/img/lyff/footer-bg.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center right;
        padding: 60px 2rem 30px;
    }
    .footer-inner { max-width: 1280px; margin: 0 auto; }
    .footer-top {
      display: grid;
      grid-template-columns: 220px repeat(4, 1fr);
      gap: 2rem;
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-logo { font-family: 'Karla', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); letter-spacing: -0.03em; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
    .footer-tagline {
    font-size: 15px;
    color: #C4E2DC;
    margin-bottom: 1.2rem;
    font-weight: 400;
}
    .footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    transition: background 0.2s, border-color 0.2s;
    background: rgba(212, 203, 192, 0.12);
}
    .social-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); }
    .footer-col-title {
        font-family: 'Figtree';
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #C4E2DC;
        margin-bottom: 1rem;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    .footer-links a {
        font-size: 13px;
        color: rgba(212, 203, 192, 0.7);
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .security-badges { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.8rem; }
    .sec-bdg { font-size: 0.72rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.4rem; }
    .footer-bottom { font-size: 0.72rem; color: rgba(255,255,255,0.4); padding-top: 0.5rem; }

    /* ── EYE SVG HELPER ── */
    .eye-sm { display: inline-block; width: 32px; height: 20px; flex-shrink: 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; padding: 50px 32px 60px; gap: 50px; min-height: unset; display: block;}
      .hero-right { justify-content: center; }
      .browser-window { max-width: 100%; }
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; display: block;}
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-inner { grid-template-columns: 1fr; display: block;}
      .pricing-intro { text-align: center; padding-top: 0; }
      .pricing-desc { max-width: 480px; margin-left: auto; margin-right: auto; }
      .lifetime-cards-row { grid-template-columns: repeat(3, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; }
      .nav-links, .nav-actions { display: none; }
      .logo { margin-right: 0; }
      .burger { display: flex; }
      .mobile-menu { display: block; }
      .menu-overlay { display: block; }
      .hero { padding: 40px 20px 50px; }
      .hero-headline { font-size: 42px; letter-spacing: -1.5px; }
      .dash-cards-row { grid-template-columns: 1fr 1fr; }
      .dash-cards-row .mini-card:last-child { grid-column: 1 / -1; }
      .container { padding: 0 20px; }
      .section-cards, .section-steps, .section-vault, .section-guardian, .section-subscriptions { padding: 64px 0; }
      #problem, #vault-features, #pricing { padding: 64px 0; }
      .steps-row { grid-template-columns: 1fr; gap: 32px; max-width: 280px; }
      .step-connector { display: none; }
      .step { align-items: flex-start; text-align: left; }
      .step-desc { max-width: 100%; }
      .pricing-heading-block { text-align: left; }
      .pricing-heading-block .eyebrow { text-align: left; }
      .pricing-top { flex-direction: column; align-items: flex-start; }
      .lifetime-cards-row { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
      .cta-section { padding: 80px 1.5rem; }
      .cta-heading { font-size: 1.9rem; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 540px) {
      .stats-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .hero-headline { font-size: 34px; letter-spacing: -1px; }
      .hero-cta { flex-direction: column; align-items: flex-start; }
      .btn-primary, .btn-secondary { width: 100%; text-align: center; }
      .cards-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .cta-badges { gap: 1rem; }
    }