/*
Theme Name: Express – Express Self Service (Landing) KV
Theme URI: https://express.pl/
Author: Express
Description: Jednostronicowy motyw landing page usługi Express Self Service. Stylistyka zgodna z KV kampanii: granatowe tło, pomarańcz jako kolor emfazy i akcji, pomarańczowe koło i cienki cyanowy łuk. Ekrany aplikacji w makiecie telefonu renderowane natywnie (ostre w każdym DPI). FAQ z briefu + ocena odpowiedzi (łapka w górę / w dół). Wszystkie treści edytowalne w Personalizacji, punkty odbioru i FAQ w kokpicie.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: selfservice-landing
*/

/* =====================================================================
   TOKENS & RESET
   ===================================================================== */
:root {
    --orange:        #f07d14;
    --orange-hover:  #d96a0a;
    --orange-light:  #F8E1D5;
    --orange-soft:   rgba(240,125,20,0.10);
    --orange-glow:   rgba(240,125,20,0.25);
    --blue:          #003576;
    --navy-deep:     #00174a;
    --cyan:          #5ec5ed;
    --text-main:     #1e293b;
    --text-muted:    #64748b;
    --bg-alt:        #f4f7f9;
    --surface:       #ffffff;
    --border-radius: 12px;
    --transition:    all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 16px; line-height: 1.6;
    color: var(--text-main);
    background: #fff;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
/* =====================================================================
   ANIMATIONS
   ===================================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* =====================================================================
   HEADER (1:1 z motywu porównawczego)
   ===================================================================== */
header {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1100px; height: 60px;
    background: #1D4B84;
    border: 1px solid rgba(94,197,237,0.40);
    box-shadow: 0 8px 32px rgba(0,20,60,0.35);
    border-radius: 100px;
    z-index: 1000; display: flex; justify-content: space-between; align-items: center;
    padding: 0 12px 0 30px;
    transition: var(--transition);
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
nav ul { display: flex; list-style: none; align-items: center; gap: 20px; }
nav a {
    text-decoration: none; color: #fff; font-weight: 700; font-size: 14px;
    transition: var(--transition); white-space: nowrap; cursor: pointer;
}
nav a:hover { color: var(--cyan); font-weight: 800; }
header .logo img { filter: brightness(0) invert(1); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange); color: #ffffff;
    padding: 10px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 700;
    border: 1px solid var(--orange);
    box-shadow: 0 0 0 1px rgba(240,125,20,0.25), 0 10px 30px rgba(240,125,20,0.40);
    transition: var(--transition); text-decoration: none;
}
.nav-cta:hover { color: #fff; }
.nav-cta .arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(255,255,255,0.25); color: #ffffff; font-size: 12px;
    transition: transform 0.3s ease;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgba(240,125,20,0.5), 0 0 60px rgba(240,125,20,0.6), 0 18px 44px rgba(240,125,20,0.65);
}
.nav-cta:hover .arrow { background: rgba(255,255,255,0.5); transform: translateX(6px); }
.nav-cta:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
/* Hamburger */
.excr-hamburger {
    display: none; background: transparent; border: 0;
    padding: 8px; cursor: pointer;
    width: 40px; height: 40px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    z-index: 1100; margin-left: auto;
}
.excr-hamburger span {
    display: block; width: 22px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.excr-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.excr-hamburger.is-open span:nth-child(2) { opacity: 0; }
.excr-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* =====================================================================
   HERO — kompozycja z KV: granatowy gradient, pomarańczowe koło,
   cienki cyanowy łuk, przechylony telefon z ekranem aplikacji
   ===================================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-deep) 0%, #002a5e 46%, #0d4489 100%);
    display: flex; align-items: center;
    padding: 118px 5% 78px;
    position: relative; overflow: hidden;
}
.hero-inner {
    position: relative; z-index: 3;
    max-width: 1160px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: minmax(0,1fr) minmax(0,420px);
    gap: clamp(24px,5vw,64px); align-items: center;
    padding: 0 30px;
}
.hero-left { color: #fff; }
/* Badge „nowość" — prostokąt z pomarańczowym konturem, jak w KV */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.10); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 14px; padding: 10px 22px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.01em;
    text-transform: none; margin-bottom: 26px;
}
.hero-badge .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}
.hero-left h1 {
    font-size: clamp(32px,4.4vw,54px); font-weight: 900; line-height: 1.14;
    letter-spacing: -1.5px; margin-bottom: 22px; color: #fff;
}
/* Nazwa usługi — biała kursywa (pomarańcz zostaje dla kształtu i przycisku) */
.hero-left h1 .h1-em { color: #fff; font-style: italic; }
/* Wariant z wypełnionym pomarańczowym boxem (jak „beta testerem!" w KV) */
.hero-left h1 .h1-badge {
    display: inline-block; background: var(--orange); color: #fff;
    border: 0; border-radius: 10px; padding: 0 16px;
    font-style: italic; white-space: nowrap;
    box-shadow: 0 10px 26px rgba(240,125,20,0.30);
}
.hero-left h1 em {
    font-style: normal; display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.5em; font-weight: 600; letter-spacing: -0.5px; margin-top: 10px;
}
.hero-left .hero-desc {
    font-size: clamp(17px,1.6vw,20px); line-height: 1.6;
    color: rgba(255,255,255,0.78); margin-bottom: 34px; max-width: 520px;
}
.hero-left .hero-desc strong { color: #fff; font-weight: 700; }
.hero-left .hero-proste { display: inline-block; margin-top: 12px; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange); color: #fff;
    padding: 16px 34px; border-radius: 100px;
    font-size: 16px; font-weight: 800; letter-spacing: 0.2px;
    border: 1px solid var(--orange);
    box-shadow: 0 0 0 1px rgba(240,125,20,0.25), 0 14px 34px rgba(240,125,20,0.32);
    text-decoration: none; transition: var(--transition); cursor: pointer;
}
.hero-btn .arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,0.22); font-size: 13px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.hero-btn:hover {
    background: var(--orange-hover); transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 0 2px rgba(240,125,20,0.45), 0 0 54px rgba(240,125,20,0.45), 0 18px 44px rgba(0,20,60,0.6);
}
.hero-btn:hover .arrow { transform: translateX(5px); background: rgba(255,255,255,0.32); }
.hero-btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
/* Hero right — telefon na pomarańczowym kole */
.hero-right { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.hero-phone-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
/* Dekoracje KV liczone od sekcji: koło docina się prawą i dolną krawędzią,
   cienki cyanowy łuk wchodzi od dołu — jak w key visualu. */
.kv-disc { position: absolute; border-radius: 50%; background: var(--orange); pointer-events: none; }
.kv-arc  { position: absolute; border-radius: 50%; border: 2px solid rgba(94,197,237,0.45); pointer-events: none; }
.hero .kv-disc { width: min(52vw,720px); aspect-ratio: 1; right: -6%; bottom: -34%; z-index: 1; }
.hero .kv-arc  { width: min(72vw,940px); aspect-ratio: 1; right: 4%; bottom: -56%; z-index: 1; }
.hero .kv-arc--sm { display: none; }
.hero-phone-wrap .ss-phone--hero {
    position: relative; z-index: 1;
    width: auto; height: min(720px,68vh);
    transform: rotate(6deg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.hero-phone-wrap .ss-phone--hero:hover { transform: rotate(4deg) translateY(-6px); }
/* =====================================================================
   HERO — KARTA „PUNKTY ODBIORU I ZWROTU”
   ===================================================================== */
.pickup-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px 32px;
    width: 100%; max-width: 400px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.20), 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.85);
}
.pickup-timeline { position: relative; }
.pickup-step { display: flex; gap: 18px; position: relative; }
/* dashed connector line behind the icons */
.pickup-step:first-child::before {
    content: '';
    position: absolute; left: 22px; top: 44px; bottom: -68px;
    width: 0; border-left: 2px dashed rgba(240,125,20,0.35);
}
.pickup-ico {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(240,125,20,0.10); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.pickup-ico svg { width: 24px; height: 24px; }
.pickup-body { display: flex; flex-direction: column; padding-bottom: 6px; }
.pickup-label {
    font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 6px;
}
.pickup-date { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.pickup-place { font-size: 19px; font-weight: 800; color: var(--text-main); letter-spacing: -0.3px; line-height: 1.25; }
.pickup-map {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 12px;
    font-size: 14px; font-weight: 700; color: var(--orange);
    cursor: pointer;
}
.pickup-map .pin { width: 15px; height: 15px; }
/* Czas najmu pill — centered on the dashed line */
.pickup-duration { display: flex; justify-content: center; margin: 14px 0 14px 62px; }
.pickup-duration-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-alt); color: var(--text-main);
    border-radius: 100px; padding: 8px 18px;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pickup-duration-pill svg { width: 16px; height: 16px; color: var(--orange); }
/* =====================================================================
   SECTION SHARED
   ===================================================================== */
section { padding: 90px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
    font-size: 38px; font-weight: 900; margin-bottom: 12px;
    text-align: center; color: var(--blue); letter-spacing: -0.8px;
}
.section-title::after { content: ''; display: block; width: 54px; height: 4px; border-radius: 4px; background: var(--orange); margin: 16px auto 0; }
/* Emfaza w duchu KV */
.em-orange { color: var(--orange); font-style: italic; }
.em-box { display: inline-block; background: var(--orange); color: #fff; border-radius: 10px; padding: 0 14px; font-style: italic; white-space: nowrap; }
.section-subtitle {
    text-align: center; color: var(--text-muted);
    max-width: 680px; margin: 0 auto 56px; font-size: 18px; line-height: 1.7;
}
/* =====================================================================
   JAK TO DZIAŁA — makieta telefonu + kroki (slider)
   ===================================================================== */
.ss-hiw { position: relative; isolation: isolate; background: var(--bg-alt); padding: 90px 5% 84px; overflow: hidden; }
.ss-hiw::before { content: ''; position: absolute; left: -200px; top: -180px; width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,125,20,0.18) 0%, rgba(240,125,20,0.06) 55%, rgba(240,125,20,0) 72%); pointer-events: none; }
.ss-hiw__inner {
    position: relative; max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: minmax(0,44%) minmax(0,1fr);
    align-items: center; gap: clamp(24px,4vw,64px);
}
/* Left: makieta telefonu + strzałki */
.ss-hiw__media { position: relative; display: flex; align-items: center; justify-content: center; }
.ss-phone {
    /* aspect-ratio dobrane tak, by SAM EKRAN (po odjęciu 7 px ramki) miał
       proporcję projektu 375:812 — inaczej treść ekranu nie wypełnia kadru. */
    position: relative; width: min(300px,72vw); aspect-ratio: 9/19;
    background: #0b1c34; border-radius: 44px; padding: 7px;
    box-shadow: 0 30px 70px rgba(0,53,118,0.22), 0 6px 18px rgba(0,0,0,0.14), inset 0 0 0 1px rgba(255,255,255,0.08);
}
/* Dynamic Island — pływająca pigułka nad ekranem */
.ss-phone::before {
    content: ''; position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
    /* proporcjonalnie do szerokości makiety — jak na iPhonie (≈30% szerokości) */
    width: 30%; aspect-ratio: 3.5; background: #000; border-radius: 100px; z-index: 6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.ss-phone__screens { position: relative; width: 100%; height: 100%; border-radius: 37px; overflow: hidden; background: #fff; display: grid; }
.ss-screen { grid-area: 1/1; opacity: 0; transition: opacity .45s cubic-bezier(.22,1,.36,1); pointer-events: none; display: flex; flex-direction: column; }
.ss-screen.is-active { opacity: 1; pointer-events: auto; }
/* Ekrany 1–3 — realne zrzuty z aplikacji Express */
.ss-screen--shot { padding: 0; background: #fff; }
.ss-screen--shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* makieta UI w telefonie */
/* Ekrany aplikacji w telefonie — stylistyka makiety (jasne tło, białe karty,
   granatowe nagłówki, pomarańczowe akcenty, pasek statusu iOS) */
.ss-phone .ss-scr {
    --nv: #003576; --or: #f07d14;
    height: 100%; background: #eef2f7;
    display: flex; flex-direction: column; gap: 9px;
    padding: 12px 13px 15px; overflow: hidden;
}
.ss-phone .ss-scr__status { display: flex; justify-content: space-between; align-items: center; padding: 3px 4px 0; }
.ss-phone .ss-scr__time { font-size: 12px; font-weight: 800; color: var(--nv); }
.ss-phone .ss-scr__sig { display: inline-flex; align-items: center; gap: 5px; color: var(--nv); }
.ss-phone .ss-scr__sig svg { display: block; }
/* Ekran blokady + przychodzące powiadomienie (ekran 4) */
.ss-phone .ss-scr--lock {
    background: radial-gradient(circle at 30% 18%, #ffe4cd 0%, #f3ede7 44%, #e9edf1 100%);
    gap: 0;
}
.ss-phone .ss-lock__pad { display: flex; justify-content: center; margin-top: 10px; color: var(--nv); opacity: .55; }
.ss-phone .ss-lock__pad svg { width: 18px; height: 18px; }
.ss-phone .ss-lock__clock { text-align: center; margin: 6px 0 4px; }
.ss-phone .ss-lock__date { font-size: 13px; font-weight: 700; color: var(--nv); opacity: .8; }
.ss-phone .ss-lock__time { font-size: 58px; font-weight: 800; color: var(--nv); line-height: 1; letter-spacing: -2px; }
.ss-phone .ss-home__notif {
    margin: 16px 2px 0;
    background: rgba(255,255,255,0.86); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    border-radius: 16px; padding: 11px 13px; box-shadow: 0 10px 26px rgba(0,53,118,0.14);
}
.ss-phone .ss-lock__ctrls { display: flex; justify-content: space-between; padding: 0 14px 6px; }
.ss-phone .ss-lock__btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(0,53,118,0.10); color: var(--nv);
    display: flex; align-items: center; justify-content: center;
}
.ss-phone .ss-lock__btn svg { width: 20px; height: 20px; }
.ss-phone .ss-sms { background: #fff; border-radius: 16px; padding: 12px 13px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.ss-phone .ss-sms__top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ss-phone .ss-sms__ic { width: 22px; height: 22px; border-radius: 6px; background: var(--or); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ss-phone .ss-sms__ic svg { width: 13px; height: 13px; }
.ss-phone .ss-sms__app { font-size: 11px; font-weight: 800; color: var(--nv); flex: 1; }
.ss-phone .ss-sms__time { font-size: 10px; color: #94a3b8; }
.ss-phone .ss-sms__msg { font-size: 12px; line-height: 1.42; color: #334155; }
.ss-phone .ss-sms__msg strong { color: var(--nv); font-weight: 800; }
.ss-phone .ss-spacer { flex: 1; }
/* strzałki */
.ss-hiw__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: 0;
    background: #fff; color: var(--orange); cursor: pointer; z-index: 6;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(240,125,20,0.18); transition: var(--transition);
}
.ss-hiw__arrow:hover { background: var(--orange); color: #fff; }
.ss-hiw__arrow svg { width: 15px; height: 15px; fill: currentColor; }
.ss-hiw__arrow--prev { left: -6px; }
.ss-hiw__arrow--prev svg { transform: scaleX(-1); }
.ss-hiw__arrow--next { right: -6px; }
/* Right: tytuł, nawigacja, karta */
.ss-hiw__title { font-size: clamp(26px,3.2vw,34px); font-weight: 900; line-height: 1.2; color: var(--blue); letter-spacing: -0.8px; margin-bottom: 26px; }
.ss-hiw__nav { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 2px; margin-bottom: 28px; }
.ss-hiw__nav-item { display: flex; align-items: center; cursor: pointer; color: #cdd7e0; transition: color .25s ease; user-select: none; }
.ss-hiw__nav-num { font-size: clamp(24px,3vw,32px); font-weight: 900; line-height: 1; }
.ss-hiw__nav-item.is-active { color: var(--orange); }
.ss-hiw__chev { width: 10px; height: auto; margin: 0 12px; fill: #cdd7e0; flex-shrink: 0; }
.ss-hiw__nav-item:last-child .ss-hiw__chev { display: none; }
.ss-hiw__cardwrap { position: relative; }
.ss-hiw__cardwrap::after {
    content: ''; position: absolute; top: 34px; left: 48px; right: -30px; bottom: -18px;
    background: var(--orange); border-radius: 0 0 30px 0; z-index: 0;
}
.ss-hiw__card { position: relative; z-index: 1; overflow: hidden; background: var(--blue); border-radius: 30px 0 0 0; color: #fff; }
.ss-hiw__track { display: flex; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.ss-hiw__slide { flex: 0 0 100%; min-width: 100%; min-height: clamp(210px,24vw,250px); padding: clamp(28px,3.2vw,40px); display: flex; flex-direction: column; justify-content: center; }
.ss-hiw__slide h4 { font-size: clamp(19px,2.2vw,23px); font-weight: 800; margin-bottom: 12px; color: #fff; }
.ss-hiw__slide p { font-size: clamp(15px,1.7vw,17px); line-height: 1.55; color: rgba(255,255,255,0.92); }
.ss-hiw__slide p strong { color: #fff; font-weight: 800; }
.ss-hiw__slide-sign { margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: .03em; }
/* =====================================================================
   CO ZYSKUJESZ
   ===================================================================== */
.benefits-section { background: #fff; padding: 90px 5%; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
    background: var(--bg-alt); padding: 38px 32px; border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
.benefit-card:hover {
    background: #fff; transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(240,125,20,0.14), 0 2px 8px rgba(0,0,0,0.04);
    border-color: rgba(240,125,20,0.22);
}
.benefit-icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--orange), #f59b3f);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px; box-shadow: 0 10px 24px rgba(240,125,20,0.28); }
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 21px; font-weight: 800; color: var(--blue); margin-bottom: 12px; letter-spacing: -0.3px; }
.benefit-card p { color: var(--text-muted); line-height: 1.7; font-size: 15px; }
/* =====================================================================
   PUNKTY ODBIORU I ZWROTU
   ===================================================================== */
.locations-section {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue) 55%, #0d4489 100%);
    color: #fff; padding: 90px 5%;
}
.locations-section::before { content: ''; position: absolute; left: -130px; top: -120px; width: 300px; height: 300px;
    border-radius: 50%; background: var(--orange); pointer-events: none; }
.locations-section::after { content: ''; position: absolute; left: -16%; bottom: -46%; width: min(70vw,760px); aspect-ratio: 1;
    border-radius: 50%; border: 2px solid rgba(94,197,237,0.28); pointer-events: none; }
.locations-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.locations-section .section-title::after { background: var(--orange); }
.locations-section .section-title { color: #fff; }
.locations-section .section-subtitle { color: rgba(255,255,255,0.80); }
/* --- Wyszukiwarka punktów --- */
.ss-search { max-width: 640px; margin: 0 auto 48px; text-align: left; position: relative; }
.ss-search__field { position: relative; }
.ss-search__icon {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    width: 20px; height: 20px; color: var(--orange); pointer-events: none;
}
.ss-search__input {
    width: 100%; padding: 16px 18px 16px 50px; margin: 0;
    font-family: inherit; font-size: 16px; font-weight: 500; line-height: 1.4;
    color: var(--text-main); background: #fff;
    border: 1px solid transparent; border-radius: 14px; outline: none;
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
    -webkit-appearance: none; appearance: none;
}
.ss-search__input::placeholder { color: #94a3b8; }
.ss-search__input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(240,125,20,0.30), 0 14px 40px rgba(0,0,0,0.18); }
.ss-search__results:not(:empty) { margin-top: 12px; }
.ss-search__results.is-loading { opacity: 0.55; }
.ss-search__list {
    list-style: none; margin: 0; padding: 0;
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.ss-search__item {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 14px 18px; border-bottom: 1px solid #f1f1f1;
}
.ss-search__item:last-child { border-bottom: none; }
.ss-search__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; text-align: left; }
.ss-search__title { font-size: 16px; font-weight: 800; color: var(--text-main); line-height: 1.25; }
.ss-search__meta { font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.35; }
.ss-search__maps {
    flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; white-space: nowrap; text-decoration: none;
    padding: 10px 18px; border-radius: 100px;
    background: var(--orange); color: #fff; transition: background 0.15s ease, transform 0.15s ease;
}
.ss-search__maps:hover { background: var(--orange-hover); transform: translateY(-1px); }
.ss-search__empty, .ss-search__more {
    background: rgba(255,255,255,0.10); border-radius: 12px;
    padding: 14px 18px; color: rgba(255,255,255,0.85); font-size: 14px; text-align: left;
}
/* --- Mapa (Leaflet / OpenStreetMap) --- */
.ss-map { max-width: 820px; margin: 0 auto; }
.ss-map__canvas {
    height: 460px; width: 100%;
    border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    background: #e8eef2;
}
.ss-map .leaflet-container { font-family: inherit; border-radius: 20px; }
/* Pinezka */
.ss-marker__pin {
    display: block; width: 24px; height: 24px;
    background: var(--orange); border: 2.5px solid #fff;
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}
.ss-marker__pin::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 7px; height: 7px; border-radius: 50%; background: #fff;
    transform: translate(-50%,-50%);
}
/* Popup */
.leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,0.20); }
.leaflet-popup-content { margin: 14px 16px; }
.ss-pop { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.ss-pop__title { font-size: 16px; font-weight: 800; color: var(--text-main); }
.ss-pop__addr { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.ss-pop__sol {
    align-self: flex-start; margin-top: 2px;
    font-size: 11px; font-weight: 800; color: var(--orange);
    background: rgba(240,125,20,0.12); border-radius: 100px; padding: 3px 10px;
}
.ss-pop__maps {
    margin-top: 8px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; text-decoration: none;
    background: var(--orange); color: #fff !important; padding: 9px 16px; border-radius: 100px;
    transition: background 0.15s ease;
}
.ss-pop__maps:hover { background: var(--orange-hover); }
@media (max-width: 480px) {
    .ss-search__item { flex-direction: column; align-items: stretch; gap: 10px; }
    .ss-search__maps { width: 100%; }
    .ss-map__canvas { height: 380px; }
}
/* =====================================================================
   FAQ
   ===================================================================== */
.faq-section { padding: 90px 5%; background: #fff; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); overflow: hidden; }
.faq-question {
    width: 100%; background: none; border: none; padding: 22px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-family: inherit; font-size: 16px; font-weight: 700; color: var(--text-main);
    text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.faq-icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: rgba(240,125,20,0.10); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 400; transition: transform 0.3s, background 0.3s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s cubic-bezier(.22,1,.36,1); }
.faq-answer > .faq-answer__in { overflow: hidden; min-height: 0; font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-question { color: var(--blue); }
.faq-answer__in > *:first-child { margin-top: 2px; }
.faq-answer__in p { margin-bottom: 12px; }
.faq-answer__in ol, .faq-answer__in ul { margin: 0 0 12px 22px; display: grid; gap: 8px; }
.faq-answer__in ol { list-style: decimal; }
.faq-answer__in ul { list-style: disc; }
.faq-answer__in li { padding-left: 2px; }
.faq-answer__in strong { color: var(--blue); font-weight: 700; }
/* Ocena odpowiedzi — łapka w górę / w dół */
.faq-vote {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
    margin: 4px 0 22px; padding-top: 14px; border-top: 1px dashed rgba(0,53,118,0.14);
}
.faq-vote__q { font-size: 13px; font-weight: 700; color: var(--blue); margin-right: 2px; }
.faq-vote__btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 100px; cursor: pointer;
    background: #fff; border: 1px solid rgba(0,53,118,0.16); color: var(--text-muted);
    font-family: inherit; font-size: 13px; font-weight: 700; transition: var(--transition);
}
.faq-vote__btn svg { width: 15px; height: 15px; }
.faq-vote__btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.faq-vote__btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.faq-vote__btn.is-mine { background: var(--orange-soft); border-color: var(--orange); color: var(--orange); }
.faq-vote__btn[disabled] { opacity: .6; cursor: default; transform: none; }
.faq-vote__btn--down svg { transform: rotate(180deg); }
.faq-vote__thanks { font-size: 12.5px; font-weight: 700; color: var(--orange); }
.faq-vote__thanks[hidden] { display: none; }
/* =====================================================================
   CTA SECTION
   ===================================================================== */
.cta-section {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue) 52%, #0d4489 100%);
    padding: 100px 5%; text-align: center;
}
.cta-section::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
    background: var(--orange); right: -110px; top: -140px; pointer-events: none; }
.cta-section::after { content: ''; position: absolute; left: -12%; bottom: -58%; width: min(66vw,720px); aspect-ratio: 1;
    border-radius: 50%; border: 2px solid rgba(94,197,237,0.30); pointer-events: none; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(27px,3.6vw,40px); font-weight: 900; color: #fff; letter-spacing: -1.2px; margin-bottom: 18px; line-height: 1.18; }
.cta-section h2 .em-orange { color: #ffa04a; }
.cta-section p { font-size: 19px; color: rgba(255,255,255,0.80); margin: 0 auto 40px; max-width: 560px; line-height: 1.7; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--orange); color: #fff;
    padding: 18px 42px; border-radius: 100px;
    font-size: 17px; font-weight: 800; letter-spacing: 0.2px; border: none;
    box-shadow: 0 14px 34px rgba(240,125,20,0.35);
    text-decoration: none; transition: var(--transition); cursor: pointer;
}
.cta-btn .arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.22); font-size: 14px; transition: transform 0.3s ease;
}
.cta-btn:hover {
    background: var(--orange-hover); transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 0 2px rgba(240,125,20,0.45), 0 20px 50px rgba(0,20,60,0.55);
}
.cta-btn:hover .arrow { transform: translateX(6px); background: rgba(255,255,255,0.32); }
.cta-btn:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
/* =====================================================================
   BUTTONS (shared)
   ===================================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px; border-radius: 100px;
    font-size: 15px; font-weight: 800; cursor: pointer;
    text-decoration: none; transition: var(--transition);
    font-family: inherit; border: none;
    background: var(--orange); color: #fff;
    box-shadow: rgba(240,125,20,0.25) 0px 4px 14px 0px;
}
.btn:hover { transform: translateY(-3px); box-shadow: rgba(240,125,20,0.4) 0px 8px 28px 0px; }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.btn .arrow { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.22); font-size: 12px; transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(5px); }
/* light variant on dark background */
.btn--light { background: #fff; color: var(--orange); }
.btn--light .arrow { background: rgba(240,125,20,0.12); color: var(--orange); }
/* =====================================================================
   FOOTER — 1:1 express.pl style
   ===================================================================== */
footer {
    background: #f0ece4;
    padding: 60px 5% 0;
    font-family: 'Source Sans 3', system-ui, sans-serif;
}
.footer-top {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}
.footer-col-head {
    font-size: 18px; font-weight: 800; color: var(--orange);
    margin-bottom: 20px; display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: var(--blue); text-decoration: none; font-size: 14px;
    font-weight: 500; transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-btn {
    display: inline-block;
    padding: 12px 28px; border-radius: 100px;
    border: 2px solid var(--blue); color: var(--blue);
    font-size: 15px; font-weight: 700; text-decoration: none;
    transition: var(--transition); background: transparent;
}
.footer-contact-btn:hover { background: var(--blue); color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid rgba(0,53,118,0.30);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); text-decoration: none; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--blue); background: var(--blue); color: #fff; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-cities {
    max-width: 1200px; margin: 0 auto;
    padding: 40px 0 50px;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}
.footer-cities-head {
    font-size: 18px; font-weight: 800; color: var(--orange);
    margin-bottom: 24px; display: block;
}
.footer-cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 30px; }
.footer-cities-grid a {
    color: var(--blue); text-decoration: none; font-size: 14px;
    font-weight: 500; transition: color 0.2s; line-height: 1.8;
}
.footer-cities-grid a:hover { color: var(--orange); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding: 20px 0;
    display: flex; justify-content: center; align-items: center;
    color: #94a3b8; font-size: 13px;
}
/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 128px 5% 64px;
        align-items: flex-start;
    }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 0; max-width: 620px; text-align: center; justify-items: center; }
    .hero-left h1 { font-size: 42px; }
    .hero-left .hero-desc { max-width: none; }
    .hero-cta-row { justify-content: center; }
    .hero-right { justify-content: center; }
    .hero-phone-wrap .ss-phone--hero { height: min(480px,54vh); }
    /* w kolumnie pionowej koło ląduje za telefonem, na dole sekcji */
    .hero .kv-disc { width: min(92vw,420px); right: -14%; bottom: -6%; }
    .hero .kv-arc { width: min(130vw,620px); right: -8%; bottom: 6%; }
    .ss-hiw__inner { grid-template-columns: minmax(0, 1fr); gap: 44px; }
    .ss-hiw__media { width: 100%; }
    .ss-hiw__content { width: 100%; min-width: 0; }
    .ss-hiw__title, .ss-hiw__nav { justify-content: center; text-align: center; }
}
@media (max-width: 860px) {
    header {
        width: calc(100% - 24px) !important; max-width: none !important;
        padding: 0 16px 0 18px !important; height: 56px !important;
        top: 10px !important; left: 12px !important; right: 12px !important;
        transform: none !important;
        justify-content: flex-start !important; gap: 8px !important;
    }
    .excr-hamburger { display: flex !important; margin-left: auto !important; }
    nav {
        position: fixed !important;
        top: 76px !important; left: 12px !important; right: 12px !important;
        background: #1D4B84 !important;
        border: 1px solid rgba(94,197,237,0.40) !important;
        border-radius: 16px !important;
        box-shadow: 0 20px 48px rgba(0,20,60,0.35) !important;
        padding: 14px !important; display: none !important;
    }
    nav.is-open { display: block !important; }
    nav ul { flex-direction: column !important; gap: 2px !important; align-items: stretch !important; }
    nav li { width: 100% !important; }
    nav a { display: block !important; padding: 14px 16px !important; font-size: 15px !important; border-radius: 10px !important; color: #fff !important; }
    nav a:hover { background: rgba(255,255,255,0.10) !important; color: var(--cyan) !important; }
    nav li:last-child { align-self: flex-start !important; }
    nav .nav-cta { display: inline-flex !important; background: var(--orange) !important; color: #fff !important; border-radius: 100px !important; padding: 12px 24px !important; margin-top: 6px !important; width: auto !important; }
    .hero-left h1 { font-size: 36px; letter-spacing: -1px; }
    .benefits-grid { grid-template-columns: 1fr; }
    /* pomarańczowe koła nie mogą wchodzić pod wyśrodkowane nagłówki i przyciski */
    .locations-section::before { display: none; }
    .cta-section::before { right: -80px; top: auto; bottom: -100px; width: 210px; height: 210px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-cities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 64px 5%; }
    .section-title { font-size: 30px; }
    .cta-section h2 { font-size: 32px; }
}
@media (max-width: 600px) {
    .hero-left h1 { font-size: 30px; }
    .hero-phone-wrap .ss-phone--hero { height: min(430px,50vh); }
    .section-title::after { margin-top: 12px; }
    .pickup-card { padding: 24px; }
    .pickup-place { font-size: 17px; }
    .ss-hiw__cardwrap::after { right: -14px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-cities-grid { grid-template-columns: 1fr 1fr; }
    .btn, .cta-btn { width: 100%; justify-content: center; }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    .ss-screen, .ss-hiw__track { transition: none; }
    .badge-dot { animation: none; }
}
