/* ===== MarLec Transport – Stylesheet ===== */

:root {
    --navy: #0a2540;
    --navy-deep: #061a30;
    --navy-light: #123a5e;
    --accent: #ff7a00;
    --accent-dark: #e56a00;
    --accent-light: #ff9433;
    --ink: #12202e;
    --muted: #5a6b7b;
    --line: #e3e9f0;
    --bg: #ffffff;
    --bg-soft: #f5f8fc;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 14px rgba(10, 37, 64, 0.08);
    --shadow: 0 18px 40px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 30px 70px rgba(10, 37, 64, 0.22);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', 'Manrope', sans-serif; line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Scroll progress ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 1000; transition: width 0.1s linear;
}

/* ===== Buttons ===== */
.btn {
    --btn-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 26px; border-radius: var(--btn-radius);
    font-weight: 700; font-size: 0.98rem; cursor: pointer; border: 2px solid transparent;
    position: relative; overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap; z-index: 1;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, var(--accent-light), var(--accent-dark));
    transform: translateY(101%); transition: transform 0.4s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: scale(1.15) rotate(-6deg); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(255, 122, 0, 0.35); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(255, 122, 0, 0.45); }
.btn-primary:hover::after { transform: translateY(0); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-outline::after { background: #fff; }
.btn-outline:hover { color: var(--navy); border-color: #fff; }
.btn-outline:hover::after { transform: translateY(0); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost::after { background: var(--navy); }
.btn-ghost:hover { color: #fff; border-color: var(--navy); }
.btn-ghost:hover::after { transform: translateY(0); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light::after { background: linear-gradient(120deg, var(--navy-light), var(--navy)); }
.btn-light:hover { color: #fff; }
.btn-light:hover::after { transform: translateY(0); }

.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
    background: rgba(255, 255, 255, 0); transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 18px 0;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 0; }
/* Solid header for legal pages – always readable */
.site-header.solid { background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.site-header.solid .nav-link { color: var(--navy); text-shadow: none; }
.site-header.solid .brand-name { color: var(--navy); text-shadow: none; }
.site-header.solid .nav-toggle span { background: var(--navy); }
.site-header.solid .nav-cta .btn-ghost { color: var(--navy); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
    height: 60px; width: auto; transition: transform 0.4s var(--ease), height 0.4s ease, background 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.96); border-radius: 14px; padding: 6px 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.site-header.scrolled .brand-logo, .site-header.solid .brand-logo { height: 52px; box-shadow: 0 3px 10px rgba(10,37,64,0.12); }
.brand:hover .brand-logo { transform: scale(1.06); }
.brand-name {
    display: flex; flex-direction: column; line-height: 1; font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 1.45rem; color: var(--navy); letter-spacing: -0.02em; transition: color 0.3s ease;
}
.brand-name-sub { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-top: 3px; }
.site-header:not(.scrolled) .brand-name { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-link {
    position: relative; font-weight: 600; color: var(--navy); font-size: 0.98rem; padding: 4px 0;
    transition: color 0.3s ease;
}
.site-header:not(.scrolled) .nav-link { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.25); }
.nav-link::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--accent); transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; margin-left: 8px; }
.site-header:not(.scrolled) .nav-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 950; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: all 0.35s var(--ease); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background: url('../assets/Intro.png') center/cover no-repeat;
    transform: scale(1.1); animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(6, 26, 48, 0.92) 0%, rgba(10, 37, 64, 0.78) 45%, rgba(10, 37, 64, 0.45) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: 90px; padding-bottom: 90px; }
.eyebrow {
    display: inline-block; padding: 7px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase; background: rgba(255, 122, 0, 0.18);
    color: var(--accent-light); border: 1px solid rgba(255, 122, 0, 0.4); margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); color: #fff; font-weight: 800; margin-bottom: 22px; }
.hero-title .accent { color: var(--accent-light); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255, 255, 255, 0.9); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero-badges { display: flex; gap: 40px; flex-wrap: wrap; }
.badge-item { display: flex; flex-direction: column; }
.badge-item strong { font-family: 'Sora', sans-serif; font-size: 1.8rem; color: #fff; }
.badge-item span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; }
.scroll-hint span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 5px; height: 8px; background: #fff; border-radius: 3px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 24px; } 100% { opacity: 0; } }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-tag {
    display: inline-block; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
}
.section-tag.light { color: var(--accent-light); }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ===== Cards ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
    position: relative; overflow: hidden;
}
.card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light)); transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(255,122,0,0.14), rgba(255,148,51,0.18)); color: var(--accent);
    transition: transform 0.4s var(--ease), background 0.4s ease, color 0.4s ease;
}
.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-image {
    border-radius: var(--radius); min-height: 440px; box-shadow: var(--shadow);
    background: url('../assets/uber uns.png') center/cover no-repeat;
    transition: transform 0.5s var(--ease);
}
.about-media:hover .about-image { transform: scale(1.02); }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 14px 0 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.feature-list { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 34px; font-weight: 600; color: var(--ink); }
.feature-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 0.8rem; font-weight: 800;
}

/* ===== Stats ===== */
.stats-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, var(--navy-light)); padding: 70px 0; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--accent-light); display: block; }
.stat p { color: rgba(255,255,255,0.82); font-size: 0.98rem; margin-top: 6px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center;
    position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
    font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 8px 18px rgba(255,122,0,0.35);
    transition: transform 0.4s var(--ease);
}
.step:hover .step-num { transform: scale(1.12) rotate(6deg); }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); position: relative; overflow: hidden; }
.cta-section::before, .cta-section::after {
    content: ""; position: absolute; border-radius: 50%; background: rgba(255,122,0,0.18); filter: blur(60px);
}
.cta-section::before { width: 340px; height: 340px; top: -120px; right: -80px; }
.cta-section::after { width: 260px; height: 260px; bottom: -120px; left: -60px; background: rgba(18,58,94,0.6); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; color: #fff; }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 12px 0 16px; }
.cta-inner > p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.cta-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 30px; }
.cta-info div { display: flex; flex-direction: column; gap: 4px; }
.cta-info strong { color: var(--accent-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cta-info span { color: rgba(255,255,255,0.9); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 72px; margin-bottom: 18px; background: rgba(255,255,255,0.96); border-radius: 14px; padding: 8px 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col a, .footer-addr { display: block; color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 10px; transition: color 0.3s ease, transform 0.3s ease; }
.footer-col a:hover { color: var(--accent-light); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.9rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--accent-light); }

/* ===== Floating action buttons ===== */
.fab-group { position: fixed; right: 22px; bottom: 22px; z-index: 800; display: flex; flex-direction: column; gap: 14px; }
.fab {
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff;
    box-shadow: var(--shadow); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); position: relative;
}
.fab-call { background: linear-gradient(135deg, #22c55e, #16a34a); animation: fabPulse 2.4s infinite; }
.fab-mail { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.fab:hover { transform: scale(1.12) translateY(-2px); box-shadow: var(--shadow-lg); }
@keyframes fabPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 70% { box-shadow: 0 0 0 16px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }

/* ===== Legal pages ===== */
.legal-page { padding: 140px 0 90px; }
.legal-page .container { max-width: 860px; }
.legal-hero { margin-bottom: 40px; }
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px; }
.legal-hero p { color: var(--muted); }
.legal-content h2 { font-size: 1.35rem; margin: 34px 0 12px; color: var(--navy); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal-content p, .legal-content li { color: var(--muted); margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; margin-bottom: 12px; }
.legal-content a { color: var(--accent-dark); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; margin: 20px 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 700; color: var(--accent-dark); }
.back-link:hover { gap: 12px; transition: gap 0.3s var(--ease); }

/* ===== Modal ===== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center;
    padding: 24px; background: rgba(6, 26, 48, 0.72); backdrop-filter: blur(6px);
    opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    position: relative; background: #fff; border-radius: var(--radius); width: min(760px, 100%);
    max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.98); transition: transform 0.4s var(--ease); -webkit-overflow-scrolling: touch;
}
.modal-overlay.open .modal { transform: none; }
.modal-body { padding: 44px 46px; }
.modal-body h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 12px 0 14px; }
.modal-body h3 { font-size: 1.15rem; margin: 24px 0 8px; color: var(--navy); }
.modal-body p { color: var(--muted); margin-bottom: 12px; }
.modal-body a:not(.btn) { color: var(--accent-dark); font-weight: 600; }
.modal-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin: 16px 0; color: var(--ink); line-height: 1.9; }
.modal-list { list-style: none; margin: 8px 0 4px; display: grid; gap: 10px; }
.modal-list li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.modal-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 0.72rem; font-weight: 800; }
.modal-body .btn { margin-top: 22px; }
.modal-close {
    position: sticky; top: 14px; float: right; margin: 14px 14px 0 0; width: 42px; height: 42px; border-radius: 50%;
    border: none; background: var(--bg-soft); color: var(--navy); font-size: 1.6rem; line-height: 1; cursor: pointer;
    display: grid; place-items: center; transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease); z-index: 2;
}
.modal-close:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }
body.modal-open { overflow: hidden; }
@media (max-width: 560px) { .modal-body { padding: 34px 24px; } }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.cards-grid .reveal:nth-child(2), .steps .reveal:nth-child(2), .stats-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.cards-grid .reveal:nth-child(3), .steps .reveal:nth-child(3), .stats-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.cards-grid .reveal:nth-child(4), .steps .reveal:nth-child(4), .stats-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.cards-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.cards-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-image { min-height: 320px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-info { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
        background: #fff; flex-direction: column; align-items: flex-start; justify-content: center;
        padding: 40px; gap: 22px; box-shadow: -20px 0 60px rgba(0,0,0,0.2); transition: right 0.4s var(--ease);
    }
    .main-nav.open { right: 0; }
    .main-nav .nav-link { color: var(--navy) !important; font-size: 1.2rem; text-shadow: none; }
    .nav-cta { flex-direction: column; width: 100%; margin: 10px 0 0; }
    .nav-cta .btn { width: 100%; }
    .site-header:not(.scrolled) .nav-cta .btn-ghost { color: var(--navy); border-color: var(--line); }
    .section { padding: 70px 0; }
    .hero-badges { gap: 26px; }
    .brand-logo { height: 54px; }
    .site-header.scrolled .brand-logo { height: 48px; }
    .brand-name { font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
