/* =========================================================================
   Battery Technologies – motyw ciemny
   Akcent: #e6350c  •  Drugi kolor (z logo): #1f9bd6
   ========================================================================= */

:root {
    --accent: #e6350c;
    --accent-dark: #b8290a;
    --accent-soft: rgba(230, 53, 12, 0.12);
    --blue: #1f9bd6;
    --bg: #0d0e11;
    --bg-2: #15171c;
    --bg-3: #1c1f26;
    --surface: #1a1d24;
    --border: rgba(255, 255, 255, 0.08);
    --text: #eef0f4;
    --text-dim: #a4abb8;
    --text-mute: #757d8c;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --shadow-accent: 0 14px 36px rgba(230, 53, 12, 0.35);
    --maxw: 1200px;
    --head: 'Barlow Condensed', 'Inter', sans-serif;
    --body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

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

h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.08; letter-spacing: .3px; }

.accent { color: var(--accent); }
.text-blue { color: var(--blue); }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13, 14, 17, 0.97);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.logo img { height: 50px; width: auto; transition: transform .3s; }
.logo:hover img { transform: scale(1.04); }

.main-nav__list { list-style: none; display: flex; align-items: center; gap: 2px; }
.main-nav__link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 15px; color: var(--text-dim);
    background: none; border: 0; cursor: pointer; font-family: var(--body);
    white-space: nowrap; transition: color .2s;
}
.main-nav__link:hover { color: var(--white); }
.main-nav__link.is-active { color: var(--accent); }

.has-dropdown { position: relative; }
.dropdown {
    list-style: none; position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 260px; background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 8px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__link {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    border-radius: 8px; color: var(--text-dim); font-weight: 600; font-size: 15px;
    transition: .18s;
}
.dropdown__link i { color: var(--accent); }
.dropdown__link:hover, .dropdown__link.is-active { background: var(--accent-soft); color: var(--white); }

.main-nav__cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: .3s; }
.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); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 16px;
    font-family: var(--body); cursor: pointer; border: 2px solid transparent;
    transition: transform .2s, box-shadow .25s, background .2s, color .2s;
    text-align: center; line-height: 1;
}
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--lg { padding: 18px 36px; font-size: 18px; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(230,53,12,.5); background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.btn--white { background: #fff; color: var(--bg); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.4); }
.btn--yellow { background: #f5c518; color: #14161a; box-shadow: 0 12px 28px rgba(245, 197, 24, .35); }
.btn--yellow:hover { transform: translateY(-3px); background: #ffd84a; box-shadow: 0 16px 36px rgba(245, 197, 24, .45); }
.btn--block { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--bg-2); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700;
    color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); }
.section-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.section-sub { color: var(--text-dim); font-size: 18px; }
.lead { font-size: 19px; color: var(--text-dim); }

/* ---------- Utilities ---------- */
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    min-height: min(68vh, 720px);
    padding: 100px 0;
    background:
        linear-gradient(180deg, rgba(13, 14, 17, .72) 0%, rgba(13, 14, 17, .78) 100%),
        url('/assets/images/pages/pogotowie-akumulatorowe/speedometer-1249610_1280.jpg') center / cover no-repeat;
}
.hero__content { width: 100%; position: relative; z-index: 1; }
.hero__actions {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 28px;
}
.hero__actions .btn {
    flex: 1;
    padding: 34px 42px;
    font-size: 26px;
    min-height: 108px;
    text-transform: uppercase;
}
.hero__actions .btn--ghost {
    background: #f5c518;
    color: #1a1a1a;
    border-color: #f5c518;
    box-shadow: 0 14px 36px rgba(245, 197, 24, .35);
}
.hero__actions .btn--ghost:hover {
    background: #e0b010;
    color: #1a1a1a;
    border-color: #e0b010;
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(245, 197, 24, .45);
}
.hero__phone {
    display: inline-flex; align-items: center; gap: 16px; padding: 14px 22px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.hero__phone-ic { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
    background: var(--accent); color: #fff; font-size: 20px; flex: none; }
.hero__phone small { color: var(--text-mute); font-size: 13px; }
.hero__phone strong { display: block; font-size: 24px; font-family: var(--head); letter-spacing: .5px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 6px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-dim); font-weight: 600; }
.hero__badge i { color: var(--accent); }

.hero__visual { position: relative; }
.hero__img {
    border-radius: 22px; overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.hero__visual::after {
    content: ''; position: absolute; inset: -20px; z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(230,53,12,.25), transparent 70%); filter: blur(20px);
}
.hero__chip {
    position: absolute; bottom: 22px; left: -18px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px;
    display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}
.hero__chip i { color: var(--accent); font-size: 22px; }
.hero__chip strong { font-family: var(--head); font-size: 18px; }
.hero__chip small { color: var(--text-mute); display: block; font-size: 12px; }

/* ---------- Location / CTA cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.loc-card {
    position: relative; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px 26px; overflow: hidden;
    transition: transform .3s, border-color .3s; display: flex; flex-direction: column;
}
.loc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark)); transform: scaleX(0);
    transform-origin: left; transition: transform .35s;
}
.loc-card:hover { transform: translateY(-8px); border-color: rgba(230,53,12,.4); }
.loc-card:hover::before { transform: scaleX(1); }
.loc-card__icon {
    width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent); font-size: 24px; margin-bottom: 18px;
}
.loc-card h3 { font-size: 24px; margin-bottom: 8px; }
.loc-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 18px; flex: 1; }
.loc-card__phone { font-family: var(--head); font-size: 22px; color: #fff; margin-bottom: 16px; display: inline-flex; gap: 8px; align-items: center; }
.loc-card__phone i { color: var(--accent); }
.loc-card .btn { margin-top: auto; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px 24px; transition: transform .3s, background .3s;
}
.feature:hover { transform: translateY(-6px); background: var(--bg-3); }
.feature__icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent); font-size: 22px; margin-bottom: 16px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 15px; }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media img { border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.img-placeholder {
    aspect-ratio: 4/3;
    min-height: 220px;
    background: var(--bg-2);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-mute);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
}
.img-placeholder i { font-size: 28px; color: var(--accent); }
.split__body h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 18px; }
.split__body p { color: var(--text-dim); margin-bottom: 16px; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 22px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.check-list i { color: var(--accent); margin-top: 4px; }

/* ---------- Brands marquee ---------- */
.brands-marquee {
    position: relative;
    margin-top: 10px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands-marquee__row {
    overflow: hidden;
}
.brands-marquee__track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: brands-marquee-left 90s linear infinite;
}
.brands-marquee:hover .brands-marquee__track {
    animation-play-state: paused;
}
@keyframes brands-marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.brand-chip--marquee {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    min-width: 120px;
    min-height: 78px;
    padding: 16px 18px;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .38);
}
.brand-chip--marquee img {
    width: auto;
    max-height: 40px;
    max-width: 110px;
    object-fit: contain;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .brands-marquee__track { animation: none; }
}

/* ---------- Process / how we work ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__step { position: relative; padding: 0 18px; text-align: center; }
.process__step::after {
    content: ''; position: absolute; top: 36px; left: 60%; width: 80%; height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}
.process__step:last-child::after { display: none; }
.process__num {
    width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
    display: grid; place-items: center; font-family: var(--head); font-size: 28px; font-weight: 800;
    background: var(--surface); border: 2px solid var(--accent); color: #fff; position: relative; z-index: 2;
    transition: transform .3s, background .3s;
}
.process__step:hover .process__num { background: var(--accent); transform: scale(1.08); }
.process__icon { color: var(--accent); font-size: 18px; margin-bottom: 8px; }
.process__step h3 { font-size: 20px; margin-bottom: 6px; }
.process__step p { color: var(--text-dim); font-size: 14px; padding: 0 6px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 22px; }
.stat__num { font-family: var(--head); font-size: clamp(38px, 5vw, 56px); color: var(--accent); line-height: 1; }
.stat__label { color: var(--text-dim); margin-top: 8px; font-weight: 600; }

/* ---------- Slider (Inowrocław) ---------- */
.slider { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.slider__track { display: flex; transition: transform .6s cubic-bezier(.65,.05,.36,1); }
.slider__slide { min-width: 100%; aspect-ratio: 16/10; }
.slider__slide img { width: 100%; height: 100%; object-fit: cover; }
.slider__btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;
    border-radius: 50%; background: rgba(13,14,17,.6); border: 1px solid var(--border); color: #fff;
    cursor: pointer; display: grid; place-items: center; font-size: 18px; transition: background .2s, transform .2s; backdrop-filter: blur(6px);
}
.slider__btn:hover { background: var(--accent); }
.slider__btn--prev { left: 16px; }
.slider__btn--next { right: 16px; }
.slider__btn:active { transform: translateY(-50%) scale(.92); }
.slider__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slider__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: 0; cursor: pointer; transition: .2s; }
.slider__dot.active { background: var(--accent); width: 26px; border-radius: 6px; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); padding: 20px; border-radius: var(--radius); transition: border-color .3s; }
.contact-info__item:hover { border-color: rgba(230,53,12,.4); }
.contact-info__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-size: 20px; flex: none; }
.contact-info__item h4 { font-size: 18px; margin-bottom: 2px; }
.contact-info__item a, .contact-info__item p { color: var(--text-dim); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--text-dim); }
.field input, .field textarea {
    width: 100%; padding: 14px 16px; background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-size: 15px; font-family: var(--body);
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--text-mute); margin-top: 10px; }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; display: none; }
.form-alert.show { display: block; }
.form-alert--ok { background: rgba(46,160,67,.15); color: #6ee787; border: 1px solid rgba(46,160,67,.4); }
.form-alert--err { background: rgba(230,53,12,.15); color: #ff8a6b; border: 1px solid rgba(230,53,12,.4); }

/* ---------- CTA banner ---------- */
.cta-banner {
    position: relative; overflow: hidden; border-radius: 24px; padding: 56px 48px;
    background: linear-gradient(120deg, var(--accent-dark), var(--accent));
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner::after { content: '\f5df'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute;
    right: -10px; bottom: -30px; font-size: 200px; opacity: .12; color: #fff; }
.cta-banner h2 { color: #fff; font-size: clamp(28px, 3.5vw, 42px); }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 18px; }
.cta-banner__phone { display: inline-flex; align-items: center; gap: 14px; color: var(--bg); }
.cta-banner__phone i { color: var(--accent); }
.cta-banner__phone .num { font-family: var(--head); font-size: 34px; color: var(--bg); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
    position: relative; padding: 70px 0 60px; overflow: hidden;
    background:
        radial-gradient(700px 400px at 85% 0%, rgba(230,53,12,.2), transparent 60%),
        var(--bg-2);
    border-bottom: 1px solid var(--border);
}
.breadcrumbs { font-size: 14px; color: var(--text-mute); margin-bottom: 14px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs i { font-size: 10px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 14px; }
.page-hero p { color: var(--text-dim); font-size: 19px; max-width: 680px; }
.page-hero__actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Districts (SEO) ---------- */
.districts { display: flex; flex-wrap: wrap; gap: 10px; }
.district-chip {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
    font-size: 14px; font-weight: 600; color: var(--text-dim); transition: .25s;
}
.district-chip i { color: var(--accent); font-size: 11px; }
.district-chip:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }

/* ---------- Modal ---------- */
.modal {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .22s, visibility .22s;
}
.modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal__backdrop {
    position: absolute; inset: 0; background: rgba(0, 0, 0, .72);
}
.modal__panel {
    position: relative; width: min(420px, 92vw);
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px 24px;
    box-shadow: var(--shadow);
    transform: translateY(12px); transition: transform .22s;
}
.modal.is-open .modal__panel { transform: translateY(0); }
.modal__close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 8px;
    background: transparent; border: 1px solid var(--border);
    color: var(--text-dim); cursor: pointer; font-size: 16px;
    display: grid; place-items: center; transition: .18s;
}
.modal__close:hover { color: #fff; border-color: var(--accent); background: var(--accent-soft); }
.modal__title { font-size: 24px; margin-bottom: 8px; color: #fff; padding-right: 36px; }
.modal__sub { color: var(--text-mute); font-size: 15px; margin-bottom: 18px; }
.modal__list { list-style: none; display: grid; gap: 6px; }
.modal__list a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 8px;
    color: var(--text-dim); font-weight: 600; font-size: 15px;
    transition: .18s;
}
.modal__list a i { color: var(--accent); }
.modal__list a:hover { background: var(--accent-soft); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); margin-top: 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding: 64px 24px 44px; }
.site-footer__logo { height: 48px; width: auto; margin-bottom: 18px; }
.site-footer__about { color: var(--text-dim); font-size: 15px; max-width: 380px; margin-bottom: 20px; }
.site-footer__title { font-size: 20px; margin-bottom: 20px; color: #fff; }
.site-footer__list { list-style: none; display: grid; gap: 16px; }
.site-footer__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-dim); }
.site-footer__list i { color: var(--accent); margin-top: 4px; }
.site-footer__list a:hover { color: var(--accent); }
.site-footer__list--links { gap: 10px; }
.site-footer__list--links li { display: block; }
.site-footer__list--links a { color: var(--text-dim); font-weight: 600; }
.site-footer__emails { display: grid; gap: 10px; }
.site-footer__email { display: grid; gap: 2px; font-size: 13px; line-height: 1.35; }
.site-footer__email-city { color: var(--text-mute); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.site-footer__email a { color: var(--text-dim); }
.site-footer__email a:hover { color: var(--accent); }
.map-contact { display: grid; gap: 8px; margin-top: 4px; margin-bottom: 20px; justify-items: center; }
.map-contact__row { display: inline-flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: 18px; text-align: center; }
.map-contact__row i { color: var(--accent); font-size: 16px; flex-shrink: 0; }
.map-contact__row a { color: var(--text-dim); }
.map-contact__row a:hover { color: var(--accent); }
.site-footer__bottom { border-top: 1px solid var(--border); }
.site-footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 14px; color: var(--text-mute); flex-wrap: wrap; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Keyframes ---------- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .cards, .features, .process, .stats { grid-template-columns: repeat(2, 1fr); }
    .process__step::after { display: none; }
    .hero { min-height: min(56vh, 560px); padding: 72px 0; }
    .hero__visual { max-width: 560px; }
    .hero__actions { flex-direction: column; gap: 16px; }
    .hero__actions .btn { width: 100%; font-size: 22px; padding: 26px 32px; min-height: 84px; }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 24px 36px;
    }
    .site-footer__about { max-width: none; }

    .nav-toggle { display: flex; }
    .site-header__inner { overflow: hidden; }
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0; left: auto;
        width: min(330px, 86vw); z-index: 200;
        background: var(--bg-2); border-left: 1px solid var(--border); padding: 90px 20px 30px;
        transform: translateX(100%); transition: transform .35s, visibility .35s;
        overflow-y: auto; box-shadow: var(--shadow);
        visibility: hidden; pointer-events: none;
    }
    .main-nav.open {
        transform: translateX(0);
        visibility: visible; pointer-events: auto;
    }
    .main-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
    .main-nav__link { width: 100%; justify-content: flex-start; padding: 14px 16px; font-size: 16px; white-space: normal; }
    .main-nav__link::after { display: none; }
    .has-dropdown > .main-nav__link--btn {
        pointer-events: none;
        color: var(--text-mute);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .06em;
        padding: 10px 16px 6px;
    }
    .has-dropdown > .main-nav__link--btn .fa-chevron-down { display: none; }
    .dropdown {
        position: static; display: block; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; background: transparent; margin: 0; padding: 0 0 8px;
    }
    .dropdown li { margin: 0; }
    .dropdown__link {
        color: var(--text);
        padding: 12px 16px 12px 24px;
        font-size: 16px;
    }
    .main-nav__cta { margin: 12px 0 0; }
    .main-nav__cta .btn { width: 100%; }
}

@media (max-width: 860px) {
    .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .split--rev .split__media { order: 0; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .cards, .features, .stats, .form-row { grid-template-columns: 1fr; }
    .cta-banner { padding: 36px 26px; }
    .container { padding: 0 18px; }
    .form-card { padding: 24px; }
    .brand-chip--marquee { min-width: 100px; min-height: 68px; padding: 12px 14px; }
    .brand-chip--marquee img { max-height: 32px; max-width: 90px; }
    .site-footer__grid { gap: 28px; padding: 40px 18px 28px; }
    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 18px calc(24px + env(safe-area-inset-bottom, 0px));
    }
}
