/* ============================================================
   Cheqkr — Homepage Styles v2
   Font:   UberMove → Helvetica Neue → Arial
   Palette: #000 · #0a0a0a · #111 · #f8f8f8 · #fff
   ============================================================ */

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

body {
    font-family: 'UberMove', 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Shared layout ───────────────────────────────────────── */
.page-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}
.section-eyebrow.light { color: #444; }

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #000;
    margin-bottom: 18px;
}
.section-heading.light { color: #fff; }

.section-sub {
    font-size: 1.05rem;
    color: #555;
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 56px;
}
.section-sub.light { color: #666; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    letter-spacing: -0.01em;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-black  { background: #000; color: #fff; border-color: #000; }
.btn-black:hover { background: #1a1a1a; border-color: #1a1a1a; }

.btn-white  { background: #fff; color: #000; border-color: #fff; }
.btn-white:hover { background: #e8e8e8; border-color: #e8e8e8; }

.btn-outline { background: transparent; color: #aaa; border-color: #333; }
.btn-outline:hover { color: #fff; border-color: #666; }

.btn-outline-white { background: transparent; color: #888; border-color: #2a2a2a; }
.btn-outline-white:hover { color: #fff; border-color: #555; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 64px;
    border-bottom: 1px solid #1a1a1a;
    transition: border-bottom-color 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.nav-logo-img { height: 28px; filter: brightness(0) invert(1); }
.nav-brand { font-size: 1.15rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }

.nav-links {
    display: flex; align-items: center; gap: 4px;
    flex: 1; justify-content: center;
}
.nav-link {
    padding: 6px 13px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #777;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: #fff; background: #111; }

.nav-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-btn {
    padding: 7px 16px;
    font-size: 0.855rem;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    border-radius: 6px;
    color: #999;
    background: transparent;
    border: 1px solid #282828;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}
.nav-btn:hover { color: #fff; border-color: #555; }
.nav-btn-primary { background: #fff; color: #000; border-color: #fff; font-weight: 600; }
.nav-btn-primary:hover { background: #e8e8e8; border-color: #e8e8e8; color: #000; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: #888; border-radius: 2px; transition: background 0.2s;
}
.nav-hamburger:hover span { background: #fff; }

.nav-mobile {
    display: none;
    flex-direction: column;
    background: #000;
    border-top: 1px solid #181818;
    padding: 8px 24px 20px;
    position: absolute;
    top: 64px; left: 0; right: 0;
    z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
    display: block;
    padding: 13px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    text-decoration: none;
    border-bottom: 1px solid #111;
    transition: color 0.2s;
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: #fff; }
.nav-mobile-primary { color: #fff; font-weight: 700; }
.nav-mobile-divider { height: 1px; background: #1e1e1e; margin: 4px 0; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#1c1c1c 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555;
    border: 1px solid #222;
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 44px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-headline {
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.03;
    letter-spacing: -0.045em;
    margin-bottom: 28px;
}
.hero-headline-dim { color: #3a3a3a; }

.hero-sub {
    font-size: 1.15rem;
    color: #5a5a5a;
    max-width: 640px;
    margin: 0 auto 50px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-stat-divider { width: 1px; height: 38px; background: #1e1e1e; }

/* ── Feature strip ───────────────────────────────────────── */
.feat-strip {
    background: #0a0a0a;
    border-top: 1px solid #161616;
    border-bottom: 1px solid #161616;
}
.feat-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    padding: 0 24px;
}
.feat-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 18px 24px;
    flex: 1;
    border-right: 1px solid #161616;
    justify-content: center;
    white-space: nowrap;
}
.feat-item:last-child { border-right: none; }
.feat-item i { font-size: 0.85rem; color: #444; }
.feat-item span { font-size: 0.78rem; color: #444; font-weight: 500; letter-spacing: 0.02em; }

/* ── Why section ─────────────────────────────────────────── */
.why-section { padding: 120px 0; background: #fff; }

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

.usp-card {
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.usp-card:hover {
    border-color: #c8c8c8;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.usp-icon {
    width: 44px; height: 44px;
    background: #000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.usp-icon i { font-size: 1rem; color: #fff; }
.usp-card h3 {
    font-size: 1.025rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}
.usp-card p { font-size: 0.89rem; color: #666; line-height: 1.7; margin-bottom: 20px; }
.usp-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #999;
    background: #efefef;
    border-radius: 4px;
    padding: 3px 8px;
}

/* ── Modules section ─────────────────────────────────────── */
.modules-section { padding: 120px 0; background: #0a0a0a; }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 48px;
}
.module-card {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    padding: 26px 22px;
    transition: border-color 0.2s, transform 0.2s;
}
.module-card:hover { border-color: #2e2e2e; transform: translateY(-2px); }
.module-icon { font-size: 1.15rem; color: #666; margin-bottom: 14px; display: block; }
.module-card h4 { font-size: 0.935rem; font-weight: 700; color: #e5e5e5; margin-bottom: 8px; letter-spacing: -0.01em; }
.module-card p { font-size: 0.84rem; color: #555; line-height: 1.65; }
.modules-cta { text-align: left; }

/* ── Delivery section ────────────────────────────────────── */
.delivery-section { padding: 120px 0; background: #fff; }

.delivery-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.delivery-points { display: flex; flex-direction: column; gap: 13px; margin-bottom: 40px; }
.delivery-point { display: flex; align-items: center; gap: 12px; font-size: 0.94rem; color: #222; font-weight: 500; }
.dcheck { color: #22c55e; font-size: 0.82rem; width: 16px; flex-shrink: 0; }

/* Delivery visual */
.delivery-visual { display: flex; justify-content: center; }
.dv-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.dv-order-card { margin-bottom: 12px; }

.dv-card-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px 10px;
    border-bottom: 1px solid #f4f4f4;
}
.dv-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #aaa; }
.dv-badge {
    font-size: 0.7rem; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.04em;
    background: #dcfce7; color: #15803d;
}
.dv-card-mid { padding: 13px 18px 11px; }
.dv-order-num { font-size: 1.1rem; font-weight: 800; color: #000; letter-spacing: -0.02em; margin-bottom: 4px; }
.dv-addr { font-size: 0.8rem; color: #999; margin-bottom: 6px; }
.dv-addr i { margin-right: 4px; }
.dv-items { font-size: 0.82rem; color: #555; font-weight: 500; }
.dv-card-bot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 18px 13px;
    background: #fafafa; border-top: 1px solid #f0f0f0;
}
.dv-rider { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: #666; font-weight: 500; }
.dv-rider i { color: #999; }
.dv-amount { font-size: 1rem; font-weight: 700; color: #000; }

/* Map card */
.dv-map-card { padding: 16px 18px; }
.dv-map {
    background: #eef1fb;
    border-radius: 10px;
    height: 90px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}
.dv-map-dot {
    position: absolute;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem;
}
.dv-dot-rider { background: #111; color: #fff; bottom: 18px; left: 56px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.dv-dot-dest  { background: #ef4444; color: #fff; top: 14px; right: 48px; box-shadow: 0 2px 8px rgba(239,68,68,0.3); }
.dv-map-line {
    position: absolute;
    bottom: 30px; left: 69px;
    width: 108px; height: 1.5px;
    background: linear-gradient(90deg, #111, #ef4444);
    opacity: 0.25;
    transform: rotate(-19deg);
    transform-origin: left center;
}
.dv-map-label { font-size: 0.76rem; color: #aaa; font-weight: 500; text-align: center; }

/* ── Customer section ────────────────────────────────────── */
.customer-section { padding: 120px 0; background: #f8f8f8; }
.customer-cta { margin-top: 0; }


.cflow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    margin-bottom: 48px;
    gap: 0;
}
.cflow-step { text-align: center; padding: 0 8px; }
.cflow-icon {
    width: 52px; height: 52px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.1rem; color: #444;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cflow-step:hover .cflow-icon { background: #000; color: #fff; border-color: #000; }
.cflow-num { font-size: 0.65rem; font-weight: 700; color: #ccc; letter-spacing: 0.1em; margin-bottom: 10px; }
.cflow-step h4 { font-size: 0.935rem; font-weight: 700; color: #000; margin-bottom: 8px; letter-spacing: -0.01em; }
.cflow-step p { font-size: 0.84rem; color: #777; line-height: 1.65; }
.cflow-arrow {
    display: flex; align-items: flex-start;
    padding-top: 74px;
    color: #d5d5d5; font-size: 0.85rem;
    flex-shrink: 0; padding-left: 4px; padding-right: 4px;
}
.customer-cta { margin-top: 4px; }

/* ── Comparison section ──────────────────────────────────── */
.compare-section { padding: 120px 0; background: #fff; }

.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    min-width: 600px;
}
.compare-head {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.1fr 1.2fr;
    background: #f6f6f6;
    border-bottom: 1px solid #e5e5e5;
}
.cf {
    padding: 15px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    display: flex; align-items: center;
}
.cc {
    padding: 15px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #444;
    text-align: center;
    display: flex; align-items: center; justify-content: center;
    gap: 6px;
    border-left: 1px solid #e5e5e5;
}
.cc-highlight { background: #000; color: #fff !important; }
.compare-logo { height: 13px; filter: brightness(0) invert(1); }

.compare-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.1fr 1.2fr;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: #fafafa; }
.compare-row .cf { font-size: 0.9rem; font-weight: 500; color: #333; text-transform: none; letter-spacing: 0; }
.compare-row .cc { font-size: 0.84rem; color: #555; font-weight: 400; padding: 13px 16px; }
.compare-row .cc-highlight { background: #fafff8; color: #333 !important; }

.cy { color: #22c55e; font-size: 0.95rem; }
.cn { color: #ef4444; font-size: 0.95rem; }
.cp { color: #f59e0b; font-size: 0.95rem; }

/* ── How It Works ─────────────────────────────────────────── */
.how-section { padding: 120px 0; background: #f8f8f8; }

.how-inner { max-width: 820px; }

.how-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #000;
    margin-bottom: 8px;
}

.steps { display: flex; flex-direction: column; margin-top: 52px; }
.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid #ebebeb;
    align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e0e0e0;
    letter-spacing: -0.04em;
    line-height: 1;
    padding-top: 3px;
}
.step-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.step-body p { font-size: 0.915rem; color: #666; line-height: 1.7; max-width: 500px; }

/* ── CTA section ─────────────────────────────────────────── */
.cta-section { background: #000; padding: 120px 24px; text-align: center; }
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-pill {
    display: inline-block;
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a3a3a;
    border: 1px solid #1e1e1e;
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 28px;
}
.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    line-height: 1.1;
}
.cta-inner p { font-size: 1rem; color: #555; margin-bottom: 40px; line-height: 1.75; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: #000; border-top: 1px solid #0f0f0f; padding: 64px 24px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #111;
    align-items: start;
}
.footer-logo {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 16px;
    color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
}
.footer-logo-img { height: 21px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.865rem; color: #3a3a3a; max-width: 320px; line-height: 1.7; }

.footer-links { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #3a3a3a; margin-bottom: 4px;
}
.footer-col a { font-size: 0.865rem; color: #444; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom { text-align: center; }
.footer-copy { font-size: 0.81rem; color: #2e2e2e; line-height: 2.2; }
.footer-link { color: #3a3a3a; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: #fff; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .delivery-inner { gap: 48px; }
    .cflow { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cflow-arrow { display: none; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-btn:not(.nav-btn-primary) { display: none; }

    .delivery-inner { grid-template-columns: 1fr; gap: 40px; }
    .delivery-visual { order: -1; }

    .cflow { grid-template-columns: 1fr 1fr; gap: 28px; }

    .compare-head,
    .compare-row { grid-template-columns: 1.8fr 0.9fr 1fr 1.1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .navbar { height: 58px; }
    .nav-mobile { top: 58px; }

    .hero { padding: 96px 20px 60px; }
    .hero-headline { font-size: clamp(2.6rem, 10vw, 3.8rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
    .hero-stats { gap: 20px; }
    .hero-stat-divider { display: none; }

    .feat-strip-inner { flex-wrap: wrap; padding: 8px 16px; }
    .feat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid #161616; padding: 13px 12px; justify-content: flex-start; }
    .feat-item:nth-child(odd) { border-right: 1px solid #161616; }
    .feat-item:nth-last-child(-n+2) { border-bottom: none; }

    .why-section, .modules-section, .delivery-section,
    .customer-section, .compare-section, .how-section { padding: 80px 0; }

    .usp-grid { grid-template-columns: 1fr; gap: 12px; }
    .modules-grid { grid-template-columns: 1fr; gap: 10px; }

    .cflow { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
    .cflow-step { text-align: left; display: flex; flex-wrap: wrap; gap: 0 14px; align-items: flex-start; }
    .cflow-icon { margin: 0 0 12px 0; flex-shrink: 0; }
    .cflow-num { width: 100%; margin-bottom: 0; order: -1; }
    .cflow-step h4 { width: calc(100% - 66px); margin-top: 0; }
    .cflow-step p { width: 100%; }

    .step { grid-template-columns: 50px 1fr; gap: 20px; }
    .step-num { font-size: 1.8rem; }

    .cta-section { padding: 80px 20px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 280px; text-align: center; }

    .footer-links { gap: 28px; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: 0.7rem; padding: 5px 13px; }
    .feat-item { flex: 0 0 100%; border-right: none !important; }
    .feat-item:nth-last-child(-n+2) { border-bottom: 1px solid #161616; }
    .feat-item:last-child { border-bottom: none; }
    .delivery-inner { gap: 32px; }
    .compare-head { grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr; }
    .compare-head .cf { font-size: 0.65rem; padding: 11px 10px; }
    .compare-head .cc { padding: 11px 8px; font-size: 0.7rem; }
    .compare-logo { height: 10px; }
    .compare-row { grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr; }
    .compare-row .cf { font-size: 0.78rem; padding: 12px 12px; }
    .compare-row .cc { padding: 12px 10px; font-size: 0.78rem; }
}
