/* ==========================================================================
   refund.lt — dizaino sistema
   Be išorinių bibliotekų ir be išorinių šriftų: kuo mažiau užklausų, tuo
   greičiau puslapis pasirodo telefone. Mobilus vaizdas — pirmas.
   ========================================================================== */

:root {
    /* Spalvos. Oranžinė — veiksmui, pilka — informacijai. */
    --orange-50:  #FFF4ED;
    --orange-100: #FFE6D5;
    --orange-200: #FFC9AA;
    --orange-300: #FFA474;
    --orange-400: #FF7A3C;
    --orange-500: #FF6B00;   /* pagrindinė */
    --orange-600: #E85D00;
    --orange-700: #C14A00;
    --orange-800: #993D06;

    --grey-25:   #FCFCFD;
    --grey-50:   #F7F8FA;
    --grey-100:  #F0F1F4;
    --grey-200:  #E3E5EA;
    --grey-300:  #CBCFD6;
    --grey-400:  #9AA1AD;
    --grey-500:  #6B7280;
    --grey-600:  #525966;
    --grey-700:  #3D4452;
    --grey-800:  #262C38;
    --grey-900:  #15191F;

    --green-50:  #ECFDF3;
    --green-500: #12B76A;
    --green-600: #039855;
    --red-50:    #FEF3F2;
    --red-500:   #F04438;
    --red-600:   #D92D20;
    --blue-50:   #EFF8FF;
    --blue-500:  #2E90FA;
    --amber-50:  #FFFAEB;
    --amber-500: #F79009;

    /* Oranžinė smulkiam tekstui ant balto: --orange-500 duoda tik 2,9:1,
       todėl tekstui naudojame --orange-700 (4,9:1 — atitinka WCAG AA). */
    --orange-text: var(--orange-700);
    --ink:         #15191F;   /* tekstas ant oranžinio fono, 6,3:1 */

    --text:        var(--grey-900);
    --text-muted:  var(--grey-500);
    --text-invert: #FFFFFF;
    --bg:          #FFFFFF;
    --bg-soft:     var(--grey-50);
    --border:      var(--grey-200);

    /* Tipografija: sistemos šriftai — nulis papildomų užklausų. */
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
            Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

    /* Dydžiai prisitaiko prie ekrano be media užklausų. */
    --step--1: clamp(0.82rem, 0.80rem + 0.1vw, 0.88rem);
    --step-0:  clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
    --step-1:  clamp(1.10rem, 1.05rem + 0.3vw, 1.30rem);
    --step-2:  clamp(1.35rem, 1.25rem + 0.6vw, 1.75rem);
    --step-3:  clamp(1.65rem, 1.45rem + 1.1vw, 2.40rem);
    --step-4:  clamp(1.95rem, 1.60rem + 2.0vw, 3.25rem);
    --step-5:  clamp(2.25rem, 1.70rem + 3.0vw, 4.00rem);

    /* Apvalinimas. Mygtukai NĖRA tabletės — 12 px duoda modernų, bet vis tiek
       aiškiai „paspaudžiamą" kraštą. Tabletė lieka tik mažiems statuso žymenims. */
    --radius-xs:  6px;
    --radius-sm:  8px;
    --radius:     10px;
    --radius-btn: 12px;
    --radius-lg:  14px;
    --radius-xl:  20px;
    --radius-full: 999px;

    --shadow-xs: 0 1px 2px rgba(21, 25, 31, .05);
    --shadow-sm: 0 1px 3px rgba(21, 25, 31, .08), 0 1px 2px rgba(21, 25, 31, .04);
    --shadow:    0 4px 12px rgba(21, 25, 31, .07), 0 2px 4px rgba(21, 25, 31, .04);
    --shadow-lg: 0 12px 32px rgba(21, 25, 31, .10), 0 4px 8px rgba(21, 25, 31, .04);
    --shadow-orange: 0 6px 20px rgba(255, 107, 0, .28);

    --container: 1140px;
    --gutter: clamp(1rem, 4vw, 2rem);

    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── Bazė ───────────────────────────────────────────────────────────────── */

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

* { margin: 0; }

html {
    -webkit-text-size-adjust: 100%;   /* iOS nedidina šrifto pasukus telefoną */
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font);
    font-size: var(--step-0);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

p { text-wrap: pretty; }

a { color: var(--orange-text); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.25em; }

strong, b { font-weight: 650; }

:focus-visible {
    outline: 3px solid var(--orange-400);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ── Išdėstymas ─────────────────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow { max-width: 780px; }
.container--wide   { max-width: 1320px; }

.section { padding-block: clamp(2.75rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--grey-900); color: var(--text-invert); }

.stack > * + * { margin-top: var(--stack-gap, 1rem); }

.grid { display: grid; gap: clamp(1rem, 3vw, 2rem); }

.section-head { max-width: 640px; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); margin-top: .75rem; font-size: var(--step-1); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: var(--step--1);
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--orange-text);
    margin-bottom: .75rem;
}

.text-muted { color: var(--text-muted); }
.text-orange { color: var(--orange-text); }
.text-center { text-align: center; }
.text-sm { font-size: var(--step--1); }
.nowrap { white-space: nowrap; }

/* ── Mygtukai ───────────────────────────────────────────────────────────── */

.btn {
    --btn-bg: var(--orange-500);
    --btn-color: var(--ink);
    --btn-border: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.5rem;
    min-height: 48px;              /* patogu paspausti pirštu */
    font: inherit;
    font-size: var(--step-0);
    font-weight: 650;
    line-height: 1.2;
    color: var(--btn-color);
    background: var(--btn-bg);
    border: 1.5px solid var(--btn-border);
    border-radius: var(--radius-btn);
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn:hover { text-decoration: none; background: var(--orange-400); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--lg { padding: 1.1rem 2.1rem; min-height: 58px; font-size: var(--step-1); font-weight: 700; }
.btn--sm { padding: .55rem 1rem; min-height: 40px; font-size: var(--step--1); border-radius: var(--radius); }
.btn--block { width: 100%; }

.btn--ghost {
    --btn-bg: transparent;
    --btn-color: var(--grey-800);
    --btn-border: var(--grey-300);
}
.btn--ghost:hover { background: var(--grey-50); border-color: var(--grey-400); box-shadow: none; }

.btn--white {
    --btn-bg: #fff;
    --btn-color: var(--grey-900);
}
.btn--white:hover { background: var(--grey-100); box-shadow: var(--shadow); }

.btn--outline-white {
    --btn-bg: transparent;
    --btn-color: #fff;
    --btn-border: rgba(255,255,255,.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; box-shadow: none; }

/* Raudonas su baltu tekstu: red-600 duoda 4,9:1, red-500 tik 3,8:1. */
.btn--danger { --btn-bg: var(--red-600); --btn-color: #fff; }
.btn--danger:hover { background: #B42318; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Kortelės ───────────────────────────────────────────────────────────── */

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: var(--shadow-xs);
}

.card--raised { box-shadow: var(--shadow); border-color: transparent; }
.card--flat { box-shadow: none; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .7rem;
    font-size: var(--step--1);
    font-weight: 650;
    line-height: 1.4;
    border-radius: var(--radius-full);
    background: var(--grey-100);
    color: var(--grey-700);
    white-space: nowrap;
}

.badge--orange { background: var(--orange-50); color: var(--orange-700); }
.badge--green  { background: var(--green-50); color: var(--green-600); }
.badge--red    { background: var(--red-50); color: var(--red-600); }
.badge--blue   { background: var(--blue-50); color: #1849A9; }
.badge--amber  { background: var(--amber-50); color: #B54708; }

/* ── Antraštė ───────────────────────────────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 68px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: var(--step-1);
    font-weight: 750;
    letter-spacing: -0.03em;
    color: var(--grey-900);
    text-decoration: none;
    flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo__mark { flex-shrink: 0; }
.logo__text span { color: var(--orange-500); }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
    display: block;
    padding: .55rem .85rem;
    font-size: var(--step-0);
    font-weight: 550;
    color: var(--grey-700);
    border-radius: var(--radius-sm);
}
.nav__link:hover { background: var(--grey-100); color: var(--grey-900); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--orange-text); }

.header__actions { display: flex; align-items: center; gap: .5rem; }

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--grey-800);
}

.mobile-nav {
    border-top: 1px solid var(--border);
    background: #fff;
    padding: .75rem var(--gutter) 1.25rem;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
    display: block;
    padding: .8rem .25rem;
    font-size: var(--step-1);
    font-weight: 600;
    color: var(--grey-800);
    border-bottom: 1px solid var(--grey-100);
}
.mobile-nav .btn { margin-top: 1rem; }

@media (min-width: 900px) {
    .nav { display: block; }
    .nav-toggle { display: none; }
    .mobile-nav { display: none !important; }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(3rem, 8vw, 6rem) clamp(2.75rem, 7vw, 5rem);
    color: #fff;
    /* Tamsus fonas su oranžiniu švytėjimu — vietoje nuotraukos, todėl nieko
       nereikia atsisiųsti ir puslapis pasirodo iškart. */
    background:
        radial-gradient(120% 90% at 78% -10%, rgba(255,107,0,.38) 0%, rgba(255,107,0,0) 58%),
        radial-gradient(95% 80% at 8% 110%, rgba(46,144,250,.16) 0%, rgba(46,144,250,0) 60%),
        linear-gradient(168deg, #1B2028 0%, #15191F 45%, #101419 100%);
}

/* Skrydžių trajektorijos fone */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: .5;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    max-width: 880px;
    margin-inline: auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    margin-bottom: clamp(1.1rem, 3vw, 1.6rem);
    font-size: var(--step--1);
    font-weight: 600;
    letter-spacing: .01em;
    color: #FFD7BC;
    background: rgba(255,107,0,.14);
    border: 1px solid rgba(255,107,0,.32);
    border-radius: var(--radius-full);
}
.hero__badge svg { color: var(--orange-400); }

.hero__title {
    font-size: var(--step-5);
    color: #fff;
    letter-spacing: -.035em;
}
.hero__title em { font-style: normal; color: var(--orange-400); }

.hero__lead {
    margin: clamp(1rem, 2.5vw, 1.4rem) auto 0;
    max-width: 58ch;
    font-size: var(--step-1);
    color: rgba(255,255,255,.76);
}
.hero__lead strong { color: #fff; font-weight: 700; }

/* ── Pagrindinis pasirinkimas: visas plotis, dvi oranžinės pusės ───────── */

.hero__cta { margin-top: clamp(1.75rem, 4.5vw, 2.5rem); }

.cta-split {
    display: grid;
    gap: .85rem;
    text-align: left;
}

.cta-split__btn {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.25rem 1.4rem;
    background: var(--orange-500);
    border: 0;
    border-radius: var(--radius-lg);
    color: var(--ink);
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(255,107,0,.30), inset 0 1px 0 rgba(255,255,255,.22);
    transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.cta-split__btn:hover {
    background: var(--orange-400);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255,107,0,.40), inset 0 1px 0 rgba(255,255,255,.28);
    text-decoration: none;
}
.cta-split__btn:active { transform: translateY(0); }

.cta-split__icon {
    display: grid;
    place-items: center;
    width: 58px; height: 58px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(21,25,31,.12);
    color: var(--ink);
}

.cta-split__label {
    display: block;
    font-size: var(--step-1);
    font-weight: 750;
    letter-spacing: -.02em;
    line-height: 1.25;
}
.cta-split__hint {
    display: block;
    margin-top: .2rem;
    font-size: var(--step--1);
    font-weight: 550;
    color: rgba(21,25,31,.75);
}
.cta-split__arrow { margin-left: auto; flex-shrink: 0; color: rgba(21,25,31,.6); }

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem 1.75rem;
    margin-top: clamp(1.4rem, 3.5vw, 1.9rem);
    font-size: var(--step--1);
    color: rgba(255,255,255,.72);
    list-style: none;
    padding: 0;
}
.hero__trust li { display: flex; align-items: center; gap: .45rem; }
.hero__trust svg { color: var(--orange-400); flex-shrink: 0; }

/* Skaičių juosta hero apačioje */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    max-width: 660px;
    margin: clamp(2rem, 5vw, 3rem) auto 0;
    padding-top: clamp(1.5rem, 4vw, 2rem);
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
}
.hero__stat-value {
    display: block;
    font-size: var(--step-2);
    font-weight: 750;
    letter-spacing: -.03em;
    color: #fff;
}
.hero__stat-label {
    display: block;
    margin-top: .2rem;
    font-size: var(--step--1);
    color: rgba(255,255,255,.6);
}

@media (min-width: 720px) {
    .cta-split { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .cta-split__btn { padding: 1.4rem 1.5rem; }
}

/* ── Palyginimo lentelė ─────────────────────────────────────────────────── */

.compare {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.compare__row {
    display: grid;
    grid-template-columns: 1fr 72px 72px;
    align-items: center;
    gap: .5rem;
    padding: .9rem clamp(.85rem, 2.5vw, 1.25rem);
    border-top: 1px solid var(--grey-100);
}
.compare__row:first-child { border-top: 0; }
.compare__row--head {
    background: var(--grey-50);
    font-size: var(--step--1);
    font-weight: 700;
    text-align: center;
    position: sticky; top: 68px;
}
.compare__row--head > :first-child { text-align: left; }
.compare__label { font-weight: 550; font-size: var(--step-0); }
.compare__cell { display: grid; place-items: center; }
.compare__brand { color: var(--orange-text); }

.mark {
    display: grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.mark--yes { background: var(--green-50); color: var(--green-600); }
.mark--no  { background: var(--red-50); color: var(--red-600); }

@media (min-width: 640px) {
    .compare__row { grid-template-columns: 1fr 130px 130px; }
}

/* ── Ikonų blokas ───────────────────────────────────────────────────────── */

.features { grid-template-columns: 1fr; }

.feature { text-align: center; }

/* Didelė, ryški plytelė — ikona turi būti pirmas dalykas, kurį pamatai. */
.feature__icon {
    display: grid;
    place-items: center;
    width: clamp(76px, 17vw, 92px);
    aspect-ratio: 1;
    margin: 0 auto clamp(1rem, 2.5vw, 1.35rem);
    border-radius: var(--radius-xl);
    color: #fff;
    background: linear-gradient(145deg, var(--orange-400) 0%, var(--orange-600) 100%);
    box-shadow: 0 10px 24px rgba(255,107,0,.26), inset 0 1px 0 rgba(255,255,255,.3);
}
.feature__icon svg { width: 52%; height: 52%; }

.feature h3 { margin-bottom: .5rem; font-size: var(--step-2); }
.feature p { color: var(--text-muted); font-size: var(--step-0); max-width: 34ch; margin-inline: auto; }

@media (min-width: 720px) { .features { grid-template-columns: repeat(3, 1fr); } }

/* ── Procesas ───────────────────────────────────────────────────────────── */

.process { display: grid; gap: clamp(1.75rem, 5vw, 3rem); align-items: start; }

.steps { display: grid; gap: clamp(1.5rem, 3.5vw, 2.1rem); }

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.1rem, 3vw, 1.5rem);
    align-items: start;
    position: relative;
}

/* Apvalintas kvadratas, ne skritulys — tvarkinga su kitų blokų plytelėmis. */
.step__num {
    display: grid;
    place-items: center;
    width: clamp(54px, 13vw, 64px);
    aspect-ratio: 1;
    flex-shrink: 0;
    font-weight: 800;
    font-size: var(--step-2);
    letter-spacing: -.04em;
    color: #fff;
    background: linear-gradient(145deg, var(--orange-400) 0%, var(--orange-600) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 20px rgba(255,107,0,.24), inset 0 1px 0 rgba(255,255,255,.3);
}
.step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: calc(clamp(54px, 13vw, 64px) / 2 - 1.5px);
    top: calc(clamp(54px, 13vw, 64px) + 12px);
    bottom: calc(clamp(1.5rem, 3.5vw, 2.1rem) * -1 + 6px);
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(var(--orange-200), var(--grey-200));
}
.step h3 { margin-bottom: .4rem; font-size: var(--step-2); }
.step p { color: var(--text-muted); font-size: var(--step-0); }

@media (min-width: 860px) { .process { grid-template-columns: .85fr 1.15fr; } }

/* ── Atstumų žemėlapis ──────────────────────────────────────────────────── */

.distance { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center; }

.radar { width: 100%; height: auto; overflow: visible; }
.radar__ring { fill: none; stroke-width: 1.5; }
.radar__ring--1 { stroke: var(--orange-300); }
.radar__ring--2 { stroke: var(--amber-500); opacity: .6; }
.radar__ring--3 { stroke: var(--grey-300); stroke-dasharray: 4 5; }
.radar__line { stroke: var(--grey-300); stroke-width: 1; opacity: .75; }
.radar__dot { stroke: #fff; stroke-width: 1.5; }
.radar__dot--t1 { fill: var(--orange-500); }
.radar__dot--t2 { fill: var(--amber-500); }
.radar__dot--t3 { fill: var(--grey-600); }
.radar__label { font-size: 11px; font-weight: 600; fill: var(--grey-700); font-family: var(--font); }
.radar__origin { fill: var(--grey-900); }
.radar__origin-label { font-size: 12.5px; font-weight: 750; fill: var(--grey-900); font-family: var(--font); }
.radar__ring-label { font-size: 10px; font-weight: 700; fill: var(--grey-400); font-family: var(--font); letter-spacing: .04em; }

.tiers { display: grid; gap: .75rem; }
.tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--grey-300);
    border-radius: var(--radius);
}
.tier--1 { border-left-color: var(--orange-500); }
.tier--2 { border-left-color: var(--amber-500); }
.tier--3 { border-left-color: var(--grey-600); }
.tier__range { font-weight: 600; font-size: var(--step-0); }
.tier__note { font-size: var(--step--1); color: var(--text-muted); }
.tier__amount { margin-left: auto; font-size: var(--step-2); font-weight: 750; letter-spacing: -.03em; white-space: nowrap; }
.tier--1 .tier__amount { color: var(--orange-text); }

@media (min-width: 900px) { .distance { grid-template-columns: 1.1fr .9fr; } }

/* ── DUK ────────────────────────────────────────────────────────────────── */

.faq { max-width: 820px; margin-inline: auto; }

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    margin-bottom: .75rem;
    overflow: hidden;
}
.faq__item[open] { border-color: var(--orange-200); box-shadow: var(--shadow-sm); }

.faq__q {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    font-weight: 650;
    font-size: var(--step-0);
    cursor: pointer;
    list-style: none;
    color: var(--grey-900);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--orange-text); }
.faq__icon {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--orange-500);
    transition: transform .22s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
    padding: 0 1.25rem 1.25rem;
    color: var(--grey-600);
}
.faq__a > :first-child { margin-top: 0; }
.faq__a p + p { margin-top: .75rem; }

/* ── Baigiamasis CTA ────────────────────────────────────────────────────── */

/* Tamsus fonas, o ne oranžinis: baltas tekstas ant oranžinio duoda vos 2,6:1.
   Tamsiame fone oranžinis mygtukas išsiskiria net labiau. */
.cta-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(115% 140% at 88% -20%, rgba(255,107,0,.34) 0%, rgba(255,107,0,0) 60%),
        linear-gradient(150deg, #1B2028 0%, #15191F 60%, #101419 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(2.25rem, 6vw, 3.5rem);
    text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p {
    margin: .9rem auto 0;
    max-width: 52ch;
    color: rgba(255,255,255,.78);
    font-size: var(--step-1);
}
.cta-band .btn-row { justify-content: center; margin-top: 1.9rem; }
.cta-band::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -70px; top: -70px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,107,0,.10);
}

/* ── Poraštė ────────────────────────────────────────────────────────────── */

.site-footer {
    background: var(--grey-900);
    color: var(--grey-400);
    padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
    font-size: var(--step--1);
}
.site-footer a { color: var(--grey-300); }
.site-footer a:hover { color: #fff; }

.footer__grid { display: grid; gap: 2rem; }
.footer__brand .logo { color: #fff; margin-bottom: .85rem; }
.footer__brand p { max-width: 34ch; }

.footer__col h4 {
    color: #fff;
    font-size: var(--step--1);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .9rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.10);
}

@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ── Pagalbinės ─────────────────────────────────────────────────────────── */

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

.skip-link {
    position: absolute;
    top: -60px; left: 1rem;
    z-index: 100;
    padding: .7rem 1.1rem;
    background: var(--grey-900);
    color: #fff;
    border-radius: var(--radius-sm);
    transition: top .18s var(--ease);
}
.skip-link:focus { top: 1rem; }

.divider { height: 1px; background: var(--border); border: 0; margin-block: 1.5rem; }

/* ── Žinutės ────────────────────────────────────────────────────────────── */

.flash {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .9rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-size: var(--step-0);
    font-weight: 550;
}
.flash + .flash { margin-top: .65rem; }
.flash svg { flex-shrink: 0; margin-top: 2px; }
.flash--success { background: var(--green-50); border-color: #A6F4C5; color: #05603A; }
.flash--error   { background: var(--red-50);   border-color: #FECDCA; color: #912018; }
.flash--info    { background: var(--blue-50);  border-color: #B2DDFF; color: #194185; }
.flash--warning { background: var(--amber-50); border-color: #FEDF89; color: #93370D; }

/* ==========================================================================
   PARAIŠKOS FORMA
   ========================================================================== */

.wizard { padding-block: clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem); background: var(--bg-soft); }
.wizard__inner { max-width: 720px; margin-inline: auto; }

/* ── Eigos juosta ───────────────────────────────────────────────────────── */

.progress { margin-bottom: clamp(1.25rem, 3vw, 2rem); }

.progress__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .6rem;
}
.progress__step { font-size: var(--step--1); font-weight: 700; color: var(--orange-text); letter-spacing: .02em; }
.progress__name { font-size: var(--step--1); color: var(--text-muted); }

.progress__bar {
    height: 6px;
    background: var(--grey-200);
    border-radius: 99px;
    overflow: hidden;
}
.progress__fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
    transition: width .35s var(--ease);
}

/* ── Formos kortelė ─────────────────────────────────────────────────────── */

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.35rem, 4vw, 2.25rem);
    box-shadow: var(--shadow-sm);
}

.form-card__title { font-size: var(--step-2); margin-bottom: .5rem; }
.form-card__lead { color: var(--text-muted); margin-bottom: clamp(1.25rem, 3vw, 1.75rem); }

/* ── Laukai ─────────────────────────────────────────────────────────────── */

.field { margin-bottom: 1.15rem; }
.field:last-of-type { margin-bottom: 0; }

.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 600px) {
    .field-row--2 { grid-template-columns: 1fr 1fr; }
    .field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
    .field-row--2-1 { grid-template-columns: 2fr 1fr; }
}

.label {
    display: block;
    margin-bottom: .4rem;
    font-size: var(--step-0);
    font-weight: 600;
    color: var(--grey-800);
}
.label__optional { font-weight: 450; color: var(--grey-400); font-size: var(--step--1); }

.input,
.select,
.textarea {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: .8rem 1rem;
    font: inherit;
    font-size: var(--step-0);
    color: var(--text);
    background: #fff;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-btn);
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
.textarea { min-height: 110px; resize: vertical; line-height: 1.55; }

.input::placeholder { color: var(--grey-400); }

.input:hover, .select:hover, .textarea:hover { border-color: var(--grey-400); }

.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3.5px var(--orange-100);
}

.input--invalid, .select--invalid { border-color: var(--red-500); }
.input--invalid:focus { box-shadow: 0 0 0 3.5px #FEE4E2; }

.input--code {
    font-family: var(--font-mono);
    font-size: var(--step-1);
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
}

.select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .85rem center;
    padding-right: 2.75rem;
}

/* Kalendoriaus ir kitų sisteminių laukų piktogramos Safari nepaslepia */
.input[type="date"] { min-height: 52px; }
.input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .6; }
.input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.hint { margin-top: .4rem; font-size: var(--step--1); color: var(--text-muted); }

.error-text {
    display: flex;
    align-items: flex-start;
    gap: .35rem;
    margin-top: .4rem;
    font-size: var(--step--1);
    font-weight: 550;
    color: var(--red-600);
}
.error-text svg { flex-shrink: 0; margin-top: 1px; }

/* Telefono laukas su šalies kodu */
.phone-group { display: grid; grid-template-columns: minmax(108px, 132px) 1fr; gap: .6rem; }

/* ── Oro uostų / avialinijų paieška ─────────────────────────────────────── */

.combo { position: relative; }

.combo__input { padding-right: 2.75rem; }

.combo__icon {
    position: absolute;
    top: 0;
    right: .95rem;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--grey-400);
    pointer-events: none;
}

.combo__list {
    position: absolute;
    z-index: 30;
    top: calc(100% + 5px);
    left: 0; right: 0;
    max-height: 310px;
    overflow-y: auto;
    margin: 0;
    padding: .35rem;
    list-style: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    -webkit-overflow-scrolling: touch;
}
.combo__list[hidden] { display: none; }

.combo__option {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .7rem .75rem;
    border-radius: var(--radius);
    cursor: pointer;
}
.combo__option:hover,
.combo__option[aria-selected="true"] { background: var(--orange-50); }

.combo__code {
    display: grid;
    place-items: center;
    min-width: 48px;
    padding: .3rem .45rem;
    font-family: var(--font-mono);
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--orange-700);
    background: var(--orange-50);
    border-radius: var(--radius-xs);
    flex-shrink: 0;
}
.combo__option[aria-selected="true"] .combo__code { background: #fff; }

.combo__text { min-width: 0; }
.combo__city { display: block; font-weight: 600; font-size: var(--step-0); }
.combo__meta {
    display: block;
    font-size: var(--step--1);
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.combo__empty { padding: .9rem .75rem; font-size: var(--step--1); color: var(--text-muted); }

/* Pasirinktas oro uostas */
.combo__chosen {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .75rem .9rem;
    background: var(--orange-50);
    border: 1.5px solid var(--orange-200);
    border-radius: var(--radius-btn);
}
.combo__chosen-clear {
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border: 0;
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--grey-500);
    cursor: pointer;
}
.combo__chosen-clear:hover { background: #fff; color: var(--grey-800); }

/* Maršruto laukai su rodykle tarp jų */
.route { display: grid; gap: 1.15rem; }
.route__arrow {
    display: none;
    place-items: center;
    color: var(--grey-400);
    padding-top: 1.9rem;
}
@media (min-width: 680px) {
    .route { grid-template-columns: 1fr auto 1fr; align-items: start; gap: .85rem; }
    .route__arrow { display: grid; }
}

/* ── Pasirinkimo kortelės (radio) ───────────────────────────────────────── */

.choices { display: grid; gap: .7rem; }
.choices--2 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .choices--2 { grid-template-columns: 1fr 1fr; } }

.choice { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }

.choice__box {
    display: flex;
    align-items: center;
    gap: .9rem;
    min-height: 62px;
    height: 100%;
    padding: .95rem 1.1rem;
    background: #fff;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.choice__box:hover { border-color: var(--orange-300); background: var(--orange-50); }

.choice input:checked + .choice__box {
    border-color: var(--orange-500);
    border-width: 2px;
    background: var(--orange-50);
    box-shadow: 0 0 0 3px var(--orange-100);
}
.choice input:focus-visible + .choice__box { outline: 3px solid var(--orange-400); outline-offset: 2px; }

.choice__icon {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: var(--grey-100);
    color: var(--grey-600);
}
.choice input:checked + .choice__box .choice__icon { background: var(--orange-500); color: var(--ink); }

.choice__title { display: block; font-weight: 650; font-size: var(--step-0); line-height: 1.3; }
.choice__desc  { display: block; margin-top: .15rem; font-size: var(--step--1); color: var(--text-muted); }

.choice__check {
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 24px; height: 24px;
    flex-shrink: 0;
    border: 2px solid var(--grey-300);
    border-radius: 50%;
    color: transparent;
}
.choice input:checked + .choice__box .choice__check {
    border-color: var(--orange-600);
    background: var(--orange-500);
    color: var(--ink);
}

/* Sutikimo žymimasis langelis */
.consent {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: 1.1rem 1.2rem;
    background: var(--grey-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    font-size: var(--step--1);
    line-height: 1.6;
    cursor: pointer;
}
.consent input {
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin-top: 1px;
    accent-color: var(--orange-500);
    cursor: pointer;
}

/* ── Veiksmų mygtukai ───────────────────────────────────────────────────── */

.wizard__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: clamp(1.5rem, 4vw, 2rem);
    padding-top: clamp(1.25rem, 3vw, 1.5rem);
    border-top: 1px solid var(--grey-100);
}
.wizard__actions .btn--back { margin-right: auto; }
.wizard__actions .btn--next { min-width: 170px; }

@media (max-width: 520px) {
    .wizard__actions { flex-direction: column-reverse; align-items: stretch; }
    .wizard__actions .btn { width: 100%; }
    .wizard__actions .btn--back { margin-right: 0; }
}

/* Laukų grupė, kuri atsiranda užpildžius ankstesnius */
.reveal[hidden] { display: none; }
@media (prefers-reduced-motion: no-preference) {
    .reveal { animation: reveal .32s var(--ease); }
}
@keyframes reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

/* ── Modalas (kai paraiškos teikti negalima) ────────────────────────────── */

.modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(21,25,31,.62);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.modal[hidden] { display: none; }

.modal__box {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.modal__icon {
    display: grid;
    place-items: center;
    width: 72px; height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-xl);
    background: var(--amber-50);
    color: #B54708;
}
.modal__title { font-size: var(--step-2); margin-bottom: .75rem; }
.modal__text { color: var(--grey-600); }
.modal__actions { display: grid; gap: .65rem; margin-top: 1.75rem; }

/* ── Dokumentų įkėlimas ─────────────────────────────────────────────────── */

.upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
    background: var(--grey-25);
    border: 2px dashed var(--grey-300);
    border-radius: var(--radius-lg);
    transition: border-color .15s var(--ease), background .15s var(--ease);
}
.upload:hover, .upload--drag { border-color: var(--orange-400); background: var(--orange-50); }
.upload__icon { color: var(--orange-600); }
.upload input[type="file"] { position: absolute; opacity: 0; width: 1px; height: 1px; }

.doc-list { display: grid; gap: .6rem; margin-top: 1.1rem; }
.doc {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .8rem .95rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
}
.doc__icon { color: var(--red-600); flex-shrink: 0; }
.doc__name { font-weight: 600; font-size: var(--step--1); word-break: break-word; }
.doc__meta { font-size: var(--step--1); color: var(--text-muted); }
.doc__remove { margin-left: auto; flex-shrink: 0; }

/* ── Suvestinė ──────────────────────────────────────────────────────────── */

.summary { display: grid; gap: 1rem; }

.summary__group {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.summary__head {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.1rem;
    background: var(--grey-50);
    border-bottom: 1px solid var(--border);
}
.summary__head h3 { font-size: var(--step-0); font-weight: 700; }
.summary__edit { margin-left: auto; flex-shrink: 0; }

.summary__rows { display: grid; }
.summary__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: .15rem;
    padding: .8rem 1.1rem;
    border-top: 1px solid var(--grey-100);
}
.summary__row:first-child { border-top: 0; }
.summary__key { font-size: var(--step--1); color: var(--text-muted); }
.summary__value { font-weight: 600; word-break: break-word; }

@media (min-width: 560px) {
    .summary__row { grid-template-columns: 200px 1fr; gap: 1rem; align-items: baseline; }
    .summary__key { padding-top: 1px; }
}

/* Kompensacijos suma suvestinėje */
.payout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 1.6rem);
    background:
        radial-gradient(110% 150% at 90% -20%, rgba(255,107,0,.30) 0%, rgba(255,107,0,0) 60%),
        linear-gradient(150deg, #1B2028, #15191F);
    color: #fff;
    border-radius: var(--radius-lg);
}
.payout__label { font-size: var(--step--1); color: rgba(255,255,255,.7); }
.payout__value { font-size: var(--step-3); font-weight: 800; letter-spacing: -.03em; }
.payout__note { font-size: var(--step--1); color: rgba(255,255,255,.65); max-width: 30ch; margin-left: auto; }

/* ── Pateikta ───────────────────────────────────────────────────────────── */

.done { max-width: 620px; margin-inline: auto; text-align: center; }
.done__icon {
    display: grid;
    place-items: center;
    width: 92px; height: 92px;
    margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--radius-xl);
    color: #fff;
    background: linear-gradient(145deg, var(--green-500), var(--green-600));
    box-shadow: 0 12px 28px rgba(18,183,106,.28);
}
.done__ref {
    display: inline-block;
    margin-top: 1.25rem;
    padding: .7rem 1.25rem;
    font-family: var(--font-mono);
    font-size: var(--step-1);
    font-weight: 700;
    letter-spacing: .06em;
    background: var(--grey-50);
    border: 1px dashed var(--grey-300);
    border-radius: var(--radius-btn);
}
.next-steps { display: grid; gap: .75rem; margin-top: 2rem; text-align: left; }
.next-step {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
}
.next-step__num {
    display: grid;
    place-items: center;
    width: 30px; height: 30px;
    flex-shrink: 0;
    font-size: var(--step--1);
    font-weight: 800;
    color: var(--ink);
    background: var(--orange-500);
    border-radius: var(--radius-xs);
}
