/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand */
    --color-brand: #E10600;
    --color-brand-hover: #b80d12;

    /* Greyscale — pagal Figma styleguide */
    --color-black: #000000;
    --color-grey-dark: #1e1e1e;
    --color-grey-darker: #2e2e2e;
    --color-grey-strong: #4b5563;
    --color-grey-medium: #6b7280;
    --color-grey-light: #9ca3af;
    --color-grey-lighter: #d1d5db;
    --color-grey-bg-light: #f3f4f6;
    --color-white: #ffffff;

    /* Fonai */
    --color-bg: #0B0D10;
    --color-bg-alt: #242424;
    --color-card: #1e1e1e;
    --color-card-hover: #252525;
    --color-border: #2a2a2a;
    --color-nav-bg: #0B0D10;
    --color-nav-border: #1F232B;
    --color-line-strong: #454545;

    /* Tekstas */
    --color-text: #ffffff;
    --color-text-muted: #9ca3af;
    --color-text-subtle: #6b7280;
    --color-text-light: #E5E7EB;
    --color-text-paragraph: #DEDEDE;

    /* Notifikacijos */
    --color-notif-red: #dd0f16;
    --color-notif-warning: #c9982a;
    --color-notif-success: #22a851;

    /* Matmenys */
    --container-width: 1344px;
    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
}

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

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

/* ============================================
   REVEAL ANIMATIONS — turinio fade-up
   ============================================
   .reveal pridedamas per JS (IntersectionObserver).
   .is-visible — kai elementas patenka į viewport.
   Subtle 16px translateY + opacity 0→1, ease-out cubic. */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   CONTAINER
   ============================================
   Vidinio turinio plotis = var(--container-width) (default 1344px).
   Iš šonų — padding (atstumai iki ekrano kraštų), kuris keičiasi
   per breakpointus (žr. RESPONSIVE skyrių).
   `box-sizing: content-box` užtikrina, kad max-width veikia kaip
   inner content area (ne įskaitant padding), nepaisant
   global `* { box-sizing: border-box }`.
   --------------------------------------------- */
.container {
    box-sizing: content-box;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* ============================================
   MYGTUKAI
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-feature-settings: 'liga' off, 'clig' off;
}

.btn-primary {
    background: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-brand);
}

.btn-primary:hover {
    background: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-line-strong);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
}

/* ============================================
   NAVIGACIJA (FIXED)
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: var(--color-nav-bg);
    border-bottom: 1px solid var(--color-nav-border);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-brand);
}

.nav-arrow {
    width: 10px;
    height: 6px;
    opacity: 0.7;
    transition: transform 0.25s ease;
}

.nav-item-dropdown:hover > .nav-link-dropdown,
.nav-item-dropdown:hover > .nav-dropdown-toggle {
    color: var(--color-brand);
}

.nav-cta {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    line-height: 20px;
}

/* ============================================
   MOBILE NAV — HAMBURGER + PHONE CTA (rodomi <980px)
   ============================================ */
.nav-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--color-white);
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.nav-mobile-toggle:hover {
    color: var(--color-brand);
}

.nav-mobile-toggle .nav-mobile-icon-close {
    display: none;
}

.nav-mobile-toggle.is-open {
    border: 1px solid var(--color-brand);
    border-radius: 4px;
    color: var(--color-white);
}

.nav-mobile-toggle.is-open .nav-mobile-icon-open {
    display: none;
}

.nav-mobile-toggle.is-open .nav-mobile-icon-close {
    display: block;
}

.nav-mobile-phone {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-brand);
    border-radius: 6px;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.nav-mobile-phone:hover {
    background: var(--color-brand-hover);
}

.nav-mobile-phone img {
    width: 20px;
    height: 20px;
}

/* Mobile-only elementai — paslėpti / neutralizuoti desktop'e */
.nav-mobile-back,
.nav-link-mobile-only {
    display: none;
}
.nav-menu-items {
    display: contents;
}

/* ============================================
   NAV DROPDOWN (Paslaugos)
   ============================================ */
.nav-item-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle {
    background: none;
    border: 0;
    padding: 8px 4px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: inherit;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: var(--color-brand);
    outline: none;
}

.nav-item-dropdown.open .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-item-dropdown.open > .nav-link-dropdown,
.nav-item-dropdown.open > .nav-dropdown-toggle {
    color: var(--color-brand);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 36px);
    left: 50%;
    transform: translate(-50%, -8px);
    width: min(var(--container-width), calc(100vw - 40px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    z-index: 110;
}

.nav-item-dropdown.open .nav-dropdown,
.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}

/* Nematoma „tiltas" juosta tarp nav punkto ir dropdown'o — kad pelei kertant tarpą nepradingtų hover */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--container-width), calc(100vw - 40px));
    height: 36px;
    pointer-events: none;
    z-index: 109;
}

.nav-item-dropdown:hover::after,
.nav-item-dropdown.open::after {
    pointer-events: auto;
}

.nav-dropdown-inner {
    background: var(--color-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    padding: 48px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 24px;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.16px;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.20);
}

.nav-dropdown-icon {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-bg);
}

.nav-dropdown-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-dropdown-footer {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.nav-dropdown-cta {
    background: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
    border-radius: 6px;
    padding: 16px 32px;
    height: auto;
    line-height: 1;
}

.nav-dropdown-cta:hover {
    background: var(--color-grey-lighter);
    border-color: var(--color-grey-lighter);
    color: var(--color-bg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 720px;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
    background: var(--color-black);
}

.hero > .container {
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg > picture {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 540px;
    text-align: left;
}

.hero-title {
    color: var(--color-white);
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -0.64px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--color-text-paragraph);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   LOGOTIPŲ JUOSTA (AUTO-SCROLL)
   ============================================ */
.logos-strip {
    height: 75px;
    background: var(--color-bg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.logos-strip::before,
.logos-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logos-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg), transparent);
}

.logos-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg), transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    max-width: 90px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: clamp(120px, 10vw, 220px);
    filter: brightness(0) saturate(100%) invert(74%) sepia(7%) saturate(548%) hue-rotate(177deg) brightness(89%) contrast(88%);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PASLAUGŲ SEKCIJA
   ============================================ */
.services {
    background: var(--color-bg);
    padding: 140px 0 0 0;
}

.section-label {
    color: var(--color-grey-light);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 16px;
}

.section-title {
    color: var(--color-white);
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
    font-feature-settings: 'liga' off, 'clig' off;
    max-width: 780px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.service-card {
    position: relative;
    background: var(--color-card);
    padding: 16px;
    display: block;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 10px;
    min-height: 212px;
}

.service-card:hover {
    background: var(--color-card-hover);
    transform: translateY(-4px);
}

.service-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.service-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 8px 8px 0 0;
}

.service-title {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 10px;
}

.service-description {
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.service-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--color-brand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.service-arrow img {
    width: 18px;
    height: 18px;
}

.service-card:hover .service-arrow {
    background: var(--color-brand-hover);
}

.services-cta {
    text-align: center;
}

.services-cta .btn {
    width: 207px;
    border-color: var(--color-grey-strong);
}

.services-cta .btn:hover {
    background: var(--color-grey-strong);
    border-color: var(--color-grey-strong);
    color: var(--color-white);
}

/* ============================================
   VIDINIS PUSLAPIS — PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    margin-top: var(--nav-height);
    padding: 135px 0;
    background: var(--color-black);
    overflow: hidden;
}

/* Page hero fonas — gradient stack:
   1. 35% bendras tamsinimas (kad nuotrauka matytųsi, bet tekstas išliktų skaitomas)
   2. Viršaus tamsinimas — pradeda nuo 20% pačiame viršuje, lengvai išnyksta žemyn
   3. Apatinis perėjimas (transparent → solid bg) į puslapio foną
   4. Pati nuotrauka (cover)
   5. Horizontalus perėjimas (20% dešinėje → 95% kairėje, kur tekstas) */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.65) 100%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.00) 25%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.00) 0%, var(--color-bg) 100%),
        var(--page-hero-image, none) center / cover no-repeat,
        linear-gradient(270deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.95) 100%);
}

/* Mobile <768px — mažesnis hero fono variantas */
@media (max-width: 767px) {
    .page-hero-bg {
        background:
            linear-gradient(0deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.65) 100%),
            linear-gradient(180deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.00) 25%),
            linear-gradient(180deg, rgba(11, 13, 16, 0.00) 0%, var(--color-bg) 100%),
            var(--page-hero-image-m, var(--page-hero-image, none)) center / cover no-repeat,
            linear-gradient(270deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.95) 100%);
    }
}

.page-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Senas overlay div'as — gradient stack jau .page-hero-bg, todėl overlay neberodo nieko */
.page-hero-overlay {
    display: none;
}

.page-hero > .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-paragraph);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.page-hero-content h1 {
    color: var(--color-white);
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
    margin-bottom: 24px;
}

.page-hero-content > *:not(h1) {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-label {
    display: block;
    color: var(--color-grey-light);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero-content p + .btn {
    margin-top: 24px;
}

/* ============================================
   PASLAUGŲ TINKLELIS — IŠPLĖSTINIS
   ============================================ */
.services-detailed {
    padding: 16px 0 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #000 100%);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card-detailed {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--color-nav-border);
    background: var(--color-bg-alt);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                background 0.35s ease;
}

.service-card-detailed:hover {
    transform: translateY(-4px);
    background: var(--color-card-hover);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.service-card-detailed-body {
    display: flex;
    gap: 32px;
    align-self: stretch;
}

.service-card-detailed-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card-detailed:hover .service-card-detailed-image img {
    transform: scale(1.05);
}

.service-card-detailed-content {
    flex: 1;
    min-width: 0;
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.service-card-detailed-content h3 {
    margin-top: 12px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
}

.service-card-detailed-content strong,
.service-card-detailed-content b {
    color: var(--color-white);
    font-weight: 600;
}

.service-card-detailed-content p {
    margin-top: 24px;
}

.service-card-detailed-content ul {
    margin-top: 12px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-card-detailed-content li {
    position: relative;
    padding-left: 16px;
}

.service-card-detailed-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.service-card-detailed-arrow {
    width: 40px;
    height: 40px;
    margin-top: auto;
    background: var(--color-brand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card-detailed-arrow img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card-detailed:hover .service-card-detailed-arrow {
    background: var(--color-brand-hover);
    transform: translateX(4px);
}

.service-card-detailed:hover .service-card-detailed-arrow img {
    transform: translateX(2px);
}

/* ============================================
   VIDINIS PUSLAPIS — PASLAUGOS DETALĖS
   ============================================ */
.service-steps {
    padding: 48px 0 96px;
    background: var(--color-bg-alt);
}

.service-steps-inner {
    box-sizing: content-box;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.service-steps h2 {
    max-width: 660px;
    margin: 0 auto 48px;
    color: var(--color-white);
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
    font-feature-settings: 'liga' off, 'clig' off;
}

/* KADA REIKALINGAS (2 stulpeliai) */
.service-info {
    padding: 140px 79px 96px;
    background: var(--color-bg-alt);
}

.service-info-inner {
    box-sizing: content-box;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    display: grid;
    grid-template-columns: 1fr 432px;
    gap: 80px;
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.service-info-inner--single {
    grid-template-columns: 1fr;
}

.service-info-inner--single .service-info-left {
    max-width: none;
}

.service-info--text {
    padding: 60px 0;
}

.service-info--text .service-info-inner {
    max-width: 980px;
    font-weight: 400;
    color: var(--color-text-paragraph);
}

.service-info--text .service-info-left h1,
.service-info--text .service-info-left h2,
.service-info--text .service-info-left h3,
.service-info--text .service-info-left h4,
.service-info--text .service-info-left h5,
.service-info--text .service-info-left h6 {
    color: var(--color-white);
    letter-spacing: -0.01em;
    margin-top: 40px;
    font-weight: 700;
}

.service-info--text .service-info-left h1 {
    font-size: 40px;
    line-height: 48px;
    margin-top: 48px;
}

.service-info--text .service-info-left h2 {
    font-size: 32px;
    line-height: 40px;
}

.service-info--text .service-info-left h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-top: 32px;
}

.service-info--text .service-info-left h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 24px;
}

.service-info--text .service-info-left h5 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin-top: 20px;
}

.service-info--text .service-info-left h6 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 20px;
}

.service-info--text .service-info-left > * {
    max-width: none;
}

.service-info--text .service-info-left p {
    margin-top: 16px;
}

.service-info--text .service-info-left ul,
.service-info--text .service-info-left ol {
    margin-top: 16px;
    padding-left: 24px;
}

.service-info--text .service-info-left ul { list-style: disc; }
.service-info--text .service-info-left ol { list-style: decimal; }

.service-info--text .service-info-left li {
    margin-top: 8px;
}

.service-info--text .service-info-left li::marker {
    color: var(--color-brand);
}

.service-info--text .service-info-left a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.service-info--text .service-info-left a:hover {
    color: var(--color-brand-hover);
}

.service-info--text .service-info-left strong,
.service-info--text .service-info-left b {
    color: var(--color-white);
    font-weight: 600;
}

.service-info--text .service-info-left > *:first-child {
    margin-top: 0;
}

.service-info--text .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

@media (max-width: 1199px) {
    .service-info--text { padding: 48px 0; }
}

@media (max-width: 979px) {
    .service-info--text .service-info-left h1 { font-size: 32px; line-height: 40px; }
    .service-info--text .service-info-left h2 { font-size: 28px; line-height: 36px; }
    .service-info--text .service-info-left h3 { font-size: 22px; line-height: 30px; }
    .service-info--text .service-info-left h4 { font-size: 18px; line-height: 26px; }
}

@media (max-width: 767px) {
    .service-info--text { padding: 32px 0; }
    .service-info--text .service-info-left h1 { font-size: 28px; line-height: 36px; margin-top: 32px; }
    .service-info--text .service-info-left h2 { font-size: 24px; line-height: 32px; margin-top: 28px; }
    .service-info--text .service-info-left h3 { font-size: 20px; line-height: 28px; margin-top: 24px; }
}

.service-info-left {
    max-width: 678px;
}

.service-info-left h2 {
    color: var(--color-white);
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -0.64px;
}

.service-info-left p {
    max-width: 520px;
    margin-top: 24px;
}

.service-info-left .btn {
    margin-top: 32px;
}

.service-info-right {
    align-self: start;
    padding-left: 56px;
    padding-bottom: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.20);
}

.service-info-right strong,
.service-info-right b {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.service-info-right ul {
    margin-top: 16px;
    list-style: none;
    padding: 0;
    color: var(--color-white);
    font-weight: 600;
}

.service-info-right li {
    position: relative;
    padding-left: 16px;
}

.service-info-right li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-brand);
}

/* Sertifikatų sekcija (po logotipų juostos) */
.certificates-section {
    padding: 64px 0;
    background: var(--color-bg);
}
.certificates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.certificate-card {
    display: block;
    cursor: zoom-in;
    transition: transform .2s ease, box-shadow .2s ease;
}
.certificate-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.certificate-card:hover { transform: translateY(-2px); }

/* Logotipų sekcija su intro antrašte */
.logos-section {
    padding: 80px 0 0;
    background: var(--color-bg);
}

.logos-intro {
    text-align: center;
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
    font-feature-settings: 'liga' off, 'clig' off;
    max-width: 760px;
    margin: 0 auto 48px;
}

/* ============================================
   GALERIJA puslapis
   ============================================ */
.page-galerija {
    background: var(--color-bg);
}

.gallery-hero {
    position: relative;
    padding: calc(var(--nav-height) + 64px) 0 48px;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.65) 100%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.00) 25%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.00) 0%, var(--color-bg) 100%),
        var(--page-hero-image, none) center / cover no-repeat,
        linear-gradient(270deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.95) 100%),
        var(--color-bg);
}

.gallery-hero > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .gallery-hero {
        background:
            linear-gradient(0deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.65) 100%),
            linear-gradient(180deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.00) 25%),
            linear-gradient(180deg, rgba(11, 13, 16, 0.00) 0%, var(--color-bg) 100%),
            var(--page-hero-image-m, var(--page-hero-image, none)) center / cover no-repeat,
            linear-gradient(270deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.95) 100%),
            var(--color-bg);
    }
}

.gallery-hero h1 {
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 16px;
}

.gallery-hero p {
    color: var(--color-text-paragraph);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
    max-width: 460px;
    margin: 0 auto;
}

.gallery-section {
    padding: 24px 0 80px;
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-black);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   KONTAKTAI puslapis
   ============================================ */
.page-kontaktai {
    background: var(--color-bg);
}

.contact-hero {
    position: relative;
    padding: calc(var(--nav-height) + 96px) 0 48px;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.65) 100%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.00) 25%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.00) 0%, var(--color-bg) 100%),
        var(--page-hero-image, none) center / cover no-repeat,
        linear-gradient(270deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.95) 100%),
        var(--color-bg);
}

.contact-hero > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .contact-hero {
        background:
            linear-gradient(0deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.65) 100%),
            linear-gradient(180deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.00) 25%),
            linear-gradient(180deg, rgba(11, 13, 16, 0.00) 0%, var(--color-bg) 100%),
            var(--page-hero-image-m, var(--page-hero-image, none)) center / cover no-repeat,
            linear-gradient(270deg, rgba(11, 13, 16, 0.20) 0%, rgba(11, 13, 16, 0.95) 100%),
            var(--color-bg);
    }
}

.contact-hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-label {
    display: block;
    color: var(--color-grey-light);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 16px;
}

.contact-hero-content h1 {
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 24px;
}

.contact-hero-content p {
    color: var(--color-text-paragraph);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.contact-blocks {
    padding: 0 0 48px;
    background: var(--color-bg);
}

.contact-blocks-grid {
    display: flex;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

/* Žemėlapis + pastato nuotrauka virš užklausos formos */
.contact-location {
    padding: 0 0 48px;
    background: var(--color-bg);
}
.contact-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.contact-location-map,
.contact-location-photo {
    position: relative;
    height: 670px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.contact-location-map iframe {
    width: 100%; height: 100%; border: 0; display: block;
}
.contact-location-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}

.contact-block {
    flex: 1 0 0;
    padding: 32px 48px;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.contact-block h3 {
    color: var(--color-grey-light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 24px;
}

.contact-block ul {
    list-style: none;
    padding: 0;
}

.contact-block li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: var(--color-white);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.14px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.contact-block li:last-child {
    margin-bottom: 0;
}

.contact-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-brand);
}

.contact-block a {
    color: inherit;
}

.contact-block a:hover {
    color: var(--color-brand);
}

/* Užklausos forma */
.contact-form-section {
    padding: 48px 0;
    background: var(--color-bg);
}

.contact-form-intro {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-form-intro h2 {
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.32px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 16px;
}

.contact-form-intro p {
    color: var(--color-text-paragraph);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.contact-form {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 79px;
}

.form-row {
    margin-bottom: 24px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.form-field input,
.form-field select,
.form-field textarea {
    height: 52px;
    padding: 12px 16px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: var(--color-bg-alt);
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-brand);
}

.form-field textarea {
    height: auto;
    min-height: 144px;
    resize: vertical;
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M10 0L11.0607 1.06066L6.06066 6.06066C5.79439 6.32693 5.37773 6.35113 5.08412 6.13328L5 6.06066L0 1.06066L1.06066 0L5.53033 4.46933L10 0Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-field select option {
    background: var(--color-bg-alt);
    color: var(--color-white);
}

.contact-form button[type="submit"] {
    margin-top: 8px;
}

/* „Kodėl klientai renkasi mus" kontaktai puslapyje */
.page-kontaktai .cta-content {
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   UŽKLAUSOS POPUP MODALAS
   ============================================ */

.uzklausa-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.uzklausa-popup.is-open {
    display: flex;
    animation: uzklausaPopupFadeIn 0.25s ease-out;
}

.uzklausa-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
}

.uzklausa-popup-dialog {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: auto;
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 44px 36px;
    z-index: 1;
    animation: uzklausaPopupSlideUp 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.uzklausa-popup-body h2 {
    color: var(--color-white);
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.uzklausa-popup-body > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 28px;
}

.uzklausa-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.uzklausa-popup-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.uzklausa-popup-close svg {
    display: block;
}

/* Kai modal atidaryta, blokuojame scroll'ą puslapio fone */
body.uzklausa-popup-open {
    overflow: hidden;
}

/* Popup formos override: numatytas .contact-form padding 0 79px nereikalingas popup'e */
.uzklausa-popup .contact-form {
    padding: 0;
    max-width: none;
    margin: 0;
}

.uzklausa-popup .contact-alert {
    margin-bottom: 20px;
}

@keyframes uzklausaPopupFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes uzklausaPopupSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 767px) {
    .uzklausa-popup {
        padding: 20px 12px;
    }
    .uzklausa-popup-dialog {
        padding: 32px 24px 28px;
        border-radius: 12px;
    }
    .uzklausa-popup-body h2 {
        font-size: 22px;
    }
    .uzklausa-popup-body > p {
        margin-bottom: 20px;
    }
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 26px 32px;
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.3s ease-out;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    visibility: hidden;
}

.cookie-banner[aria-hidden="false"] {
    visibility: visible;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.cookie-banner-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.cookie-banner-text p {
    font-size: 14px;
    line-height: 22px;
    color: var(--color-text-paragraph);
}

.cookie-banner-text a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner-text a:hover {
    color: var(--color-brand-hover);
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 12px 22px;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .cookie-banner {
        padding: 22px 24px;
    }
    .cookie-banner-inner {
        gap: 20px;
    }
    .cookie-banner-actions .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 979px) {
    .cookie-banner-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px 18px 16px;
        border-radius: 14px;
    }
    .cookie-banner-title {
        font-size: 16px;
        line-height: 22px;
    }
    .cookie-banner-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    .cookie-banner-actions .btn {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        padding: 11px 12px;
    }
    .cookie-banner-actions .btn[data-cookie-action="accept-all"] {
        flex: 1 1 100%;
        order: -1;
    }
}

.cookie-category {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
}

.cookie-category:last-of-type {
    border-bottom: 1px solid var(--color-border);
}

.cookie-category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cookie-category h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.cookie-category > p {
    font-size: 14px;
    line-height: 22px;
    color: var(--color-text-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle > span {
    position: absolute;
    inset: 0;
    background: var(--color-grey-strong);
    border-radius: 999px;
    transition: background 0.2s;
}

.cookie-toggle > span::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform 0.2s;
}

.cookie-toggle input:checked ~ span,
.cookie-toggle--locked > span {
    background: var(--color-brand);
}

.cookie-toggle input:checked ~ span::before,
.cookie-toggle--locked > span::before {
    transform: translateX(20px);
}

.cookie-toggle--locked {
    cursor: not-allowed;
    opacity: 0.85;
}

.cookie-toggle:focus-within > span {
    box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.3);
}

.cookie-settings-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cookie-settings-actions .btn {
    flex: 1 1 auto;
    padding: 12px 18px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .cookie-settings-actions { flex-direction: column; }
    .cookie-settings-actions .btn { flex: 1 1 100%; }
}

.cookie-settings-popup .uzklausa-popup-body > p a,
.cookie-policy-popup .uzklausa-popup-body > p a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.cookie-settings-popup .uzklausa-popup-body > p a:hover,
.cookie-policy-popup .uzklausa-popup-body > p a:hover {
    color: var(--color-brand-hover);
}

.cookie-policy-popup .uzklausa-popup-dialog {
    max-width: 800px;
}

.cookie-policy-content {
    color: var(--color-text-paragraph);
    font-size: 15px;
    line-height: 1.6;
}

.cookie-policy-content > *:first-child {
    margin-top: 0;
}

.cookie-policy-content h1,
.cookie-policy-content h2,
.cookie-policy-content h3,
.cookie-policy-content h4 {
    color: var(--color-white);
    letter-spacing: -0.01em;
    margin-top: 28px;
}

.cookie-policy-content h1 { font-size: 26px; line-height: 1.3; font-weight: 700; }
.cookie-policy-content h2 { font-size: 22px; line-height: 1.3; font-weight: 700; }
.cookie-policy-content h3 { font-size: 18px; line-height: 1.35; font-weight: 600; margin-top: 24px; }
.cookie-policy-content h4 { font-size: 16px; line-height: 1.4; font-weight: 600; margin-top: 20px; }

.cookie-policy-content p {
    margin-top: 14px;
}

.cookie-policy-content ul,
.cookie-policy-content ol {
    margin-top: 14px;
    padding-left: 22px;
}

.cookie-policy-content ul { list-style: disc; }
.cookie-policy-content ol { list-style: decimal; }

.cookie-policy-content li {
    margin-top: 6px;
}

.cookie-policy-content li::marker {
    color: var(--color-brand);
}

.cookie-policy-content a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-policy-content a:hover {
    color: var(--color-brand-hover);
}

.cookie-policy-content strong,
.cookie-policy-content b {
    color: var(--color-white);
    font-weight: 600;
}

@media (max-width: 767px) {
    .cookie-policy-content { font-size: 14px; }
    .cookie-policy-content h1 { font-size: 22px; }
    .cookie-policy-content h2 { font-size: 19px; }
    .cookie-policy-content h3 { font-size: 17px; }
    .cookie-policy-content h4 { font-size: 15px; }
}

/* ============================================
   KONTAKTŲ FORMOS „AČIŪ" / KLAIDOS PRANEŠIMAS
   ============================================ */

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    border-radius: 12px;
    margin-bottom: 32px;
    animation: contactAlertIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.contact-alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
}

.contact-alert--success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(40, 167, 69, 0.05));
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.contact-alert--error {
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.12), rgba(225, 6, 0, 0.05));
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.contact-alert-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-top: 2px;
    animation: contactAlertIconPop 0.6s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.contact-alert-body {
    flex: 1;
    min-width: 0;
}

.contact-alert-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    color: var(--color-white);
}

.contact-alert-text {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes contactAlertIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactAlertIconPop {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .contact-alert {
        padding: 20px;
        gap: 12px;
    }
    .contact-alert-title { font-size: 18px; }
    .contact-alert-text { font-size: 14px; }
    .contact-alert-icon { width: 28px; height: 28px; }
}

/* ============================================
   APIE MUS puslapis (scope override'ai)
   ============================================ */
.page-apie,
.page-apie .service-info,
.page-apie .service-steps {
    background: var(--color-bg);
}

.page-apie .service-info {
    padding: 96px 0;
}

.page-apie .service-info-left {
    max-width: 800px;
}

.page-apie .cta-content p + .cta-buttons {
    margin-top: 32px;
}

.page-apie .service-info-left h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
}

.page-apie .service-info-inner,
.page-apie .service-info-left p {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
}

.page-apie .service-info-left p + p {
    margin-top: 16px;
}

/* KAIP ATLIEKAMA (3 žingsniai) */
.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 48px;
    border-radius: 20px;
    background: var(--color-grey-darker);
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.18px;
}

.step-card h3 {
    margin-top: 64px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
}

.step-card p,
.step-card ul {
    margin-top: 12px;
}

.step-card h3 + p,
.step-card h3 + ul {
    margin-top: 24px;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card li {
    position: relative;
    padding-left: 16px;
}

.step-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}


/* ============================================
   FONO NUOTRAUKA PO PASLAUGOMIS
   ============================================ */
.bg-section {
    width: 100%;
    height: 720px;
    background:
        linear-gradient(180deg, var(--color-nav-bg) 0%, rgba(0, 0, 0, 0) 73.06%),
        var(--bg-section-image, url('../../images/background-after-services.png')) center / cover no-repeat,
        var(--color-bg);
    background-blend-mode: normal, screen, normal;
    filter: blur(0.5px);
}

/* Mobile <768px — mažesnė versija paveikslėlio */
@media (max-width: 767px) {
    .bg-section {
        background:
            linear-gradient(180deg, var(--color-nav-bg) 0%, rgba(0, 0, 0, 0) 73.06%),
            var(--bg-section-image-m, var(--bg-section-image, url('../../images/background-after-services.png'))) center / cover no-repeat,
            var(--color-bg);
    }
}

/* ============================================
   KODĖL MES + STATISTIKA
   ============================================ */
.why-us {
    background: var(--color-bg-alt);
    padding: 100px 0;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 492px;
    gap: 26px;
    align-items: start;
}

.why-us-left {
    max-width: 680px;
}

.why-us-label {
    text-align: left;
    margin-bottom: 16px;
}

.why-us-title {
    font-size: 64px;
    line-height: 72px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.why-us-description {
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 32px;
    max-width: 560px;
}

.why-us-right {
    position: relative;
    width: 492px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-us-right::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-block {
    height: 212px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 72px;
    line-height: 80px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

/* ============================================
   JUNGTINIS PROJEKTAS
   ============================================ */
.project {
    background: var(--color-bg-alt);
    padding: 0 0 48px;
}

.project-card {
    background: var(--color-grey-darker);
    padding: 48px;
    display: grid;
    grid-template-columns: 444px 1fr;
    gap: 104px;
    align-items: start;
    border-radius: 20px;
}

.project-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 48px;
}

.project-logos {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.project-logos img {
    height: 37px;
    width: auto;
    object-fit: contain;
}

.project-right {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-align: left;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-brand);
}

.faq-toggle {
    flex-shrink: 0;
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* + simbolis iš dviejų brūkšnių (horizontalus + vertikalus) */
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-white);
    transition: background 0.3s ease, opacity 0.3s ease;
}
.faq-toggle::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-toggle::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

/* Active — fonas pašalinamas, lieka tik border + minus (vertical brūkšnys paslėptas) */
.faq-item.active .faq-toggle {
    background: transparent;
    border-color: var(--color-brand);
}
.faq-item.active .faq-toggle::before {
    background: var(--color-white);
}
.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    overflow: hidden;
    color: var(--color-grey-light);
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer-inner p {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

/* ============================================
   CTA BANERIS APAČIOJE
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--cta-banner-image, url('../../images/header-background.png')) center/cover no-repeat;
    padding: 182px 0;
    overflow: hidden;
}

/* Mobile <768px — paprastam .cta-banner originalus cover bg su mobile-image
   (+ 20% pritemdymas ant nuotraukos), feature-banner — nuotrauka virš turinio + 28→51% gradient */
@media (max-width: 767px) {
    .cta-banner {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
            var(--cta-banner-image-m, var(--cta-banner-image, url('../../images/header-background.png'))) center/cover no-repeat;
    }
    .cta-banner.feature-banner {
        background:
            linear-gradient(180deg,
                rgba(11, 13, 16, 0.25) 0%,
                rgba(11, 13, 16, 0.25) 22%,
                var(--color-bg) 32%,
                var(--color-bg) 100%),
            var(--feature-banner-image-m, var(--feature-banner-image, var(--cta-banner-image, url('../../images/header-background.png')))) top center / 100% auto no-repeat,
            var(--color-bg);
    }
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 25%,
        rgba(0, 0, 0, 0.5) 75%,
        rgb(0, 0, 0) 100%);
    z-index: 1;
}

/* Feature baneris — kairė tamsi + viršus tamsus + bendras 45% overlay (kad tekstas būtų matomas) + nuotrauka */
.feature-banner {
    background:
        linear-gradient(270deg, rgba(11, 13, 16, 0.00) 37.54%, var(--color-bg) 100%),
        linear-gradient(180deg, var(--color-bg) 0%, rgba(11, 13, 16, 0.00) 62.71%),
        linear-gradient(0deg, rgba(11, 13, 16, 0.65) 0%, rgba(11, 13, 16, 0.65) 100%),
        var(--feature-banner-image, url('../../images/header-background.png')) center / cover no-repeat,
        var(--color-bg);
}

/* Service detalės puslapio feature baneris — nuotrauka dešinėje (be tampymo, originalios proporcijos),
   gradient'ai aplink kraštus suliedina su #242424 fonu (kairė pusė pilnai, viršus/apačia/dešinė kraštas — fade) */
.cta-banner.feature-banner.feature-banner--service {
    background:
        linear-gradient(90deg, #242424 0%, #242424 30%, rgba(36, 36, 36, 0) 60%, rgba(36, 36, 36, 0) 90%, #242424 100%),
        linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 18%, rgba(36, 36, 36, 0) 82%, #242424 100%),
        var(--feature-banner-image) right center / auto 100% no-repeat,
        #242424;
}

/* Mobile feature-banner valdomas atskirai per .cta-banner.feature-banner @media taisyklę
   (žr. RESPONSIVE skyrių). Senasis 270/180/65% darken stack'as pakeistas į
   nuotrauka-virš-turinio + 18→51% gradient'ą. */

.feature-banner::before {
    display: none;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 640px;
}

.cta-label {
    color: var(--color-grey-light);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 16px;
}

.cta-title {
    color: var(--color-white);
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-phone {
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.cta-phone a {
    color: var(--color-white);
    font-weight: 500;
}

.cta-phone a:hover {
    color: var(--color-brand);
}

.cta-content p {
    max-width: 520px;
    color: var(--color-grey-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-top: 16px;
}

.cta-content p strong,
.cta-content p b {
    display: block;
    color: var(--color-grey-light);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.cta-content ul {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.cta-content li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.cta-content li:last-child {
    margin-bottom: 0;
}

.cta-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-brand);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    padding: 80px 0 0;
    position: relative;
}

/* Footer — 4 turinio kolonos po 204px, tarp jų 3 lankstūs tarpai */
.footer-top,
.footer-bottom {
    display: grid;
    grid-template-columns: 204px 1fr 204px 1fr 204px 1fr 204px;
    align-items: start;
}

.footer-top .footer-col-1 { grid-column: 1 / span 1; }
.footer-top .footer-col-2 { grid-column: 3 / span 1; }
.footer-top .footer-col-3 { grid-column: 5 / span 1; }
.footer-top .footer-col-4 { grid-column: 7 / span 1; display: flex; justify-content: flex-end; }

.footer-bottom .footer-col-1 { grid-column: 1 / span 1; }
.footer-bottom .footer-col-2 { grid-column: 3 / span 1; }
.footer-bottom .footer-col-3 { grid-column: 5 / span 1; }
.footer-bottom .footer-col-4 { grid-column: 7 / span 1; display: flex; justify-content: flex-end; align-items: flex-start; }

.footer-bottom {
    color: var(--color-grey-light);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    font-feature-settings: 'liga' off, 'clig' off;
}

.footer-top {
    padding-bottom: 96px; /* vertikalus tarpas tarp eilių */
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 24px;
}

.footer-list,
.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list li a {
    color: var(--color-white);
    font-size: 14px;
    line-height: 24px;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: var(--color-grey-light);
}

/* Footer accordion — desktop'e visada open, button neutralus (atrodo kaip h4) */
.footer-accordion-toggle {
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    color: inherit;
    font-family: inherit;
    text-align: left;
    cursor: default;
}
.footer-accordion-toggle .footer-title {
    display: block;
    margin: 0 0 20px;
}
.footer-accordion-icon {
    display: none;
}
.footer-accordion-panel {
    display: block;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contacts li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contacts li a {
    color: var(--color-grey-light);
    transition: color 0.3s ease;
}

.footer-contacts li a:hover {
    color: var(--color-white);
}

.footer-social {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social:hover {
    opacity: 0.7;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

/* Apatinė eilė */
.footer-copy {
    margin-bottom: 24px;
}

.footer-policy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-policy a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: var(--color-white);
}

.footer-solution a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-solution a:hover {
    color: var(--color-white);
}

.footer-brand {
    box-sizing: content-box;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 40px 30px 0;
}

.footer-brand-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1344 / 160;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    margin-bottom: 0;
}

/* ============================================
   PLP — PREKIŲ SĄRAŠAS SU FILTRAIS
   ============================================ */
.plp {
    padding: 16px 0 96px;
    background: var(--color-bg);
}

.plp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

/* Filtrai */
.plp-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

/* Mobile-only PLP elementai — desktop'e paslėpti */
.plp-filter-toggle,
.plp-sidebar-close,
.plp-card-btn-icon-mobile {
    display: none;
}

.plp-filter-title {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
    margin-bottom: 24px;
}

.plp-filter-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plp-filter-option label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.plp-filter-option input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.plp-filter-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--color-grey-light);
    background: rgba(255, 255, 255, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.plp-filter-box::after {
    content: '';
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2 6.5l2.5 2.5L10 3.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.plp-filter-option input[type="checkbox"]:checked + .plp-filter-box {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

.plp-filter-option input[type="checkbox"]:checked + .plp-filter-box::after {
    opacity: 1;
}

.plp-filter-option input[type="checkbox"]:focus-visible + .plp-filter-box {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}

.plp-filter-option:hover .plp-filter-box {
    border-color: var(--color-white);
}

.plp-filter-label {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.14px;
    transition: color 0.2s ease;
}

/* Prekių tinklelis */
.plp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
}

.plp-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 16px;
    border-radius: 20px;
    background: var(--color-bg-alt);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                background 0.35s ease,
                box-shadow 0.35s ease;
}

.plp-card:hover {
    transform: translateY(-4px);
    background: var(--color-card-hover);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.plp-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-black);
}

.plp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.plp-card:hover .plp-card-image img {
    transform: scale(1.05);
}

.plp-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plp-card-title {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.plp-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.plp-card-title a:hover {
    color: var(--color-brand);
}

.plp-card-image {
    display: block;
    cursor: pointer;
}

.plp-card-image img {
    transition: transform 0.4s ease;
}

.plp-card-image:hover img {
    transform: scale(1.03);
}

/* Kintamas turinys iš TinyMCE — stilizuojame per tėvinį selektorių (be klasių ant <p>/<ul>/<li>) */
.plp-card-body p,
.plp-card-desc {
    color: var(--color-grey-light);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin: 0;
}

.plp-card-body ul,
.plp-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--color-grey-light);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.plp-card-body ul li,
.plp-card-list li {
    position: relative;
    padding-left: 14px;
}

.plp-card-body ul li::before,
.plp-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.plp-card-body strong,
.plp-card-body b {
    color: var(--color-white);
    font-weight: 600;
}

.plp-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plp-card-btn {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.plp-card-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.40);
    color: var(--color-white);
}

.plp-card-btn-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.plp-card-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    padding: 7px;
    background: var(--color-brand);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.plp-card-arrow img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.plp-card-arrow:hover {
    background: var(--color-brand-hover);
    transform: translateX(2px);
}

.plp-card-arrow:hover img {
    transform: translateX(2px);
}

/* Puslapiavimas */
.plp-pagination {
    margin: 56px auto 0;
    display: flex;
    max-width: 496px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.plp-page {
    display: flex;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off, 'clig' off;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.plp-page:hover {
    background: var(--color-grey-dark);
}

.plp-page.is-active,
.plp-page.is-active:hover {
    background: var(--color-brand);
}

.plp-page-nav:hover,
.plp-page-ellipsis,
.plp-page-ellipsis:hover {
    background: transparent;
    cursor: default;
}

.plp-page-nav {
    cursor: pointer;
}

/* ============================================
   PDP — Prekės vidaus puslapis
   ============================================ */
.pdp {
    padding: calc(var(--nav-height) + 48px) 0 80px;
    background: var(--color-bg-alt);
}

.pdp-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 130px;
    align-items: start;
}

.pdp-gallery {
    display: grid;
    grid-template-columns: 80px 520px;
    gap: 8px;
    align-items: start;
}

/* Kai tik viena nuotrauka — main stulpelis pastumiamas 88px į dešinę, kad sulygiuotųsi su multi-nuotraukų variantu (80px thumbs + 8px gap) */
.pdp-gallery--single {
    grid-template-columns: 520px;
    padding-left: 88px;
}

.pdp-gallery-thumbs {
    width: 80px;
    height: 520px;
    overflow: hidden;
}

.pdp-gallery-thumbs .swiper-slide {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    background: var(--color-black);
}

.pdp-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.pdp-gallery-thumbs .swiper-slide img,
.pdp-gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-gallery-main {
    width: 520px;
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
}

.pdp-gallery-main .swiper-slide {
    width: 520px;
    height: 520px;
    background: var(--color-black);
}

.pdp-gallery-pagination {
    display: none;
}

/* Info — kintamas turinys per tėvinį selektorių */
.pdp-info {
    color: var(--color-white);
    max-width: 520px;
}

.pdp-info h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.44px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 24px;
}

.pdp-info p {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: var(--color-grey-light);
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 8px;
}

.pdp-info p strong {
    color: var(--color-white);
    font-weight: 600;
}

.pdp-info h2 {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: var(--color-grey-light);
    font-feature-settings: 'liga' off, 'clig' off;
    margin-top: 32px;
    margin-bottom: 8px;
}

.pdp-info ul {
    margin: 8px 0 16px;
    padding-left: 20px;
}

.pdp-info ul li {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: var(--color-grey-light);
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 4px;
}

.pdp-info h2 + ul {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.pdp-info h2 + ul li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: var(--color-white);
    padding: 8px 0;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.pdp-info h2 + ul li:first-child {
    border-top: 0;
}

.pdp-info h2 + ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.pdp-info .btn {
    margin-top: 24px;
}

/* Tab'ai */
.pdp-tabs {
    padding: 0 0 80px;
    background: var(--color-bg-alt);
}

.pdp-tabs-inner {
    max-width: 1176px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.pdp-tabs-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    background: var(--color-grey-darker);
    border-radius: 8px;
    padding: 24px 48px;
    border-bottom: 0;
    margin: 0;
}

/* Kai visi 4 tab'ai užpildyti — pasiskirsto per visą plotį, kaip originaliame dizaine */
.pdp-tabs-nav--full {
    justify-content: space-between;
    gap: 24px;
}

.pdp-tab {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    color: var(--color-grey-light);
    transition: color 0.2s ease;
}

.pdp-tab:hover {
    color: var(--color-white);
}

.pdp-tab.is-active {
    color: var(--color-white);
}

.pdp-tabs-content {
    width: 100%;
}

.pdp-tab-panel {
    display: none;
}

.pdp-tab-panel.is-active {
    display: block;
}

/* Tab turinys — kintamas, per tėvinį selektorių */
.pdp-tab-panel h3 {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pdp-tab-panel p,
.pdp-tab-panel li {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: var(--color-white);
    font-feature-settings: 'liga' off, 'clig' off;
}

.pdp-tab-panel p {
    margin-bottom: 12px;
}

.pdp-tab-panel ul {
    margin: 12px 0;
    padding-left: 20px;
}

.pdp-tab-panel li {
    margin-bottom: 8px;
}

/* Panašios prekės */
.similar-products {
    padding: 80px 0;
    background: var(--color-bg);
}

.similar-products h2 {
    text-align: center;
    color: var(--color-white);
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.32px;
    font-feature-settings: 'liga' off, 'clig' off;
    margin-bottom: 40px;
}

.plp-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   RESPONSIVE
   ============================================
   Container plotis (inner content) = max-width: 1344px,
   atstumai iki ekrano kraštų — per padding-left/right:
     >=1404px → outer 1404px (1344 + 60), centruojamas; po 30px iš šonų
     1200-1403 → outer = viewport;          po 30px iš šonų (default)
      980-1199 → outer = viewport;          po 24px iš šonų
      768-979  → outer = viewport;          po 20px iš šonų
       <=767   → outer = viewport;          po 15px iš šonų
   --------------------------------------------- */
@media (max-width: 1199px) {
    .container,
    .service-steps-inner,
    .service-info-inner {
        padding-left: 24px;
        padding-right: 24px;
    }
    .footer-brand {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero-title {
        font-size: 48px;
    line-height: 52px;
    }
    .hero {  height: 580px; }
    .section-title {
        font-size: 40px; line-height: 48px;
    }
    .pdp-layout {
        grid-template-columns: 1fr;
    }
    .plp-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
    .plp-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero {  padding: 85px 0; }
    .services-detailed-grid { grid-template-columns: repeat(1, 1fr); }
    /* Mobile/tablet (≤1199): paprastam .cta-banner — nuotrauka už teksto (cover, kaip desktop'e),
       tik mažesnis padding. ::before užtamsinimas paliekamas iš desktop'o. */
    .cta-banner {
        padding: 48px 0;
    }
    /* Feature-banner — nuotrauka VIRŠ turinio. Gradient'as sutalpintas ties nuotraukos
       apačios pozicija (~30% per padding-top), plius lengvas tonuojantis filter'as virš.
       0-22% lengvas darken (filtras), 22-32% smooth fade į solid, 32-100% solid bg. */
    .cta-banner.feature-banner {
        padding-top: calc(30% + 48px);
        background:
            linear-gradient(180deg,
                rgba(11, 13, 16, 0.25) 0%,
                rgba(11, 13, 16, 0.25) 22%,
                var(--color-bg) 32%,
                var(--color-bg) 100%),
            var(--feature-banner-image, var(--cta-banner-image, url('../../images/header-background.png'))) top center / 100% auto no-repeat,
            var(--color-bg);
    }
    .cta-banner.feature-banner::before {
        display: none;
    }
    .services {  padding: 90px 0 0 0; }
    .bg-section { height: 0; padding-top: 37%; }
    .why-us-title { font-size: 48px; line-height: 52px; }
    .why-us-container { grid-template-columns: 1fr 400px; }
    .why-us-right { width: 400px; gap: 16px; }
    .stat-block { height: 180px; padding: 24px; }
    .stat-number { font-size: 58px; line-height: 64px; }
.project-card { padding: 48px; grid-template-columns: 1fr; gap: 33px; }

}

@media (max-width: 979px) {
    .container,
    .service-steps-inner,
    .service-info-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-brand {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* Hero mobile — auto aukštis pagal turinį, cover nuotrauka su .page-hero stiliaus
       gradient overlay'umi (kad nuotrauka nebūtų per ryški po tekstu).
       Padding-top įskaičiuoja fixed nav-height (nes hero apima ir zoną po juo). */
    .hero {
        height: auto;
        min-height: 0;
        padding: calc(94px + var(--nav-height)) 0 24px;
    }
    .hero-bg {
        top: 0;
        width: 100%;
        background-size: cover;
        background-position: right center;


    }
    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 1;
    }
    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
    }
    .hero-content {
        padding-top: 0;
        padding-bottom: 0;
        max-width: 100%;
    }
    /* Navigacija — hamburger + phone, slėpti desktop nav */
    :root {
        --nav-height: 64px;
    }
    .nav {
        padding: 12px 0;
    }
    .nav-logo img {
        height: 40px;
    }
    .nav-mobile-toggle,
    .nav-mobile-phone {
        display: inline-flex;
        width: 32px;
        height: 32px;
    }
    .nav-mobile-toggle svg {
        width: 18px;
        height: 18px;
    }
    .nav-mobile-phone img {
        width: 16px;
        height: 16px;
    }
    .nav-cta {
        display: none;
    }
    .stat-block { height: auto; padding: 24px; }
    .why-us { padding: 60px 0; }
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
    }
    .nav-mobile-toggle {
        grid-column: 1;
        justify-self: start;
    }
    .nav-logo {
        grid-column: 2;
        justify-self: center;
    }
    .nav-mobile-phone {
        grid-column: 3;
        justify-self: end;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        padding: 8px 15px 24px;
        background: transparent;
        border: 0;
        z-index: 99;
        overflow-y: auto;
        pointer-events: auto;
    }
    .nav-menu.is-open {
        display: flex;
        animation: navMenuSlideIn 0.25s ease-out;
    }
    @keyframes navMenuSlideIn {
        from { transform: translateY(-8px); opacity: 0; }
        to   { transform: translateY(0);    opacity: 1; }
    }
    /* Items wrapper — card pagal Figma Frame 45 (15px paddingo, items su separatoriais) */
    .nav-menu-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: var(--color-bg-alt);
        border-radius: 10px;
        padding: 0 15px;
    }
    .nav-menu .nav-link,
    .nav-menu .nav-link-dropdown {
        display: flex;
        align-items: center;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: -0.14px;
        padding: 12px 0;
        text-shadow: none;
        color: var(--color-white);
        font-feature-settings: 'liga' off, 'clig' off;
        flex: 1;
    }
    /* Borderiai — ant kiekvieno nav-menu-items vaiko (top), pirmas — be border'io */
    .nav-menu-items > * {
        border-top: 1px solid var(--color-line-strong);
    }
    .nav-menu-items > *:first-child {
        border-top: 0;
    }
    /* Mobile dropdown punktas — eilutė su rodykle dešinėje */
    .nav-menu .nav-item-dropdown {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0;
    }
    .nav-menu .nav-dropdown-toggle {
        margin-left: auto;
        padding: 12px 0 12px 12px;
        color: var(--color-white);
    }
    .nav-menu .nav-dropdown-toggle .nav-arrow {
        width: 8px;
        height: 14px;
        opacity: 1;
        transform: rotate(-90deg);
    }
    /* Submenu mobile — perdengia visą plotą.
       !important kritinių savybių, kad atremtų desktop'o
       .nav-item-dropdown:hover/.open transform: translate(-50%, 0)
       (iOS Safari sticky :hover po paspaudimo) */
    .nav-menu .nav-dropdown,
    .nav-menu .nav-item-dropdown:hover > .nav-dropdown,
    .nav-menu .nav-item-dropdown.open > .nav-dropdown,
    .nav-menu .nav-item-dropdown.is-mobile-open > .nav-dropdown {
        display: none;
        position: fixed !important;
        top: var(--nav-height) !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none !important;
        background: transparent;
        z-index: 100;
        overflow-y: auto;
        padding: 8px 15px 24px;
    }
    .nav-menu .nav-item-dropdown.is-mobile-open > .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        animation: navMenuSlideIn 0.25s ease-out;
    }
    .nav-menu .nav-dropdown-inner {
        background: var(--color-bg-alt);
        border: 0;
        border-radius: 10px;
        padding: 13px 15px 24px;
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }
    .nav-menu .nav-dropdown-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .nav-menu .nav-dropdown-item {
        gap: 16px;
        padding: 12px 0;
        border: 0;
        border-top: 1px solid var(--color-line-strong);
        border-radius: 0;
        background: transparent;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: -0.14px;
        color: var(--color-white);
        font-feature-settings: 'liga' off, 'clig' off;
    }
    .nav-menu .nav-dropdown-item:first-child {
        border-top: 0;
    }
    .nav-menu .nav-dropdown-item:hover {
        background: transparent;
        border-color: var(--color-line-strong);
    }
    .nav-menu .nav-dropdown-icon {
        display: none;
    }
    .nav-menu .nav-dropdown-footer {
        margin-top: 24px;
        display: flex;
        justify-content: stretch;
    }
    .nav-menu .nav-dropdown-cta {
        width: 100%;
        height: 52px;
        padding: 14px 32px;
        justify-content: center;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.32px;
        text-transform: uppercase;
        text-align: center;
        color: var(--color-bg);
        font-feature-settings: 'liga' off, 'clig' off;
    }
    /* Submenu antraštė + back button (to paties card'o viduje, pirmas elementas) */
    .nav-mobile-back {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 0;
        background: transparent;
        border: 0;
        border-bottom: 1px solid var(--color-line-strong);
        color: var(--color-grey-light);
        font-family: 'Space Grotesk', sans-serif;
        font-size: 12px;
        font-weight: 500;
        line-height: 12px;
        letter-spacing: 1.44px;
        text-transform: uppercase;
        font-feature-settings: 'liga' off, 'clig' off;
        cursor: pointer;
        text-align: left;
    }
    .nav-mobile-back:hover {
        color: var(--color-brand);
    }
    /* Mobile-only CTA link (paskutinis nav punktas — pvz. Kontaktai) — rodyti kaip eilinį nav-link */
    .nav-link-mobile-only {
        display: flex;
    }
    body.is-nav-open {
        overflow: hidden;
    }
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    .page-hero-content h1 {
        font-size: 36px;
        line-height: 44px;
    }
    .hero-bg {
        width: 100%;
    }
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .project-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }
    .plp-layout {
        grid-template-columns: 220px 1fr;
        gap: 32px;
    }
    .plp-grid {
        grid-template-columns: repeat(2, 1fr); gap: 15px;
    }
    .pdp-layout { gap: 24px; }
    .service-info { padding: 48px 0px 48px 0; }
    .service-info-left h2 { font-size: 32px; line-height: 38px; }
    .cta-title {  font-size: 32px; line-height: 38px; margin-bottom: 16px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Footer mobile (≤979) — vienas vertikalus stulpelis, items pertvarkyti per order */
    .footer {
        padding-top: 48px;
    }
    .footer .container {
        display: flex;
        flex-direction: column;
    }
    .footer-top,
    .footer-bottom {
        display: contents;
    }
    .footer-top > .footer-col-1,
    .footer-bottom > .footer-col-1,
    .footer-top > .footer-col-2,
    .footer-bottom > .footer-col-2,
    .footer-top > .footer-col-3,
    .footer-bottom > .footer-col-3,
    .footer-top > .footer-col-4,
    .footer-bottom > .footer-col-4 {
        grid-column: auto;
        width: 100%;
        justify-content: flex-start;
    }
    /* Mobile tvarka: logo → desc → kontaktai → info → paslaugos → social → copy → sprend */
    .footer-top > .footer-col-1    { order: 1; margin-bottom: 16px; }
    .footer-bottom > .footer-col-2 { order: 2; margin-bottom: 16px; }
    .footer-bottom > .footer-col-3 { order: 3; margin-bottom: 24px; }
    .footer-top > .footer-col-2    { order: 4; }
    .footer-top > .footer-col-3    { order: 5; }
    .footer-top > .footer-col-4    { order: 6; margin-top: 24px; margin-bottom: 24px; }
    .footer-bottom > .footer-col-1 { order: 7; padding-top: 24px; }
    .footer-bottom > .footer-col-4 { order: 8; margin-top: 8px; }
    .footer-top {
        padding-bottom: 0;
    }

    /* Accordion — collapsed default'e, panel hidden. Borderiai PO kiekvienos sekcijos
       (paskutinio accordion'o nėra — po juo eina social ikonos be separatoriaus) */
    .footer-accordion {
        border-bottom: 1px solid var(--color-line-strong);
    }
    .footer-accordion:last-of-type {
        border-bottom: 0;
    }
    .footer-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 18px 0;
        cursor: pointer;
    }
    .footer-accordion-toggle .footer-title {
        margin: 0;
        font-size: 16px;
        line-height: 24px;
    }
    /* Rodyklė — kvadratinis blokas su borderiu (40x40, 6px radius) */
    .footer-accordion-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border: 1px solid var(--color-line-strong);
        border-radius: 6px;
        color: var(--color-white);
        transition: transform 0.25s ease, border-color 0.2s ease;
    }
    .footer-accordion-icon svg {
        display: block;
    }
    .footer-accordion-toggle:hover .footer-accordion-icon {
        border-color: var(--color-white);
    }
    .footer-accordion-toggle[aria-expanded="true"] .footer-accordion-icon {
        transform: rotate(180deg);
    }
    .footer-accordion-panel {
        display: none;
        padding-bottom: 18px;
    }
    .footer-accordion-toggle[aria-expanded="true"] + .footer-accordion-panel {
        display: block;
        animation: navMenuSlideIn 0.25s ease-out;
    }

    .footer-brand-text {
        font-size: 120px;
    }

    .service-info-inner {  grid-template-columns: 1fr; gap: 24px; }
    .service-info-right { padding-left: 0;  border-left: 0; }
    .page-apie .service-info { padding: 48px 0; }
    .service-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .service-steps {  padding: 48px 0 48px 0; }
    .logos-section {  padding: 48px 0 0 0; }
    .certificates-section { padding: 40px 0; }
    .certificates-grid { gap: 16px; }
}

@media (max-width: 767px) {
    .container,
    .service-steps-inner,
    .service-info-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-brand {
        padding-left: 15px;
        padding-right: 15px;
    }
    .nav-menu {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Why-us mobile <=767 — mygtukas perkeliamas po statistikų (DOM tvarka kitokia,
       perkeliama per display:contents + order). Pagal Figma: label, title, desc, stats × 3, button. */
    .why-us-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .why-us-left,
    .why-us-right {
        display: contents;
    }
    .why-us-left > .btn {
        order: 99;
        margin-top: 16px;
        align-self: flex-start;
    }
    /* PLP (prekyba) mobile — filtrai paslepti default'e, atveriami per .plp-filter-toggle.
       Prekių grid'as — 2 stulpeliai, gap 15px (pagal Figma). */
    .plp-filter-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 0;
        background: transparent;
        border: 0;
        color: var(--color-white);
        font-family: 'Space Grotesk', sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: -0.16px;
        font-feature-settings: 'liga' off, 'clig' off;
        cursor: pointer;
        margin-bottom: 0px;
    }
    .plp-filter-toggle-icon {
        flex-shrink: 0;
    }
    .plp-filter-toggle-label {
        margin-right: auto;
    }
    .plp-filter-toggle-count {
        color: var(--color-grey-light);
        font-family: 'Inter', 'Space Grotesk', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: -0.14px;
        font-feature-settings: 'liga' off, 'clig' off;
    }
    /* Chevron — sukasi 180° kai filtrai atviri, indikuoja, kad galima suskleisti */
    .plp-filter-toggle-chevron {
        flex-shrink: 0;
        margin-left: 12px;
        color: var(--color-white);
        transition: transform 0.25s ease;
    }
    .plp-filter-toggle[aria-expanded="true"] .plp-filter-toggle-chevron {
        transform: rotate(180deg);
    }
    /* Sidebar paslėpta default mobile — atveriama .is-open klase, išslysta inline žemiau toggle */
    .plp-sidebar {
        display: none;
    }
    .plp-sidebar.is-open {
        display: block;
        background: var(--color-bg-alt);
        border-radius: 10px;
        padding: 12px;
        margin-bottom: 0px;
        animation: navMenuSlideIn 0.25s ease-out;
    }
    .plp-sidebar.is-open .plp-filter-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .plp-sidebar.is-open .plp-filter-list {
        gap: 6px;
    }
    .plp-sidebar.is-open .plp-filter-option label {
        padding: 4px 0;
    }
    /* Prekių grid 2 col su 15px gap */
    .plp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    /* Prekių kortelės — kompaktiškesnės mobile'e */
    .plp-card {
        padding: 8px;
        gap: 16px;
    }
    .plp-card-title {
        font-size: 16px;
        line-height: 20px;
    }
    .plp-card-footer {
        margin-top: 16px;
    }
    /* Telefono mygtukas — kvadratas su tel ikona (be teksto) */
    .plp-card-btn .plp-card-btn-icon-desktop,
    .plp-card-btn .plp-card-btn-text {
        display: none;
    }
    .plp-card-btn .plp-card-btn-icon-mobile {
        display: inline-block;
    }
    .plp-card-btn {
        flex: 0 0 auto;
        width: 52px;
        height: 52px;
        padding: 0;
        gap: 0;
        justify-content: center;
        align-items: center;
    }
    /* Raudoną rodyklę push'inam į dešinį kortelės kraštą */
    .plp-card-arrow {
        margin-left: auto;
    }

    /* Apie puslapis mobile — service-info-inner mygtukas perkeliamas po viso bloko
       (KONTAKTAI sąrašas eina virš, mygtukas — apačioje).
       service-info-left ir service-info-right paveikiami display:contents, kad jų
       vaikai (h2, p, btn, KONTAKTAI heading + ul) taptų direct flex items'ais. */
    body.page-apie .service-info-inner {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    body.page-apie .service-info-left,
    body.page-apie .service-info-right {
        display: contents;
    }
    /* Atimti vaikų margin-top — atstumus valdo flex gap, kad nesidubliuotų */
    body.page-apie .service-info-left > *,
    body.page-apie .service-info-right > * {
        margin-top: 0;
    }
    body.page-apie .service-info-left > .btn {
        order: 99;
        margin-top: 16px;
        align-self: flex-start;
    }
    /* Logotipų juosta <=767 — sliderio nereikia; visi rodomi 3 col grid'e su 24px aukščiu */
    .logos-strip {
        height: auto;
        padding: 24px 0;
        overflow: visible;
    }
    .logos-strip::before,
    .logos-strip::after {
        display: none;
    }
    .cta-banner::before { background: linear-gradient(180deg, rgb(0,0,0) 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.5) 75%, rgb(0,0,0) 100%); }
    .logos-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 24px;
        width: 100%;
        align-items: center;
        justify-items: center;
        animation: none !important;
        transform: none !important;
    }
    /* JS klonai (aria-hidden="true") — nereikalingi grid'e */
    .logos-track > [aria-hidden="true"] {
        display: none;
    }
    .logo-item {
        max-height: 20px;
        max-width: 100%;
        width: auto;
        height: auto;
        margin: 0;
    }
    /* Hero — paveldima iš @media 979 (auto aukštis, cover nuotrauka, page-hero overlay).
       Mobile <=767 — tik buttons stack ir hero-title font sumažinimas */
    .hero-title {
        font-size: 40px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-buttons .btn {
        width: auto;
        min-width: 207px;
        text-align: center;
        justify-content: center;
    }
    .stat-block {
    height: auto;
    padding: 24px 32px;
    border-bottom: 1px solid #454545;
  }

    .section-title {
        font-size: 32px; line-height: 38px;
        margin-bottom: 24px;
    }
    .service-card { padding: 8px; min-height: auto;
    padding-bottom: 16px; }
    .service-image { width: 84px; height: 84px; }
    .service-card-inner { gap: 16px; }
    .services-grid { grid-template-columns: repeat(1, 1fr); gap: 16px; margin-bottom: 32px; }
 .bg-section {   padding-top: 100%;   }

.why-us-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 16px;
  }
  .service-steps h2 { margin: 0 auto 24px; font-size: 32px; line-height: 38px; }

    .service-title { font-size: 16px; line-height: 20px; letter-spacing: -0.16px; margin-bottom: 8px; }

.service-description { font-size: 14px; line-height: 20px; }
.service-arrow { bottom: 8px;  right: 8px;  width: 32px;  height: 32px;}
.service-arrow img {
  width: 14px;
  height: 14px;
}

    .services {
        padding: 60px 0 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding-top: var(--nav-height);
        padding-bottom: 48px;
    }
    .page-hero-content h1 {
        font-size: 32px;
    line-height: 38px;
    }
    .service-card-detailed {
        gap: 16px;
    }
    .service-card-detailed-body {
        flex-direction: column;
        gap: 16px;
    }
    .page-apie .service-info-left h2 {
  font-size: 32px;
  line-height: 38px; margin-bottom:16px;
}
    .service-card-detailed-image {
        width: 84px;
    height: 84px;
        aspect-ratio: 1 / 1;
    }
    .service-card-detailed-arrow {
  width: 32px;
  height: 32px; margin-top: -32px; }

.services-detailed-grid {
  gap: 16px; padding-bottom:48px;
}

    .service-info-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-steps-grid {
        grid-template-columns: repeat(1, 1fr); gap:15px;
    }

    .contact-hero { padding: calc(var(--nav-height) + 56px) 0 48px; }
    .step-card { padding: 24px 8px; border-radius: 8px; }
    .step-card h3 { margin-top: 32px; font-size: 18px; line-height: 24px; }
    .logos-intro {  font-size: 18px; line-height: 24px; margin: 0 auto 24px;
}

.contact-hero-content h1 {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 16px;
}

.contact-form-section {
    padding: 16px 0 48px 0;
    background: var(--color-bg);
}
.contact-form-intro {
  margin: 0 auto 16px;
  text-align: left;
}

.contact-form-intro h2 {
  font-size: 24px;
  line-height: 32px; }

    .service-info,
    .service-steps {
        padding: 24px 0 48px 0;
    }
    .service-info-left h2 {
        font-size: 32px;
        line-height: 38px; margin-bottom:16px;
    }

    .service-info-left p {
  max-width: 100%;
  margin-top: 16px;
}

    .logos-track {
        gap: 40px;
    }
    .logo-item {
        font-size: 18px;
    }
    .why-us {
        padding: 60px 0;
    }
    .section-title-left {
        font-size: 28px;
    }
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px; margin-top:-16px;
    }
    .stat-number {
    font-size: 40px;
    min-width: auto;
    line-height: 50px;
  }
    .project {
        padding: 20px 0 60px;
    }
    .project-title {
        font-size: 24px;
    }
    .cta-banner {
        padding: 60px 0;
    }
    .cta-title {
        font-size: 32px;
    }
    .plp {
        padding: 0 0 48px;
    }
    .plp-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .plp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .plp-pagination {
        margin-top: 32px;
    }
    .pdp {
        padding: calc(var(--nav-height) + 16px) 0 48px;
    }
    .pdp-gallery {
        grid-template-columns: 1fr;
    }
    .pdp-gallery--single {
        padding-left: 0;
    }
    .pdp-gallery-thumbs {
        display: none;
    }
    .pdp-gallery-main {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }
    .pdp-gallery-main .swiper-slide {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .pdp-gallery-pagination {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: 12px;
        position: static;
    }
    .pdp-gallery-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: var(--color-grey-light);
        opacity: 1;
        border-radius: 50%;
        transition: background 0.2s ease;
    }
    .pdp-gallery-pagination .swiper-pagination-bullet-active {
        background: var(--color-white);
    }
    .pdp-info h1 {
        font-size: 32px; line-height: 38px;
    }
    .pdp-info h2 + ul { margin: 0 0 12px 0; }
    /* PDP tab'ai mobile — accordion layout. Naudojamas tas pats DOM kaip desktop'e
       (.pdp-tabs-nav su 4 mygtukais + .pdp-tabs-content su 4 panel'iais), bet wrapper'iai
       suplokštinami per `display: contents`, o `order` perdėlioja į tab/panel poras. */
    .pdp-tabs {
        padding: 0 0 32px;
    }
    .pdp-tabs-inner {
        background: var(--color-grey-darker);
        border-radius: 8px;
        gap: 0;
        padding: 0;
    }
    .pdp-tabs-nav,
    .pdp-tabs-content {
        display: contents;
        background: transparent;
        padding: 0;
        gap: 0;
    }
    .pdp-tab[data-tab="aprasymas"]              { order: 1; }
    .pdp-tab-panel[data-panel="aprasymas"]      { order: 2; }
    .pdp-tab[data-tab="specifikacijos"]         { order: 3; }
    .pdp-tab-panel[data-panel="specifikacijos"] { order: 4; }
    .pdp-tab[data-tab="procesas"]               { order: 5; }
    .pdp-tab-panel[data-panel="procesas"]       { order: 6; }
    .pdp-tab[data-tab="naudojimas"]             { order: 7; }
    .pdp-tab-panel[data-panel="naudojimas"]     { order: 8; }
    .pdp-tab {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 8px 15px;
        font-size: 14px;
        font-weight: 700;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.32px;
        color: var(--color-grey-light);
        margin-top: 8px;
        transition: padding 0.25s ease, color 0.2s ease;
    }
    .pdp-tab:first-of-type {
        margin-top: 0;
    }
    .pdp-tab.is-active {
        color: var(--color-white);
        padding: 16px 15px 0 15px;
    }
    .pdp-tab::after {
        content: '';
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        border: 1px solid var(--color-line-strong);
        flex-shrink: 0;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 12px 8px;
        transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .pdp-tab.is-active::after {
        border-color: var(--color-brand);
        transform: rotate(180deg);
    }
    .pdp-tab-panel {
        padding: 16px 15px 12px;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid var(--color-line-strong);
    }
    .pdp-tab-panel:last-of-type {
        border-bottom: 0;
    }
    .plp-grid--four {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .similar-products {
        padding: 48px 0;
    }
    .similar-products h2 {
        font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

.service-card-detailed {
  gap: 16px;
  padding: 8px;
}

.service-card-detailed-body {

  gap: 16px;
}

.service-card-detailed-content h3 {
  margin-top: 0;
  font-size: 18px;
  line-height: 24px;
}
.service-card-detailed-content p {
  margin-top: 16px;
}

    .footer {
        padding: 48px 0 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 16px;
    }
    .footer-description,
    .footer-policy {
        text-align: left;
    }
    .footer-brand-text {
        font-size: 48px;
    }
    .footer-brand-image {
        aspect-ratio: 345 / 170;
    }
    .contact-blocks-grid {
        flex-direction: column;
        gap: 16px;
    }
    .contact-block {
        padding: 24px 20px;
    }
    .contact-location { padding: 0 0 32px; }
    .contact-location-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-location-map,
    .contact-location-photo {
        height: auto;
    }
    .contact-location-map { aspect-ratio: 4 / 3; }
    .contact-location-photo { aspect-ratio: 3 / 4; }
    .contact-form {
        padding: 0;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
