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

:root {
    --red: #ff2d3b;
    --red-dark: #d41a26;
    --red-glow: rgba(255,45,59,.18);
    --accent: #ff4757;
    --green: #00d26a;
    --bg: #0d0d0f;
    --surface: #141416;
    --surface-2: #1a1a1e;
    --surface-3: #222228;
    --border: #1e1e22;
    --border-hover: #2a2a30;
    --text: #ededf0;
    --text-secondary: #87879a;
    --text-muted: #4a4a5c;
    --font-display: 'Space Grotesk', sans-serif;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 6px;
    --radius-sm: 4px;
    --radius-xs: 3px;
    --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }

.typing-cursor {
    display: inline;
    font-weight: 400;
    animation: blink .7s step-end infinite;
    color: var(--red);
}
@keyframes blink { 50% { opacity: 0; } }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a30; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2.5rem; height: 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: .3s ease;
}
.navbar.scrolled {
    background: rgba(13,13,15,.98);
    box-shadow: 0 1px 0 var(--border);
}
.nav-brand {
    display: flex; align-items: center; gap: .5rem;
    font-family: var(--font-display);
    font-weight: 700; font-size: 1rem; letter-spacing: -.02em;
}
.nav-brand img { height: 26px; width: 26px; border-radius: 4px; }
.nav-links {
    display: flex; align-items: center; gap: 0;
}
.nav-links a {
    padding: .45rem .8rem; border-radius: 0;
    font-size: .78rem; font-weight: 500; color: var(--text-muted);
    transition: .2s ease; letter-spacing: .01em;
    position: relative;
}
.nav-links a:hover { color: var(--text-secondary); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -1px; left: .8rem; right: .8rem;
    height: 1px; background: var(--red);
}
.nav-cta {
    background: var(--red) !important; color: #fff !important;
    padding: .4rem 1rem !important; border-radius: var(--radius) !important;
    font-weight: 600 !important; margin-left: .75rem;
    font-size: .78rem !important;
    transition: .2s ease !important;
}
.nav-cta:hover { opacity: .85 !important; }

.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 18px; height: 1.5px; background: var(--text); border-radius: 0; transition: .3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.7);
    opacity: 0; pointer-events: none; z-index: 998; transition: .3s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

.hero {
    min-height: 100vh; display: flex; align-items: center;
    text-align: left; padding: 8rem 2rem 6rem; position: relative;
    overflow: hidden; max-width: 1200px; margin: 0 auto;
}
.hero::before {
    content: ''; position: absolute; top: 50%; right: 0;
    width: 300px; height: 300px;
    border: 1px solid var(--border);
    border-radius: 0; transform: rotate(45deg) translateY(-50%);
    pointer-events: none; opacity: .5;
}
.hero::after {
    content: ''; position: absolute; top: 50%; right: 60px;
    width: 200px; height: 200px;
    border: 1px solid rgba(255,45,59,.12);
    border-radius: 0; transform: rotate(45deg) translateY(-50%);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 620px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .3rem .7rem; border-radius: 0;
    background: transparent; border: 1px solid var(--red);
    font-size: .65rem; font-weight: 600; color: var(--red);
    margin-bottom: 2rem; letter-spacing: .08em; text-transform: uppercase;
}
.hero-badge i {
    font-size: .55rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700; line-height: 1;
    letter-spacing: -.05em; margin-bottom: .6rem;
}
.hero h1 .gradient {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
    background: none;
}
.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: .95rem; color: var(--text-secondary);
    max-width: 440px; margin: 0 0 2.5rem; line-height: 1.8;
}
.hero-buttons { display: flex; gap: .65rem; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.4rem; border-radius: var(--radius);
    font-size: .82rem; font-weight: 600; font-family: var(--font);
    cursor: pointer; transition: .2s ease; border: none;
    text-decoration: none; white-space: nowrap; letter-spacing: 0;
}
.btn-primary {
    background: var(--red); color: #fff;
}
.btn-primary:hover {
    opacity: .88; transform: translateY(-1px);
}
.btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--border-hover); background: var(--surface); }
.btn-ghost {
    background: transparent; color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.section {
    padding: 5rem 2rem; max-width: 1200px; margin: 0 auto;
}
.section-label {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .65rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--red); margin-bottom: .6rem;
    font-family: var(--font-display);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; letter-spacing: -.04em; line-height: 1.1;
    margin-bottom: .6rem;
}
.section-desc {
    font-size: .88rem; color: var(--text-secondary);
    max-width: 500px; line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }

.page-hero {
    padding: 10rem 2rem 3rem; text-align: left;
    max-width: 1200px; margin: 0 auto;
    position: relative;
}
.page-hero::before {
    content: ''; position: absolute; top: 8rem; right: 2rem;
    width: 120px; height: 120px;
    border: 1px solid rgba(255,45,59,.1);
    transform: rotate(45deg);
    pointer-events: none;
}
.page-hero > * { position: relative; }

.marquee-wrap {
    overflow: hidden; padding: .7rem 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
    z-index: 2; pointer-events: none;
}
.marquee-wrap::before {
    left: 0; background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-wrap::after {
    right: 0; background: linear-gradient(to left, var(--bg), transparent);
}
.marquee-track {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 40s linear infinite;
}
.marquee-item {
    font-size: .68rem; font-weight: 600; color: var(--text-muted);
    white-space: nowrap; display: flex; align-items: center; gap: .5rem;
    text-transform: uppercase; letter-spacing: .15em;
    font-family: var(--font-display);
}
.marquee-item i { color: var(--red); font-size: .25rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.stats-row {
    display: flex; gap: .75rem; justify-content: stretch; flex-wrap: wrap;
}
.stat-box {
    background: var(--surface); padding: 1.8rem 1.5rem; text-align: center;
    flex: 1; min-width: 120px;
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: .25s ease;
}
.stat-box:hover {
    border-color: var(--border-hover); background: var(--surface-2);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700; letter-spacing: -.04em;
    color: var(--text);
}
.stat-lbl {
    font-size: .65rem; color: var(--text-muted); margin-top: .25rem;
    text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
    font-family: var(--font-display);
}

.transport-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: .75rem;
}
.transport-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: .25s ease;
    display: flex; flex-direction: column;
    position: relative;
}
.transport-card:hover {
    background: var(--surface-2); border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.transport-card-head {
    padding: 1.5rem 1.6rem 1.2rem;
    display: flex; align-items: center; gap: 1rem;
    border-bottom: 1px solid var(--border);
}
.transport-logo {
    width: 42px; height: 42px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
    background: #fff;
}
.transport-logo img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 3px; border-radius: var(--radius);
}
.transport-card-head h3 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; letter-spacing: -.02em;
}
.transport-card-head .transport-type {
    font-size: .7rem; color: var(--text-muted); margin-top: .15rem;
}
.transport-card-body { padding: 1.2rem 1.6rem 1.4rem; flex: 1; }
.transport-card-body .services-list {
    display: flex; flex-direction: column;
}
.service-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.03);
    font-size: .82rem;
}
.service-row:last-child { border-bottom: none; }
.service-name { color: var(--text-secondary); font-weight: 500; }
.service-price {
    color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums;
    font-family: var(--font-display); letter-spacing: -.02em;
}

.service-category-label {
    padding: .8rem 0 .3rem;
    font-weight: 700; color: var(--red); font-size: .65rem;
    text-transform: uppercase; letter-spacing: .1em;
    border-bottom: 1px solid rgba(255,45,59,.08);
    display: flex; align-items: center; gap: .4rem;
    font-family: var(--font-display);
}
.service-category-label i { font-size: .55rem; }

.transport-footer {
    padding: .7rem 1.6rem 1.1rem;
    display: flex; gap: .5rem; flex-wrap: wrap;
}
.transport-tag {
    padding: .2rem .5rem; border-radius: 0;
    font-size: .64rem; font-weight: 600;
    background: var(--surface-2); color: var(--text-muted);
    border: none; font-family: var(--font-display);
    letter-spacing: .02em;
}

.transport-card-link {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .75rem; border-top: 1px solid var(--border);
    font-size: .76rem; font-weight: 600; color: var(--text-muted);
    transition: .2s ease; text-decoration: none;
}
.transport-card-link:hover { background: rgba(255,45,59,.03); color: var(--red); }

.scan-compare {
    margin-bottom: 3rem;
}
.scan-pills {
    display: flex; gap: .35rem; flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
}
.scan-pill {
    padding: .5rem .9rem; border-radius: var(--radius);
    font-size: .74rem; font-weight: 600; color: var(--text-muted);
    background: var(--surface); border: 1px solid var(--border);
    cursor: pointer; transition: .2s ease;
    font-family: var(--font); letter-spacing: 0;
    white-space: nowrap;
}
.scan-pill:hover { color: var(--text-secondary); background: var(--surface-2); }
.scan-pill.active {
    color: #fff; background: var(--red);
    border-color: var(--red);
}

.scan-result {
    display: none; animation: scanFadeIn .25s ease;
}
.scan-result.active { display: block; }
@keyframes scanFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.scan-result-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: .75rem;
}
.scan-result-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.3rem 1rem;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: .5rem;
    transition: .2s ease;
}
.scan-result-card:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.scan-result-card .scan-carrier-logo {
    width: 32px; height: 32px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    background: #fff; overflow: hidden;
}
.scan-result-card .scan-carrier-logo img {
    width: 100%; height: 100%; object-fit: contain; padding: 2px;
}
.scan-result-card .scan-carrier-name {
    font-size: .75rem; font-weight: 600; color: var(--text-secondary);
}
.scan-result-card .scan-carrier-price {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700; color: var(--text);
    letter-spacing: -.03em;
}
.scan-result-card .scan-carrier-note {
    font-size: .6rem; color: var(--red); font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    font-family: var(--font-display);
}

.feature-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: .75rem;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem 1.7rem;
    transition: .25s ease;
    position: relative;
}
.feature-card:hover {
    background: var(--surface-2); border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.feature-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(255,45,59,.12), rgba(255,45,59,.04));
    border: 1px solid rgba(255,45,59,.15);
    color: var(--red); font-size: 1rem; margin-bottom: 1.2rem;
    transition: .25s ease;
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(255,45,59,.2), rgba(255,45,59,.08));
    border-color: rgba(255,45,59,.3);
    transform: scale(1.05);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: .95rem; font-weight: 700; margin-bottom: .35rem;
    letter-spacing: -.02em;
}
.feature-card p { font-size: .82rem; color: var(--text-secondary); line-height: 1.65; }

.timeline { position: relative; max-width: 700px; }
.timeline::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
    width: 1px;
    background: var(--border);
}
.timeline-step {
    display: flex; gap: 1.5rem; padding-bottom: 2rem;
    position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(255,45,59,.12), rgba(255,45,59,.04));
    border: 1px solid rgba(255,45,59,.15);
    font-weight: 700; font-size: .9rem; color: var(--red);
    position: relative; z-index: 1; transition: .25s ease;
}
.timeline-step:hover .timeline-dot {
    background: linear-gradient(135deg, rgba(255,45,59,.2), rgba(255,45,59,.08));
    border-color: rgba(255,45,59,.3);
    transform: scale(1.05);
}
.timeline-body {
    flex: 1;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.4rem 1.5rem;
    transition: .25s ease;
}
.timeline-step:hover .timeline-body {
    border-color: var(--border-hover);
}
.timeline-body h3 {
    font-family: var(--font-display);
    font-size: .95rem; font-weight: 700; margin-bottom: .35rem;
    display: flex; align-items: center; gap: .5rem;
    letter-spacing: -.02em;
}
.timeline-body h3 .step-label {
    font-size: .58rem; font-weight: 700;
    padding: .15rem .45rem; border-radius: 0;
    background: rgba(255,45,59,.06); color: var(--red);
    text-transform: uppercase; letter-spacing: .06em;
    font-family: var(--font-display);
}
.timeline-body p { font-size: .82rem; color: var(--text-secondary); line-height: 1.65; }

.rules-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
.rule-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.7rem;
    display: flex; flex-direction: column; gap: .7rem;
    transition: .25s ease; position: relative;
}
.rule-card:hover {
    background: var(--surface-2);
}
.rule-num {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(255,45,59,.12), rgba(255,45,59,.04));
    border: 1px solid rgba(255,45,59,.15);
    font-family: var(--font-display);
    font-weight: 700; color: var(--red); font-size: .82rem;
}
.rule-card h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; margin-bottom: .2rem; letter-spacing: -.02em; }
.rule-card p { font-size: .8rem; color: var(--text-secondary); line-height: 1.6; }

.info-box {
    display: flex; align-items: flex-start; gap: .9rem;
    padding: 1.1rem 1.3rem; border-radius: var(--radius);
    background: var(--surface); border: 1px solid var(--border);
    border-left: 2px solid var(--red);
    font-size: .82rem; color: var(--text-secondary); line-height: 1.6;
}
.info-box i { color: var(--red); margin-top: .15rem; flex-shrink: 0; }

.guarantee-box {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.5rem 1.75rem; border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 2px solid var(--green);
}
.guarantee-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,210,106,.12), rgba(0,210,106,.04));
    color: var(--green); font-size: 1rem;
    border: 1px solid rgba(0,210,106,.15);
}
.guarantee-box h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--green); margin-bottom: .2rem; }
.guarantee-box p { font-size: .8rem; color: var(--text-secondary); line-height: 1.55; }

.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: .75rem;
    max-width: 680px;
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2.2rem 1.7rem;
    text-align: center; transition: .25s ease;
    text-decoration: none; display: block;
    position: relative;
}
.contact-card:hover {
    background: var(--surface-2);
}
.contact-icon {
    width: 52px; height: 52px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem; font-size: 1.3rem; color: #fff;
}
.contact-card h3 { font-family: var(--font-display); font-size: .98rem; font-weight: 700; margin-bottom: .35rem; letter-spacing: -.01em; }
.contact-handle { color: var(--red); font-weight: 700; font-size: .92rem; font-family: var(--font-display); }
.contact-card .sub { font-size: .72rem; color: var(--text-muted); margin-top: .3rem; }

.cta-section {
    text-align: center; padding: 4rem 2rem;
    margin: 2rem auto; max-width: 1200px; border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent);
    pointer-events: none;
}
.cta-section > * { position: relative; }
.cta-section .hero-buttons { justify-content: center; }
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700; letter-spacing: -.04em; margin-bottom: .65rem;
}
.cta-section p {
    color: var(--text-secondary); font-size: .88rem;
    max-width: 420px; margin: 0 auto 1.8rem;
}
.cta-section .btn-primary {
    background: var(--red); color: #fff;
}
.cta-section .btn-outline {
    border-color: var(--border); color: var(--text);
    background: transparent;
}

.notes-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: .75rem;
}
.note-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.4rem 1.3rem;
    transition: .25s ease;
}
.note-card:hover { background: var(--surface-2); border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.note-card h4 {
    display: flex; align-items: center; gap: .45rem;
    font-family: var(--font-display);
    font-size: .83rem; font-weight: 700; margin-bottom: .35rem;
}
.note-card h4 i { color: var(--red); font-size: .75rem; }
.note-card p { font-size: .8rem; color: var(--text-secondary); line-height: 1.6; }

.footer {
    padding: 2.5rem 2rem 1.75rem;
    border-top: 1px solid var(--border);
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
    display: flex; align-items: center;
    gap: .4rem;
    font-family: var(--font-display);
    font-weight: 700; font-size: .9rem;
}
.footer-brand img { height: 20px; width: 20px; border-radius: 3px; }
.footer-links {
    display: flex; gap: 1.25rem;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: .72rem; color: var(--text-muted); font-weight: 500;
    transition: .2s ease;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: .65rem; color: var(--text-muted); letter-spacing: .02em; width: 100%; text-align: center; margin-top: .5rem; }

.fade-in {
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger > * { opacity: 0; transform: translateY(10px); transition: opacity .35s ease, transform .35s ease; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: .02s; }
.stagger.visible > *:nth-child(2) { transition-delay: .04s; }
.stagger.visible > *:nth-child(3) { transition-delay: .06s; }
.stagger.visible > *:nth-child(4) { transition-delay: .08s; }
.stagger.visible > *:nth-child(5) { transition-delay: .10s; }
.stagger.visible > *:nth-child(6) { transition-delay: .12s; }

@media (max-width: 768px) {
    .navbar { padding: 0 1.25rem; height: 52px; }
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
        flex-direction: column; padding: 4rem 1.25rem 2rem; gap: .15rem;
        background: var(--surface); border-left: 1px solid var(--border);
        transition: .3s ease; z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: .65rem .9rem; width: 100%; font-size: .82rem; }
    .nav-links a.active::after { display: none; }
    .nav-links a.active { background: var(--surface-2); }
    .nav-cta { margin-left: 0 !important; margin-top: .5rem; text-align: center; }

    .hero { padding: 7rem 1.25rem 3.5rem; min-height: auto; }
    .hero::before, .hero::after { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; justify-content: center; }

    .section { padding: 3.5rem 1.25rem; }
    .transport-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .rules-grid { grid-template-columns: 1fr; }

    .timeline-step { gap: .75rem; }
    .timeline::before { left: 16px; }
    .timeline-dot { width: 36px; height: 36px; font-size: .8rem; }
    .timeline-body { padding: 1.1rem 1.2rem; }

    .cta-section { margin: 1rem; padding: 2.5rem 1.25rem; }
    .guarantee-box { flex-direction: column; text-align: center; padding: 1.3rem; }

    .page-hero { padding: 7.5rem 1.25rem 2.5rem; }
    .page-hero::before { display: none; }

    .scan-pills { flex-wrap: wrap; overflow: visible; }
    .scan-pill { flex: 1; min-width: 0; text-align: center; font-size: .68rem; padding: .4rem .6rem; }
    .scan-result-grid { grid-template-columns: repeat(2, 1fr); }

    .footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .stat-box { padding: 1.2rem 1rem; }
    .stat-num { font-size: 1.5rem; }
    .transport-card-head { padding: 1.1rem 1.2rem; }
    .transport-card-body { padding: 1rem 1.2rem; }
    .transport-footer { padding: .6rem 1.2rem .8rem; }
    .scan-result-grid { grid-template-columns: 1fr 1fr; }
    .scan-result-card { padding: 1rem .7rem; }
    .scan-result-card .scan-carrier-price { font-size: 1.15rem; }
    .timeline-step { flex-direction: column; gap: .5rem; }
    .timeline::before { display: none; }
}

.boutiques-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.25rem;
}
.search-box {
    flex: 1; max-width: 400px; position: relative;
}
.search-box i {
    position: absolute; left: .9rem; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: .78rem;
}
.search-box input {
    width: 100%; padding: .6rem .9rem .6rem 2.3rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text);
    font-family: var(--font); font-size: .8rem;
    outline: none; transition: .2s ease;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus { border-color: var(--red); }
.boutiques-count {
    font-size: .76rem; color: var(--text-muted); font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-display);
}
.boutiques-count span { color: var(--red); }

.category-filters {
    display: flex; gap: .35rem; flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 0; background: transparent;
}
.cat-pill {
    padding: .4rem .8rem; border-radius: var(--radius);
    font-size: .72rem; font-weight: 600; color: var(--text-muted);
    background: var(--surface); border: 1px solid var(--border);
    cursor: pointer; transition: .2s ease;
    font-family: var(--font); display: inline-flex;
    align-items: center; gap: .3rem; white-space: nowrap;
}
.cat-pill:hover { color: var(--text-secondary); background: var(--surface-2); }
.cat-pill.active {
    color: #fff; background: var(--red);
}
.cat-pill i { font-size: .6rem; }

.cat-section { margin-bottom: 2.5rem; }
.cat-section.hidden { display: none; }
.cat-section-header {
    display: flex; align-items: center; gap: .7rem;
    margin-bottom: 1rem; padding-bottom: .7rem;
    border-bottom: 1px solid var(--border);
}
.cat-section-icon {
    width: 32px; height: 32px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--border);
    color: var(--red); font-size: .8rem; flex-shrink: 0;
}
.cat-section-header h3 {
    font-family: var(--font-display);
    font-size: .9rem; font-weight: 700; letter-spacing: -.02em;
}
.cat-section-count {
    font-size: .65rem; color: var(--text-muted); font-weight: 600;
    margin-left: auto; white-space: nowrap;
    font-family: var(--font-display);
}

.boutiques-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
}
.shop-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: .85rem .95rem;
    transition: .2s ease;
}
.shop-card:hover {
    background: var(--surface-2);
}
.shop-card.hidden { display: none; }
.shop-card-name {
    font-family: var(--font-display);
    font-size: .82rem; font-weight: 700; margin-bottom: .35rem;
    letter-spacing: -.01em;
}
.shop-card-info {
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.shop-card-budget {
    font-family: var(--font-display);
    font-size: .76rem; font-weight: 700; color: var(--text);
}
.shop-card-articles {
    font-size: .66rem; color: var(--text-muted); font-weight: 500;
}
.shop-card-time {
    font-size: .66rem; color: var(--text-muted); font-weight: 500;
    display: inline-flex; align-items: center; gap: .2rem;
}
.shop-card-time i { font-size: .55rem; }
.shop-card-note {
    margin-top: .35rem; font-size: .64rem; font-weight: 600;
    color: #f59e0b; display: flex; align-items: center; gap: .25rem;
}
.shop-card-note i { font-size: .55rem; }

.no-results {
    display: none; text-align: center; padding: 3rem 1rem;
    color: var(--text-muted); font-size: .9rem;
}
.no-results.visible { display: block; }

/* Formation section */
.formation-duo {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
.formation-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem 1.7rem;
    text-align: center; transition: .25s ease;
}
.formation-card:hover {
    background: var(--surface-2); border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.formation-icon {
    font-size: 2.5rem; margin-bottom: 1rem;
    line-height: 1;
}
.formation-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 700; letter-spacing: -.03em;
    margin-bottom: .5rem;
}
.formation-card p {
    font-size: .82rem; color: var(--text-secondary); line-height: 1.65;
}

.formation-plans {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: .75rem; margin-top: 1.5rem;
}
.plan-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem 1.7rem;
    text-align: center; transition: .25s ease;
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.plan-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.plan-featured {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(255,45,59,.04), var(--surface));
    position: relative; overflow: hidden;
    padding-top: 3.5rem;
}
.plan-recommend {
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--red); color: #fff;
    font-family: var(--font-display);
    font-size: .65rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; text-align: center;
    padding: .5rem 0;
    display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.plan-recommend i {
    font-size: .6rem;
}
.plan-featured:hover {
    border-color: var(--red);
}
.plan-badge {
    font-family: var(--font-display);
    font-size: .6rem; font-weight: 700; letter-spacing: .15em;
    text-transform: uppercase; color: var(--red);
    padding: .25rem .7rem; border-radius: var(--radius);
    background: rgba(255,45,59,.08);
    border: 1px solid rgba(255,45,59,.12);
}
.plan-price {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 700; letter-spacing: -.04em;
    color: var(--text);
}
.plan-price span {
    font-size: .85rem; font-weight: 500; color: var(--text-muted);
    letter-spacing: 0; margin-left: .15rem;
}
.plan-card p {
    font-size: .8rem; color: var(--text-secondary); line-height: 1.55;
    margin-bottom: .4rem;
}

/* Vouch section */
.vouch-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}
.vouch-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: .25s ease;
}
.vouch-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.vouch-card img {
    width: 100%; height: auto; display: block;
    border-radius: calc(var(--radius) - 1px);
}

/* Contact page redesign */
.contact-hero-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
.contact-hero-card {
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem 1.7rem;
    display: flex; gap: 1.5rem; align-items: flex-start;
    text-decoration: none; transition: .25s ease;
}
.contact-hero-card:hover {
    background: var(--surface-2); border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.contact-icon-lg {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; flex-shrink: 0;
}
.contact-badge {
    font-size: .55rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: .35rem;
    font-family: var(--font-display);
}
.contact-hero-right h3 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem;
    letter-spacing: -.02em; color: var(--text);
}
.contact-hero-right .contact-handle {
    color: var(--red); font-weight: 700; font-size: .88rem;
    font-family: var(--font-display); margin-bottom: .5rem;
}
.contact-hero-right p {
    font-size: .78rem; color: var(--text-secondary); line-height: 1.55;
    margin-bottom: .7rem;
}
.contact-cta {
    font-size: .72rem; font-weight: 600; color: var(--text-muted);
    display: flex; align-items: center; gap: .35rem;
    transition: .2s ease;
}
.contact-hero-card:hover .contact-cta {
    color: var(--red);
}

.contact-stats {
    display: flex; gap: .75rem; flex-wrap: wrap;
}
.contact-stat {
    flex: 1; min-width: 100px;
    background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem 1rem; text-align: center;
    transition: .25s ease;
}
.contact-stat:hover {
    border-color: var(--border-hover);
}
.contact-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700; color: var(--red);
    letter-spacing: -.03em;
}
.contact-stat-lbl {
    font-size: .62rem; color: var(--text-muted); margin-top: .2rem;
    text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
    font-family: var(--font-display);
}

@media (max-width: 768px) {
    .formation-duo { grid-template-columns: 1fr; }
    .formation-plans { grid-template-columns: 1fr; }
    .vouch-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-hero-card { flex-direction: column; align-items: center; text-align: center; }
    .contact-cta { justify-content: center; }
    .contact-stats { flex-direction: column; }
}
@media (max-width: 480px) {
    .vouch-grid { grid-template-columns: 1fr 1fr; }
}

.more-boutiques { margin-top: 2.5rem; }

@media (max-width: 768px) {
    .boutiques-toolbar { flex-direction: column; align-items: stretch; }
    .search-box { max-width: none; }
    .boutiques-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .category-filters { gap: .25rem; padding: .3rem; }
    .cat-pill { padding: .35rem .65rem; font-size: .68rem; }
}
@media (max-width: 480px) {
    .boutiques-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .shop-card { padding: .75rem .85rem; }
}
