:root {
    --ink: #071724;
    --ink-soft: #102737;
    --ink-light: #1b3446;
    --orange: #ff6a1a;
    --orange-dark: #e9570c;
    --cream: #f4f1ea;
    --cream-dark: #e9e4da;
    --paper: #fff;
    --text: #172832;
    --muted: #64737c;
    --line: #dce2e3;
    --success: #2a8d68;
    --error: #b42318;
    --shadow: 0 24px 70px rgba(7, 23, 36, .12);
    --radius: 6px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.9rem, 6vw, 5.7rem); }
h2 { margin-bottom: 1.5rem; font-size: clamp(2.35rem, 4.5vw, 4rem); }
h3 { font-size: 1.35rem; }
h1 em, h2 em { color: var(--orange); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.icon { width: 1.45rem; height: 1.45rem; flex: 0 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 10000; top: 10px; left: 10px; padding: 10px 16px; color: #fff; background: var(--orange); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--orange-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: #ff9a60; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
    cursor: pointer;
}

.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--orange); box-shadow: 0 12px 30px rgba(255, 106, 26, .24); }
.button--primary:hover { background: var(--orange-dark); }
.button--glass { color: #fff; border-color: rgba(255, 255, 255, .34); background: rgba(255, 255, 255, .08); backdrop-filter: blur(7px); }
.button--glass:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .14); }
.button--dark { color: #fff; background: var(--ink); }
.button--outline { color: #fff; border-color: rgba(255, 255, 255, .35); background: transparent; }
.button--ghost { color: var(--ink); border-color: var(--line); background: #fff; }
.button--large { min-height: 58px; padding-inline: 28px; }
.button--small { min-height: 42px; padding-inline: 18px; font-size: .84rem; }
.button--wide { width: 100%; min-height: 58px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-decoration: none; }
.text-link .icon { width: 18px; transition: transform .2s; }
.text-link:hover { color: var(--orange-dark); }
.text-link:hover .icon { transform: translateX(4px); }

.topbar { color: rgba(255, 255, 255, .74); background: #04111b; font-size: .75rem; }
.topbar__inner { display: flex; justify-content: space-between; min-height: 35px; }
.topbar p { display: flex; align-items: center; gap: 8px; margin: 0; }
.topbar .icon { width: 14px; height: 14px; color: #ff9a60; }

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    color: #fff;
    background: rgba(7, 23, 36, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .16); }
.site-header__inner { display: flex; align-items: center; min-height: 82px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { display: block; width: 147px; height: 60px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 33px; margin-left: auto; }
.site-nav > a, .nav-dropdown > button { padding: 29px 0; color: rgba(255, 255, 255, .82); border: 0; background: transparent; font-size: .88rem; font-weight: 700; text-decoration: none; cursor: pointer; }
.site-nav > a:hover, .nav-dropdown > button:hover { color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 7px; }
.nav-dropdown > button .nav-chevron { width: 15px; height: 15px; color: rgba(255,255,255,.58); stroke-width: 2.2; transition: transform .2s, color .2s; }
.nav-dropdown:hover > button .nav-chevron, .nav-dropdown.is-open > button .nav-chevron { color: var(--orange); transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: calc(100% - 6px); left: -24px; width: 305px; padding: 13px; color: var(--text); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 3px; font-size: .84rem; font-weight: 650; line-height: 1.35; text-decoration: none; }
.nav-dropdown__menu a:hover { color: var(--orange-dark); background: var(--cream); }
.header-phone { display: flex; align-items: center; gap: 11px; margin-left: 34px; padding-left: 27px; border-left: 1px solid rgba(255, 255, 255, .16); text-decoration: none; }
.header-phone__icon { display: grid; place-items: center; width: 39px; height: 39px; color: #fff; background: var(--orange); border-radius: 50%; }
.header-phone__icon .icon { width: 18px; }
.header-phone span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.header-phone small { color: rgba(255, 255, 255, .58); font-size: .67rem; font-weight: 600; }
.header-phone strong { color: #fff; font-size: .91rem; letter-spacing: .01em; }
.nav-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 0; color: #fff; border: 1px solid rgba(255, 255, 255, .22); background: transparent; border-radius: 3px; }
.nav-toggle .icon { margin: auto; }
.nav-toggle .icon-close { display: none; }

.hero { position: relative; min-height: 680px; color: #fff; background: var(--ink); overflow: hidden; }
.hero__media, .service-hero__media { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(3, 15, 24, .96) 0%, rgba(3, 15, 24, .84) 35%, rgba(3, 15, 24, .25) 70%, rgba(3, 15, 24, .1) 100%), url('/assets/images/transporto-paslaugos-vilniuje.webp'); background-size: cover; background-position: center; }
.hero__media::after, .service-hero__media::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, #000, transparent 80%); }
.hero__content { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 100px; }
.hero h1 { max-width: 870px; margin-bottom: 25px; color: #fff; font-size: clamp(3.25rem, 6.5vw, 6.25rem); letter-spacing: -.055em; }
.hero h1 em { display: inline-block; }
.hero__lead { max-width: 690px; margin-bottom: 34px; color: rgba(255, 255, 255, .78); font-size: 1.12rem; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__notes { display: flex; gap: 30px; margin: 34px 0 0; padding: 0; list-style: none; }
.hero__notes li { display: flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, .67); font-size: .78rem; font-weight: 650; }
.hero__notes .icon { width: 16px; color: #ff9a60; }
.hero__scroll { position: absolute; z-index: 3; right: max(20px, calc((100vw - var(--container)) / 2)); bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .65); font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; writing-mode: vertical-rl; }
.hero__scroll span { display: block; width: 1px; height: 44px; background: var(--orange); }

.quick-trust { position: relative; z-index: 4; background: #fff; box-shadow: 0 14px 45px rgba(7, 23, 36, .08); }
.quick-trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-trust__grid > div { display: flex; align-items: center; gap: 17px; min-height: 112px; padding: 25px 36px; border-right: 1px solid var(--line); }
.quick-trust__grid > div:first-child { padding-left: 0; }
.quick-trust__grid > div:last-child { border-right: 0; }
.quick-trust__grid > div > .icon { width: 31px; height: 31px; color: var(--orange); }
.quick-trust p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.quick-trust strong { color: var(--ink); font-size: .94rem; }
.quick-trust span { margin-top: 3px; color: var(--muted); font-size: .75rem; }

.section-heading { margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.section-heading--split > p { max-width: 450px; margin: 0 0 7px; color: var(--muted); }
.section-heading--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p:last-child { max-width: 590px; margin: 0 auto; color: var(--muted); }

.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 350px; padding: 31px; background: #fff; border: 1px solid transparent; border-radius: var(--radius); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { border-color: #f1cbb5; box-shadow: 0 20px 50px rgba(7, 23, 36, .09); transform: translateY(-5px); }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 36px; }
.service-card__number { color: #a5b0b5; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.service-card__icon { display: grid; place-items: center; width: 58px; height: 58px; color: var(--orange); background: #fff1e8; border-radius: 50%; }
.service-card__icon .icon { width: 27px; height: 27px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.35rem; }
.service-card p { display: -webkit-box; min-height: 80px; margin-bottom: 24px; color: var(--muted); font-size: .89rem; line-height: 1.6; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.service-card > a { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: .8rem; font-weight: 800; text-decoration: none; }
.service-card > a .icon { width: 17px; color: var(--orange); transition: transform .2s; }
.service-card > a:hover .icon { transform: translateX(4px); }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 105px; align-items: center; }
.about-copy h2 { font-size: clamp(2.6rem, 4.4vw, 4.15rem); }
.about-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }
.about-copy .text-link { margin-top: 16px; }
.about-panel { position: relative; color: #fff; background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.about-panel::before { content: ""; position: absolute; z-index: -1; top: -23px; right: -23px; width: 180px; height: 180px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); }
.about-panel__accent { display: flex; align-items: center; gap: 18px; padding: 28px 34px; background: var(--orange); }
.about-panel__accent > span { font-family: Georgia, serif; font-size: 4.5rem; line-height: .8; }
.about-panel__accent p { margin: 0; font-size: .76rem; font-weight: 800; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.about-panel ul { margin: 0; padding: 17px 34px 25px; list-style: none; }
.about-panel li { display: flex; gap: 21px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.about-panel li:last-child { border-bottom: 0; }
.about-panel li > span { padding-top: 3px; color: #ff9a60; font-size: .68rem; font-weight: 800; }
.about-panel strong { display: block; margin-bottom: 4px; font-size: .98rem; }
.about-panel li p { margin: 0; color: rgba(255,255,255,.58); font-size: .8rem; }

.process-section { background: #eef1f1; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-grid li { position: relative; min-height: 290px; padding: 43px 39px; background: #fff; border-right: 1px solid var(--line); }
.process-grid li:last-child { border-right: 0; }
.process-grid__number { position: absolute; top: 27px; right: 29px; color: #c6ced1; font-size: .68rem; font-weight: 800; }
.process-grid__icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 29px; color: var(--orange); background: #fff1e8; border-radius: 50%; }
.process-grid h3 { margin-bottom: 12px; }
.process-grid p { margin: 0; color: var(--muted); font-size: .87rem; }

.locations-section { padding-top: 0; background: #eef1f1; }
.locations-grid { display: grid; grid-template-columns: 1.35fr .65fr; box-shadow: var(--shadow); }
.locations-card { padding: 64px 69px; color: #fff; background-color: var(--ink); background-image: radial-gradient(circle at 95% 20%, rgba(255,106,26,.18), transparent 35%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.locations-card h2 { color: #fff; font-size: clamp(2.4rem, 4vw, 3.65rem); }
.locations-card > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.64); }
.locations-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.locations-tags span { padding: 7px 12px; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.17); border-radius: 30px; font-size: .72rem; font-weight: 700; }
.locations-info { display: flex; flex-direction: column; justify-content: center; padding: 45px; background: var(--orange); }
.locations-info__big { color: #fff; font-size: 1.45rem; font-weight: 800; line-height: 1.3; letter-spacing: -.02em; }
.locations-info > p:not(.locations-info__big) { color: rgba(255,255,255,.78); font-size: .84rem; }
.locations-info .button { align-self: flex-start; margin-top: 12px; color: #fff; background: var(--ink); box-shadow: none; }

.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-intro { position: sticky; top: 145px; align-self: start; }
.faq-intro h2 { font-size: clamp(2.4rem, 4vw, 3.7rem); }
.faq-intro > p:not(.eyebrow) { max-width: 350px; color: var(--muted); }
.faq-intro .text-link { margin-top: 13px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 25px 52px 25px 0; color: var(--ink); font-size: 1rem; font-weight: 750; line-height: 1.45; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span, .accordion summary span::after { position: absolute; top: 50%; right: 4px; width: 16px; height: 2px; background: var(--orange); transform: translateY(-50%); transition: transform .2s; }
.accordion summary span::after { content: ""; top: 0; right: 0; transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 700px; margin: -6px 50px 26px 0; color: var(--muted); font-size: .9rem; }

.contact-section { color: #fff; background-color: var(--ink); background-image: radial-gradient(circle at 10% 100%, rgba(255,106,26,.14), transparent 30%); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.contact-copy h2 { color: #fff; font-size: clamp(2.6rem, 4.5vw, 4.3rem); }
.contact-copy > p:not(.eyebrow) { max-width: 470px; color: rgba(255,255,255,.65); }
.contact-phone-card { display: flex; align-items: center; gap: 16px; margin-top: 38px; }
.contact-phone-card > span { display: grid; place-items: center; width: 54px; height: 54px; color: #fff; background: var(--orange); border-radius: 50%; }
.contact-phone-card p { display: flex; flex-direction: column; margin: 0; line-height: 1.25; }
.contact-phone-card small { color: rgba(255,255,255,.5); font-size: .7rem; }
.contact-phone-card a { color: #fff; font-size: 1.16rem; font-weight: 800; text-decoration: none; }
.contact-availability { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 42px; padding-top: 29px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-availability > div { display: flex; align-items: flex-start; gap: 10px; }
.contact-availability .icon { width: 19px; color: #ff9a60; }
.contact-availability span { display: flex; flex-direction: column; color: rgba(255,255,255,.56); font-size: .72rem; }
.contact-availability strong { color: #fff; font-size: .75rem; }
.contact-form-card { padding: 39px; color: var(--text); background: #fff; border-radius: var(--radius); box-shadow: 0 35px 80px rgba(0,0,0,.22); }
.contact-form-card__heading { display: flex; justify-content: space-between; margin-bottom: 25px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.contact-form-card__heading span { color: var(--ink); font-size: 1.1rem; font-weight: 800; }
.contact-form-card__heading small { color: var(--muted); font-size: .7rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .75rem; font-weight: 800; }
.field label > span { color: var(--orange-dark); }
.field label .optional { color: var(--muted); font-weight: 500; }
.field input, .field textarea, .field select { width: 100%; color: var(--text); background: #f6f7f7; border: 1px solid #d8dfe1; border-radius: 3px; outline: 0; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input, .field select { height: 50px; padding: 0 13px; }
.field textarea { min-height: 125px; padding: 12px 13px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { background: #fff; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,26,.11); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); }
.field ::placeholder { color: #9ba6ab; font-size: .8rem; }
.field-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 4px; color: #89959a; font-size: .65rem; }
.field-error { display: block; margin-top: 4px; color: var(--error); font-size: .68rem; font-weight: 700; }
.field-error--standalone { margin: -5px 0 12px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 18px; color: var(--muted); font-size: .69rem; line-height: 1.5; cursor: pointer; }
.checkbox input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--orange); }
.checkbox a { color: var(--ink); }
.form-footnote { margin: 11px 0 0; color: #8b979d; font-size: .64rem; line-height: 1.45; text-align: center; }
.form-honeypot { position: absolute !important; left: -9999px !important; }
.form-alert { display: flex; flex-direction: column; margin-bottom: 18px; padding: 11px 14px; border-radius: 3px; font-size: .74rem; }
.form-alert--error { color: #7a271a; background: #fef3f2; border: 1px solid #fecdca; }
.has-form-errors .contact-section { scroll-margin-top: 100px; }

.service-hero { position: relative; min-height: 570px; color: #fff; background: var(--ink); overflow: hidden; }
.service-hero__media { background-image: linear-gradient(90deg, rgba(3,15,24,.97) 0%, rgba(3,15,24,.87) 45%, rgba(3,15,24,.36) 76%, rgba(3,15,24,.15) 100%), url('/assets/images/transporto-paslaugos-vilniuje.webp'); background-position: center 53%; }
.service-hero__inner { position: relative; z-index: 2; padding-top: 31px; padding-bottom: 85px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 55px; color: rgba(255,255,255,.48); font-size: .7rem; }
.breadcrumbs a { color: rgba(255,255,255,.68); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.service-hero__copy { max-width: 800px; }
.service-hero h1 { margin-bottom: 22px; color: #fff; font-size: clamp(3rem, 5.7vw, 5.25rem); }
.service-hero__copy > p:not(.eyebrow) { max-width: 690px; margin-bottom: 31px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.service-benefits { background: #fff; box-shadow: 0 14px 45px rgba(7,23,36,.08); }
.service-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-benefits__grid > div { display: flex; gap: 14px; min-height: 118px; padding: 28px 31px; border-right: 1px solid var(--line); }
.service-benefits__grid > div:last-child { border-right: 0; }
.service-benefits__grid > div > .icon { margin-top: 3px; color: var(--orange); }
.service-benefits p { display: flex; flex-direction: column; margin: 0; line-height: 1.4; }
.service-benefits strong { margin-bottom: 3px; color: var(--ink); font-size: .88rem; }
.service-benefits span { color: var(--muted); font-size: .74rem; }

.service-intro { background: #fff; }
.service-intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; }
.service-intro h2 { font-size: clamp(2.5rem, 4vw, 3.8rem); }
.rich-copy { padding-top: 9px; }
.rich-copy p { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.rich-copy p:last-child { margin-bottom: 0; }

.included-section { padding-top: 0; background: #fff; }
.included-grid { display: grid; grid-template-columns: 1.25fr .75fr; box-shadow: var(--shadow); }
.included-card { padding: 57px 64px; color: #fff; background: var(--ink); }
.included-card h2 { color: #fff; font-size: clamp(2.35rem, 3.8vw, 3.5rem); }
.included-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 30px; margin: 31px 0 0; padding: 0; list-style: none; }
.included-card li { display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,.74); font-size: .81rem; }
.included-card li .icon { width: 18px; height: 18px; color: #ff9a60; }
.included-aside { display: flex; flex-direction: column; justify-content: center; padding: 48px; background: var(--orange); }
.included-aside__icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 28px; color: #fff; background: rgba(7,23,36,.12); border-radius: 50%; }
.included-aside__icon .icon { width: 31px; height: 31px; }
.included-aside h3 { color: #fff; font-size: 1.5rem; }
.included-aside p { color: rgba(255,255,255,.77); font-size: .84rem; }
.included-aside .text-link { margin-top: 12px; color: #fff; }

.mini-process { background: var(--cream); }
.mini-process ol { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.mini-process li { padding: 36px 42px; background: #fff; border-right: 1px solid var(--line); }
.mini-process li:last-child { border: 0; }
.mini-process li > span { display: block; margin-bottom: 38px; color: var(--orange); font-size: .7rem; font-weight: 800; }
.mini-process h3 { margin-bottom: 10px; }
.mini-process p { margin: 0; color: var(--muted); font-size: .82rem; }
.faq-section--service { background: #fff; }
.related-section { padding-top: 0; background: #fff; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; min-height: 104px; padding: 22px; background: var(--cream); border: 1px solid transparent; text-decoration: none; transition: .2s; }
.related-card:hover { background: #fff; border-color: #efc7b1; box-shadow: 0 13px 35px rgba(7,23,36,.08); transform: translateY(-2px); }
.related-card > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--orange); background: #fff; border-radius: 50%; }
.related-card h3 { margin: 0; font-size: 1rem; }
.related-card > .icon { width: 18px; color: var(--orange); }

.legal-hero { padding: 32px 0 78px; color: #fff; background: var(--ink); }
.legal-hero .breadcrumbs { margin-bottom: 52px; }
.legal-hero h1 { margin-bottom: 18px; color: #fff; font-size: clamp(3rem, 6vw, 5.3rem); }
.legal-hero > .container > p:last-child { color: rgba(255,255,255,.63); }
.legal-section { background: var(--cream); }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 85px; align-items: start; }
.legal-layout aside { position: sticky; top: 135px; display: flex; flex-direction: column; padding: 24px; background: #fff; }
.legal-layout aside strong { color: var(--ink); font-size: .78rem; }
.legal-layout aside span { margin-bottom: 22px; color: var(--muted); font-size: .75rem; }
.legal-layout aside .text-link { font-size: .75rem; }
.legal-copy { padding: 48px 58px; background: #fff; }
.legal-copy h2 { margin: 40px 0 13px; font-size: 1.35rem; letter-spacing: -.02em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: var(--muted); font-size: .9rem; }
.legal-copy a { color: var(--orange-dark); }

.status-page { display: grid; place-items: center; min-height: 650px; padding: 90px 0; background: var(--cream); text-align: center; }
.status-page__inner { max-width: 760px; }
.status-page__icon { display: grid; place-items: center; width: 80px; height: 80px; margin: 0 auto 28px; color: #fff; background: var(--success); border-radius: 50%; }
.status-page__icon .icon { width: 38px; height: 38px; }
.status-page__code { display: block; color: var(--orange); font-family: Georgia, serif; font-size: 5rem; line-height: 1; }
.status-page .eyebrow { justify-content: center; }
.status-page h1 { margin-bottom: 22px; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.status-page__inner > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 30px; color: var(--muted); }
.status-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.site-footer { padding-top: 70px; color: rgba(255,255,255,.62); background: #04111b; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .75fr; gap: 80px; padding-bottom: 60px; }
.footer-brand .brand { margin-bottom: 19px; }
.footer-brand p { max-width: 370px; font-size: .8rem; }
.site-footer h2 { margin-bottom: 19px; color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; font-size: .76rem; }
.site-footer li a { text-decoration: none; }
.site-footer li a:hover { color: #fff; }
.footer-contacts li { display: flex; align-items: center; gap: 8px; }
.footer-contacts li a { display: flex; align-items: center; gap: 8px; }
.footer-contacts .icon { width: 15px; color: #ff9a60; }
.site-footer .button { margin-top: 13px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 72px; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.footer-bottom p { margin: 0; }
.footer-bottom__meta { display: flex; align-items: center; gap: 28px; }
.footer-bottom__links { display: flex; gap: 22px; }
.footer-bottom a, .footer-bottom button { color: rgba(255,255,255,.58); background: none; border: 0; font: inherit; text-decoration: none; cursor: pointer; }
.footer-bottom a:hover, .footer-bottom button:hover { color: #fff; }
.site-credit { display: flex; align-items: center; gap: 9px; padding-right: 27px; border-right: 1px solid rgba(255,255,255,.12); }
.site-credit span { white-space: nowrap; }
.site-credit img { display: block; width: 105px; height: auto; mix-blend-mode: screen; opacity: .78; transition: opacity .2s; }
.site-credit:hover img { opacity: 1; }

.mobile-call { display: none; }
.cookie-banner { position: fixed; z-index: 3000; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 30px; width: min(670px, calc(100% - 44px)); padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 25px 70px rgba(0,0,0,.22); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; color: var(--ink); font-size: .87rem; }
.cookie-banner p { margin: 3px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 7px; }

:focus-visible { outline: 3px solid rgba(255,106,26,.6); outline-offset: 3px; }

@media (max-width: 1080px) {
    .site-nav { gap: 20px; }
    .header-phone { margin-left: 23px; padding-left: 20px; }
    .header-phone__icon { display: none; }
    .about-grid, .contact-layout { gap: 55px; }
    .faq-layout { gap: 65px; }
    .service-card { padding: 25px; }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .site-header__inner { min-height: 72px; }
    .brand img { width: 126px; height: 51px; }
    .nav-toggle { display: grid; }
    .header-phone { margin-left: 11px; padding: 0; border: 0; }
    .header-phone span:last-child { display: none; }
    .header-phone__icon { display: grid; width: 46px; height: 46px; }
    .site-nav { position: fixed; z-index: 999; top: 72px; right: 0; bottom: 0; left: 0; display: block; padding: 28px 20px 100px; background: var(--ink); opacity: 0; visibility: hidden; overflow-y: auto; transform: translateY(-10px); transition: .2s; }
    .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
    .nav-open .nav-toggle .icon-menu { display: none; }
    .nav-open .nav-toggle .icon-close { display: block; }
    .site-nav > a, .nav-dropdown > button { display: flex; justify-content: space-between; width: 100%; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; text-align: left; }
    .nav-dropdown__menu { position: static; display: none; width: 100%; padding: 7px 0 12px 13px; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
    .nav-dropdown__menu a { padding: 9px 5px; color: rgba(255,255,255,.65); }
    .nav-dropdown__menu a:hover { color: #fff; background: transparent; }
    .section { padding: 85px 0; }
    .hero { min-height: 660px; }
    .hero__content { padding-top: 95px; }
    .hero__scroll { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-copy { max-width: 700px; }
    .about-panel { max-width: 680px; }
    .about-panel::before { display: none; }
    .locations-grid { grid-template-columns: 1fr; }
    .locations-info { padding: 42px 64px; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-intro { position: static; }
    .faq-intro h2 { margin-bottom: 15px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-copy { max-width: 670px; }
    .contact-form-card { max-width: 760px; width: 100%; }
    .service-benefits__grid { grid-template-columns: 1fr; padding: 15px 0; }
    .service-benefits__grid > div { min-height: auto; padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .service-benefits__grid > div:last-child { border-bottom: 0; }
    .service-intro__grid { grid-template-columns: 1fr; gap: 25px; }
    .included-grid { grid-template-columns: 1fr; }
    .included-aside { padding: 45px 64px; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    body { font-size: 15px; }
    .container { width: min(calc(100% - 30px), var(--container)); }
    .section { padding: 68px 0; }
    h2 { font-size: 2.55rem; }
    .hero { min-height: 690px; }
    .hero__media, .service-hero__media { background-image: linear-gradient(90deg, rgba(3,15,24,.93), rgba(3,15,24,.57)), url('/assets/images/transporto-paslaugos-vilniuje-mobile.webp'); background-position: 60% center; }
    .hero__content { display: flex; flex-direction: column; justify-content: center; min-height: 690px; padding-top: 55px; padding-bottom: 65px; }
    .hero h1 { margin-bottom: 22px; font-size: clamp(3.05rem, 14vw, 4.25rem); line-height: 1.03; }
    .hero__lead { font-size: 1rem; }
    .hero__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
    .hero__actions .button { width: 100%; }
    .hero__notes { flex-wrap: wrap; gap: 9px 18px; margin-top: 25px; }
    .quick-trust__grid { grid-template-columns: 1fr; padding: 8px 0; }
    .quick-trust__grid > div, .quick-trust__grid > div:first-child { min-height: 82px; padding: 17px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
    .quick-trust__grid > div:last-child { border-bottom: 0; }
    .section-heading--split { display: block; }
    .section-heading--split > p { margin-top: 21px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 310px; }
    .about-panel__accent { padding: 25px; }
    .about-panel ul { padding: 11px 25px 18px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid li { min-height: auto; padding: 32px; border-right: 0; border-bottom: 1px solid var(--line); }
    .locations-card { padding: 43px 27px; }
    .locations-info { padding: 36px 27px; }
    .contact-availability { grid-template-columns: 1fr; }
    .contact-form-card { padding: 25px 19px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card__heading { align-items: center; }
    .service-hero { min-height: 620px; }
    .service-hero__inner { padding-top: 22px; padding-bottom: 60px; }
    .service-hero .breadcrumbs { margin-bottom: 55px; }
    .service-hero h1 { font-size: clamp(2.95rem, 13vw, 4.1rem); }
    .service-hero__copy > p:not(.eyebrow) { font-size: .98rem; }
    .included-card { padding: 42px 25px; }
    .included-card ul { grid-template-columns: 1fr; }
    .included-aside { padding: 42px 25px; }
    .mini-process ol { grid-template-columns: 1fr; }
    .mini-process li { padding: 29px; border-right: 0; border-bottom: 1px solid var(--line); }
    .mini-process li > span { margin-bottom: 20px; }
    .legal-layout { grid-template-columns: 1fr; gap: 25px; }
    .legal-layout aside { position: static; }
    .legal-copy { padding: 31px 23px; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; padding: 20px 0 92px; }
    .footer-bottom__meta { align-items: flex-start; flex-direction: column; gap: 12px; }
    .footer-bottom__links { flex-direction: row; gap: 22px; }
    .site-credit { padding: 0; border: 0; }
    .mobile-call { position: fixed; z-index: 2000; right: 14px; bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 132px; min-height: 51px; padding: 0 18px; color: #fff; background: var(--orange); border-radius: 40px; box-shadow: 0 12px 35px rgba(7,23,36,.3); font-size: .84rem; font-weight: 800; text-decoration: none; }
    .mobile-call .icon { width: 18px; }
    .cookie-banner { right: 14px; bottom: 78px; left: 14px; flex-direction: column; align-items: stretch; width: auto; gap: 15px; }
    .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

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