﻿@font-face {
    font-family: 'AF1';
    src: url('../fonts/YourFont-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-03FF, U+10A0-10FF, U+2D00-2D2F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'AF1';
    src: url('../fonts/YourFont-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-03FF, U+10A0-10FF, U+2D00-2D2F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'AF1';
    src: url('../fonts/YourFont-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-03FF, U+10A0-10FF, U+2D00-2D2F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Dash Title';
    src: url('../fonts/Dash-title.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-03FF, U+10A0-10FF, U+2D00-2D2F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'ENG';
    src: url('../fonts/ENG.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-black: #0A0A0A;
    --color-panel: #121212;
    --color-panel-secondary: #1A1A1A;
    --color-blue: #163D8F;
    --color-blue-hover: #1E4FB8;
    --color-red: #D90429;
    --color-white: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.72);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(255, 255, 255, 0.14);
    --color-overlay: rgba(0, 0, 0, 0.52);
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.34);
    --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.42);
    --glow-blue: 0 0 0 1px rgba(30, 79, 184, 0.22), 0 12px 34px rgba(30, 79, 184, 0.18);
    --radius-card: 18px;
    --radius-input: 14px;
    --radius-pill: 999px;
    --container: 1400px;
    --section-space: 56px;
    --copy-max: 700px;
    --nav-height: 82px;
    --nav-h: var(--nav-height); /* short alias used by scene-fit rules */
    --nav-inset: 0px;
    --nav-max-width: 1680px;
    --nav-clearance: calc(var(--nav-height) + 24px);
    --hero-nav-overlap-gap: 0px;
    --hero-content-top-home: 40px;
    /* scene-fit padding tokens (laptop-aware) */
    --scene-pad-x: clamp(20px, 2.4vw, 36px);
    --scene-pad-y: clamp(20px, 3vh, 36px);
}

* {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #D90429 #0a0a0a;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #D90429;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0a33;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

body,
html,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(22, 61, 143, 0.22), transparent 24%),
        radial-gradient(circle at 20% 18%, rgba(255, 0, 0, 0.12), transparent 20%),
        linear-gradient(180deg, #090909 0%, #0A0A0A 42%, #0D0D0D 100%);
    color: var(--color-white);
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

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

ul,
ol {
    padding: 0;
    list-style: none;
}

:focus-visible {
    outline: 2px solid rgba(30, 79, 184, 0.8);
    outline-offset: 3px;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -2;
}

body::before {
    top: -8rem;
    right: -8rem;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 61, 143, 0.22), transparent 68%);
}

body::after {
    left: -6rem;
    bottom: 10rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12), transparent 70%);
}

.container {
    width: min(calc(100% - 24px), var(--container));
    margin: 0 auto;
}

.content-section {
    position: relative;
    padding: var(--section-space) 0;
}

.section-heading {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
}

.section-heading-left {
    text-align: left;
    margin-bottom: 0;
}

.section-heading p {
    max-width: var(--copy-max);
    color: var(--color-text-muted);
}

.section-heading:not(.section-heading-left) p {
    margin-inline: auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-blue-hover);
}

.section-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

h1,
h2,
h3 {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-white);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 30px;
    font-weight: 700;
}

h2 {
    font-size: 24px;
    font-weight: 700;
}

h3 {
    font-size: 18px;
    font-weight: 600;
}

p {
    color: var(--color-text-muted);
}

.two-column-layout,
.grid-2,
.grid-3,
.responsive-card-grid,
.process-timeline,
.about-stats,
.footer-inner,
.hero-actions,
.hero-trust,
.import-meta {
    display: grid;
}

.two-column-layout,
.grid-2,
.grid-3,
.responsive-card-grid {
    gap: 18px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.primary-btn {
    color: var(--color-white);
    background: linear-gradient(180deg, var(--color-blue-hover), var(--color-blue));
    box-shadow: 0 10px 26px rgba(22, 61, 143, 0.34);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(22, 61, 143, 0.42);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-white);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 0, 0.52);
    background: rgba(255, 0, 0, 0.12);
}

.premium-card {
    border: 1px solid var(--color-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.premium-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    padding: 24px;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(30, 79, 184, 0.42), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 79, 184, 0.22);
    box-shadow: var(--shadow-strong);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: transparent;
    opacity: 1;
    transform: none;
    transition: background 0.28s ease;
}

.site-header.is-ready {
    opacity: 1;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: transparent;
}

@media (max-width: 1023px) {
    body.is-menu-open {
        overflow: hidden;
        touch-action: none;
        overscroll-behavior: none;
    }

}

.nav-backdrop {
    position: fixed;
    inset: var(--nav-height, 62px) 0 0 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: rgba(1, 3, 7, 0.84);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

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

.site-header .container {
    width: 100%;
    max-width: none;
    position: relative;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - (var(--nav-inset) * 2)), var(--nav-max-width));
    min-height: var(--nav-height);
    margin: 0 auto;
    gap: 20px;
    padding: 0 28px;
    background:
        linear-gradient(180deg, rgba(8, 12, 18, 0.96), rgba(5, 8, 13, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    backdrop-filter: blur(16px) saturate(120%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 22px rgba(0, 0, 0, 0.16);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled .navbar,
.site-header.is-menu-open .navbar {
    background:
        linear-gradient(180deg, rgba(8, 12, 18, 0.985), rgba(5, 8, 13, 0.96));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 28px rgba(0, 0, 0, 0.2);
}

.navbar::before {
    content: '';
    position: absolute;
    pointer-events: none;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.95), rgba(255, 0, 0, 0));
    box-shadow: 0 0 24px rgba(255, 0, 0, 0.35);
    filter: blur(0.5px);
    border-radius: 999px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
}

.brand::after {
    content: '';
    width: 1px;
    height: 30px;
    margin-left: 20px;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.08), rgba(255, 0, 0, 0.92), rgba(255, 0, 0, 0.08));
}

.brand-text {
    display: inline-flex;
    align-items: center;
    color: rgba(248, 249, 251, 0.98);
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
    transform: translateY(2px);
}

.brand-text-accent {
    color: #ff0000;
}



.nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-white);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: rgba(255, 0, 0, 0.42);
    background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.nav-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 18px;
    padding: 16px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(10, 13, 19, 0.985), rgba(4, 6, 10, 0.975));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 26px 64px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(24px) saturate(125%);
    -webkit-backdrop-filter: blur(24px) saturate(125%);
    max-height: calc(100dvh - var(--nav-height, 62px) - 12px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links {
    position: relative;
    display: grid;
    gap: 2px;
}

.nav-links a,
.lang-switcher a,
.nav-cta {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 0;
    border-radius: 0;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.96), rgba(255, 0, 0, 0));
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    border-radius: 999px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 2px;
    height: 12px;
    background: radial-gradient(ellipse at center bottom, rgba(255, 0, 0, 0.28) 0%, rgba(255, 0, 0, 0.12) 38%, rgba(255, 0, 0, 0) 74%);
    opacity: 0;
    transform: scaleX(0.72) translateY(-1px);
    transform-origin: center bottom;
    filter: blur(6px);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    pointer-events: none;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--color-white);
    background: transparent;
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links a:hover::before,
.nav-links a.is-active::before {
    opacity: 1;
    transform: scaleX(1);
}

.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lang-dropdown.is-open {
    z-index: 1200;
}

.nav-actions {
    display: grid;
    gap: 12px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid rgba(255, 0, 0, 0.9);
    border-radius: 4px;
    background: linear-gradient(180deg, #ff0000 0%, #cc0000 100%);
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.nav-cta.is-active,
.nav-cta:focus-visible {
    background: linear-gradient(180deg, #ff0000 0%, #cc0000 100%);
    border-color: rgba(255, 0, 0, 0.98);
    color: var(--color-white);
}

.nav-cta-icon {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    overflow: visible;
}

.lang-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lang-dropdown-toggle:hover,
.lang-dropdown-toggle:focus-visible {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 22px rgba(0, 0, 0, 0.12);
}

.lang-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    min-width: 72px;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 8, 13, 0.98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1201;
    pointer-events: none;
}

.lang-dropdown.is-open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-dropdown-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 0;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown-menu a.active,
.lang-dropdown-menu a:hover {
    background: rgba(217, 4, 41, 0.12);
    color: var(--color-white);
}


.lang-dropdown-label {
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    text-align: center;
}

.lang-dropdown-toggle svg,
.lang-dropdown-toggle i {
    width: 12px;
    height: 12px;
    color: var(--color-white);
    opacity: 0.88;
    transition: transform 0.25s ease, color 0.25s ease;
}

.lang-dropdown.is-open .lang-dropdown-toggle svg,
.lang-dropdown.is-open .lang-dropdown-toggle i {
    transform: rotate(180deg);
}

.lang-dropdown-toggle:hover svg,
.lang-dropdown-toggle:focus-visible svg,
.lang-dropdown-toggle:hover i,
.lang-dropdown-toggle:focus-visible i {
    color: var(--color-white);
    opacity: 1;
}

.hero-section {
    position: relative;
    min-height: min(100vh, 940px);
    display: flex;
    align-items: center;
    overflow: clip;
    isolation: isolate;
}

.hero-video,
.hero-overlay,
.hero-grid {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.78)),
        radial-gradient(circle at center, rgba(22, 61, 143, 0.24), transparent 38%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.46), rgba(10, 10, 10, 0.9));
    z-index: -2;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
    z-index: -1;
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 120px 0 72px;
}

.hero-copy {
    max-width: 860px;
}

.hero-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
}

.hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
}

.hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.hero-trust span::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--color-red), var(--color-blue-hover));
    box-shadow: 0 0 0 4px rgba(30, 79, 184, 0.12);
}

.services-grid,
.faq-list {
    gap: 18px;
}

.card-index,
.process-number {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.process-layout {
    align-items: start;
}

.process-timeline {
    position: relative;
    gap: 18px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: linear-gradient(180deg, rgba(30, 79, 184, 0.44), rgba(255, 255, 255, 0.02));
}

.process-item {
    position: relative;
    padding-left: 60px;
    min-height: 130px;
}

.process-item::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-blue-hover);
    box-shadow: 0 0 0 6px rgba(30, 79, 184, 0.12);
}

.shipping-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.shipping-map-wrap {
    position: relative;
    padding: 24px;
    opacity: 0.5;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.8s ease, border-color 0.8s ease;
}

.shipping-map-wrap.is-active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(30, 79, 184, 0.18);
    border-color: rgba(30, 79, 184, 0.16);
}

.calculator-form {
    display: grid;
    gap: 16px;
}

.calculator-form label {
    display: grid;
    gap: 8px;
}

.calculator-form span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    background: rgba(255, 255, 255, 0.025);
    color: var(--color-white);
    padding: 14px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

input:focus,
textarea:focus {
    border-color: rgba(30, 79, 184, 0.56);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--glow-blue);
    outline: none;
}

.calculator-total {
    display: grid;
    gap: 7px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.18);
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.06), rgba(30, 79, 184, 0.08));
}

.calculator-total span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calculator-total strong {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    line-height: 1.1;
}

.import-card {
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.import-media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid var(--color-border);
    background:
        radial-gradient(circle at 18% 24%, rgba(30, 79, 184, 0.22), transparent 22%),
        radial-gradient(circle at 74% 32%, rgba(255, 0, 0, 0.16), transparent 20%),
        linear-gradient(145deg, #181818, #101010 55%, #0A0A0A);
}

.import-media::after {
    content: '';
    position: absolute;
    inset: auto 14% 18% 14%;
    height: 34%;
    border-radius: 999px 999px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    transform: perspective(400px) rotateX(58deg);
}

.import-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.1);
}

.import-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.import-content {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.import-specs {
    display: grid;
    gap: 8px;
}

.import-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.import-spec i {
    color: var(--color-red);
    width: 16px;
    text-align: center;
}

.import-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.import-price strong {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
}

.import-price span {
    color: var(--color-text-muted);
    font-size: 12px;
}

.import-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.page-home-scenes #scene-about > .about-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #050506 0%, #070708 100%);
    isolation: isolate;
    box-sizing: border-box;
}

.page-home-scenes #scene-about > .about-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.52), rgba(255, 0, 0, 0));
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.24);
    z-index: 3;
    pointer-events: none;
}

.page-home-scenes #scene-about > .about-premium .about-premium__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.0) 18%, rgba(5, 5, 6, 0.0) 54%, rgba(5, 5, 6, 0.88) 72%, rgba(5, 5, 6, 1) 100%),
        linear-gradient(180deg, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.0) 18%, rgba(5, 5, 6, 0.0) 72%, rgba(5, 5, 6, 0.92) 100%),
        radial-gradient(circle at 22% 46%, rgba(255, 0, 0, 0.24), transparent 30%),
        radial-gradient(circle at 28% 80%, rgba(255, 0, 0, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(4, 4, 5, 0.12) 0%, rgba(4, 4, 5, 0.42) 100%),
        url('../images/about.png');
    background-repeat: no-repeat;
    background-position: center center, center center, 22% 46%, 28% 80%, center center, 0% center;
    background-size: cover, cover, auto, auto, cover, 75% auto;
    z-index: 0;
}

.page-home-scenes #scene-about > .about-premium .about-premium__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 3, 4, 0.04) 0%, rgba(3, 3, 4, 0.22) 72%, rgba(3, 3, 4, 0.58) 100%),
        linear-gradient(90deg, rgba(6, 6, 7, 0.01) 0%, rgba(6, 6, 7, 0.12) 40%, rgba(6, 6, 7, 0.72) 76%, rgba(6, 6, 7, 0.94) 100%);
}

.page-home-scenes #scene-about > .about-premium .about-premium__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 24px), 1280px, var(--container));
    margin: 0 auto;
    min-height: clamp(520px, 48vw, 640px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    padding: clamp(38px, 4.2vw, 52px) 0 28px;
    box-sizing: border-box;
}

.page-home-scenes #scene-about > .about-premium .about-premium__panel {
    width: min(100%, 720px);
    margin-left: auto;
    align-self: center;
    display: grid;
    gap: 18px;
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 7, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(255, 0, 0, 0.1);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    box-sizing: border-box;
    min-width: 0;
}

.page-home-scenes #scene-about > .about-premium .about-premium__panel:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 0, 0.16);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34), 0 0 32px rgba(255, 0, 0, 0.14);
}

.page-home-scenes #scene-about > .about-premium .about-premium__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #cc0000;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.page-home-scenes #scene-about > .about-premium .about-premium__eyebrow::before {
    content: '';
    width: 52px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-red) 0%, rgba(217, 4, 41, 0.08) 100%);
}

.page-home-scenes #scene-about > .about-premium .about-premium__title {
    margin: 0;
    color: #f4f4f6;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.page-home-scenes #scene-about > .about-premium .about-premium__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.page-home-scenes #scene-about > .about-premium .about-premium__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    min-width: 0;
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 6px;
    align-items: center;
    min-width: 0;
    padding: 0 18px;
    box-sizing: border-box;
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat:first-child {
    padding-left: 0;
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat:last-child {
    padding-right: 0;
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat-icon {
    grid-column: 1;
    grid-row: 1;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat-icon svg {
    width: 100%;
    height: 100%;
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat strong {
    grid-column: 2;
    grid-row: 1;
    display: block;
    color: #ffffff;
    font-size: clamp(1.7rem, 2.1vw, 2.2rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.05em;
    min-width: 0;
}

.page-home-scenes #scene-about > .about-premium .about-premium__stat span:last-child {
    grid-column: 1 / -1;
    grid-row: 2;
    color: rgba(211, 216, 223, 0.72);
    font-size: 0.88rem;
    line-height: 1.38;
    overflow: hidden;
}

.page-home-scenes #scene-about > .about-premium .about-premium__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.9);
    background: linear-gradient(180deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(204, 0, 0, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.page-home-scenes #scene-about > .about-premium .about-premium__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(255, 0, 0, 0.24), 0 0 16px rgba(255, 0, 0, 0.18);
}

.page-home-scenes #scene-about > .about-premium .about-premium__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 18px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(11, 11, 13, 0.26), rgba(11, 11, 13, 0.14));
    box-sizing: border-box;
    min-width: 0;
}

.page-home-scenes #scene-about > .about-premium .about-premium__feature {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 8px 24px 8px 16px;
    box-sizing: border-box;
}

.page-home-scenes #scene-about > .about-premium .about-premium__feature:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.04), rgba(255, 0, 0, 0.42), rgba(255, 0, 0, 0.04));
    pointer-events: none;
}

.page-home-scenes #scene-about > .about-premium .about-premium__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    flex: 0 0 56px;
    align-self: center;
    border-radius: 50%;
    box-sizing: border-box;
    color: #ff0000;
    background:
        radial-gradient(circle at center, rgba(255, 0, 0, 0.24) 0%, rgba(255, 0, 0, 0.08) 60%, transparent 70%),
        rgba(10, 10, 12, 0.56);
    border: 1px solid rgba(255, 0, 0, 0.72);
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.1) inset, 0 0 18px rgba(255, 0, 0, 0.22);
    transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.page-home-scenes #scene-about > .about-premium .about-premium__feature:hover .about-premium__feature-icon {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 0, 0.58);
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.06) inset, 0 0 24px rgba(255, 0, 0, 0.18);
}

.page-home-scenes #scene-about > .about-premium .about-premium__feature-icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: block;
}

.page-home-scenes #scene-about > .about-premium .about-premium__feature strong {
    display: block;
    margin-bottom: 6px;
    color: #f5f5f7;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.15;
}

.page-home-scenes #scene-about > .about-premium .about-premium__feature span {
    display: block;
    color: rgba(208, 214, 222, 0.72);
    font-size: 0.9rem;
    line-height: 1.35;
}

html[lang="en"] .page-home-scenes #scene-about > .about-premium .about-premium__feature span {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 1180px) {
    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        min-height: clamp(500px, 52vw, 600px);
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__bg {
        background-position: center center, 19% 42%, 24% 74%, center center, 8% center;
    }
}

@media (max-width: 1024px) {
    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        width: min(100%, 1280px, var(--container));
        min-height: auto;
        gap: 18px;
        padding: 80px 24px 40px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        width: min(100%, 560px);
        margin-inline: auto;
        padding: 32px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__title {
        font-size: clamp(34px, 4vw, 64px);
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__bg {
        background:
            linear-gradient(180deg, rgba(5, 5, 6, 0.12) 0%, rgba(5, 5, 6, 0.24) 38%, rgba(5, 5, 6, 0.72) 100%),
            linear-gradient(90deg, rgba(5, 5, 6, 0.1) 0%, rgba(5, 5, 6, 0.12) 40%, rgba(5, 5, 6, 0.76) 100%),
            radial-gradient(circle at 26% 30%, rgba(255, 32, 32, 0.2), transparent 30%),
            url('../images/about.png');
        background-repeat: no-repeat;
        background-position: center center, center center, 26% 30%, 20% center;
        background-size: cover, cover, auto, cover;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        width: min(100%, 1280px, var(--container));
        min-height: auto;
        padding: 72px 24px 32px;
        gap: 18px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__bg {
        background:
            linear-gradient(180deg, rgba(5, 5, 6, 0.06) 0%, rgba(5, 5, 6, 0.2) 24%, rgba(5, 5, 6, 0.8) 66%, rgba(5, 5, 6, 0.95) 100%),
            radial-gradient(circle at 26% 18%, rgba(255, 0, 0, 0.18), transparent 26%),
            linear-gradient(90deg, rgba(5, 5, 6, 0.04) 0%, rgba(5, 5, 6, 0.16) 44%, rgba(5, 5, 6, 0.74) 100%),
            url('../images/about.png');
        background-repeat: no-repeat;
        background-position: center center, 26% 18%, center center, 24% top;
        background-size: cover, auto, cover, cover;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        width: 100%;
        padding: 24px;
        border-radius: 18px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__title {
        font-size: clamp(32px, 10vw, 44px);
        max-width: 12ch;
        line-height: 1;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__stat {
        padding: 0;
        gap: 8px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__stat:not(:last-child)::after {
        display: none;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__stat span:last-child {
        max-width: none;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__cta {
        width: 100%;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 0 12px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature {
        gap: 14px;
        align-items: start;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 0, 0, 0.32);
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature:not(:last-child)::after {
        display: none;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature-icon {
        width: 52px;
        height: 52px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature strong {
        font-size: 1.05rem;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature span,
    .page-home-scenes #scene-about > .about-premium .about-premium__stat span:last-child {
        font-size: 0.9rem;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .page-home-scenes #scene-about > .about-premium .about-premium__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__stat {
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    .page-home-scenes #scene-about > .about-premium {
        overflow-x: clip;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        padding: 64px 20px 28px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__bg {
        background:
            linear-gradient(180deg, rgba(5, 5, 6, 0.2) 0%, rgba(5, 5, 6, 0.38) 28%, rgba(5, 5, 6, 0.88) 68%, rgba(5, 5, 6, 0.97) 100%),
            linear-gradient(90deg, rgba(5, 5, 6, 0.58) 0%, rgba(5, 5, 6, 0.32) 36%, rgba(5, 5, 6, 0.78) 100%),
            url('../images/about.png');
        background-repeat: no-repeat;
        background-position: center center, center center, 18% top;
        background-size: cover, cover, 175% auto;
        opacity: 0.42;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        padding: 24px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature,
    .page-home-scenes #scene-about > .about-premium .about-premium__cta {
        width: 100%;
    }
}

.faq-answer p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

.faq-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-list-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.faq-list-items i {
    color: #333;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-intro {
    margin: 0;
    color: var(--color-text-light);
    font-weight: 500;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--color-red);
}


.site-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--color-border);
    background: rgba(6, 7, 8, 0.4);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-link {
    text-decoration: none;
    display: inline-block;
}

.footer-brand-title {
    font-family: 'ENG', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
}

.footer-brand-title-accent {
    color: #ff0000;
}

.footer-brand-text {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 0, 0, 0.16);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-nav-title,
.footer-contact-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-links a {
    color: var(--color-text-muted);
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-contact-item a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

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

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 13px;
    transition: color 0.2s ease;
}

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

.page-legal {
    padding: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-white);
}

.legal-updated {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--color-white);
}

.legal-section p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.legal-section ul li {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--color-red);
}

.legal-section a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--color-blue-hover);
}

@media (min-width: 768px) {
    :root {
        --section-space: 80px;
    }

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-actions,
    .hero-trust,
    .about-stats,
    .import-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-timeline,
    .grid-2,
    .responsive-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .calculator-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .calculator-form .primary-btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    :root {
        --section-space: 100px;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 22px;
    }

    body {
        font-size: 18px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        gap: 22px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        max-height: none;
        overflow: visible;
        overscroll-behavior: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

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

    .nav-actions {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
    }

    .lang-switcher {
        justify-content: end;
    }

    .hero-content {
        padding: 164px 0 92px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .hero-actions {
        grid-auto-flow: column;
        justify-content: start;
        grid-template-columns: max-content max-content;
    }

    .hero-trust {
        grid-template-columns: repeat(3, max-content);
        gap: 20px;
    }

    .grid-3,
    .services-grid,
    .faq-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .two-column-layout {
        grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
        align-items: start;
    }

    .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-timeline::before {
        left: calc(50% - 0.5px);
    }

    .process-item:nth-child(odd)::before {
        left: calc(100% + 11px);
    }

    .process-item:nth-child(even)::before {
        left: -29px;
    }

    .process-item {
        padding-left: 28px;
    }

    .process-item:nth-child(odd) {
        margin-right: 18px;
    }

    .process-item:nth-child(even) {
        margin-left: 18px;
    }

    .about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-links {
        justify-content: flex-end;
    }
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.section-actions-left {
    justify-content: flex-start;
}

.page-intro {
    padding-top: calc(var(--section-space) + 36px);
    padding-bottom: 24px;
}

.page-intro-inner {
    display: grid;
    gap: 16px;
    text-align: center;
}

.page-intro-inner p {
    max-width: 720px;
    margin-inline: auto;
}

main[data-page-shell] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    flex: 1;
}

[data-page-shell].is-loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-copy-shell {
    display: block;
}

.hero-copy-main {
    display: grid;
    gap: 0;
}

.hero-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-mini-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-red);
    box-shadow: 0 0 0 5px rgba(255, 0, 0, 0.12);
}

.hero-home .hero-content {
    padding-top: var(--hero-content-top-home);
    padding-bottom: 128px;
}

.page-home .hero-copy {
    max-width: 820px;
    margin-right: auto;
}

.page-home .hero-copy-main {
    max-width: 640px;
}

.page-home .hero-copy p,
.page-home .hero-trust,
.page-home .hero-actions {
    margin-left: 0;
}

.page-home .hero-trust {
    gap: 12px;
    max-width: 620px;
}

.page-home .hero-trust span {
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.34);
    backdrop-filter: blur(10px);
}


.page-home .section-heading {
    margin-bottom: 38px;
}

@media (min-width: 1024px) {
    .page-home .hero-content {
        padding-top: 104px;
        padding-bottom: 134px;
    }

    .page-home .hero-trust {
        grid-template-columns: repeat(3, max-content);
        gap: 12px;
    }

}

.page-home .hero-copy p {
    max-width: 560px;
}

@media (max-width: 767px) {
    .hero-home .hero-content {
        padding-top: var(--hero-content-top-home);
        padding-bottom: 92px;
    }

    .page-home .hero-copy,
    .page-home .hero-copy-main,
    .page-home .hero-trust,
    .page-home .hero-copy p {
        max-width: 100%;
    }

    .hero-heading-tail {
        white-space: normal;
    }
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0A0A0A;
    background-image: var(--hero-fallback-image);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero.hero-home {
    align-items: center;
}

.hero .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    opacity: 1;
}

.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.65) 45%,
        rgba(10,10,10,0.85) 100%
    );
    z-index: 0;
}

.hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 88%);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 1400px);
    max-width: none;
    margin-left: 5%;
    margin-right: auto;
    padding: 128px 0 92px;
}

.hero-social {
    position: absolute;
    top: clamp(28px, 2.4vw, 38px);
    right: clamp(14px, 2.2vw, 30px);
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.hero-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: rgba(236, 241, 249, 0.68);
    transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.hero-social-link svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-social-link:hover,
.hero-social-link:focus-visible {
    color: rgba(248, 251, 255, 0.96);
    transform: translateY(-1px) scale(1.04);
}

.hero .hero-copy {
    max-width: 600px;
    text-align: left;
}

.hero .hero-kicker {
    margin-bottom: 16px;
}

.hero .hero-mini-label {
    margin-bottom: 20px;
}

.hero .hero-heading {
    max-width: 12ch;
    font-size: clamp(30px, 5vw, 56px);
}

.hero .hero-text {
    max-width: 560px;
    margin-top: 16px;
    font-size: clamp(16px, 2vw, 18px);
}

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

.hero .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    max-width: 620px;
}

.hero .hero-trust span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.28);
    backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
    .hero {
        min-height: 72vh;
    }

    .hero .hero-content {
        width: min(100% - 24px, 680px);
        margin-left: clamp(16px, 5vw, 24px);
        padding: 20px 0 68px;
    }

    .hero .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero {
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 6, 8, 0.68) 0%, rgba(5, 6, 8, 0.2) 18%, rgba(5, 6, 8, 0) 30%),
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.24), transparent 30%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.2), transparent 28%);
    z-index: 1;
    pointer-events: none;
}

.hero .hero-overlay {
    background:
        linear-gradient(180deg, rgba(8, 9, 11, 0.84) 0%, rgba(8, 9, 11, 0.34) 22%, rgba(8, 9, 11, 0.24) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.64) 36%, rgba(10,10,10,0.18) 62%, rgba(10,10,10,0.78) 100%),
        radial-gradient(circle at 18% 34%, rgba(22,61,143,0.18), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(255, 0, 0, 0.08), transparent 18%);
    z-index: 0;
}

.hero .hero-grid {
    opacity: 0.55;
}

.hero .hero-content {
    z-index: 3;
    margin-left: clamp(20px, 5vw, 72px);
    padding-top: 18px;
    padding-bottom: 92px;
}

.hero .hero-copy {
    max-width: 610px;
}

.hero .hero-kicker {
    margin-bottom: 14px;
}

.hero .hero-mini-label {
    margin-bottom: 18px;
}

.hero .hero-heading {
    max-width: 11ch;
    line-height: 1.02;
}

.hero .hero-text {
    margin-top: 18px;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.78);
}

.hero .hero-buttons {
    margin-top: 30px;
    gap: 12px;
}

.hero .hero-trust {
    margin-top: 28px;
    gap: 10px;
}

.hero .hero-trust span {
    background: rgba(8, 10, 12, 0.26);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 24px;
    }

    .nav-menu {
        gap: 24px;
    }

    .hero .hero-content {
        padding-top: 28px;
        padding-bottom: 108px;
    }
}

@media (max-width: 1023px) {
    .site-header {
        padding-inline: 0;
    }

    .navbar {
        padding-inline: 16px;
    }

    .brand::after {
        display: none;
    }

    .brand-text {
        font-size: 15px;
    }

    .nav-links a,
    .lang-dropdown-toggle {
        width: 100%;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 2;
        overflow: visible;
    }

    .nav-cta {
        flex: 4;
        min-width: 0;
    }

    .nav-actions .lang-switcher {
        flex: 1;
        min-width: 0;
    }

    .nav-menu:has(.lang-dropdown.is-open) {
        overflow: visible;
    }

    .lang-dropdown-menu {
        top: calc(100% + 6px);
        right: 0;
        z-index: 1201;
    }
}

.page-home-scenes {
    background: #0A0A0A;
    scroll-snap-type: y proximity;
    --home-scene-shell-width: min(calc(100% - 36px), var(--container));
    --home-scene-top-padding: clamp(72px, 7vh, 96px);
    --home-scene-bottom-padding: clamp(36px, 5vh, 64px);
}

.page-home-scenes [data-page-shell] {
    display: block;
}

.page-home-scenes .hero-home,
.page-home-scenes .home-scene {
    scroll-snap-align: start;
}

.page-home-scenes .home-scene {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow-x: clip;
}

.page-home-scenes .home-scene::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.page-home-scenes [data-home-stage] > .home-scene > .content-section {
    width: 100%;
    min-height: auto;
    padding: var(--section-space) 0 !important;
}

.page-home-scenes [data-home-stage] > .home-scene > .content-section > .container {
    padding: 0 !important;
}

.page-home-scenes [data-home-stage] > .home-scene > .content-section > .container,
.page-home-scenes [data-home-stage] > .home-scene > .container,
.page-home-scenes .home-scene-journey-shell {
    width: var(--home-scene-shell-width);
    margin-inline: auto;
    min-width: 0;
}

.page-home-scenes .home-scene-calculator-shell {
    width: var(--home-scene-shell-width);
    margin-inline: auto;
    min-width: 0;
    box-sizing: border-box;
}

.page-home-scenes .section-heading,
.page-home-scenes .home-scene-heading {
    display: grid;
    gap: 12px;
    max-width: 38rem;
    margin-bottom: 18px;
}

.page-home-scenes .section-heading h2,
.page-home-scenes .home-scene-heading h2 {
    max-width: 12ch;
    line-height: 1.04;
}

.page-home-scenes .section-heading p,
.page-home-scenes .home-scene-heading p {
    max-width: 34rem;
}

.page-home-scenes .section-actions {
    margin-top: 18px;
}

.page-home-scenes .home-scene-services > .content-section > .container.services-shell,
.page-home-scenes .home-scene-journey-shell {
    display: grid;
    gap: 24px;
}

.page-home-scenes .home-scene-placeholder {
    display: grid;
    gap: 12px;
    align-content: start;
}

.page-home-scenes .home-scene-placeholder p {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.6;
}

.page-home-scenes #scene-journey .home-scene-journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.page-home-scenes .home-scene-contact {
    position: relative;
    min-height: clamp(520px, 62vh, 680px);
    overflow: hidden;
    --contact-scene-image: none;
    background: transparent;
}

.page-home-scenes .home-scene-contact > .home-contact-cta__bg {
    position: absolute;
    inset: 0;
}

.page-home-scenes .home-scene-contact > .container {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: grid;
    align-items: center;
}

.page-home-scenes .hero-copy,
.page-home-scenes .hero-actions,
.page-home-scenes .hero-trust,
.page-home-scenes .section-heading,
.page-home-scenes .home-scene-heading,
.page-home-scenes .services-shell,
.page-home-scenes .services-showcase,
.page-home-scenes .services-stack,
.page-home-scenes .service-panel,
.page-home-scenes .service-panel-content,
.page-home-scenes .home-scene-journey-grid,
.page-home-scenes .home-scene-journey-map,
.page-home-scenes .shipping-map-wrap,
.page-home-scenes .calc-system,
.page-home-scenes .command-left-panel,
.page-home-scenes .calc-main-area,
.page-home-scenes .calc-panel,
.page-home-scenes .about-premium__inner,
.page-home-scenes .about-premium__panel,
.page-home-scenes .home-contact-cta,
.page-home-scenes .home-contact-cta__content {
    min-width: 0;
}

.page-home-scenes .home-contact-cta {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 62vh, 680px);
    display: grid;
    align-items: center;
}

.page-home-scenes .home-contact-cta__bg {
    background:
        linear-gradient(90deg, rgba(4, 6, 10, 0.92) 0%, rgba(6, 8, 12, 0.82) 24%, rgba(8, 10, 15, 0.58) 48%, rgba(8, 10, 15, 0.28) 67%, rgba(8, 10, 15, 0.18) 100%),
        linear-gradient(180deg, rgba(255, 0, 0, 0.12) 0%, rgba(7, 8, 12, 0) 24%, rgba(7, 8, 12, 0.22) 100%),
        radial-gradient(circle at 18% 50%, rgba(255, 0, 0, 0.16), transparent 34%),
        var(--contact-scene-image) center right / cover no-repeat;
    box-shadow: var(--shadow-strong);
}

.page-home-scenes .home-contact-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

.page-home-scenes .home-contact-cta__content {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    margin-left: clamp(28px, 4vw, 68px);
    padding-right: clamp(16px, 2vw, 24px);
    display: grid;
    gap: 18px;
    align-content: center;
    justify-self: start;
    text-align: left;
}

.page-home-scenes .home-contact-cta__title {
    margin: 0;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 4.4vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
    white-space: pre-line;
}

.page-home-scenes .home-contact-cta__text {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.28vw, 1.08rem);
    line-height: 1.7;
}

.page-home-scenes .home-contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.page-home-scenes .home-contact-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 52px;
    padding-inline: 1.45rem;
    border-radius: 16px;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-home-scenes .home-contact-cta__button--primary {
    background: linear-gradient(180deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 18px 38px rgba(204, 0, 0, 0.28);
}

.page-home-scenes .home-contact-cta__button--primary:hover {
    box-shadow: 0 22px 44px rgba(204, 0, 0, 0.34);
}

.page-home-scenes .home-contact-cta__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.94);
}

.page-home-scenes .home-contact-cta__button-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (min-width: 1024px) {
    .page-home-scenes {
        --home-scene-shell-width: min(calc(100% - 56px), var(--container));
    }

    .page-home-scenes .home-scene-services > .content-section > .container.services-shell {
        grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
        align-items: stretch;
        gap: 26px;
    }

    .page-home-scenes #scene-journey .home-scene-journey-grid {
        grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
        gap: 26px;
    }

    .page-home-scenes .home-scene-contact > .container {
        padding-top: clamp(30px, 4vh, 48px);
        padding-bottom: clamp(30px, 4vh, 48px);
    }
}

@media (max-width: 767px) {
    .page-home-scenes {
        scroll-snap-type: none;
        --home-scene-shell-width: min(calc(100% - 28px), var(--container));
    }

    .page-home-scenes .home-scene {
        min-height: auto;
        scroll-margin-top: calc(var(--nav-height) + 12px);
    }

    .page-home-scenes .home-scene-contact {
        min-height: auto;
    }

    .page-home-scenes .home-contact-cta {
        min-height: auto;
        padding: 20px 0;
    }

    .page-home-scenes .home-contact-cta__bg {
        background:
            linear-gradient(180deg, rgba(4, 6, 10, 0.88) 0%, rgba(5, 7, 11, 0.76) 38%, rgba(7, 8, 12, 0.54) 66%, rgba(7, 8, 12, 0.44) 100%),
            linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0) 42%),
            var(--contact-scene-image) 65% center / cover no-repeat;
    }

    .page-home-scenes .home-contact-cta__content {
        width: 100%;
        margin-left: 0;
        padding: 28px 20px;
        gap: 16px;
    }

    .page-home-scenes .home-contact-cta__title {
        font-size: clamp(1.65rem, 8vw, 2.5rem);
        overflow-wrap: anywhere;
    }

    .page-home-scenes .home-contact-cta__text {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .page-home-scenes .home-contact-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-home-scenes .home-contact-cta__button {
        width: 100%;
    }

}

@media (min-width: 1280px) {
    html:has(body.page-home-scenes),
    body.page-home-scenes {
        height: 100%;
        overflow: hidden;
    }

    body.page-home-scenes {
        overscroll-behavior: none;
    }

    .page-home-scenes {
        scroll-snap-type: none;
        overflow: hidden;
        --home-scene-shell-width: min(calc(100% - 64px), var(--container));
        --home-scene-stage-padding-top: clamp(calc(var(--nav-h) + 6px), 8.5vh, 114px);
        --home-scene-stage-padding-bottom: clamp(28px, 3.8vh, 42px);
        --home-scene-content-spine: clamp(18px, 2vw, 36px);
        --home-scene-grid-gap: clamp(24px, 2.2vw, 34px);
        --home-scene-calculator-padding-top: clamp(calc(var(--nav-h) + 28px), 5.2vh, 110px);
        --home-scene-calculator-padding-bottom: clamp(24px, 3vh, 36px);
        --home-scene-calculator-inline-padding: clamp(42px, 4.2vw, 68px);
    }

    .page-home-scenes .site-footer {
        display: none !important;
    }

    .page-home-scenes [data-home-stage] {
        position: relative;
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;
        isolation: isolate;
        background: #0A0A0A;
    }

    .page-home-scenes [data-home-stage] > #home-hero,
    .page-home-scenes [data-home-stage] > .home-scene {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100svh;
        padding: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        z-index: 0;
        transform: translate3d(0, 8vh, 0);
        transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.52s ease, visibility 0s linear 0.52s;
        background: #0A0A0A;
        contain: layout paint;
        backface-visibility: hidden;
        will-change: transform, opacity;
    }

    .page-home-scenes [data-home-stage] > #home-hero.is-active,
    .page-home-scenes [data-home-stage] > .home-scene.is-active,
    .page-home-scenes [data-home-stage] > #home-hero.is-entering,
    .page-home-scenes [data-home-stage] > .home-scene.is-entering,
    .page-home-scenes [data-home-stage] > #home-hero.is-exiting-up,
    .page-home-scenes [data-home-stage] > .home-scene.is-exiting-up,
    .page-home-scenes [data-home-stage] > #home-hero.is-exiting-down,
    .page-home-scenes [data-home-stage] > .home-scene.is-exiting-down {
        visibility: visible;
        transition-delay: 0s;
    }

    .page-home-scenes [data-home-stage] > #home-hero.is-active,
    .page-home-scenes [data-home-stage] > .home-scene.is-active {
        opacity: 1;
        pointer-events: auto;
        z-index: 3;
        transform: translate3d(0, 0, 0);
    }

    .page-home-scenes [data-home-stage] > #home-hero.is-entering,
    .page-home-scenes [data-home-stage] > .home-scene.is-entering {
        opacity: 1;
        z-index: 4;
        transform: translate3d(0, 0, 0);
    }

    .page-home-scenes [data-home-stage] > #home-hero.is-exiting-up,
    .page-home-scenes [data-home-stage] > .home-scene.is-exiting-up {
        opacity: 0;
        z-index: 2;
        transform: translate3d(0, -8vh, 0);
    }

    .page-home-scenes [data-home-stage] > #home-hero.is-exiting-down,
    .page-home-scenes [data-home-stage] > .home-scene.is-exiting-down {
        opacity: 0;
        z-index: 2;
        transform: translate3d(0, 8vh, 0);
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-content,
    .page-home-scenes [data-home-stage] > .home-scene > .content-section,
    .page-home-scenes [data-home-stage] > .home-scene > .container {
        width: 100%;
        height: 100%;
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-content,
    .page-home-scenes [data-home-stage] > .home-scene > .content-section > .container,
    .page-home-scenes [data-home-stage] > .home-scene > .container,
    .page-home-scenes .home-scene-journey-shell {
        width: var(--home-scene-shell-width);
        min-height: 100%;
        height: 100%;
        margin-inline: auto;
        display: grid;
        align-content: center;
        box-sizing: border-box;
        padding: var(--home-scene-stage-padding-top) 0 var(--home-scene-stage-padding-bottom);
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-content,
    .page-home-scenes [data-home-stage] > .home-scene > .content-section > .container,
    .page-home-scenes [data-home-stage] > .home-scene > .container,
    .page-home-scenes .home-scene-journey-shell,
    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        padding-inline: var(--home-scene-content-spine);
    }

    .page-home-scenes [data-home-stage] > .home-scene > .content-section {
        display: grid;
        align-items: stretch;
        padding: 0 !important;
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-content {
        padding-top: var(--home-scene-stage-padding-top);
        padding-bottom: var(--home-scene-stage-padding-bottom);
        margin-left: auto;
        align-content: center;
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-copy {
        width: min(100%, 560px);
        margin-left: 0;
        padding-right: 0;
    }

    .page-home-scenes .hero-home,
    .page-home-scenes .home-scene {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

    .page-home-scenes .home-scene {
        padding: 0;
    }

    .page-home-scenes .home-scene-services > .content-section > .container.services-shell {
        grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
        align-items: center;
        gap: var(--home-scene-grid-gap);
    }

    .page-home-scenes .home-scene-services .services-intro {
        width: min(100%, 34rem);
        justify-self: start;
    }

    .page-home-scenes .home-scene-journey-shell {
        gap: var(--home-scene-grid-gap);
        align-content: center;
    }

    .page-home-scenes #scene-journey .home-scene-placeholder {
        justify-self: start;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator > .content-section {
        width: 100%;
        height: 100%;
        display: grid;
        align-items: stretch;
        padding: 0 !important;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .af1-hero-calculator-section {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .calc-pro.command-center {
        margin: 0;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .home-scene-calculator-shell {
        width: var(--home-scene-shell-width);
        min-height: 100%;
        height: 100%;
        margin-inline: auto;
        display: grid;
        align-content: start;
        box-sizing: border-box;
        padding: var(--home-scene-calculator-padding-top) var(--home-scene-calculator-inline-padding) var(--home-scene-calculator-padding-bottom);
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .calc-system {
        margin: 0;
        width: 100%;
        max-width: none;
        align-self: start;
        padding: 32px;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .calc-main-area {
        gap: 26px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        min-height: clamp(520px, 48vw, 640px);
        width: var(--home-scene-shell-width);
        padding: var(--home-scene-stage-padding-top) 0 var(--home-scene-stage-padding-bottom);
        box-sizing: border-box;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        justify-self: end;
    }

    .page-home-scenes .home-scene-contact > .container {
        min-height: 100%;
        height: 100%;
        align-content: center;
        padding-top: clamp(12px, 3vh, 36px);
        padding-bottom: clamp(16px, 3vh, 40px);
        box-sizing: border-box;
    }

    .page-home-scenes .home-scene-contact .home-contact-cta {
        min-height: 100%;
    }

    .page-home-scenes .home-scene-contact .home-contact-cta__content {
        margin-left: clamp(22px, 3vw, 44px);
    }
}

/* ============================================================
   Scene laptop-fit — keep cinematic snap on shorter laptop
   viewports (1366x768, 1280x800) without clipping content.
   Scoped to scene mode (min-width:1280px) so larger desktops
   keep their existing premium spacing.
   ============================================================ */

@media (min-width: 1280px) {
    /* Allow scene grid children to shrink instead of overflowing */
    .page-home-scenes [data-home-stage] > .home-scene > .content-section,
    .page-home-scenes [data-home-stage] > .home-scene > .container,
    .page-home-scenes [data-home-stage] > .home-scene > .content-section > .container,
    .page-home-scenes .services-shell,
    .page-home-scenes .services-stack,
    .page-home-scenes .services-intro,
    .page-home-scenes .services-showcase,
    .page-home-scenes .about-premium__panel,
    .page-home-scenes .about-premium__features,
    .page-home-scenes .calc-system,
    .page-home-scenes .calc-main-area,
    .page-home-scenes .command-inputs,
    .page-home-scenes .command-result {
        min-height: 0;
        min-width: 0;
    }

    /* Calc panel: shell already provides scene padding — strip nested page padding */
    .page-home-scenes [data-home-stage] > #scene-calculator .calc-pro.command-center {
        padding: 0;
        margin: 0;
    }

    /* About inner: drop oversized fixed min-height in scene mode (shell handles height) */
    .page-home-scenes [data-home-stage] > #scene-about > .about-premium .about-premium__inner {
        min-height: 0;
        height: 100%;
        align-content: center;
    }

    /* Service cards: drop hard 280px min-height so 3 cards fit in viewport */
    .page-home-scenes [data-home-stage] > #scene-services .service-card {
        min-height: 0;
    }

    /* Services stack: rigid 300px×2 rows from base CSS clip in scene mode.
       Switch to flexible rows + stretch alignment so cards fill the remaining
       scene height without overflowing past the navbar. */
    .page-home-scenes .home-scene-services > .content-section > .container.services-shell {
        /* Force a single fr row so the shell row fills the padded area exactly.
           align-content:center inherited from base shell rule no longer matters. */
        grid-template-rows: minmax(0, 1fr);
        align-items: stretch;
        align-content: stretch;
    }

    .page-home-scenes [data-home-stage] > #scene-services .services-intro {
        align-self: center;
        min-height: 0;
        max-height: 100%;
        overflow: hidden;
    }

    .page-home-scenes [data-home-stage] > #scene-services .services-showcase {
        height: 100%;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: stretch;
    }

    /* Cap stack so cards don't bloat to full scene height; keep close to
       original 620px design but allow shrink on shorter laptops. */
    .page-home-scenes [data-home-stage] > #scene-services .services-stack {
        width: 100%;
        min-height: 0;
        height: auto;
        max-height: min(100%, clamp(380px, 68svh, 600px));
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }
}

/* Laptop tier 1: <= 850px (1280x800, 1440x900 with chrome) */
@media (min-width: 1280px) and (max-height: 850px) {
    .page-home-scenes {
        /* top padding floor stays >= nav-h so content never starts under navbar */
        --home-scene-stage-padding-top: clamp(calc(var(--nav-h) + 6px), 9vh, 96px);
        --home-scene-stage-padding-bottom: clamp(18px, 2.4vh, 30px);
        --home-scene-grid-gap: clamp(18px, 2vw, 28px);
        --home-scene-calculator-padding-top: clamp(calc(var(--nav-h) + 24px), 4.4vh, 108px);
        --home-scene-calculator-padding-bottom: clamp(16px, 2vh, 26px);
    }

    .page-home-scenes .hero-heading {
        font-size: clamp(40px, 5vw, 72px);
        line-height: 1.02;
    }

    .page-home-scenes .services-title {
        font-size: clamp(34px, 3.6vw, 56px);
    }

    .page-home-scenes .services-stack {
        gap: 14px;
    }

    .page-home-scenes .service-card-featured .service-card__content {
        padding: 22px 20px 20px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__title {
        font-size: clamp(32px, 3.4vw, 52px);
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        padding: 28px;
        gap: 14px;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .calc-system {
        padding: 22px;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .calc-main-area {
        gap: 18px;
    }

    .page-home-scenes .calc-pro .calc-form {
        gap: 12px;
    }
}

/* Laptop tier 2: <= 760px (1366x768) */
@media (min-width: 1280px) and (max-height: 760px) {
    .page-home-scenes {
        --home-scene-stage-padding-top: clamp(calc(var(--nav-h) + 4px), 8.4vh, 92px);
        --home-scene-stage-padding-bottom: clamp(14px, 1.8vh, 22px);
        --home-scene-grid-gap: clamp(14px, 1.6vw, 22px);
        --home-scene-calculator-padding-top: clamp(calc(var(--nav-h) + 20px), 3.6vh, 104px);
        --home-scene-calculator-padding-bottom: clamp(12px, 1.6vh, 20px);
    }

    .page-home-scenes .hero-heading {
        font-size: clamp(36px, 4.4vw, 60px);
        letter-spacing: -0.04em;
    }

    .page-home-scenes .services-title {
        font-size: clamp(30px, 3.2vw, 46px);
        line-height: 1.0;
    }

    .page-home-scenes .services-intro {
        gap: 14px;
    }

    .page-home-scenes .services-trust-strip {
        gap: 12px;
    }

    .page-home-scenes .service-card-featured .service-card__copy h3 {
        font-size: clamp(26px, 2.6vw, 42px);
    }

    .page-home-scenes .service-card-compact .service-card__copy h3 {
        font-size: clamp(20px, 1.8vw, 28px);
    }

    .page-home-scenes .service-card__content {
        padding: 18px;
        gap: 14px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__title {
        font-size: clamp(28px, 3vw, 44px);
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        padding: 22px;
        gap: 12px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature-icon {
        width: 44px;
        height: 44px;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .calc-system {
        padding: 18px;
        max-height: none;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .calc-main-area {
        gap: 14px;
    }

    .page-home-scenes [data-home-stage] > #scene-calculator .home-scene-calculator-shell {
        overflow: hidden;
    }

    .page-home-scenes .home-contact-cta__title {
        font-size: clamp(34px, 4vw, 56px);
    }
}

/* Laptop tier 3: <= 700px (very short laptops / heavy browser chrome) */
@media (min-width: 1280px) and (max-height: 700px) {
    .page-home-scenes {
        --home-scene-stage-padding-top: clamp(calc(var(--nav-h) + 2px), 7.6vh, 88px);
        --home-scene-stage-padding-bottom: 10px;
        --home-scene-grid-gap: 10px;
        --home-scene-calculator-padding-top: clamp(calc(var(--nav-h) + 16px), 3.2vh, 100px);
        --home-scene-calculator-padding-bottom: 10px;
    }

    .page-home-scenes .hero-heading {
        font-size: clamp(32px, 4vw, 52px);
    }

    .page-home-scenes .services-title {
        font-size: clamp(26px, 2.8vw, 40px);
    }

    .page-home-scenes .service-card__content {
        padding: 14px;
        gap: 10px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__title {
        font-size: clamp(26px, 2.6vw, 38px);
    }
}


/* Internal page intro spacing refinement */
body:not(.page-home) .page-intro {
    padding-top: 26px;
    padding-bottom: 12px;
}

body:not(.page-home) .page-intro-inner {
    gap: 12px;
    padding-top: 22px;
    padding-bottom: 22px;
}

body:not(.page-home) .page-intro + .content-section {
    padding-top: 18px;
}

@media (min-width: 768px) {
    body:not(.page-home) .page-intro {
        padding-top: 18px;
        padding-bottom: 8px;
    }

    body:not(.page-home) .page-intro-inner {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    body:not(.page-home) .page-intro + .content-section {
        padding-top: 12px;
    }
}


.hero-overlay {
    background:
        linear-gradient(180deg, rgba(5, 6, 8, 0.58) 0%, rgba(8, 8, 10, 0.22) 18%, rgba(8, 8, 10, 0.74) 100%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.52) 36%, rgba(10, 10, 10, 0.12) 66%, rgba(10, 10, 10, 0.58) 100%),
        radial-gradient(circle at 72% 60%, rgba(22, 61, 143, 0.12), transparent 24%);
}

.hero-grid {
    opacity: 0.45;
}

.hero-kicker {
    font-size: 11px;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.68);
}

.hero-kicker::before {
    width: 26px;
    background: rgba(255, 255, 255, 0.18);
}

.hero-heading {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.hero-home .hero-heading {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-heading-accent {
    color: #ff0000;
}

.hero-heading-tail {
    white-space: nowrap;
}

.hero-heading span {
    display: inline !important;
    color: #ff0000;
}

.hero-heading .hero-red-text {
    display: inline !important;
    color: #ff0000 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-home .hero-btn {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    letter-spacing: 0.01em;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 12px;
    gap: 10px;
}

.hero-home .hero-btn-primary {
    border: 1px solid rgba(255, 0, 0, 0.26);
    background: linear-gradient(180deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 16px 34px rgba(204, 0, 0, 0.34);
}

.hero-home .hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.4);
}

.hero-home .hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 10, 12, 0.44);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-home .hero-btn-secondary:hover {
    border-color: rgba(255, 0, 0, 0.32);
    background: rgba(14, 15, 18, 0.58);
}

.hero-btn-external {
    font-size: 0.9em;
    transform: translateY(-1px);
}

.hero-text {
    color: rgba(255, 255, 255, 0.74);
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn {
    min-height: 44px;
    padding: 0.78rem 1.2rem;
    font-size: 14px;
}

.hero-actions .primary-btn {
    box-shadow: none;
}

.hero-actions .secondary-btn {
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .page-home-scenes [data-home-stage] > #home-hero .hero-social {
        top: calc(var(--nav-height) + 28px);
        right: clamp(18px, 3.4vw, 42px);
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-copy {
        width: min(100%, 560px);
        margin-left: clamp(24px, 4vw, 54px);
        padding-right: 24px;
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-kicker {
        margin-bottom: 14px;
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-heading {
        width: min(100%, 8.8ch);
        font-size: clamp(34px, 3.75vw, 54px);
        line-height: 1.01;
        margin-bottom: 14px;
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-text {
        width: min(100%, 430px);
        font-size: 15px;
        line-height: 1.68;
    }

    .page-home-scenes [data-home-stage] > #home-hero .hero-actions {
        gap: 12px;
        margin-top: 22px;
    }
}

@media (max-width: 1023px) {
    .hero-social {
        top: 18px;
        gap: 16px;
    }

    .hero-social-link {
        width: 26px;
        height: 26px;
    }

    .hero-heading {
        font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.02;
    }

    .hero-text {
        max-width: 420px;
        font-size: 15px;
    }
}


/* Services premium redesign */
#services {
    background:
        linear-gradient(180deg, rgba(255, 0, 0, 0.06) 0%, transparent 12%),
        linear-gradient(180deg, #070708 0%, #050506 100%);
    overflow: hidden;
}

#services::before,
#services::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    pointer-events: none;
}

#services::before {
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.45) 50%, transparent 100%);
    opacity: 0.8;
}

#services::after {
    top: 24px;
    bottom: auto;
    left: 12%;
    width: 44%;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.11) 0%, rgba(255, 0, 0, 0) 72%);
    filter: blur(26px);
}

.services-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 30px;
}

.services-intro {
    display: grid;
    gap: 22px;
    align-content: start;
}

.services-intro .section-heading {
    gap: 18px;
}

.services-title {
    max-width: 9ch;
    line-height: 0.96;
}

.services-title br {
    display: block;
}

.services-intro .section-heading p {
    max-width: 33ch;
    font-size: 15px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.68);
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.38);
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.96), rgba(255, 0, 0, 0.96));
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.services-cta-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 40px rgba(255, 0, 0, 0.42), 0 0 24px rgba(255, 0, 0, 0.18);
}

.services-cta-btn__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.services-cta-btn__icon svg {
    width: 100%;
    height: 100%;
}

.services-trust-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(176px, 1fr);
    gap: 12px;
    padding: 14px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
        rgba(8, 8, 9, 0.9);
    scrollbar-width: none;
}

.services-trust-strip::-webkit-scrollbar {
    display: none;
}

.services-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 6px 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.35;
}

.services-trust-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff0000;
    background: rgba(255, 0, 0, 0.08);
    box-shadow: inset 0 0 16px rgba(255, 0, 0, 0.08);
}

.services-trust-item__icon svg {
    width: 18px;
    height: 18px;
}

.services-showcase {
    position: relative;
}

.services-showcase::before {
    content: '';
    position: absolute;
    right: 10%;
    top: 10%;
    width: 34%;
    height: 48%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, rgba(255, 0, 0, 0) 72%);
    filter: blur(34px);
    pointer-events: none;
}

.services-stack {
    position: relative;
    display: grid;
    gap: 18px;
}

.service-card {
    --card-accent: rgba(255, 0, 0, 0.22);
    --card-secondary-accent: rgba(255, 255, 255, 0.06);
    --card-image-position: center center;
    position: relative;
    display: grid;
    min-height: 280px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #09090a;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    isolation: isolate;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.service-card__media,
.service-card__overlay,
.service-card__content {
    grid-area: 1 / 1;
}

.service-card__media {
    position: relative;
    overflow: hidden;
}

.service-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--card-image-position);
    transform: scale(1.01);
    filter: saturate(0.82) brightness(0.58) contrast(1.08);
    transition: transform 0.24s ease-out;
    will-change: transform;
    backface-visibility: hidden;
}

.service-card__overlay {
    background:
        linear-gradient(180deg, rgba(7, 7, 8, 0.08) 0%, rgba(7, 7, 8, 0.12) 20%, rgba(7, 7, 8, 0.78) 68%, rgba(6, 6, 7, 0.96) 100%),
        linear-gradient(90deg, rgba(7, 7, 8, 0.42) 0%, rgba(7, 7, 8, 0.12) 44%, rgba(7, 7, 8, 0.58) 100%),
        radial-gradient(circle at 50% 100%, var(--card-accent) 0%, transparent 42%),
        radial-gradient(circle at 82% 18%, var(--card-secondary-accent) 0%, transparent 24%);
    transition: opacity 0.22s ease-out, filter 0.22s ease-out;
}

.service-card__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: space-between;
    gap: 20px;
    min-height: 100%;
    padding: 22px;
}

.service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.service-card__index {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ff0000 !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
}

.service-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    max-width: 100%;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 9, 0.56);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    backdrop-filter: blur(12px);
}

.service-card__badge-icon {
    display: inline-flex;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.88);
}

.service-card__badge-icon svg {
    width: 100%;
    height: 100%;
}

.service-card__copy {
    display: grid;
    align-self: end;
    gap: 12px;
    max-width: 27ch;
}

.service-card__copy h3 {
    font-size: clamp(30px, 3vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    white-space: pre-line;
}

.service-card__copy p {
    max-width: 30ch;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
}

.service-card__arrow {
    display: inline-flex;
    width: 22px;
    height: 22px;
    color: #ff0000;
    transform: translateX(0);
    transition: transform 0.2s ease-out, color 0.2s ease-out;
}

.service-card__arrow svg {
    width: 100%;
    height: 100%;
}

.service-card-featured {
    --card-image-position: 42% center;
    --card-accent: rgba(255, 0, 0, 0.3);
    box-shadow:
        0 26px 54px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 0, 0, 0.12),
        0 0 0 1px rgba(255, 0, 0, 0.12);
}

.service-card-featured::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0.9) 50%, rgba(255, 0, 0, 0) 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    opacity: 0.8;
}

.service-card-featured .service-card__content {
    padding: 28px 24px 26px;
}

.service-card-featured .service-card__copy h3 {
    font-size: clamp(34px, 3.2vw, 58px);
}

.service-card-logistics {
    --card-image-position: 58% center;
    --card-accent: rgba(24, 59, 112, 0.28);
    --card-secondary-accent: rgba(255, 0, 0, 0.1);
}

.service-card-customs {
    --card-image-position: 68% center;
    --card-accent: rgba(255, 0, 0, 0.26);
    --card-secondary-accent: rgba(208, 133, 53, 0.1);
}

.service-card-compact .service-card__copy {
    max-width: 15ch;
}

.service-card-compact .service-card__copy h3 {
    font-size: clamp(24px, 2vw, 36px);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 0, 0.45);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38), 0 0 30px rgba(255, 0, 0, 0.12);
}

.service-card:hover .service-card__image {
    transform: scale(1.04);
}

.service-card:hover .service-card__overlay {
    filter: brightness(1.06);
}

.service-card:hover .service-card__arrow {
    transform: translateX(4px);
    color: #ff0000;
}

@media (min-width: 768px) {
    .services-trust-strip {
        grid-auto-flow: initial;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .services-stack {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        grid-template-rows: repeat(2, minmax(248px, 1fr));
        align-items: stretch;
    }

    .service-card-featured {
        grid-row: 1 / span 2;
    }

    .service-card-compact {
        min-height: 248px;
    }
}

@media (min-width: 1100px) {
    #services .container.services-shell {
        grid-template-columns: minmax(300px, 0.35fr) minmax(0, 0.65fr);
        gap: 34px;
        align-items: start;
    }

    .services-intro {
        padding-top: 6px;
    }

    .services-showcase {
        min-width: 0;
    }

    .services-stack {
        grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
        grid-template-rows: repeat(2, 300px);
        gap: 20px;
    }

    .service-card-featured {
        min-height: 620px;
    }

    .service-card-compact {
        min-height: 300px;
    }
}

@media (max-width: 1099px) {
    .services-title {
        max-width: 10ch;
    }
}

@media (max-width: 767px) {
    #services {
        padding-top: max(var(--section-space), 78px);
    }

    #services::after {
        left: -12%;
        width: 88%;
        height: 220px;
    }

    .services-shell {
        gap: 24px;
    }

    .services-title {
        max-width: 11ch;
    }

    .services-intro .section-heading p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.62;
    }

    .services-cta-btn {
        width: fit-content;
        min-height: 52px;
        padding: 0 18px;
        border-radius: 15px;
    }

    .services-trust-strip {
        grid-auto-flow: row;
        grid-auto-columns: initial;
        grid-template-columns: 1fr;
        gap: 0;
        overflow: visible;
        padding: 0;
    }

    .services-trust-item {
        justify-content: flex-start;
        min-height: 42px;
        padding: 10px 14px;
        text-align: left;
    }

    .services-trust-item span {
        display: block;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .service-card {
        min-height: 260px;
        border-radius: 18px;
    }

    .service-card__content {
        padding: 18px;
    }

    .service-card__badge {
        min-height: 38px;
        padding: 0 14px;
        font-size: 11px;
    }

    .service-card__copy h3,
    .service-card-featured .service-card__copy h3,
    .service-card-compact .service-card__copy h3 {
        font-size: 30px;
    }

    .service-card__copy p {
        font-size: 14px;
        line-height: 1.58;
    }
}

@media (max-width: 479px) {
    .services-title {
        max-width: 12ch;
    }

    .services-trust-item {
        font-size: 12px;
    }

    .service-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card__badge {
        max-width: 100%;
    }

    .service-card__copy {
        max-width: 100%;
    }
}


/* Process journey redesign */
.process-journey-section .process-layout,
.process-journey-section .process-timeline,
.process-journey-section .process-item {
    all: unset;
}

.process-journey {
    position: relative;
    display: grid;
    gap: clamp(22px, 3vw, 34px);
    padding: clamp(24px, 3.2vw, 40px);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: #050506;
    overflow: hidden;
    isolation: isolate;
}

.process-journey__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(520px 280px at 12% 18%, rgba(255, 0, 0, 0.18), rgba(255, 0, 0, 0) 72%),
        radial-gradient(520px 300px at 52% 30%, rgba(255, 0, 0, 0.12), rgba(255, 0, 0, 0) 74%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.process-journey__header {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.process-journey__header h2 {
    max-width: 18ch;
    line-height: 1.03;
}

.process-journey__header p {
    color: #9aa0a6;
    max-width: 62ch;
}

.process-journey__map {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    min-height: 170px;
}

.process-journey__world,
.process-journey__route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.process-journey__world {
    color: rgba(255, 255, 255, 0.1);
    opacity: 0.65;
}

.process-journey__route-line {
    fill: none;
    stroke: #ff0000;
    stroke-width: 2.6;
    stroke-linecap: round;
    filter: url(#journeyGlow);
    animation: processLinePulse 3.2s ease-in-out infinite;
}

.process-journey__route-dot {
    fill: #ff0000;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1.4;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.95));
}

.process-journey__route-runner {
    fill: #ff0000;
    filter: drop-shadow(0 0 9px rgba(255, 0, 0, 0.88));
}

.process-journey__marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

.process-journey__marker span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.56);
    color: rgba(255, 225, 225, 0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.34);
}

.process-journey__marker--start {
    left: 5.8%;
    top: 62%;
}

.process-journey__marker--end {
    left: 94%;
    top: 42%;
}

.process-journey__ship {
    position: absolute;
    left: 50%;
    top: 56%;
    width: clamp(38px, 4vw, 52px);
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.38));
}

.process-journey__ship svg {
    display: block;
    width: 100%;
    height: auto;
}

.process-journey__steps {
    position: relative;
    min-height: 300px;
}

.step-node {
    position: absolute;
    width: min(220px, 18vw);
    display: grid;
    gap: 10px;
}

.step-node--1 { left: 2%; top: 64%; }
.step-node--2 { left: 20%; top: 28%; }
.step-node--3 { left: 40%; top: 48%; }
.step-node--4 { left: 60%; top: 26%; }
.step-node--5 { left: 78%; top: 62%; }

.step-node__circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.62);
    color: rgba(255, 245, 245, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

.step-node__card {
    display: grid;
    gap: 9px;
    width: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.step-node__card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.step-node__card p {
    margin: 0;
    color: #9aa0a6;
    font-size: 14px;
    line-height: 1.58;
}

.step-node:hover .step-node__card {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42), 0 0 18px rgba(255, 0, 0, 0.24);
}

@keyframes processLinePulse {
    0%, 100% { opacity: 0.82; }
    50% { opacity: 1; }
}

@media (max-width: 1024px) {
    .process-journey {
        padding: 24px;
    }

    .process-journey__header h2 {
        max-width: 20ch;
    }

    .process-journey__map {
        aspect-ratio: 12 / 5;
    }

    .process-journey__steps {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .step-node {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
    }

    .step-node--5 {
        grid-column: 1 / -1;
        max-width: min(340px, 100%);
    }
}

@media (max-width: 768px) {
    .process-journey {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .process-journey__map {
        display: none;
    }

    .process-journey__steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        position: relative;
        padding-left: 28px;
    }

    .process-journey__steps::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: linear-gradient(180deg, rgba(255, 0, 0, 0.9), rgba(255, 0, 0, 0.32));
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.38);
    }

    .step-node {
        position: relative;
        width: 100%;
        max-width: none;
        gap: 8px;
    }

    .step-node--5 {
        grid-column: auto;
        max-width: none;
    }

    .step-node__circle {
        position: absolute;
        left: -28px;
        top: 10px;
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .step-node__card {
        padding: 16px;
    }
}

/* Calculator wizard redesign */
.page-calculator-wizard {
    background:
        radial-gradient(1200px 420px at 50% -8%, rgba(255, 255, 255, 0.04), transparent 68%),
        linear-gradient(180deg, #0b0d12 0%, #0b0d11 58%, #0a0c10 100%);
}

.page-calculator-wizard [data-page-shell] {
    padding-top: calc(var(--nav-height) + 38px);
    padding-bottom: 60px;
}

.calc-wizard-shell {
    display: grid;
    gap: 28px;
}

.calc-wizard-header {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.calc-wizard-header h1 {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.028em;
}

.calc-wizard-header p {
    max-width: 62ch;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.66);
}

.calc-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    padding: 12px 0 0;
}

.calc-stepper-progress {
    position: absolute;
    left: 0;
    right: 0;
    top: 3px;
    height: 1px;
    background: rgba(255, 255, 255, 0.13);
    pointer-events: none;
}

.calc-stepper-progress span {
    display: block;
    width: 33.333%;
    height: 100%;
    background: linear-gradient(90deg, rgba(236, 241, 250, 0.88), rgba(236, 241, 250, 0.48));
    transition: width 500ms cubic-bezier(.22, .61, .36, 1);
}

.calc-stepper-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 56px;
    padding: 16px 10px 10px;
    color: rgba(255, 255, 255, 0.56);
    text-align: left;
    transition: color 220ms ease;
}

.calc-stepper-label {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.012em;
    font-weight: 600;
}

.calc-stepper-item::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    flex: 0 0 auto;
    transition: background-color 220ms ease, transform 220ms ease;
}

.calc-stepper-item::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0);
    transition: background-color 220ms ease;
}

.calc-stepper-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.calc-stepper-item.is-active {
    color: rgba(255, 255, 255, 0.96);
}

.calc-stepper-item.is-active::before {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.08);
}

.calc-stepper-item.is-active::after {
    background: rgba(255, 255, 255, 0.64);
}

.calc-wizard-panels {
    position: relative;
}

.calc-step-panel {
    display: none;
    opacity: 0;
    transform: translateX(24px);
}

.calc-step-panel.is-active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: calcStepEnter 360ms cubic-bezier(.22, .61, .36, 1);
}

@keyframes calcStepEnter {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.calc-step-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
    align-items: stretch;
    padding: 24px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
        #11151b;
}

.calc-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    align-content: start;
}

.calc-control-group {
    display: grid;
    gap: 10px;
}

.calc-control-span-2 {
    grid-column: 1 / -1;
}

.calc-input-divider {
    height: 1px;
    margin: 2px 0 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.calc-control-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.calc-select-wrap {
    position: relative;
    display: block;
}

.calc-select-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.68);
    transform: translateY(-58%) rotate(45deg);
    pointer-events: none;
}

.calc-form input,
.calc-form select {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
        #181d25;
    color: rgba(255, 255, 255, 0.94);
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: background-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.calc-form select {
    appearance: none;
    padding-right: 36px;
}

.calc-form input:focus,
.calc-form select:focus {
    outline: none;
    background: #1c222c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.calc-segmented {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0)),
        #171c24;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.calc-segmented-dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calc-segmented-item {
    position: relative;
    display: block;
}

.calc-segmented-item input {
    position: absolute;
    opacity: 0;
    inset: 0;
    pointer-events: none;
}

.calc-segmented-item span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.calc-segmented-vehicle-type {
    gap: 4px;
    padding: 4px;
}

.calc-segmented-vehicle-type .calc-segmented-vehicle-label {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 12.5px;
    letter-spacing: 0.015em;
}

.calc-segmented-vehicle-type .calc-segmented-vehicle-icon {
    font-size: 13px;
    line-height: 1;
    opacity: 0.8;
}

.calc-segmented-item:hover span {
    color: rgba(255, 255, 255, 0.78);
}

.calc-segmented-item input:checked + span {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        #2a303a;
    color: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

[data-customs-calculator] .calc-segmented-item--fuel-petrol input:checked + span {
    background:
        linear-gradient(180deg, rgba(225, 160, 86, 0.24), rgba(225, 160, 86, 0.08)),
        #302720;
    color: #efcca1;
    box-shadow: inset 0 0 0 1px rgba(229, 170, 98, 0.32);
}

[data-customs-calculator] .calc-segmented-item--fuel-hybrid input:checked + span {
    background:
        linear-gradient(180deg, rgba(104, 140, 188, 0.24), rgba(104, 140, 188, 0.08)),
        #232b37;
    color: #b5c9e6;
    box-shadow: inset 0 0 0 1px rgba(117, 154, 205, 0.3);
}

[data-customs-calculator] .calc-segmented-item--fuel-electric input:checked + span {
    background:
        linear-gradient(180deg, rgba(102, 158, 126, 0.24), rgba(102, 158, 126, 0.08)),
        #22302a;
    color: #b8dbc8;
    box-shadow: inset 0 0 0 1px rgba(120, 177, 143, 0.3);
}

.calc-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 2px;
}

.calc-btn,
.calc-link-btn {
    min-height: 40px;
    border-radius: 10px;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.calc-btn {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 243, 248, 0.92));
    color: #0f1319;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    min-height: 44px;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.calc-btn:hover {
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.calc-link-btn {
    color: rgba(255, 255, 255, 0.7);
}

.calc-link-btn:hover {
    color: rgba(255, 255, 255, 0.92);
}

.calc-quote-panel {
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 28px 24px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        #1a202c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.calc-quote-panel h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.calc-quote-lines {
    display: grid;
    gap: 0;
}

.calc-quote-lines li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.calc-quote-lines li span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.66);
}

.calc-quote-lines li strong {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    text-align: right;
}

.calc-final-total {
    display: grid;
    gap: 4px;
    padding-top: 10px;
}

.calc-final-total > span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.calc-final-total > strong {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.calc-final-total > small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.66);
}

.calc-feedback {
    min-height: 20px;
    margin: 2px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.54);
}

.calc-feedback.is-error {
    color: rgba(255, 189, 189, 0.92);
}

@media (max-width: 1023px) {
    .page-calculator-wizard [data-page-shell] {
        padding-top: calc(var(--nav-height) + 24px);
        padding-bottom: 40px;
    }

    .calc-wizard-shell {
        gap: 22px;
    }

    .calc-stepper {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .calc-stepper-progress {
        left: 4px;
        right: 4px;
    }

    .calc-stepper-item {
        padding: 10px 8px;
        min-height: 52px;
    }

    .calc-step-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 14px;
        border-radius: 14px;
    }

    .calc-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calc-control-span-2 {
        grid-column: auto;
    }

    .calc-actions {
        justify-content: space-between;
    }
}





/* Large-screen scaling system */
@media (min-width: 1440px) {
    :root {
        --container: 1520px;
        --section-space: 108px;
        --copy-max: 760px;
    }

    .container {
        width: min(calc(100% - 56px), var(--container));
    }

    .content-section {
        padding: clamp(88px, 6vw, 118px) 0;
    }

    .navbar {
        min-height: 84px;
    }

    .hero .hero-content {
        margin-left: clamp(28px, 4vw, 88px);
        padding-bottom: 108px;
    }

    .hero .hero-copy {
        max-width: 760px;
    }

    .hero .hero-text,
    .page-home .hero-copy p {
        max-width: 680px;
    }

    .two-column-layout {
        grid-template-columns: minmax(340px, 0.92fr) minmax(500px, 1.08fr);
        gap: 24px;
    }

    .grid-3,
    .services-grid,
    .responsive-card-grid {
        gap: 22px;
    }

    .calc-wizard-shell {
        gap: 34px;
    }

    .calc-wizard-header {
        max-width: 900px;
    }

    .calc-step-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
        gap: 24px;
        padding: 24px;
    }

    .calc-form {
        gap: 18px 14px;
    }

    .calc-quote-panel {
        padding: 22px;
    }

    .calc-final-total > strong {
        font-size: clamp(42px, 2.9vw, 58px);
    }

    .footer-inner {
        column-gap: 44px;
    }
}

@media (min-width: 1600px) {
    :root {
        --container: 1660px;
        --section-space: 116px;
        --copy-max: 800px;
    }

    .container {
        width: min(calc(100% - 64px), var(--container));
    }

    h1 {
        font-size: 62px;
    }

    h2 {
        font-size: 40px;
    }

    .navbar {
        min-height: 86px;
    }

    .hero .hero-copy {
        max-width: 820px;
    }

    .hero .hero-text,
    .page-home .hero-copy p {
        max-width: 720px;
    }

    .two-column-layout {
        grid-template-columns: minmax(360px, 0.94fr) minmax(540px, 1.06fr);
        gap: 26px;
    }

    .calc-step-grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
        gap: 26px;
        padding: 26px;
    }

    .calc-form input,
    .calc-form select {
        min-height: 52px;
    }

    .calc-quote-lines li {
        min-height: 50px;
    }
}

@media (min-width: 1920px) {
    :root {
        --container: 1760px;
        --section-space: 124px;
        --copy-max: 840px;
    }

    .container {
        width: min(calc(100% - 80px), var(--container));
    }

    h1 {
        font-size: 66px;
    }

    h2 {
        font-size: 42px;
    }

    .hero .hero-content {
        margin-left: clamp(36px, 3.4vw, 110px);
        padding-bottom: 118px;
    }

    .hero .hero-copy {
        max-width: 880px;
    }

    .calc-wizard-shell {
        gap: 36px;
    }

    .calc-wizard-header h1 {
        font-size: clamp(40px, 2.6vw, 56px);
    }

    .calc-step-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(460px, 0.85fr);
    }
}

/* Large-screen width cap refinements */
@media (min-width: 1440px) {
    .page-home .hero-copy-main {
        max-width: 720px;
    }

    .home-calculator-copy,
    .page-home-scenes .home-scene-calculator .section-heading {
        max-width: 720px;
    }

    .home-calculator-copy p,
    .page-home-scenes .home-scene-calculator .section-heading p {
        max-width: 640px;
    }

}

@media (min-width: 1600px) {
    .page-home .hero-copy-main {
        max-width: 780px;
    }

    .home-calculator-copy,
    .page-home-scenes .home-scene-calculator .section-heading {
        max-width: 780px;
    }

    .home-calculator-copy p,
    .page-home-scenes .home-scene-calculator .section-heading p {
        max-width: 700px;
    }

}

/* Top composition spacing system */
:root {
    --hero-content-top-tight: calc(var(--nav-height) + 18px);
    --hero-content-top-home: calc(var(--nav-height) + 22px);
    --first-section-top: calc(var(--nav-height) + 14px);
    --page-intro-top: calc(var(--nav-height) + 10px);
}

.hero .hero-content {
    padding-top: var(--hero-content-top-tight);
}

.hero-home .hero-content,
.page-home .hero-content {
    padding-top: var(--hero-content-top-home);
}

main[data-page-shell] {
    padding-top: var(--nav-clearance);
}

.page-home main[data-page-shell] {
    padding-top: 0;
}

.page-about main[data-page-shell] {
    padding-top: 0;
}

main[data-page-shell] > .content-section:first-child {
    padding-top: var(--first-section-top);
}

.page-faq main[data-page-shell] {
    padding-top: calc(var(--nav-height) + 6px);
}

.page-intro {
    padding-top: var(--page-intro-top);
}

body:not(.page-home) .page-intro {
    padding-top: max(12px, calc(var(--page-intro-top) - 2px));
}

@media (min-width: 768px) {
    :root {
        --hero-content-top-tight: calc(var(--nav-height) + 22px);
        --hero-content-top-home: calc(var(--nav-height) + 28px);
        --first-section-top: calc(var(--nav-height) + 18px);
        --page-intro-top: calc(var(--nav-height) + 14px);
    }
}

@media (min-width: 1024px) {
    :root {
        --hero-content-top-tight: calc(var(--nav-height) + 24px);
        --hero-content-top-home: calc(var(--nav-height) + 30px);
        --first-section-top: calc(var(--nav-height) + 22px);
        --page-intro-top: calc(var(--nav-height) + 16px);
    }
}

@media (min-width: 1440px) {
    :root {
        --hero-content-top-tight: calc(var(--nav-height) + 28px);
        --hero-content-top-home: calc(var(--nav-height) + 34px);
        --first-section-top: calc(var(--nav-height) + 24px);
        --page-intro-top: calc(var(--nav-height) + 18px);
    }
}

@media (max-width: 767px) {
    :root {
        --nav-height: 78px;
        --nav-inset: 0px;
        --hero-content-top-tight: calc(var(--nav-height) + 16px);
        --hero-content-top-home: calc(var(--nav-height) + 18px);
        --first-section-top: calc(var(--nav-height) + 10px);
        --page-intro-top: calc(var(--nav-height) + 8px);
    }

    .hero .hero-content {
        margin-left: clamp(14px, 4vw, 20px);
    }

    .page-faq main[data-page-shell] {
        padding-top: calc(var(--nav-height) + 2px);
    }

    .hero-social {
        display: none;
    }
}

/* Top spacing page-specific harmonization */
.page-calculator-wizard [data-page-shell] {
    padding-top: calc(var(--nav-height) + 28px);
}

@media (max-width: 1023px) {
    .page-calculator-wizard [data-page-shell] {
        padding-top: calc(var(--nav-height) + 18px);
    }
}

/* Route video replacement section */
.route-video-shell {
    position: relative;
    padding: clamp(18px, 2.2vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(110% 100% at 8% 4%, rgba(110, 132, 176, 0.12), transparent 48%),
        radial-gradient(120% 120% at 92% 96%, rgba(54, 69, 100, 0.12), transparent 58%),
        linear-gradient(180deg, rgba(14, 18, 28, 0.96), rgba(9, 12, 20, 0.99));
}

.route-video-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: clamp(16px, 2vw, 26px);
    align-items: stretch;
}

.route-video-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: clamp(300px, 38vw, 460px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #06090f;
}

.route-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 110%, rgba(11, 14, 22, 0.12), rgba(11, 14, 22, 0.48) 68%, rgba(11, 14, 22, 0.66)),
        linear-gradient(180deg, rgba(7, 9, 14, 0.22), rgba(7, 9, 14, 0.34));
    pointer-events: none;
    z-index: 2;
}

.route-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    z-index: 3;
}

.route-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) brightness(0.92) contrast(1.04);
}

.route-video-steps {
    display: grid;
    gap: 10px;
}

.route-video-step {
    position: relative;
    padding: 14px 14px 14px 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.route-video-step-index {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: rgba(198, 214, 244, 0.74);
}

.route-video-step h3 {
    margin: 0;
    font-size: 16px;
    color: rgba(246, 249, 255, 0.94);
}

.route-video-step p {
    margin: 7px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(220, 229, 244, 0.74);
}

@media (max-width: 1023px) {
    .route-video-layout {
        grid-template-columns: 1fr;
    }

    .route-video-wrapper {
        min-height: 260px;
    }
}

.page-home-scenes .home-scene-journey-map .route-video-wrapper {
    min-height: clamp(280px, 32vw, 420px);
}




/* Route video step cards premium refinement */
.route-video-steps {
    position: relative;
    gap: 8px;
    align-content: start;
}

.route-video-step {
    min-height: 0;
    padding: 12px 14px 12px 52px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.008)),
        linear-gradient(90deg, rgba(132, 156, 201, 0.06), rgba(132, 156, 201, 0));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.route-video-step:hover {
    border-color: rgba(186, 204, 235, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
        linear-gradient(90deg, rgba(146, 170, 214, 0.08), rgba(146, 170, 214, 0));
    transform: translateY(-1px);
}

.route-video-step::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 28px;
    bottom: -10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(154, 177, 222, 0.42), rgba(154, 177, 222, 0));
}

.route-video-step:last-child::before {
    display: none;
}

.route-video-step-index {
    top: 11px;
    left: 13px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(176, 197, 232, 0.34);
    background: rgba(15, 21, 35, 0.74);
    color: rgba(220, 231, 249, 0.9);
    font-size: 9px;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.route-video-step h3 {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: rgba(246, 249, 255, 0.96);
}

.route-video-step p {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(216, 226, 243, 0.74);
    max-width: 32ch;
}

@media (max-width: 1023px) {
    .route-video-step {
        padding: 12px 12px 12px 50px;
    }

    .route-video-step::before {
        left: 24px;
    }
}

/* Route logistics centerpiece redesign */
.shipping-section .section-heading {
    max-width: 860px;
    margin: 0 auto clamp(16px, 2vw, 26px);
    text-align: center;
}

.shipping-section .section-heading h2 {
    max-width: none;
    margin-inline: auto;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .shipping-section .section-heading h2 {
        white-space: normal;
    }
}

.route-showcase {
    position: relative;
    padding: clamp(24px, 2.8vw, 40px);
    border-radius: 22px;
    border: 1px solid rgba(221, 231, 250, 0.11);
    background:
        radial-gradient(120% 120% at 12% 8%, rgba(140, 164, 209, 0.14), transparent 46%),
        radial-gradient(120% 120% at 90% 92%, rgba(76, 95, 134, 0.16), transparent 52%),
        linear-gradient(180deg, rgba(15, 20, 33, 0.98), rgba(9, 13, 23, 1));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.route-cinematic-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.64fr) minmax(300px, 0.36fr);
    gap: 0;
    align-items: stretch;
}

.route-video-cinema {
    min-height: clamp(430px, 52vw, 660px);
    border-radius: 20px 0 0 20px;
    border: 1px solid rgba(227, 236, 252, 0.12);
    overflow: hidden;
    position: relative;
    background: #070b13;
}

.route-video-cinema::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(96% 70% at 50% 100%, rgba(6, 8, 13, 0.1), rgba(6, 8, 13, 0.34) 68%, rgba(6, 8, 13, 0.5)),
        linear-gradient(180deg, rgba(7, 10, 16, 0.04), rgba(7, 10, 16, 0.16));
    z-index: 2;
    pointer-events: none;
}

.route-video-cinema::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.28);
    z-index: 3;
    pointer-events: none;
}

.route-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.94) brightness(0.92) contrast(1.05);
}

.route-journey-rail {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 16px;
    padding: 20px 18px 18px;
    border-left: 1px solid rgba(172, 193, 228, 0.2);
    border-radius: 0 20px 20px 0;
    background: linear-gradient(180deg, rgba(11, 17, 28, 0.6), rgba(8, 13, 22, 0.48));
}

.route-journey-head {
    display: grid;
    gap: 7px;
    padding-left: 2px;
}

.route-journey-kicker {
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(198, 213, 241, 0.78);
}

.route-journey-head strong {
    font-size: clamp(18px, 1.2vw, 22px);
    line-height: 1.2;
    color: rgba(245, 249, 255, 0.95);
}

.route-journey-track {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

.route-journey-stop {
    position: relative;
    min-height: 0;
    padding: 2px 2px 4px 42px;
}

.route-journey-stop::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 20px;
    bottom: -14px;
    width: 1px;
    background: linear-gradient(180deg, rgba(167, 188, 226, 0.54), rgba(167, 188, 226, 0.12));
}

.route-journey-stop:last-child::before {
    display: none;
}

.route-journey-index {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(184, 205, 239, 0.42);
    background: linear-gradient(180deg, rgba(20, 31, 49, 0.92), rgba(11, 18, 31, 0.92));
    color: rgba(235, 244, 255, 0.9);
    font-size: 8.8px;
    letter-spacing: 0.12em;
}

.route-journey-copy h3 {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: rgba(246, 249, 255, 0.95);
}

.route-journey-copy p {
    margin: 4px 0 0;
    max-width: 34ch;
    font-size: 12px;
    line-height: 1.42;
    color: rgba(216, 227, 245, 0.76);
}

body:not(.page-home-scenes) .shipping-section .container {
    width: min(calc(100% - 24px), 1640px);
}

@media (max-width: 1180px) {
    .route-cinematic-shell {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .route-video-cinema {
        min-height: 320px;
        border-radius: 18px;
    }

    .route-journey-rail {
        border-top: 1px solid rgba(172, 193, 228, 0.2);
        border-left: 0;
        border-radius: 0 0 16px 16px;
        padding: 14px 14px 12px;
    }

    body:not(.page-home-scenes) .shipping-section .container {
        width: min(calc(100% - 22px), 1200px);
    }
}




/* Home hero calculator premium tool hub */
.af1-hero-calculator-section {
    padding-block: clamp(20px, 3.2vw, 36px);
}

.af1-hero-calculator-layout {
    align-items: start;
    gap: clamp(18px, 2.4vw, 30px);
}

.af1-hero-calculator-left {
    gap: 14px;
}

.af1-hero-calculator-left p {
    max-width: 56ch;
}

.af1-hero-calculator-actions {
    display: grid;
    gap: 10px;
    margin-top: 2px;
    max-width: 520px;
}

.af1-hero-calculator-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    width: 100%;
    border-radius: 11px;
    padding: 0 14px;
    border: 1px solid rgba(196, 212, 239, 0.16);
    background: linear-gradient(180deg, rgba(18, 25, 39, 0.8), rgba(11, 16, 27, 0.86));
    color: rgba(232, 240, 252, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-align: left;
    appearance: none;
    cursor: pointer;
    transition: border-color .24s ease, color .24s ease, transform .24s ease;
}

.af1-hero-calculator-link small {
    font-size: 14px;
    color: rgba(205, 220, 244, 0.74);
}

.af1-hero-calculator-link:hover {
    border-color: rgba(209, 224, 248, 0.28);
    color: rgba(245, 249, 255, 0.96);
    transform: translateX(2px);
}

.af1-hero-calculator-widget {
    padding: clamp(16px, 1.8vw, 22px);
    gap: 14px;
}

.af1-home-calc-panels {
    position: relative;
    min-height: clamp(410px, 35vw, 508px);
}

@media (max-width: 1279px) {
    .af1-home-calc-panels {
        min-height: 0;
    }
}

@media (max-width: 1023px) {
    .af1-hero-calculator-section {
        padding-block: 8px 24px;
    }

    .af1-hero-calculator-layout {
        gap: 14px;
    }

    .af1-hero-calculator-actions {
        max-width: 100%;
    }

    .af1-hero-calculator-link {
        min-height: 42px;
        padding-inline: 12px;
    }

    .af1-hero-calculator-widget {
        padding: 14px;
    }
}

/* Homepage compact-screen relief */
@media (max-width: 1023px) {
    .hero .hero-content {
        width: min(calc(100% - 40px), 760px);
        margin-left: auto;
        margin-right: auto;
        padding: 72px 0 80px;
    }

    .hero .hero-copy {
        max-width: 100%;
    }

    .hero .hero-text {
        max-width: 34rem;
        line-height: 1.68;
    }

    .hero .hero-buttons {
        gap: 12px;
    }
}

@media (max-width: 899px) {
    .hero .hero-buttons {
        align-items: stretch;
    }

    .hero .hero-buttons .primary-btn,
    .hero .hero-buttons .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Premium Calculator Redesign */
.calc-pro.command-center {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
}

.calc-pro.command-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(30, 79, 184, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.calc-pro .calc-system {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 36px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    backdrop-filter: blur(20px);
}

.calc-pro .calc-main-area {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.98fr);
    gap: 26px;
    align-items: start;
}

.calc-pro .calc-panel {
    display: none;
}

.calc-pro .calc-panel.is-active {
    display: contents;
}

.calc-pro .command-left-panel {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 18px 0 0;
}

.calc-pro .command-left-panel::after {
    content: '';
    position: absolute;
    top: 8px;
    right: -1px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.08) 18%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 82%,
        rgba(255, 255, 255, 0)
    );
    opacity: 0.65;
    pointer-events: none;
}

.calc-pro .command-modes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-pro .command-mode {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.calc-pro .command-mode:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.calc-pro .command-mode.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.calc-pro .command-inputs {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.calc-pro .calc-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.calc-pro .calc-control-pair {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
}

.calc-pro .calc-control-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.calc-pro .calc-input-divider {
    height: 1px;
    margin: 0 0 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.calc-pro .calc-control-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Premium Calculator Inputs & Dropdowns */
.calc-pro .calc-form input,
.calc-pro .calc-form select {
    min-height: 48px;
    background: linear-gradient(135deg, #0b0f14, #111827);
    border: 1px solid rgba(255, 27, 27, 0.12);
    border-radius: 8px;
    color: #e5e7eb;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.calc-pro .calc-form select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.calc-pro .calc-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.calc-pro .calc-form input:focus,
.calc-pro .calc-form select:focus {
    outline: none;
    border-color: rgba(255, 27, 27, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 16px rgba(255, 27, 27, 0.15);
    background: linear-gradient(135deg, #0d1218, #131b26);
}

.calc-pro .calc-form select:hover,
.calc-pro .calc-form input:hover {
    border-color: rgba(255, 27, 27, 0.25);
}

/* Dropdown option styling */
.calc-pro .calc-form select option {
    background: #0b0f14;
    color: #e5e7eb;
    padding: 10px 14px;
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
}

.calc-pro .calc-form select option:hover,
.calc-pro .calc-form select option:focus,
.calc-pro .calc-form select option:checked {
    background: linear-gradient(135deg, rgba(255, 27, 27, 0.2), rgba(255, 27, 27, 0.1));
    color: #ffffff;
}

/* No scrollbars inside the calculator */
.calc-pro,
.calc-pro .calc-form select,
.calc-pro .command-inputs,
.calc-pro .calc-result,
.calc-pro .calc-system {
    scrollbar-width: none;
}

.calc-pro ::-webkit-scrollbar,
.calc-pro .calc-form select::-webkit-scrollbar,
.calc-pro .command-inputs::-webkit-scrollbar,
.calc-pro .calc-result::-webkit-scrollbar,
.calc-pro .calc-system::-webkit-scrollbar {
    display: none;
    width: 0;
}

.calc-pro .calc-form select:disabled,
.calc-pro .calc-form input:disabled {
    opacity: 0.45;
    color: rgba(255, 255, 255, 0.35);
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

/* Premium Dropdown Chevron */
.calc-pro .calc-select-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(255, 27, 27, 0.6);
    border-bottom: 2px solid rgba(255, 27, 27, 0.6);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.calc-pro .calc-select-wrap:hover::after {
    border-color: rgba(255, 27, 27, 0.9);
}

/* Premium Labels */
.calc-pro .calc-control-label {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: block;
}

.calc-pro .calc-segmented {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    background: linear-gradient(135deg, #0b0f14, #111827);
    border: 1px solid rgba(255, 27, 27, 0.12);
    border-radius: 8px;
}

.calc-pro [data-customs-calculator] .calc-segmented:not(.calc-segmented-dual) {
    grid-template-columns: minmax(0, 1.28fr) repeat(2, minmax(0, 0.86fr));
}

.calc-pro .calc-segmented-item span {
    min-height: 34px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    font-size: 12.5px;
    text-align: center;
}

.calc-pro .calc-segmented-vehicle-type {
    gap: 3px;
    padding: 3px;
}

.calc-pro .calc-segmented-vehicle-type .calc-segmented-vehicle-label {
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12.5px;
}

.calc-pro .calc-segmented-vehicle-type .calc-segmented-vehicle-icon {
    font-size: 13px;
    line-height: 1;
    opacity: 0.82;
}

.calc-pro .calc-segmented-item input:checked + span {
    background: linear-gradient(135deg, rgba(255, 27, 27, 0.15), rgba(255, 27, 27, 0.05));
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 27, 27, 0.3);
}

.calc-pro .calc-platform-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 6px;
}

.calc-pro .calc-platform-option span {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
}

.calc-pro .calc-platform-option img {
    width: 100%;
    max-width: min(184px, 82%);
    max-height: 48px;
    object-fit: contain;
    filter: brightness(0.92) contrast(1.02);
    opacity: 0.78;
    transition:
        opacity 0.18s ease,
        filter 0.18s ease,
        transform 0.18s ease;
}

.calc-pro .calc-platform-option:hover img,
.calc-pro .calc-platform-option input:checked + span img {
    opacity: 1;
    filter: brightness(1) contrast(1.05);
    transform: translateY(-1px);
}

.calc-pro .calc-platform-option input:checked + span {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 18px rgba(0, 0, 0, 0.14);
}

.calc-pro .calc-btn {
    background: #fff;
    color: #111;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    margin-top: 16px;
}

.calc-pro .calc-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.calc-pro .command-result {
    display: flex;
    flex-direction: column;
}

.calc-pro .calc-lock-shell {
    position: relative;
    grid-column: 1 / -1;
    min-height: 100%;
}

.calc-pro .calc-lock-blur {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.98fr);
    gap: 26px;
    min-height: 100%;
    filter: blur(4px) saturate(0.86);
    opacity: 0.62;
    transform: scale(0.992);
    transform-origin: center;
    user-select: none;
    pointer-events: none;
}

.calc-pro .calc-lock-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(8, 11, 17, 0.16), rgba(8, 11, 17, 0.34));
    backdrop-filter: blur(4px);
}

.calc-pro .calc-lock-badge {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(247, 249, 252, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.calc-pro .calc-lock-badge svg {
    width: 22px;
    height: 22px;
    display: block;
}

.calc-pro .calc-lock-copy {
    width: min(100%, 23rem);
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
    padding: 22px 24px 20px;
    border-radius: 18px;
    background: rgba(9, 12, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 14px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.calc-pro .calc-lock-copy h3 {
    margin: 0;
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: rgba(247, 249, 252, 0.96);
    text-wrap: balance;
}

.calc-pro .calc-lock-copy p {
    margin: 0;
    color: rgba(221, 227, 236, 0.64);
    font-size: 12px;
    line-height: 1.5;
}

.calc-pro .calc-result {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.022)),
        rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 28px 28px 24px;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 36px rgba(0, 0, 0, 0.18);
    transition:
        border-color 280ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}

.calc-pro .calc-result::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0) 18%, rgba(150, 183, 242, 0.08) 46%, rgba(255, 255, 255, 0) 72%);
    opacity: 0;
    transform: translateX(-18%);
    pointer-events: none;
}

.calc-pro .calc-result.is-updated {
    border-color: rgba(170, 199, 248, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 20px 44px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(129, 166, 235, 0.08);
    transform: translateY(-1px);
}

.calc-pro .calc-result.is-updated::after {
    animation: calcResultSweep 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.calc-pro .calc-result-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0 18px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 52%, rgba(255, 255, 255, 0));
}

.calc-pro .calc-result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-pro .calc-result-breakdown-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(193, 208, 230, 0.44);
}

.calc-pro .calc-quote-lines li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-pro .calc-quote-lines li span {
    color: rgba(221, 231, 246, 0.62);
    font-size: 12px;
    line-height: 1.5;
}

.calc-pro .calc-quote-lines li strong {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: right;
}

.calc-pro .calc-final-total {
    margin-top: 24px;
    padding: 18px 20px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 28px rgba(0, 0, 0, 0.16);
}

.calc-pro .calc-result > .calc-final-total:first-child {
    margin-top: 0;
}

.calc-pro .calc-final-total-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.calc-pro .calc-final-total-bar > span {
    font-size: 11px;
    color: rgba(207, 220, 241, 0.52);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.calc-pro .calc-currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.calc-pro .calc-currency-btn {
    min-width: 34px;
    min-height: 26px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(223, 232, 246, 0.56);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.calc-pro .calc-currency-btn:hover {
    color: rgba(255, 255, 255, 0.82);
}

.calc-pro .calc-currency-btn.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 4px 10px rgba(0, 0, 0, 0.16);
}

.calc-pro .calc-final-total > strong {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 8px;
    display: block;
    font-size: clamp(38px, 3vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.calc-pro .calc-final-total > small {
    margin-top: 10px;
    display: block;
    font-size: 13px;
    color: rgba(223, 232, 246, 0.62);
}

.calc-pro [data-calc-secondary-total] {
    display: none !important;
}

@keyframes calcResultSweep {
    0% {
        opacity: 0;
        transform: translateX(-18%);
    }
    28% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(18%);
    }
}

@media (max-width: 1024px) {
    .calc-pro .calc-system {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .calc-pro .calc-main-area {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .calc-pro .command-left-panel {
        padding-right: 0;
    }

    .calc-pro .command-left-panel::after {
        display: none;
    }

    .calc-pro .command-modes {
        flex-direction: row;
        gap: 8px;
    }

    .calc-pro .command-mode {
        flex: 1;
        padding: 8px;
        font-size: 12px;
    }
}

@media (max-width: 780px) {
    .calc-pro .calc-control-pair {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .calc-pro .calc-control-pair--year-engine,
    .calc-pro .calc-control-pair:has([data-customs-year-wrap]) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
    }

    .calc-pro .calc-control-pair--year-engine .calc-control-label,
    .calc-pro .calc-control-pair:has([data-customs-year-wrap]) .calc-control-label {
        overflow-wrap: anywhere;
    }

    .calc-pro .calc-final-total-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .calc-pro .calc-system {
        padding: 16px;
        border-radius: 20px;
    }

    .calc-pro .command-modes {
        flex-wrap: wrap;
        gap: 6px;
    }

    .calc-pro .command-mode {
        flex: 1 1 calc(50% - 3px);
        min-width: 0;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    transform: translateX(100%) translateY(20px);
    max-width: 320px;
    width: calc(100vw - 48px);
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 20px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-consent-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.cookie-consent-banner.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%) translateY(20px);
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-consent-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.cookie-consent-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-accept-btn,
.cookie-decline-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.cookie-accept-btn {
    background: #ffffff;
    color: #0a0a0a;
}

.cookie-accept-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cookie-decline-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: calc(100% - 32px);
        bottom: 16px;
        padding: 14px 16px;
    }

    .cookie-consent-banner.show {
        transform: translateX(-50%) translateY(0);
    }

    .cookie-consent-banner.hide {
        transform: translateX(-50%) translateY(20px);
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-consent-text {
        text-align: center;
    }

    .cookie-consent-buttons {
        justify-content: center;
        padding-top: 10px;
    }
}

@media (min-width: 1280px) {
    .page-home-scenes [data-home-stage] > #home-hero .hero-copy {
        margin-left: 0;
        padding-right: 0;
    }

    .page-home-scenes .home-scene-services > .content-section > .container.services-shell {
        gap: var(--home-scene-grid-gap);
    }

    .page-home-scenes .home-scene-services .services-intro,
    .page-home-scenes #scene-journey .home-scene-journey-intro,
    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        margin-left: 0;
        padding-right: 0;
    }
}

/* English font for titles when language is English */
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] .section-kicker,
html[lang="en"] .hero-heading,
html[lang="en"] .services-title,
html[lang="en"] .service-hero__title,
html[lang="en"] .process-flow__title,
html[lang="en"] .about-hero-title,
html[lang="en"] .faq-title,
html[lang="en"] .contact-title,
html[lang="en"] .calculator-title,
html[lang="en"] .why-us-title,
html[lang="en"] .cta-title {
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Specific title elements with English font */
html[lang="en"] .hero-title,
html[lang="en"] .page-title,
html[lang="en"] .card-title,
html[lang="en"] .feature-title,
html[lang="en"] .panel-title,
html[lang="en"] .faq-question-text {
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Contact page: use ENG.ttf for all text in English */
html[lang="en"] .page-contact {
    font-family: 'ENG', 'ENG1', 'ENG2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* FAQ titles for Georgian language */
html[lang="ka"] .faq-heading h2,
html[lang="ka"] .faq-support-copy h3,
html[lang="ka"] .faq-question-text {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Navbar font rules for English language */
html[lang="en"] .nav-links a,
html[lang="en"] .lang-switcher a,
html[lang="en"] .nav-cta {
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Language dropdown menu items and toggle - always use ENG font */
.lang-dropdown-menu a,
.lang-dropdown-label {
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Navbar font rules for Georgian language */
html[lang="ka"] .nav-links a,
html[lang="ka"] .lang-switcher a,
html[lang="ka"] .nav-cta {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Home page contact CTA section font rules for English language */
html[lang="en"] .page-home-scenes .home-contact-cta,
html[lang="en"] .page-home-scenes .home-contact-cta__title,
html[lang="en"] .page-home-scenes .home-contact-cta__button,
html[lang="en"] .page-home-scenes .home-contact-cta__button span {
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Use body font for the subtext paragraph in the contact CTA (English) */
html[lang="en"] .page-home-scenes .home-contact-cta__text {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* About premium features (Transparent process / Personal support / Timely delivery) — English font */
html[lang="en"] .page-home-scenes #scene-about > .about-premium .about-premium__feature strong {
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

html[lang="en"] .page-home-scenes #scene-about > .about-premium .about-premium__feature span {
    font-family: 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Calculator font rules for English language */
html[lang="en"] .calc-control-label,
html[lang="en"] .calc-segmented-item span,
html[lang="en"] .calc-result-breakdown-label,
html[lang="en"] .calc-quote-lines span,
html[lang="en"] .command-mode span,
html[lang="en"] .calc-final-total-bar span,
html[lang="en"] .calc-currency-btn {
    font-family: 'ENG', 'ENG1', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Service card index numbers for Georgian language */
html[lang="ka"] .service-card__index {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Service card titles for Georgian language */
html[lang="ka"] .service-card__copy h3 {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Services section title for Georgian language */
html[lang="ka"] .services-title {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Services CTA button for Georgian language */
html[lang="ka"] .services-cta-btn {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Section kicker (eyebrow) for Georgian language - red and Dash Title */
html[lang="ka"] .section-kicker {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ff0000;
}

/* Section kicker (eyebrow) for English language - red */
html[lang="en"] .section-kicker {
    color: #ff0000;
}

/* Services trust strip items for Georgian language - Dash Title font */
html[lang="ka"] .services-trust-item {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
}

/* Services trust strip items for English language - ENG font */
html[lang="en"] .services-trust-item {
    font-family: 'ENG', 'ENG1', 'ENG2', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
}

/* Red subtle dividers between services trust items (both languages) */
html[lang="ka"] .services-trust-item:not(:last-child),
html[lang="en"] .services-trust-item:not(:last-child) {
    border-right: 1px solid rgba(255, 0, 0, 0.25);
}

/* Adjust trust strip spacing - equal columns (both languages) */
html[lang="ka"] .services-trust-strip,
html[lang="en"] .services-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 12px 0;
}

/* Adjust trust item for equal width and centered text (both languages) */
html[lang="ka"] .services-trust-item,
html[lang="en"] .services-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    text-align: center;
}

/* Calculator font rules for Georgian language */
html[lang="ka"] .calc-control-label,
html[lang="ka"] .calc-segmented-item span,
html[lang="ka"] .calc-result-breakdown-label,
html[lang="ka"] .calc-quote-lines span,
html[lang="ka"] .command-mode span,
html[lang="ka"] .calc-final-total-bar span,
html[lang="ka"] .calc-currency-btn {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* About section title, eyebrow, stat numbers and CTA button for Georgian language */
html[lang="ka"] .about-premium__title,
html[lang="ka"] .about-premium__eyebrow,
html[lang="ka"] .about-premium__stat strong,
html[lang="ka"] .about-premium__cta,
html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__feature strong {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Keep Georgian feature titles on one line */
html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__feature strong {
    font-size: clamp(0.78rem, 0.95vw, 0.98rem);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

/* Keep Georgian about title in one line */
html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__title {
    white-space: nowrap;
    font-size: clamp(1.2rem, 1.8vw, 1.85rem);
    letter-spacing: -0.03em;
}

/* Reduce the 2nd stat value (სრული წვდომა) to fit on one line */
html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__stat:nth-child(2) strong {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* ===== Russian language font rules ===== */

/* Titles and headings for Russian language */
html[lang="ru"] h1,
html[lang="ru"] h2,
html[lang="ru"] h3,
html[lang="ru"] .section-kicker,
html[lang="ru"] .hero-heading,
html[lang="ru"] .services-title,
html[lang="ru"] .service-hero__title,
html[lang="ru"] .process-flow__title,
html[lang="ru"] .about-hero-title,
html[lang="ru"] .faq-title,
html[lang="ru"] .contact-title,
html[lang="ru"] .calculator-title,
html[lang="ru"] .why-us-title,
html[lang="ru"] .cta-title {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Specific title elements for Russian */
html[lang="ru"] .hero-title,
html[lang="ru"] .page-title,
html[lang="ru"] .card-title,
html[lang="ru"] .feature-title,
html[lang="ru"] .panel-title,
html[lang="ru"] .faq-question-text {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Body and nav text for Russian */
html[lang="ru"] body,
html[lang="ru"] p,
html[lang="ru"] .nav-links a,
html[lang="ru"] .lang-switcher a,
html[lang="ru"] .nav-cta {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Section kicker red color for Russian */
html[lang="ru"] .section-kicker {
    color: #ff0000;
}

/* Contact page font for Russian */
html[lang="ru"] .page-contact {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Home contact CTA for Russian */
html[lang="ru"] .page-home-scenes .home-contact-cta,
html[lang="ru"] .page-home-scenes .home-contact-cta__title,
html[lang="ru"] .page-home-scenes .home-contact-cta__button,
html[lang="ru"] .page-home-scenes .home-contact-cta__button span {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* About premium section for Russian */
html[lang="ru"] .about-premium__title,
html[lang="ru"] .about-premium__eyebrow,
html[lang="ru"] .about-premium__stat strong,
html[lang="ru"] .about-premium__cta,
html[lang="ru"] .page-home-scenes #scene-about > .about-premium .about-premium__feature strong,
html[lang="ru"] .page-home-scenes #scene-about > .about-premium .about-premium__feature span {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Services section for Russian */
html[lang="ru"] .services-trust-item {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
}

html[lang="ru"] .services-trust-item:not(:last-child) {
    border-right: 1px solid rgba(255, 0, 0, 0.25);
}

html[lang="ru"] .services-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 12px 0;
}

html[lang="ru"] .services-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    text-align: center;
}

/* Calculator font rules for Russian */
html[lang="ru"] .calc-control-label,
html[lang="ru"] .calc-segmented-item span,
html[lang="ru"] .calc-result-breakdown-label,
html[lang="ru"] .calc-quote-lines span,
html[lang="ru"] .command-mode span,
html[lang="ru"] .calc-final-total-bar span,
html[lang="ru"] .calc-currency-btn {
    font-family: 'Montserrat', 'AF1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 767px) {
    html[lang="ka"] .services-trust-strip,
    html[lang="en"] .services-trust-strip,
    html[lang="ru"] .services-trust-strip {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    html[lang="ka"] .services-trust-item:not(:last-child),
    html[lang="en"] .services-trust-item:not(:last-child),
    html[lang="ru"] .services-trust-item:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 0, 0, 0.25);
    }
}

[hidden] {
    display: none !important;
}

/* ===== Custom Select Dropdown (cs-*) ===== */
.calc-select-wrap.has-custom-select::after,
.calc-pro .calc-select-wrap.has-custom-select::after {
    display: none;
}

.cs-root {
    position: relative;
    display: block;
    width: 100%;
}

.cs-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)), #181d25;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: background 200ms ease, box-shadow 200ms ease;
}

.cs-trigger:focus {
    outline: none;
    background: #1c222c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.cs-root.is-open .cs-trigger {
    background: #1c222c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cs-value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cs-arrow {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    position: relative;
    top: -2px;
    transition: transform 0.2s ease, border-color 0.2s ease, top 0.2s ease;
}

.cs-root.is-open .cs-arrow {
    transform: rotate(-135deg);
    top: 2px;
    border-color: rgba(255, 27, 27, 0.85);
}

.cs-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 300;
    padding: 4px;
    background: #0f131a;
    border: 1px solid rgba(255, 27, 27, 0.22);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
    max-height: 224px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 27, 27, 0.45) transparent;
    overscroll-behavior: contain;
}

.cs-dropdown::-webkit-scrollbar {
    width: 4px;
}

.cs-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.cs-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 27, 27, 0.45);
    border-radius: 2px;
}

.cs-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 27, 27, 0.75);
}

.cs-root.is-open .cs-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cs-option {
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.1s ease, color 0.1s ease;
    user-select: none;
    -webkit-user-select: none;
}

.cs-option:hover {
    background: rgba(255, 27, 27, 0.1);
    color: #fff;
}

.cs-option.is-selected {
    background: rgba(255, 27, 27, 0.15);
    color: #fff;
    font-weight: 600;
}

.cs-root.is-disabled .cs-trigger {
    opacity: 0.45;
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    pointer-events: none;
}

/* .calc-pro theme overrides */
.calc-pro .cs-trigger {
    min-height: 48px;
    background: linear-gradient(135deg, #0b0f14, #111827);
    border: 1px solid rgba(255, 27, 27, 0.12);
    border-radius: 8px;
    color: #e5e7eb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, sans-serif;
}

.calc-pro .cs-trigger:hover {
    border-color: rgba(255, 27, 27, 0.25);
}

.calc-pro .cs-root.is-open .cs-trigger,
.calc-pro .cs-trigger:focus {
    border-color: rgba(255, 27, 27, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 16px rgba(255, 27, 27, 0.15);
    background: linear-gradient(135deg, #0d1218, #131b26);
}

.calc-pro .cs-root.is-disabled .cs-trigger {
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.calc-pro .cs-dropdown {
    background: #0b0f14;
    border-color: rgba(255, 27, 27, 0.18);
}

.calc-pro .cs-option {
    font-family: 'Dash Title', 'AF1', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===================================================================
   AF1 AUTOMOTIVE DASHBOARD CALCULATOR — PREMIUM REDESIGN
   Palette : #05070A → #0B0F14 | Accent : #FF1E2D | Glass surfaces
   Inspired : Ferrari configurator / Tesla UI / trading dashboards
   =================================================================== */

/* ── Section ambient glow ── */
.calc-pro.command-center {
    padding: 72px 0;
    margin: 32px 0;
}

.calc-pro.command-center::before {
    background:
        radial-gradient(ellipse 80% 55% at 65% 42%, rgba(255, 30, 45, 0.055) 0%, transparent 60%),
        radial-gradient(ellipse 42% 32% at 12% 78%, rgba(255, 30, 45, 0.025) 0%, transparent 55%);
}

/* ── Main system card ── */
.calc-pro .calc-system {
    background: linear-gradient(158deg, #0c1018 0%, #05070a 100%);
    border: 1px solid rgba(255, 30, 45, 0.14);
    border-top: 1px solid rgba(255, 30, 45, 0.24);
    border-radius: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.55),
        0 48px 100px rgba(0, 0, 0, 0.65),
        0 0 90px rgba(255, 30, 45, 0.04);
}

/* ── Left-panel divider: red tint ── */
.calc-pro .command-left-panel::after {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 30, 45, 0.3) 30%,
        rgba(255, 30, 45, 0.14) 70%,
        transparent 100%
    );
    opacity: 1;
}

/* ── Mode buttons ── */
.calc-pro .command-mode {
    position: relative;
    overflow: hidden;
    background: rgba(12, 16, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-pro .command-mode::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 2.5px;
    border-radius: 0 2px 2px 0;
    background: #FF1E2D;
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calc-pro .command-mode:hover {
    background: rgba(255, 30, 45, 0.06);
    border-color: rgba(255, 30, 45, 0.2);
    color: rgba(255, 255, 255, 0.68);
}

.calc-pro .command-mode.is-active {
    background: linear-gradient(135deg, rgba(255, 30, 45, 0.15) 0%, rgba(255, 30, 45, 0.04) 100%);
    border-color: rgba(255, 30, 45, 0.36);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 20px rgba(255, 30, 45, 0.1);
}

.calc-pro .command-mode.is-active::before {
    opacity: 1;
    transform: scaleY(1);
}

/* ── Labels ── */
.calc-pro .calc-control-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(156, 163, 175, 0.55);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

/* ── Red-led input divider ── */
.calc-pro .calc-input-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 30, 45, 0.22) 50%, transparent);
}

/* ── Inputs & native selects ── */
.calc-pro .calc-form input,
.calc-pro .calc-form select {
    background: rgba(7, 10, 16, 0.9);
    border-color: rgba(255, 30, 45, 0.11);
    border-radius: 10px;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.calc-pro .calc-form input:hover,
.calc-pro .calc-form select:hover {
    border-color: rgba(255, 30, 45, 0.26);
}

.calc-pro .calc-form input:focus,
.calc-pro .calc-form select:focus {
    border-color: rgba(255, 30, 45, 0.52);
    background: rgba(9, 13, 20, 0.97);
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(255, 30, 45, 0.09),
        0 0 28px rgba(255, 30, 45, 0.09);
}

/* ── Custom select trigger ── */
.calc-pro .cs-trigger {
    background: rgba(7, 10, 16, 0.9);
    border-color: rgba(255, 30, 45, 0.11);
    border-radius: 10px;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.calc-pro .cs-trigger:hover {
    border-color: rgba(255, 30, 45, 0.26);
}

.calc-pro .cs-root.is-open .cs-trigger,
.calc-pro .cs-trigger:focus {
    border-color: rgba(255, 30, 45, 0.52);
    background: rgba(9, 13, 20, 0.97);
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(255, 30, 45, 0.09),
        0 0 28px rgba(255, 30, 45, 0.09);
}

.calc-pro .cs-root.is-open .cs-arrow {
    border-color: #FF1E2D;
}

.calc-pro .cs-dropdown {
    background: #070a10;
    border-color: rgba(255, 30, 45, 0.22);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 30, 45, 0.07);
}

.calc-pro .cs-option:hover {
    background: rgba(255, 30, 45, 0.1);
    color: #fff;
}

.calc-pro .cs-option.is-selected {
    color: #fff;
    background: rgba(255, 30, 45, 0.16);
}

/* ── Segmented pill toggles ── */
.calc-pro .calc-segmented {
    background: rgba(7, 10, 16, 0.9);
    border-color: rgba(255, 30, 45, 0.11);
    border-radius: 10px;
    gap: 3px;
    padding: 3px;
}

.calc-pro .calc-segmented-item span {
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.38);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-pro .calc-segmented-item:hover span {
    color: rgba(255, 255, 255, 0.68);
}

.calc-pro .calc-segmented-item input:checked + span {
    background: linear-gradient(135deg, rgba(255, 30, 45, 0.2) 0%, rgba(255, 30, 45, 0.07) 100%);
    color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 30, 45, 0.36),
        0 2px 10px rgba(255, 30, 45, 0.12);
}

/* ── Platform picker (auction logos) ── */
.calc-pro .calc-platform-option span {
    border-radius: 8px;
    background: rgba(7, 10, 16, 0.85);
    border: 1px solid rgba(255, 30, 45, 0.08);
}

.calc-pro .calc-platform-option input:checked + span {
    border-color: rgba(255, 30, 45, 0.32);
    background: rgba(255, 30, 45, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 0 1px rgba(255, 30, 45, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ── Result panel ── */
.calc-pro .calc-result {
    background:
        radial-gradient(ellipse 85% 45% at 88% 6%, rgba(255, 30, 45, 0.07) 0%, transparent 55%),
        linear-gradient(172deg, #0d1219 0%, #070a0e 100%);
    border: 1px solid rgba(255, 30, 45, 0.16);
    border-top: 1px solid rgba(255, 30, 45, 0.3);
    border-radius: 18px;
    padding: 26px 26px 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 32px 72px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.35),
        0 0 70px rgba(255, 30, 45, 0.04);
    transition: border-color 280ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.calc-pro .calc-result::after {
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 18%,
        rgba(255, 30, 45, 0.08) 46%,
        rgba(255, 255, 255, 0) 72%
    );
}

.calc-pro .calc-result.is-updated {
    border-color: rgba(255, 30, 45, 0.28);
    border-top-color: rgba(255, 30, 45, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 32px 72px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(255, 30, 45, 0.08),
        0 0 70px rgba(255, 30, 45, 0.07);
    transform: translateY(-1px);
}

/* ── Total amount box ── */
.calc-pro .calc-final-total {
    background:
        radial-gradient(ellipse 100% 80% at 6% 6%, rgba(255, 30, 45, 0.18) 0%, transparent 52%),
        linear-gradient(145deg, rgba(14, 19, 28, 0.55) 0%, rgba(7, 10, 16, 0.65) 100%),
        url('/AF1/assets/images/calculator.png') center center / cover no-repeat;
    border: 1px solid rgba(255, 30, 45, 0.18);
    border-top: 1px solid rgba(255, 30, 45, 0.32);
    border-radius: 13px;
    padding: 20px 20px 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 32px rgba(0, 0, 0, 0.28);
}

/* ── Oversized total number ── */
.calc-pro .calc-final-total > strong {
    font-size: clamp(44px, 3.6vw, 56px);
    letter-spacing: -0.045em;
    color: #ffffff;
    text-shadow:
        0 0 60px rgba(255, 30, 45, 0.22),
        0 2px 0 rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    line-height: 0.94;
}

/* ── Total bar label & secondary ── */
.calc-pro .calc-final-total-bar > span {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(156, 163, 175, 0.55);
    text-transform: uppercase;
}

.calc-pro .calc-final-total > small {
    color: rgba(200, 214, 236, 0.55);
    font-size: 13px;
    margin-top: 8px;
}

/* ── Result divider ── */
.calc-pro .calc-result-divider {
    background: linear-gradient(
        90deg,
        rgba(255, 30, 45, 0.32),
        rgba(255, 255, 255, 0.07) 45%,
        rgba(255, 255, 255, 0)
    );
    margin: 20px 0 16px;
}

/* ── Breakdown label ── */
.calc-pro .calc-result-breakdown-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(156, 163, 175, 0.38);
    text-transform: uppercase;
}

/* ── Breakdown rows ── */
.calc-pro .calc-quote-lines li {
    padding: 13px 0;
    border-bottom-color: rgba(255, 255, 255, 0.04);
    gap: 14px;
}

.calc-pro .calc-quote-lines li span {
    color: rgba(196, 210, 234, 0.52);
    font-size: 12px;
    letter-spacing: 0.01em;
}

.calc-pro .calc-quote-lines li strong {
    color: #f4f8ff;
    font-size: 14px;
    letter-spacing: 0.01em;
}

/* ── Currency toggle ── */
.calc-pro .calc-currency-toggle {
    background: rgba(7, 10, 16, 0.85);
    border: 1px solid rgba(255, 30, 45, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.calc-pro .calc-currency-btn.is-active {
    background: linear-gradient(135deg, rgba(255, 30, 45, 0.26), rgba(255, 30, 45, 0.12));
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 2px 10px rgba(255, 30, 45, 0.16);
}

/* ── Transport lock card ── */
.calc-pro .calc-lock-copy {
    background: rgba(5, 7, 11, 0.92);
    border: 1px solid rgba(255, 30, 45, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 52px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 30, 45, 0.05);
}

.calc-pro .calc-lock-badge {
    background: rgba(255, 30, 45, 0.09);
    border-color: rgba(255, 30, 45, 0.24);
    color: #FF1E2D;
}

/* ── Breadcrumb navigation ── */
.breadcrumb-nav {
    margin-bottom: 12px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.breadcrumb-item a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-white);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--color-border-strong);
    margin-right: 6px;
    pointer-events: none;
}

.breadcrumb-item--current a {
    color: var(--color-white);
    pointer-events: none;
    cursor: default;
}

/* ═══════════════════════════════════════════════════════ Legal pages ═══ */

.page-legal {
    --legal-accent:  rgba(229, 74, 74, 0.82);
    --legal-text:    rgba(182, 194, 218, 0.82);
    --legal-heading: rgba(228, 235, 250, 0.95);
    --legal-border:  rgba(255, 255, 255, 0.065);
    --legal-num:     rgba(229, 74, 74, 0.52);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-legal main[data-page-shell] {
    flex: 1;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.legal-hero {
    margin-top: calc(-1 * var(--nav-clearance));
    padding: calc(var(--nav-height) + 8px) 0 clamp(32px, 3vw, 48px);
    text-align: center;
    background:
        radial-gradient(ellipse 72% 55% at 50% 0%, rgba(229, 74, 74, 0.07) 0%, transparent 68%),
        linear-gradient(180deg, rgba(10, 13, 20, 0) 0%, rgba(10, 13, 20, 0.3) 100%);
    border-bottom: 1px solid var(--legal-border);
}

.legal-hero-eyebrow {
    display: inline-block;
    font-family: 'ENG', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--legal-accent);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.legal-hero-title {
    font-family: 'Dash Title', sans-serif;
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 400;
    color: var(--legal-heading);
    line-height: 1.08;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    font-size: 10.5px;
    letter-spacing: 0.07em;
    color: rgba(170, 182, 208, 0.52);
    text-transform: uppercase;
}

.legal-hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--legal-accent);
    opacity: 0.65;
    flex-shrink: 0;
}

/* ── Document body ────────────────────────────────────────────────────── */
.legal-doc {
    padding: clamp(40px, 4vw, 60px) 0 clamp(48px, 4.5vw, 72px);
}

.legal-doc-inner {
    max-width: 756px;
    margin: 0 auto;
}

/* ── Section ──────────────────────────────────────────────────────────── */
.legal-section {
    padding: clamp(28px, 3vw, 46px) 0;
    border-bottom: 1px solid var(--legal-border);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-section-hd {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 18px;
}

.legal-num {
    font-family: 'ENG', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--legal-num);
    flex-shrink: 0;
    user-select: none;
    padding-top: 2px;
}

.legal-section-hd h2 {
    font-family: 'Dash Title', sans-serif;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    color: var(--legal-heading);
    line-height: 1.2;
    margin: 0;
}

.legal-section-body p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--legal-text);
    margin: 0 0 14px;
}

.legal-section-body p:last-child {
    margin-bottom: 0;
}

/* ── List ─────────────────────────────────────────────────────────────── */
.legal-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.legal-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 13.5px;
    line-height: 1.68;
    color: var(--legal-text);
}

.legal-list li::before {
    content: '—';
    color: var(--legal-accent);
    opacity: 0.6;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── Bottom CTA strip ─────────────────────────────────────────────────── */
.legal-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: clamp(40px, 4vw, 60px);
    padding: clamp(22px, 2.4vw, 32px) clamp(22px, 3vw, 40px);
    background: rgba(229, 74, 74, 0.045);
    border: 1px solid rgba(229, 74, 74, 0.13);
    border-radius: 2px;
}

.legal-cta p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--legal-text);
    margin: 0;
}

.legal-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'ENG', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--legal-accent);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 200ms ease;
}

.legal-cta-link:hover {
    opacity: 0.72;
}

.legal-cta-link::after {
    content: '→';
}

@media (max-width: 580px) {
    .legal-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Main page responsive hardening */
@media (max-width: 1279px) {
    .page-home-scenes,
    .page-home-scenes [data-home-stage] {
        overflow-x: hidden;
    }

    .page-home-scenes .hero-heading,
    .page-home-scenes .services-title,
    .page-home-scenes .service-card__copy h3,
    .page-home-scenes #scene-about > .about-premium .about-premium__title,
    .page-home-scenes .home-contact-cta__title {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 767px) {
    .page-home-scenes [data-home-stage] > .home-scene > .content-section {
        padding: clamp(28px, 7vw, 44px) 0 !important;
    }

    .page-home-scenes [data-home-stage] > .home-scene > .content-section > .container,
    .page-home-scenes [data-home-stage] > .home-scene > .container,
    .page-home-scenes .home-scene-calculator-shell {
        width: min(calc(100% - 28px), var(--container));
        padding-inline: 0 !important;
    }

    .page-home-scenes .hero-home {
        min-height: auto;
    }

    .page-home-scenes .hero-home .hero-content {
        min-height: clamp(620px, 86svh, 760px);
        padding: calc(var(--nav-height) + 18px) 18px 30px;
        align-items: center;
    }

    .page-home-scenes .hero-copy,
    .page-home-scenes [data-home-stage] > #home-hero .hero-copy {
        width: 100%;
        max-width: 560px;
        margin-left: 0;
        padding-right: 0;
    }

    .page-home-scenes .hero-heading,
    .page-home-scenes [data-home-stage] > #home-hero .hero-heading {
        width: min(100%, 11ch);
        font-size: clamp(32px, 12vw, 48px);
        line-height: 1.02;
        letter-spacing: 0;
    }

    .page-home-scenes .hero-text,
    .page-home-scenes [data-home-stage] > #home-hero .hero-text {
        width: min(100%, 35rem);
        font-size: 15px;
        line-height: 1.6;
    }

    .page-home-scenes .hero-actions {
        width: 100%;
        align-items: stretch;
    }

    .page-home-scenes .hero-btn,
    .page-home-scenes .services-cta-btn,
    .page-home-scenes .home-contact-cta__button {
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .page-home-scenes .services-shell {
        gap: 16px;
    }

    .page-home-scenes .services-title {
        max-width: 12ch;
        font-size: clamp(32px, 11vw, 48px);
        line-height: 1;
        letter-spacing: 0;
    }

    .page-home-scenes .services-trust-strip,
    html[lang] .page-home-scenes .services-trust-strip {
        grid-auto-flow: row;
        grid-auto-columns: initial;
        grid-template-columns: 1fr;
        gap: 0;
        overflow: visible;
        padding: 0;
    }

    .page-home-scenes .services-trust-item,
    html[lang] .page-home-scenes .services-trust-item {
        justify-content: flex-start;
        min-height: 42px;
        padding: 10px 14px;
        text-align: left;
        border-right: 0;
    }

    .page-home-scenes .services-trust-item:not(:last-child),
    html[lang] .page-home-scenes .services-trust-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 0, 0, 0.25);
    }

    .page-home-scenes .services-trust-item span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .page-home-scenes .services-stack {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
    }

    .page-home-scenes .service-card,
    .page-home-scenes .service-card-featured,
    .page-home-scenes .service-card-compact {
        min-height: clamp(220px, 62vw, 300px);
    }

    .page-home-scenes .service-card__content {
        padding: 18px;
    }

    .page-home-scenes .service-card__copy,
    .page-home-scenes .service-card-compact .service-card__copy {
        max-width: 100%;
    }

    .page-home-scenes .service-card__copy h3,
    .page-home-scenes .service-card-featured .service-card__copy h3,
    .page-home-scenes .service-card-compact .service-card__copy h3 {
        font-size: clamp(26px, 9vw, 34px);
        line-height: 1.04;
        letter-spacing: 0;
    }

    .page-home-scenes .calc-pro.command-center {
        padding: 0;
    }

    .page-home-scenes .calc-pro .calc-system {
        padding: 16px;
        gap: 16px;
        border-radius: 12px;
    }

    .page-home-scenes .calc-pro .command-modes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .page-home-scenes .calc-pro .command-mode {
        min-height: 46px;
        padding: 10px 12px;
    }

    .page-home-scenes .calc-pro .command-mode span,
    .page-home-scenes .calc-pro .calc-segmented-item span {
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .page-home-scenes .calc-pro [data-customs-calculator] .calc-segmented:not(.calc-segmented-dual) {
        grid-template-columns: 1fr;
    }

    .page-home-scenes .calc-pro .calc-platform-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .page-home-scenes .calc-pro .calc-platform-option span {
        min-height: 58px;
        padding: 8px;
    }

    .page-home-scenes .calc-pro .calc-control-pair--year-engine {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
    }

    .page-home-scenes .calc-pro .calc-result {
        padding: 16px;
        border-radius: 12px;
    }

    .page-home-scenes .calc-pro .calc-final-total > strong {
        font-size: clamp(34px, 11vw, 48px);
    }

    .page-home-scenes .calc-pro .calc-quote-lines li {
        align-items: flex-start;
        gap: 12px;
    }

    .page-home-scenes #scene-about > .about-premium,
    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        min-height: auto;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__panel {
        width: 100%;
        padding: 18px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__features {
        grid-template-columns: 1fr;
    }

    .page-home-scenes .home-contact-cta {
        min-height: auto;
        padding: 0;
    }

    .page-home-scenes .home-contact-cta__content {
        width: 100%;
        margin-left: 0;
        padding: 22px 18px;
    }
}

@media (max-width: 767px) {
    html[lang="ka"] .page-services .service-hero__title,
    html[lang="ka"] .page-services .service-hero__title *,
    html[lang="ka"] .page-services .service-hero__text,
    html[lang="ka"] .page-services .service-hero__button,
    html[lang="ka"] .page-services .service-hero__meta-item {
        max-width: 100%;
        white-space: normal !important;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none;
    }

    html[lang="ka"] .page-services .service-hero__title {
        font-size: clamp(23px, 6.2vw, 31px);
        line-height: 1.08;
    }

    html[lang="ka"] .page-home-scenes .hero-heading,
    html[lang="ka"] .page-home-scenes [data-home-stage] > #home-hero .hero-heading,
    html[lang="ka"] .page-home-scenes .hero-heading span,
    html[lang="ka"] .page-home-scenes .hero-heading-tail,
    html[lang="ka"] .page-home-scenes .services-title,
    html[lang="ka"] .page-home-scenes .service-card__copy h3,
    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__title,
    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__feature strong,
    html[lang="ka"] .page-home-scenes .home-contact-cta__title {
        max-width: 100%;
        white-space: normal !important;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none;
    }

    html[lang="ka"] .page-home-scenes .hero-heading,
    html[lang="ka"] .page-home-scenes [data-home-stage] > #home-hero .hero-heading {
        width: min(100%, 10.6ch);
        font-size: clamp(25px, 8.9vw, 36px);
        line-height: 1.04;
    }

    html[lang="ka"] .page-home-scenes .hero-text,
    html[lang="ka"] .page-home-scenes .hero-btn,
    html[lang="ka"] .page-home-scenes .services-cta-btn,
    html[lang="ka"] .page-home-scenes .services-trust-item span,
    html[lang="ka"] .page-home-scenes .service-card__copy p,
    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__eyebrow,
    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__stat span,
    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__stat strong,
    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__cta,
    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__feature span,
    html[lang="ka"] .page-home-scenes .home-contact-cta__text,
    html[lang="ka"] .page-home-scenes .home-contact-cta__button {
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__title {
        width: 100%;
        font-size: clamp(1.25rem, 6.4vw, 1.85rem);
        line-height: 1.08;
    }

    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__feature strong {
        font-size: clamp(0.78rem, 3.5vw, 0.94rem);
        line-height: 1.25;
        letter-spacing: 0;
    }

    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__stat strong {
        font-size: clamp(1.18rem, 6vw, 1.65rem);
        line-height: 1.05;
    }

    html[lang="ka"] .page-home-scenes #scene-about > .about-premium .about-premium__stat:nth-child(2) strong {
        font-size: clamp(1rem, 5vw, 1.34rem);
    }
}

@media (max-width: 380px) {
    .page-home-scenes [data-home-stage] > .home-scene > .content-section > .container,
    .page-home-scenes [data-home-stage] > .home-scene > .container,
    .page-home-scenes .home-scene-calculator-shell {
        width: min(calc(100% - 20px), var(--container));
    }

    .page-home-scenes .hero-home .hero-content {
        padding-inline: 14px;
    }

    .page-home-scenes .hero-heading,
    .page-home-scenes [data-home-stage] > #home-hero .hero-heading,
    .page-home-scenes .services-title {
        font-size: clamp(28px, 11vw, 40px);
    }

    .page-home-scenes [data-home-stage] > .home-scene > .content-section {
        padding: 24px 0 !important;
    }

    .page-home-scenes .hero-home .hero-content {
        min-height: clamp(560px, 84svh, 700px);
        padding-bottom: 24px;
    }

    .page-home-scenes .hero-actions {
        flex-direction: column;
    }

    .page-home-scenes .hero-btn,
    .page-home-scenes .services-cta-btn,
    .page-home-scenes .home-contact-cta__button {
        width: 100%;
    }

    .page-home-scenes .calc-pro .calc-control-pair--year-engine {
        gap: 8px;
    }
}

@media (max-width: 767px) {
    html[lang="ka"] .page-home-scenes .hero-heading,
    html[lang="ka"] .page-home-scenes [data-home-stage] > #home-hero .hero-heading {
        overflow-wrap: normal;
        word-break: keep-all;
    }

    html[lang="ka"] .page-home-scenes .services-title,
    html[lang="ka"] .page-home-scenes .service-card__copy h3,
    html[lang="ka"] .page-home-scenes .service-card-featured .service-card__copy h3,
    html[lang="ka"] .page-home-scenes .service-card-compact .service-card__copy h3,
    html[lang="ka"] .page-services .service-hero__title {
        width: 100%;
        max-width: 100%;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: none;
        text-wrap: wrap;
    }

    html[lang="ka"] .page-home-scenes .hero-heading,
    html[lang="ka"] .page-home-scenes [data-home-stage] > #home-hero .hero-heading {
        font-size: clamp(20px, 6.9vw, 28px);
        line-height: 1.08;
    }

    html[lang="ka"] .page-home-scenes .hero-heading span,
    html[lang="ka"] .page-home-scenes .hero-heading-tail {
        white-space: normal !important;
        overflow-wrap: normal;
        word-break: keep-all;
        hyphens: none;
    }

    html[lang="ka"] .page-home-scenes .hero-heading .hero-heading-lead,
    html[lang="ka"] .page-home-scenes .hero-heading .hero-heading-tail {
        display: block !important;
        width: fit-content;
        max-width: 100%;
    }

    html[lang="ka"] .page-home-scenes .services-title {
        font-size: clamp(24px, 7.4vw, 32px);
        line-height: 1.08;
    }

    html[lang="ka"] .page-home-scenes .service-card__copy,
    html[lang="ka"] .page-home-scenes .service-card-compact .service-card__copy {
        min-width: 0;
        max-width: 100%;
    }

    html[lang="ka"] .page-home-scenes .service-card__copy h3,
    html[lang="ka"] .page-home-scenes .service-card-featured .service-card__copy h3,
    html[lang="ka"] .page-home-scenes .service-card-compact .service-card__copy h3 {
        font-size: clamp(20px, 6.6vw, 28px);
        line-height: 1.12;
    }

    html[lang="ka"] .page-services .service-hero__title {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.12;
    }
}

@media (max-width: 380px) {
    html[lang="ka"] .page-home-scenes .hero-heading,
    html[lang="ka"] .page-home-scenes [data-home-stage] > #home-hero .hero-heading {
        font-size: clamp(19px, 6.4vw, 25px);
        line-height: 1.1;
    }

    html[lang="ka"] .page-home-scenes .services-title {
        font-size: clamp(22px, 7vw, 29px);
    }

    html[lang="ka"] .page-home-scenes .service-card__copy h3,
    html[lang="ka"] .page-home-scenes .service-card-featured .service-card__copy h3,
    html[lang="ka"] .page-home-scenes .service-card-compact .service-card__copy h3 {
        font-size: clamp(19px, 6.2vw, 25px);
    }
}

@media (max-width: 767px) {
    .page-home-scenes .home-scene {
        min-height: 0 !important;
        display: block;
    }

    .page-home-scenes [data-home-stage] > .home-scene > .content-section {
        padding: 18px 0 !important;
    }

    .page-home-scenes .hero-home .hero-content {
        min-height: clamp(500px, 76svh, 640px);
        padding-top: calc(var(--nav-height) + 14px);
        padding-bottom: 18px;
    }

    .page-home-scenes .section-heading,
    .page-home-scenes .home-scene-heading {
        margin-bottom: 12px;
    }

    .page-home-scenes .home-scene-services > .content-section > .container.services-shell,
    .page-home-scenes .home-scene-journey-shell,
    .page-home-scenes #scene-journey .home-scene-journey-grid {
        gap: 14px;
    }

    .page-home-scenes .services-stack {
        gap: 12px;
    }

    .page-home-scenes .service-card,
    .page-home-scenes .service-card-featured,
    .page-home-scenes .service-card-compact {
        min-height: clamp(170px, 48vw, 240px);
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__inner {
        padding: 30px 0 18px;
        gap: 12px;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__features {
        gap: 8px;
        padding: 8px 0;
    }

    .page-home-scenes #scene-about > .about-premium .about-premium__feature {
        padding: 12px 0;
    }

    .page-home-scenes .calc-pro .calc-system {
        gap: 12px;
        padding: 14px;
    }

    .page-home-scenes .home-scene-contact,
    .page-home-scenes .home-contact-cta {
        min-height: 0 !important;
    }

    .page-home-scenes .home-contact-cta__content {
        padding: 18px;
    }
}

@media (max-width: 380px) {
    .page-home-scenes [data-home-stage] > .home-scene > .content-section {
        padding: 14px 0 !important;
    }

    .page-home-scenes .hero-home .hero-content {
        min-height: clamp(470px, 74svh, 600px);
        padding-bottom: 14px;
    }
}
