/* ============================================================
   MOVING APP — Hlavní stylesheet
   Autor: jpmt.cz | v1.0
   ============================================================ */

/* ── CSS proměnné ── */
:root {
    --navy:        #1e3a5f;
    --navy-dark:   #152a47;
    --navy-light:  #2c5282;
    --orange:      #f97316;
    --orange-dark: #ea6c0a;
    --orange-light:#fed7aa;
    --white:       #ffffff;
    --bg:          #f8fafc;
    --bg-card:     #ffffff;
    --border:      #e2e8f0;
    --text:        #1e293b;
    --text-muted:  #64748b;
    --text-light:  #94a3b8;
    --success:     #10b981;
    --warning:     #f59e0b;
    --danger:      #ef4444;
    --radius:      10px;
    --radius-lg:   16px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow:      0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
    --transition:  .2s ease;
    --max-w:       1200px;
    --header-h:    72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Layout utility ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }

/* ── Typografie ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); }
.lead { font-size: 1.15rem; color: var(--text-muted); }

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.section-title {
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
}
.section-title + .section-subtitle { margin-bottom: 48px; }

/* ── Tlačítka ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,.45);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
}
.btn-white:hover {
    background: var(--bg);
    transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Header / Navigace ── */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.logo-text span { color: var(--orange); }

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.nav a:hover { color: var(--navy); background: var(--bg); }
.nav a.active { color: var(--navy); font-weight: 600; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.menu-toggle:hover { background: var(--bg); }

/* Mobile nav drawer */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    z-index: 999;
    box-shadow: var(--shadow);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.nav-mobile a:hover { background: var(--bg); color: var(--navy); }
.nav-mobile .btn { margin-top: 12px; }

/* ── Hero sekce ── */
#hero {
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4d7b 100%);
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 70%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(249,115,22,.15) 0%, transparent 65%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 span { color: var(--orange); }
.hero-content .lead { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    font-size: .9rem;
}
.hero-badge svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }

/* Hero ilustrace — SVG truck */
.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-illustration svg {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}

/* ── Statistiky ── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-color: var(--border);
}
.stat-item {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
}
.stat-number span { color: var(--orange); }
.stat-label { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

/* ── Služby ── */
#services { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .92rem; line-height: 1.7; }
.service-card .btn { margin-top: 20px; }

/* ── Jak to funguje ── */
#how-it-works { background: var(--white); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, var(--orange) 50%, var(--border) 100%);
}
.step { text-align: center; padding: 0 20px; }
.step-num {
    width: 72px; height: 72px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--navy);
    position: relative;
    z-index: 1;
}
.step h3 { margin-bottom: 10px; }

/* ── Objednávkový formulář ── */
#order { background: var(--navy); position: relative; overflow: hidden; }
#order::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(249,115,22,.12) 0%, transparent 60%);
    pointer-events: none;
}
#order .section-label { color: var(--orange-light); }
#order .section-title { color: var(--white); }
#order .section-subtitle { color: rgba(255,255,255,.65); }

.order-box {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}

/* Kroky formuláře */
.form-steps {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.form-step-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    cursor: default;
}
.form-step-tab .step-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}
.form-step-tab.active {
    color: var(--navy);
    border-bottom-color: var(--orange);
}
.form-step-tab.active .step-dot {
    background: var(--orange);
    color: var(--white);
}
.form-step-tab.done .step-dot {
    background: var(--success);
    color: var(--white);
}

.form-body { padding: 36px 40px; }

/* Formulářové panely */
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeIn .25s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Výběr typu služby */
.service-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.service-pick-btn {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}
.service-pick-btn:hover {
    border-color: var(--navy);
    background: var(--bg);
}
.service-pick-btn.selected {
    border-color: var(--orange);
    background: #fff7ed;
}
.service-pick-btn svg {
    width: 32px; height: 32px;
    fill: var(--text-muted);
    margin: 0 auto 10px;
    transition: var(--transition);
}
.service-pick-btn.selected svg { fill: var(--orange); }
.service-pick-btn span {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text);
}
.service-pick-btn small { color: var(--text-muted); font-size: .8rem; }

/* Formulářové skupiny */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-grid.cols-1 { grid-template-columns: 1fr; }
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}
label .req { color: var(--orange); margin-left: 2px; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .92rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30,58,95,.12);
}
input.error, select.error, textarea.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
textarea { resize: vertical; min-height: 90px; }
.field-error { font-size: .8rem; color: var(--danger); margin-top: 2px; display: none; }
.field-error.show { display: block; }

/* Checkbox/radio row */
.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.check-row:hover { border-color: var(--navy); background: var(--bg); }
.check-row input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--orange);
    cursor: pointer;
    padding: 0;
    border: none;
    flex-shrink: 0;
}
.check-row span { font-size: .88rem; font-weight: 500; color: var(--text); }

/* Adresní blok */
.address-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 18px;
}
.address-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.address-block-title svg { width: 16px; height: 16px; fill: var(--orange); }

/* Cenová kalkulace */
.price-preview {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    padding: 20px 24px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}
.price-preview-label { font-size: .85rem; opacity: .75; margin-bottom: 4px; }
.price-preview-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}
.price-preview-note { font-size: .78rem; opacity: .6; margin-top: 2px; }
.price-calculating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    opacity: .7;
}

/* Shrnutí objednávky */
.order-summary {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    font-size: .9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row dt { color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.summary-row dd { color: var(--text); font-weight: 600; text-align: right; }
.summary-total {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    padding: 20px 24px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}
.summary-total-label { font-size: .9rem; opacity: .8; }
.summary-total-price { font-size: 1.6rem; font-weight: 800; color: var(--orange); }

/* Navigace formuláře */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    gap: 12px;
}
.form-nav .btn-prev { color: var(--text-muted); }
.form-nav .btn-prev:hover { color: var(--navy); }
.form-progress {
    font-size: .82rem;
    color: var(--text-muted);
}

/* Úspěšné odeslání */
.success-state {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 80px; height: 80px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.success-icon svg { width: 40px; height: 40px; fill: var(--success); }
.success-state h3 { font-size: 1.5rem; margin-bottom: 12px; }

/* ── O nás ── */
#about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.about-feature-icon {
    width: 42px; height: 42px;
    background: #fff7ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.about-feature-text h4 { margin-bottom: 4px; }
.about-feature-text p { font-size: .88rem; }

.about-visual {
    position: relative;
}
.about-img-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-img-placeholder svg {
    width: 60%;
    opacity: .4;
    fill: var(--white);
}
.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}
.about-badge-text { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }

/* ── Kontakt ── */
#contact { background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.contact-item-label { font-size: .8rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-value { font-weight: 600; color: var(--text); font-size: .95rem; }
.contact-item-value a:hover { color: var(--orange); }

/* Quick contact form */
.quick-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.quick-form h3 { margin-bottom: 20px; }

/* ── Footer ── */
#footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.65);
    padding: 60px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-icon { background: rgba(255,255,255,.1); }
.footer-brand .logo { color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 {
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .82rem;
}
.footer-bottom a:hover { color: var(--orange); }

/* ── Toast notifikace ── */
#toast-container {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--text);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 10px;
    font-size: .9rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideUp .25s ease;
    max-width: 320px;
}
.toast.success { background: var(--success); }
.toast.error   { background: var(--danger); }
.toast svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Spinner ── */
.spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { gap: 40px; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    /* Header */
    .nav { display: none; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-illustration { order: -1; }
    .hero-illustration svg { max-width: 300px; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    #hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 48px; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .steps-grid::before { display: none; }

    /* Form */
    .form-body { padding: 24px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .service-picker { grid-template-columns: 1fr 1fr; }
    .form-steps { overflow-x: auto; }
    .form-step-tab { min-width: 90px; font-size: .75rem; padding: 14px 8px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { display: none; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Section */
    .section { padding: 56px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .service-picker { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .btn-lg { padding: 14px 24px; font-size: .95rem; }
    .price-preview { flex-direction: column; text-align: center; }
}
