/* ============================================================
   FaktuPilot – Main Stylesheet
   Colors: navy #1B2F6B | green #39C645 | teal #00BFD8
   ============================================================ */

:root {
    --navy:      #1B2F6B;
    --navy-dark: #131f4a;
    --green:     #39C645;
    --green-dark:#2da83a;
    --teal:      #00BFD8;
    --gray-100:  #f7f8fc;
    --gray-200:  #eef0f6;
    --gray-500:  #8890aa;
    --gray-700:  #3d4460;
    --white:     #ffffff;
    --shadow-sm: 0 2px 8px rgba(27,47,107,.08);
    --shadow-md: 0 6px 24px rgba(27,47,107,.13);
    --radius:    12px;
    --transition: .25s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
}

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

h1,h2,h3,h4 {
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}

/* ── Container ───────────────────────────────────────────── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(57,198,69,.35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-100);
}

/* ── Section helpers ─────────────────────────────────────── */
section { padding: 80px 0; }

.section-label {
    display: inline-block;
    background: rgba(57,198,69,.12);
    color: var(--green-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.section-sub {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 560px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-size: 1.35rem; font-weight: 800; color: var(--navy); }
.nav-logo-text span { color: var(--green); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: .92rem;
    color: var(--gray-700);
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    background: var(--gray-100);
}

.nav-cta { flex-shrink: 0; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f0f3ff 0%, #e8fff0 100%);
    overflow: hidden;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,191,216,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(57,198,69,.12);
    color: var(--green-dark);
    border: 1px solid rgba(57,198,69,.25);
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--green); }

.hero-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-title .accent { color: var(--green); }

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.stat-item { }
.stat-num  { font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.stat-desc { font-size: .8rem; color: var(--gray-500); }

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 28px 32px;
    max-width: 380px;
    width: 100%;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.hero-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; fill: white; }
.hero-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
.hero-card-sub   { font-size: .8rem; color: var(--gray-500); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; color: var(--gray-700);
}
.check-list li::before {
    content: '';
    width: 20px; height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2339C645'/%3E%3Cpath d='M6 10l3 3 5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

.promo-banner {
    margin-top: 16px;
    background: linear-gradient(90deg, rgba(57,198,69,.1), rgba(0,191,216,.1));
    border: 1px solid rgba(57,198,69,.25);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--green-dark);
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
#how-it-works { background: var(--gray-100); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    z-index: 0;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(27,47,107,.25);
}

.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p  { font-size: .86rem; color: var(--gray-500); line-height: 1.55; }

/* ── FEATURES ────────────────────────────────────────────── */
#features { background: var(--white); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; fill: white; }

.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p  { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────── */
#pricing { background: var(--gray-100); }

.promo-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    color: var(--white);
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .92rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.promo-alert svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.promo-countdown { margin-left: auto; font-size: .82rem; opacity: .9; }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}
.toggle-label { font-weight: 600; font-size: .95rem; color: var(--gray-500); transition: var(--transition); }
.toggle-label.active { color: var(--navy); }

.toggle-switch {
    position: relative;
    width: 52px; height: 28px;
}
.toggle-switch input { display: none; }
.toggle-slider {
    position: absolute; inset: 0;
    background: var(--navy);
    border-radius: 28px;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    left: 4px; top: 4px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.featured {
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(57,198,69,.2);
}

.featured-badge {
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-name  { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); margin-bottom: 4px; }
.plan-title { font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; }

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
}
.price-amount { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.price-period { font-size: .82rem; color: var(--gray-500); margin-bottom: 4px; }

.plan-desc { font-size: .82rem; color: var(--gray-500); margin-bottom: 8px; }

.plan-note {
    font-size: .78rem;
    color: var(--green-dark);
    background: rgba(57,198,69,.08);
    border-radius: 6px;
    padding: 6px 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.plan-divider { border: none; border-top: 1px solid var(--gray-200); margin: 20px 0; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .88rem; color: var(--gray-700);
}
.plan-features li::before {
    content: '';
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2339C645'/%3E%3Cpath d='M6 10l3 3 5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-future {
    margin-top: 10px;
    padding: 10px;
    background: rgba(27,47,107,.04);
    border-radius: 8px;
    font-size: .78rem;
    color: var(--gray-500);
}
.plan-future strong { color: var(--navy); }

.pricing-calc {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.pricing-calc h3 { margin-bottom: 24px; font-size: 1.2rem; }

.calc-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.calc-label { font-size: .9rem; font-weight: 600; color: var(--gray-700); min-width: 200px; }
.calc-input {
    width: 80px;
    padding: 9px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: .95rem;
    color: var(--navy);
    font-weight: 600;
    text-align: center;
}
.calc-input:focus { outline: none; border-color: var(--green); }

.calc-result {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: white;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}
.calc-result-label { font-size: .85rem; opacity: .75; }
.calc-result-val   { font-size: 1.8rem; font-weight: 800; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials { background: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 20px;
    font-size: 5rem;
    color: var(--green);
    opacity: .15;
    font-family: Georgia, serif;
    line-height: 1;
}

.stars { color: #f5a623; font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 20px; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: .88rem;
    flex-shrink: 0;
}
.author-name    { font-size: .88rem; font-weight: 700; color: var(--navy); }
.author-company { font-size: .78rem; color: var(--gray-500); }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { background: var(--gray-100); }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 { font-size: 1.9rem; margin-bottom: 14px; }
.contact-info p  { color: var(--gray-500); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item  { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: white; }
.contact-item-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); font-weight: 600; }
.contact-item-val   { font-size: .95rem; font-weight: 600; color: var(--navy); }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.2rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 11px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: .92rem;
    color: var(--navy);
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(57,198,69,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.form-consent label { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }

.form-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    margin-top: 12px;
}
.form-msg.success { background: rgba(57,198,69,.12); color: var(--green-dark); display: flex; }
.form-msg.error   { background: rgba(220,38,38,.08); color: #b91c1c; display: flex; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.7);
    padding: 56px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 14px; }

.footer-logo-text { font-size: 1.4rem; font-weight: 800; color: white; }
.footer-logo-text span { color: var(--green); }

.footer-col h4 {
    color: white;
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
    font-size: .88rem;
    transition: var(--transition);
    color: rgba(255,255,255,.7);
}
.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
}
.footer-bottom a { color: var(--green); }

/* ── Floating CTA ────────────────────────────────────────── */
#float-cta {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}
#float-cta.visible { opacity: 1; transform: none; pointer-events: auto; }

/* ── Scroll-reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── Cookie notice ───────────────────────────────────────── */
#cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy-dark);
    color: rgba(255,255,255,.85);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 950;
    font-size: .84rem;
}
#cookie-bar.hidden { display: none; }
#cookie-bar a { color: var(--green); }
#cookie-accept {
    background: var(--green);
    color: white;
    border: none;
    padding: 7px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    font-size: .84rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid   { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid    { grid-template-columns: repeat(2, 1fr); }
    .steps-grid      { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 56px 0; }

    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: white;
        border-bottom: 1px solid var(--gray-200);
        padding: 12px 24px 16px;
        gap: 2px;
        box-shadow: var(--shadow-md);
    }
    .nav-cta.open {
        display: block;
        padding: 0 24px 16px;
        position: absolute;
        top: auto;
        background: white;
    }

    .hero-inner        { grid-template-columns: 1fr; }
    .hero-visual       { display: none; }
    .contact-inner     { grid-template-columns: 1fr; }
    .features-grid     { grid-template-columns: 1fr; }
    .pricing-grid      { grid-template-columns: 1fr; }
    .steps-grid        { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner      { grid-template-columns: 1fr; }
    .form-row          { grid-template-columns: 1fr; }
    .calc-row          { flex-direction: column; align-items: flex-start; }
    .hero-stats        { gap: 20px; }
}
