/* Homepage-only (GetFastStore landing) - load after shared.css */
.page-home {
  overflow-x: hidden;
}

  /* ── TRUST BAR MARQUEE ── */
  .trust-bar {
    background: var(--ink);
    height: 36px;
    position: fixed; top: 0; left: 0; right: 0; z-index: 102;
    overflow: hidden;
    display: flex; align-items: center;
  }
  .marquee-track {
    display: flex; align-items: center;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    will-change: transform;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .tb-item {
    font-size: 12px; color: rgba(255, 255, 255, 0.72);
    display: inline-flex; align-items: center; gap: 7px;
    padding: 0 24px; flex-shrink: 0;
  }
  .tb-item strong { color: #fff; font-weight: 500; }
  .tb-sep { width: 1px; height: 12px; background: rgba(255,255,255,.18); flex-shrink: 0; }
  .shopify-badge-sm {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; color: #fff;
  }
  .shopify-badge-sm .sh-dot { width: 7px; height: 7px; border-radius: 50%; background: #96bf48; flex-shrink: 0; }

  /* ── MONEY FACTS ── */
  .hero-money-fact {
    display: flex; align-items: center; gap: 0;
    background: var(--accent-light);
    border: 1px solid rgba(0, 128, 96, 0.2);
    border-radius: var(--r);
    margin-bottom: 28px;
    margin-top: 20px;
    overflow: hidden;
  }
  .hmf-item {
    flex: 1; padding: 12px 16px; text-align: center;
    display: flex; flex-direction: column; gap: 3px;
  }
  .hmf-num { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--accent-dark); }
  .hmf-label { font-size: 12px; color: var(--ink-2); line-height: 1.3; }
  .hmf-div { width: 1px; background: rgba(0, 128, 96, 0.2); align-self: stretch; }

  /* ── NAV ── */
  .page-home .site-nav--home {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-3);
  }
  .page-home .site-nav--home .nav-logo {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -.3px;
  }
  .page-home .site-nav--home .nav-logo span { color: var(--accent); }
  .page-home .site-nav--home .nav-links { display: flex; align-items: center; gap: 32px; }
  .page-home .site-nav--home .nav-links a {
    font-size: 14px; font-weight: 400;
    color: var(--ink-2); text-decoration: none;
    transition: color .2s;
  }
  .page-home .site-nav--home .nav-links a:hover { color: var(--accent); }
  .page-home .site-nav--home .nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: background .2s, transform .15s !important;
  }
  .page-home .site-nav--home .nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 200px 48px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 75% 50%, #e3f1ed 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 10% 80%, #f0f7f4 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1140px; margin: 0 auto; width: 100%;
    position: relative; z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; letter-spacing: .06em;
    color: var(--accent); text-transform: uppercase;
    background: var(--accent-light); padding: 6px 14px; border-radius: 99px;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .hero h1 em { color: var(--accent); font-style: normal; font-weight: 600; }
  .hero-sub {
    font-size: 17px; line-height: 1.7;
    color: var(--ink-2);
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 30px;
    border-radius: 99px;
    font-size: 15px; font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0, 128, 96, 0.22);
  }
  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 128, 96, 0.28); }
  .btn-ghost {
    color: var(--ink-2); font-size: 15px; font-weight: 400;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: color .2s;
  }
  .btn-ghost:hover { color: var(--accent); }
  .btn-ghost svg { transition: transform .2s; }
  .btn-ghost:hover svg { transform: translateX(4px); }

  /* hero right: score card */
  .hero-right { position: relative; }
  .score-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.08);
    border: 1px solid var(--cream-3);
    position: relative; z-index: 2;
  }
  .score-card-label {
    font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .07em;
    color: var(--ink-3); margin-bottom: 18px;
  }
  .scores-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
  .score-item { text-align: center; }
  .score-ring {
    width: 80px; height: 80px; margin: 0 auto 8px;
    position: relative; display: flex; align-items: center; justify-content: center;
  }
  .score-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
  .score-num { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); position: relative; z-index: 1; }
  .score-device { font-size: 12px; color: var(--ink-3); font-weight: 400; }
  .score-tag {
    display: inline-block; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 99px;
    margin-bottom: 20px;
  }
  .tag-bad { background: #fde8e8; color: #b91c1c; }
  .tag-good { background: var(--green-light); color: var(--green); }
  .score-arrow {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 13px; color: var(--ink-3); margin-bottom: 20px;
  }
  .score-arrow-line {
    flex: 1; height: 1px; background: var(--cream-3);
    position: relative;
  }
  .score-arrow-icon { font-size: 18px; }
  .score-items-list { display: flex; flex-direction: column; gap: 8px; }
  .score-fix {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--ink-2);
    background: var(--cream-2); border-radius: 8px; padding: 8px 12px;
  }
  .score-fix-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .dot-red { background: #ef4444; }
  .dot-yellow { background: #f59e0b; }
  .dot-green { background: #22c55e; }

  /* floating badges */
  .float-badge {
    position: absolute;
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: var(--r);
    padding: 10px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    font-size: 12px; font-weight: 500; color: var(--ink);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
  }
  .float-badge.badge-1 { top: -20px; right: -16px; animation-delay: 0s; }
  .float-badge.badge-2 { bottom: 20px; left: -20px; animation-delay: 1.5s; }
  .float-badge .fb-val { font-family: var(--serif); font-size: 18px; font-weight: 600; display: block; }
  .float-badge .fb-label { color: var(--ink-3); font-weight: 400; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

  /* ── SOCIAL PROOF STRIP ── */
  .strip {
    background: var(--ink);
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: center; gap: 48px;
    flex-wrap: wrap;
  }
  .strip-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,.7);
    font-weight: 400;
  }
  .strip-item strong { color: #fff; font-weight: 500; }
  .strip-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.25); }

  /* ── SECTION COMMONS ── */
  section { padding: 96px 48px; }
  .section-inner { max-width: 1140px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600; line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink); margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px; color: var(--ink-2); line-height: 1.7;
    max-width: 580px;
  }
  .section-header { margin-bottom: 56px; }

  /* ── PROBLEM SECTION ── */
  .problem { background: var(--cream-2); }
  .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .problem-list { display: flex; flex-direction: column; gap: 24px; }
  .problem-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: #fff;
    border-radius: var(--r); border: 1px solid var(--cream-3);
    transition: transform .2s, box-shadow .2s;
  }
  .problem-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
  .problem-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .problem-text h4 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
  .problem-text p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

  .intro-block { display: flex; flex-direction: column; gap: 20px; }
  .intro-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--cream-3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 28px; font-weight: 600;
    color: var(--accent); border: 3px solid var(--accent-light);
  }
  .intro-quote {
    font-family: var(--serif);
    font-size: 20px; line-height: 1.6;
    color: var(--ink); font-style: normal;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
  }
  .intro-name { font-size: 14px; font-weight: 500; color: var(--ink-2); }
  .intro-name span { color: var(--ink-3); font-weight: 400; }

  /* ── WHAT I FIX ── */
  .fixes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .fix-card {
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: transform .2s, box-shadow .2s;
    position: relative; overflow: hidden;
  }
  .fix-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--accent); opacity: 0;
    transition: opacity .2s;
  }
  .fix-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.09); }
  .fix-card:hover::before { opacity: 1; }
  .fix-icon { font-size: 28px; margin-bottom: 14px; }
  .fix-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
  .fix-card p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }

  /* ── PROCESS ── */
  .process { background: var(--ink); color: #fff; }
  .process .section-title { color: #fff; }
  .process .section-sub { color: rgba(255, 255, 255, 0.65); }
  .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 56px; }
  .process-steps::before {
    content: '';
    position: absolute; top: 28px; left: 10%; right: 10%;
    height: 1px; background: rgba(255,255,255,.15); z-index: 0;
  }
  .process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
  .step-num-wrap {
    width: 56px; height: 56px;
    background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--serif); font-size: 20px; font-weight: 600; color: #fff;
  }
  .process-step h4 { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 8px; }
  .process-step p { font-size: 13px; color: rgba(255, 255, 255, 0.55); line-height: 1.5; }

  /* ── RESULTS ── */
  .results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .result-card {
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: box-shadow .2s;
  }
  .result-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
  .result-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
  .result-store { font-size: 14px; font-weight: 500; }
  .result-niche { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
  .result-tag {
    font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 99px;
    background: var(--green-light); color: var(--green);
  }
  .scores-compare { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
  .score-box {
    flex: 1; text-align: center; padding: 14px;
    border-radius: var(--r); background: var(--cream);
  }
  .score-box.after { background: var(--green-light); }
  .score-box .sb-num { font-family: var(--serif); font-size: 28px; font-weight: 600; }
  .score-box.before .sb-num { color: #ef4444; }
  .score-box.after .sb-num { color: var(--green); }
  .score-box .sb-label { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
  .arrow-icon { font-size: 20px; color: var(--ink-3); }
  .result-fixes { display: flex; flex-wrap: wrap; gap: 6px; }
  .fix-tag {
    font-size: 12px; padding: 4px 10px; border-radius: 6px;
    background: var(--cream-2); color: var(--ink-2);
  }
  .result-quote { font-size: 14px; color: var(--ink-2); line-height: 1.6; font-style: italic; margin-top: 16px; border-top: 1px solid var(--cream-3); padding-top: 14px; }

  /* ── PRICING ── */
  .pricing { background: var(--cream-2); }
  .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
  .pricing-card {
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
  }
  .pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    transform: scale(1.03);
    box-shadow: 0 8px 40px rgba(0, 128, 96, 0.12);
  }
  .featured-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: 12px; font-weight: 500; padding: 4px 16px; border-radius: 99px;
    white-space: nowrap;
  }
  .pricing-name { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 8px; }
  .pricing-price { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--ink); line-height: 1; }
  .pricing-price sup { font-size: 20px; vertical-align: super; }
  .pricing-price-suffix {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-3);
    margin-top: 6px;
    letter-spacing: 0.02em;
  }
  .pricing-callout {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 4px;
  }
  .pricing-desc { font-size: 13px; color: var(--ink-3); margin: 8px 0 24px; }
  .pricing-divider { border: none; border-top: 1px solid var(--cream-3); margin-bottom: 20px; }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
  .pricing-features li::before { content: '✓'; color: var(--green); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
  .pricing-features li.no { color: var(--ink-3); }
  .pricing-features li.no::before { content: '-'; color: var(--cream-3); }
  .btn-pricing {
    display: block; width: 100%; text-align: center;
    padding: 14px; border-radius: 99px;
    font-size: 15px; font-weight: 500;
    text-decoration: none; transition: all .2s;
  }
  .btn-pricing-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(0, 128, 96, 0.18); }
  .btn-pricing-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
  .btn-pricing-ghost { background: transparent; color: var(--ink); border: 1px solid var(--cream-3); }
  .btn-pricing-ghost:hover { border-color: var(--accent); color: var(--accent); }
  .pricing-note { text-align: center; font-size: 14px; color: var(--ink-3); margin-top: 32px; }
  .pricing-note a { color: var(--accent); text-decoration: none; }

  /* ── TRUST ── */
  .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
  .trust-item { text-align: center; padding: 28px 16px; background: #fff; border-radius: var(--r); border: 1px solid var(--cream-3); }
  .trust-val { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--accent); }
  .trust-label { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

  /* testimonials */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testi-card {
    background: #fff; border: 1px solid var(--cream-3); border-radius: var(--r-lg);
    padding: 28px;
  }
  .testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
  .testi-text { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testi-person { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--cream-2); display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--accent);
    border: 2px solid var(--accent-light);
    flex-shrink: 0;
  }
  .testi-name { font-size: 14px; font-weight: 500; }
  .testi-store { font-size: 12px; color: var(--ink-3); }

  /* ── CTA SECTION ── */
  .cta-section {
    background: var(--accent);
    padding: 80px 48px;
    text-align: center;
  }
  .cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 600; color: #fff;
    margin-bottom: 16px; line-height: 1.2;
  }
  .cta-section p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; }
  .btn-cta-white {
    background: #fff; color: var(--accent);
    padding: 16px 36px; border-radius: 99px;
    font-size: 16px; font-weight: 500;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
  }
  .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
  .cta-reassure { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 16px; }

  /* ── FAQ ── */
  .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid var(--cream-3); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 500; color: var(--ink); font-family: var(--sans);
    transition: color .2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-chevron { font-size: 20px; color: var(--ink-3); transition: transform .25s; flex-shrink: 0; }
  .faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--accent); }
  .faq-a {
    font-size: 15px; color: var(--ink-2); line-height: 1.7;
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  }
  .faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

  /* ── FOOTER ── */
  .page-home footer {
    background: var(--ink); padding: 48px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .page-home footer .footer-brand { font-family: var(--serif); font-size: 18px; color: #fff; font-weight: 600; }
  .page-home footer .footer-brand span { color: var(--accent); }
  .page-home .footer-links { display: flex; gap: 24px; }
  .page-home .footer-links a { font-size: 14px; color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color .2s; }
  .page-home .footer-links a:hover { color: #fff; }
  .page-home footer .footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.45); }


  /* ── SHOPIFY BADGE ── */
  .shopify-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f6f7f8; border: 1px solid #e4e5e8;
    border-radius: 8px; padding: 8px 14px;
    font-size: 13px; font-weight: 500; color: #1a1f36;
  }
  .shopify-badge .sh-dot { width: 10px; height: 10px; border-radius: 50%; background: #96bf48; }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .page-home .site-nav--home { padding: 14px 20px; top: 36px; }
    .page-home .site-nav--home .nav-links a:not(.nav-cta) { display: none; }
    .hero { padding: 130px 20px 60px; }
    section { padding: 64px 20px; }
    .hero-grid, .problem-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .fixes-grid, .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .results-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .page-home footer { padding: 32px 20px; }
    .hero-money-fact { flex-direction: column; }
    .hmf-div { width: 100%; height: 1px; }
  }
