
:root {
    --gold: #f59e0b;
    --gold-hover: #d97706;
    --coral: #e63946;
    --coral-dark: #c1272d;
    --graphite: #0f172a;
    --graphite-light: #475569;
    --white: #ffffff;
    --surface: #f8fafc;
    --surface-dark: #f1f5f9;
    --border: #e2e8f0;
    --tech-green: #10b981;
    --tech-green-light: #d1fae5;
    --blue: #2563eb;
    --blue-deep: #1d4ed8;
    --blue-night: #1e1b4b;

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 32px rgba(30, 41, 59, 0.08);

    --ease-smooth: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snappy: cubic-bezier(0.4, 0, 0.2, 1);

    --duration-instant: 150ms;
    --duration-snappy: 200ms;
    --duration-base: 280ms;
    --duration-deliberate: 450ms;
    --duration-reveal: 650ms;

    --transition: all var(--duration-base) var(--ease-smooth);

    --header-height: 80px;
    --max-narrow: 680px;
    --max-wide: 880px;
    --gap-grid: 28px;
    --section-pad-y: 112px;
    --section-pad-y-mobile: 72px;
    --section-pad-y-sm: 56px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--graphite);
    background: var(--white);

    scrollbar-gutter: stable;
}

html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
    max-width: 100vw;
}

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

h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--graphite-light);
}

.highlight-coral { color: var(--coral); }

.section-tagline {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--coral-dark);
    margin-bottom: 12px;
    display: block;
}

.section-header {
    text-align: center;
    max-width: var(--max-narrow);
    margin: 0 auto 56px auto;
}

.section-header--wide {
    max-width: var(--max-wide);
}

.section-header--tight {
    margin-bottom: 44px;
}

.section-header p {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 112px 0;

    scroll-margin-top: calc(var(--header-height) - 16px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    justify-content: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background var(--duration-base) var(--ease-smooth), backdrop-filter var(--duration-base) var(--ease-smooth), border-color var(--duration-base) var(--ease-smooth);
    z-index: 1000;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.header-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
}

nav.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--graphite);
    transition: var(--transition);

    padding: 8px 0;
}

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

nav.nav-links a.active-link {
    color: var(--coral);
}

nav.nav-links a.btn-primary,
nav.nav-links a.btn-primary:hover {
    color: #000;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--graphite);
    cursor: pointer;

    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
    flex-shrink: 0;
}

header.scrolled .mobile-toggle {
    opacity: 1;
    visibility: visible;
}

.mobile-toggle:hover {
    background: var(--surface);
}

.mobile-toggle[aria-expanded="true"] {
    color: var(--coral);
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    box-shadow: var(--shadow-sm);
    z-index: 990;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 350ms var(--ease-smooth),
                opacity 250ms var(--ease-smooth),
                visibility 250ms var(--ease-smooth);
    overflow-y: auto;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 5%;
    gap: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--graphite);
    transition: color 0.2s ease;

    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active-link {
    color: var(--coral);
}

.mobile-nav-links a.btn-primary {
    color: #000;
    width: 100%;
    max-width: 280px;
    margin-top: 8px;
    padding: 14px 24px;
    min-height: auto;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lang-switcher .lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--graphite-light);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.lang-switcher .lang-link:not(.lang-link--active):hover,
.lang-switcher .lang-link:not(.lang-link--active):focus-visible {
    color: var(--coral);
}

.lang-switcher .lang-link--active {
    background: var(--graphite);
    color: var(--white);
    cursor: default;
}

.lang-switcher--mobile {
    font-size: 0.9rem;
    padding: 6px;
}

.lang-switcher--mobile .lang-link {
    min-width: 44px;
    min-height: 32px;
    padding: 6px 14px;
}

.btn {
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;

    min-height: 44px;
    line-height: 1;

    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.btn-secondary {
    background: var(--white);
    color: var(--graphite);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--graphite-light);
    transform: translateY(-2px);
}

.btn.btn--sm {
    padding: 10px 22px;
    font-size: 0.88rem;
    min-height: 38px;
}

.btn.btn--lg {
    padding: 18px 32px;
    font-size: 1rem;
}

.btn.btn--block {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity var(--duration-reveal) var(--ease-out-quint),
                transform 750ms var(--ease-out-quint);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }
.reveal-scale  { transform: scale(0.92); }
.reveal-zoom   { transform: translateY(28px) scale(0.94); }

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-zoom.active {
    transform: none;
}

.reveal-children > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 600ms var(--ease-out-quint),
                transform 700ms var(--ease-out-quint);
    will-change: opacity, transform;
}

.reveal-children > *.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-children.reveal-pop > * {
    transform: translateY(36px) scale(0.88);
}

.reveal-children.reveal-pop > *.is-visible {
    transform: none;
}

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

.hero-content > .hero-badges,
.hero-content > h1,
.hero-content > p,
.hero-content > .hero-buttons {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > .hero-badges { animation-delay: 0.1s; }
.hero-content > h1           { animation-delay: 0.2s; }
.hero-content > p            { animation-delay: 0.32s; }
.hero-content > .hero-buttons { animation-delay: 0.44s; }

.hero-wrapper {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    background-color: #fafafa;
    overflow: hidden;
}

.hero-wrapper::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(247, 190, 136, 0.5) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.hero {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 8px;
    padding-bottom: 200px;
}

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

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.badge {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--shadow-sm);
    line-height: 1.2;
}

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

.scene-3d {
    perspective: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 580px;
}

.interactive-tilt {
    position: relative;
    width: 310px;
    height: 630px;
    transform-style: preserve-3d;
    will-change: transform;
}

.base-isometric {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(-35deg);
}

.phone-chassis {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 48px;
    border: 11px solid #e2e8f0;
    box-shadow: -14px 24px 0 0 #cbd5e1, -38px 56px 36px rgba(15, 23, 42, 0.18);
    transform-style: preserve-3d;
}

.phone-chassis::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(105deg, rgba(255,255,255,0.75) 0%, transparent 40%);
    pointer-events: none;
    z-index: 50;
}

.phone-screen {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 22px 14px;
    border: 2px solid #f1f5f9;
}

.island {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 28px;
    background: #0f172a;
    border-radius: 20px;
    z-index: 10;
}

.g-top-bar {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.g-user {
    width: 26px;
    height: 26px;
    background: #e2e8f0;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    flex-shrink: 0;
}

.g-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fake-search {
    width: 100%;
    height: 42px;
    background: white;
    border-radius: 100px;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    display: flex;
    align-items: center;
    padding: 0 14px;
    margin-bottom: 14px;
    gap: 8px;
    color: var(--graphite);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.fake-search svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.fake-pills {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.fake-pill {
    padding: 5px 13px;
    background: #f8f9fa;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--graphite-light);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.fake-pill.active {
    background: #e8f0fe;
    color: #1a73e8;
    border-color: #1a73e8;
}

.screen-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    overflow: hidden;
}

.grid-placeholder {
    background: #f1f5f9;
    border-radius: 10px;
}

.grid-placeholder--preview {
    overflow: hidden;
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 6px;
    gap: 4px;
    animation: previewPulse 2.6s ease-in-out infinite;
}

.grid-placeholder--preview .product-img {
    width: 100%;
    height: 40%;
    object-fit: cover;
    border-radius: 6px;
    background: var(--surface);
    display: block;
    flex-shrink: 0;
}

.grid-placeholder--preview .preview-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    flex-grow: 1;
    min-height: 0;
}

.grid-placeholder--preview .product-title {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--graphite);
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-placeholder--preview .product-price {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
}

.grid-placeholder--preview .product-stars {
    display: flex;
    gap: 1px;
    align-items: center;
}

.grid-placeholder--preview .css-badge {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--graphite-light);
    background: var(--surface);
    padding: 1px 5px;
    border-radius: 2px;
    border: 1px solid var(--border);
    display: inline-block;
    align-self: flex-start;
    line-height: 1.2;
    flex-shrink: 0;
}

@keyframes previewPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45); }
    60%      { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0); }
}

.floating-card {
    position: absolute;
    width: 155px;
    background: white;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 14px;
    padding: 11px;
    box-shadow: -22px 32px 44px rgba(0,0,0,0.13);
    border: 1px solid var(--border);
    transform-style: preserve-3d;
    will-change: transform;
}

.card-1 { top: 145px; left: -58px; animation: breathC1 6s ease-in-out infinite alternate; }
.card-2 { top: 310px; right: -58px; animation: breathC2 7s ease-in-out infinite alternate; }
.card-3 { top: 475px; left: -8px; animation: breathC3 5s ease-in-out infinite alternate; box-shadow: -16px 24px 32px rgba(0,0,0,0.15); }

.product-img {
    width: 100%;
    height: 115px;
    background: var(--surface);
    border-radius: 9px;
    margin-bottom: 10px;
    object-fit: cover;
    display: block;
}

.product-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--graphite);
    line-height: 1.2;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 5px;
}

.product-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 9px;
    align-items: center;
}

.css-badge {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--graphite-light);
    background: var(--surface);
    padding: 3px 7px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid var(--border);
}

@keyframes breathC1 {
    from { transform: translateZ(88px) translateY(0px); }
    to   { transform: translateZ(98px) translateY(-5px); }
}
@keyframes breathC2 {
    from { transform: translateZ(146px) translateY(0px); }
    to   { transform: translateZ(160px) translateY(-5px); }
}
@keyframes breathC3 {
    from { transform: translateZ(70px) translateY(0px); }
    to   { transform: translateZ(82px) translateY(-4px); }
}

.partners-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 0;
    background: linear-gradient(to top, var(--white) 25%, transparent);
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper {
    --marquee-gap: 72px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--marquee-gap);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    min-width: 100%;
    animation: scrollMarquee 30s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

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

.marquee-track img {
    height: 28px;
    width: auto;
    min-width: 80px;
    opacity: 0.28;
    filter: grayscale(100%);
    transition: opacity var(--duration-base) var(--ease-smooth), filter var(--duration-base) var(--ease-smooth);
    object-fit: contain;
    pointer-events: auto;
}

.marquee-track img:hover {
    opacity: 0.75;
    filter: grayscale(0%);
}

@keyframes scrollMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-100% - var(--marquee-gap))); }
}

#scroll-sequence {
    height: 300vh;
    position: relative;
    background: linear-gradient(120deg, #0f172a, #1e1b4b, #0f172a);
    background-size: 200% 200%;
    animation: darkAuroraMove 15s ease-in-out infinite alternate;
    color: var(--white);
}

@keyframes darkAuroraMove {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}

#scroll-sequence::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.scroll-progress-container {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 28vh;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
}

.scroll-progress-bar {
    width: 100%;
    background: var(--coral);
    border-radius: 4px;
    height: 0%;
    transition: height 0.08s linear;
    box-shadow: 0 0 12px var(--coral);
}

.scroll-text-container {
    padding: 0 20px;
    max-width: 800px;
}

.scroll-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: block;
    transition: opacity 250ms var(--ease-smooth);
}

.scroll-title {
    font-size: clamp(2.2rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    transition: opacity 250ms var(--ease-smooth), transform 300ms var(--ease-out-quint);
    will-change: transform, opacity;
}

.glow-text {
    color: #e63946;
    text-shadow: 0 0 28px rgba(230, 57, 70, 0.6);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { text-shadow: 0 0 12px rgba(230, 57, 70, 0.4); }
    to   { text-shadow: 0 0 40px rgba(230, 57, 70, 0.95); }
}

#cloud-features {
    height: 250vh;
    position: relative;
    background-color: var(--surface);
}

.cloud-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mega-counter {
    font-size: clamp(3.2rem, 7.5vw, 5.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--graphite);
    margin: 12px 0 18px;
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.mega-counter #products-counter {
    color: var(--coral);
}

.counter-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--graphite);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.cloud-center {
    text-align: center;
    z-index: 10;
    padding: 48px 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    max-width: 720px;
}

.cloud-item {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(150px) scale(0.9);
    will-change: transform, opacity;
    z-index: 5;
    display: flex;
    flex-direction: column;
}

.cloud-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cloud-grid {
    display: contents;
}

#cloud-features {
    content-visibility: auto;
    contain-intrinsic-size: 100vh;
}

.c-left-1 { top: 15%; left: 20%; width: 140px; height: 140px; }
.c-left-2 { top: 45%; left: 10%; width: 180px; height: 130px; }
.c-left-3 { bottom: 15%; left: 22%; width: 160px; height: 160px; }

.c-right-1 { top: 10%; right: 22%; width: 150px; height: 180px; }
.c-right-2 { top: 40%; right: 10%; width: 170px; height: 140px; }
.c-right-3 { bottom: 20%; right: 20%; width: 140px; height: 140px; }

.c-extra-1 { top: 8%;  left: 42%; width: 110px; height: 130px; }
.c-extra-2 { top: 68%; left: 36%; width: 125px; height: 115px; }
.c-extra-3 { top: 32%; right: 36%; width: 120px; height: 150px; }
.c-extra-4 { bottom: 8%; right: 38%; width: 135px; height: 125px; }
.c-extra-5 { top: 55%; left: 44%; width: 105px; height: 125px; }
.c-extra-6 { bottom: 38%; left: 48%; width: 130px; height: 110px; }

.c-extra-7  { top: 2%;   left: 10%;  width: 90px;  height: 100px; }
.c-extra-8  { top: 2%;   right: 12%; width: 95px;  height: 105px; }
.c-extra-9  { bottom: 2%; left: 12%; width: 100px; height: 90px;  }
.c-extra-10 { bottom: 4%; right: 10%; width: 105px; height: 95px;  }
.c-extra-11 { top: 30%;  left: 2%;   width: 85px;  height: 120px; }
.c-extra-12 { top: 32%;  right: 2%;  width: 90px;  height: 125px; }
.c-extra-13 { bottom: 40%; left: 1%;  width: 90px;  height: 105px; }
.c-extra-14 { bottom: 45%; right: 1%; width: 95px;  height: 110px; }
.c-extra-15 { top: 20%;  left: 62%;  width: 105px; height: 90px;  }
.c-extra-16 { top: 78%;  left: 58%;  width: 100px; height: 95px;  }
.c-extra-17 { top: 50%;  left: 28%;  width: 95px;  height: 100px; }
.c-extra-18 { top: 18%;  left: 30%;  width: 90px;  height: 105px; }
.c-extra-19 { top: 82%;  left: 22%;  width: 100px; height: 90px;  }
.c-extra-20 { top: 2%;   left: 60%;  width: 85px;  height: 95px;  }
.c-extra-21 { bottom: 2%; right: 50%; width: 95px;  height: 85px;  }

@media (min-width: 769px) and (max-width: 992px) {
    .cloud-item { z-index: 1; opacity: 0.25 !important; }
    .cloud-center { background: transparent; backdrop-filter: none; box-shadow: none; border: none; padding: 0 5%; }
}

@media (max-width: 768px) {
    #cloud-features {
        height: auto;
        padding: 72px 0;
    }

    .cloud-sticky {
        position: static;
        height: auto;
        display: block;
        overflow: visible;
    }

    .cloud-center {
        position: relative;
        max-width: 100%;
        padding: 0 5%;
        margin: 0 auto 40px auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
    }

    .cloud-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 480px;
        margin: 0 auto;
        padding: 0 5%;
    }

    .cloud-grid .c-extra-1,
    .cloud-grid .c-extra-2,
    .cloud-grid .c-extra-3,
    .cloud-grid .c-extra-4,
    .cloud-grid .c-extra-5,
    .cloud-grid .c-extra-6,
    .cloud-grid .c-extra-7,
    .cloud-grid .c-extra-8,
    .cloud-grid .c-extra-9,
    .cloud-grid .c-extra-10,
    .cloud-grid .c-extra-11,
    .cloud-grid .c-extra-12,
    .cloud-grid .c-extra-13,
    .cloud-grid .c-extra-14,
    .cloud-grid .c-extra-15,
    .cloud-grid .c-extra-16,
    .cloud-grid .c-extra-17,
    .cloud-grid .c-extra-18,
    .cloud-grid .c-extra-19,
    .cloud-grid .c-extra-20,
    .cloud-grid .c-extra-21 {
        display: none;
    }

    .cloud-item,
    .c-left-1, .c-left-2, .c-left-3,
    .c-right-1, .c-right-2, .c-right-3 {
        position: static;
        width: auto;
        height: auto;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        aspect-ratio: 1;
        will-change: auto;
        z-index: auto;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .cloud-grid .cloud-item img {
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    }

    .cloud-center.active ~ .cloud-grid .cloud-item {
        opacity: 1;
        transform: none;
    }

    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(1)  { transition-delay: 0.05s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(2)  { transition-delay: 0.11s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(3)  { transition-delay: 0.17s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(4)  { transition-delay: 0.23s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(5)  { transition-delay: 0.29s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(6)  { transition-delay: 0.35s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(7)  { transition-delay: 0.41s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(8)  { transition-delay: 0.47s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(9)  { transition-delay: 0.53s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(10) { transition-delay: 0.59s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(11) { transition-delay: 0.65s; }
    .cloud-center.active ~ .cloud-grid .cloud-item:nth-child(12) { transition-delay: 0.71s; }
}

#services, #coverage, #faq {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}
#benefits, #contact {
    position: relative;
    z-index: 2;
}

.section--surface {
    background: var(--surface);
}

#coverage {
    overflow: hidden;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

#services .card {
    align-items: center;
    text-align: center;
}

#services .card-icon {
    margin: 0 auto 22px auto;
}

.card {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.card--featured {
    border-color: var(--coral);
}

.card--horizontal {
    flex-direction: row;
    gap: 22px;
    align-items: center;
}

.card--horizontal .card-icon {
    margin: 0;
}

.card-icon--coral {
    background: var(--coral);
    color: var(--white);
    border: none;
}

.card-icon--circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.card-text {
    flex-grow: 1;
    margin: 0;
}

.card--horizontal p {
    font-size: 0.95rem;
}

#benefits .card-icon {
    margin-bottom: 0;
}

.countries-track {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.countries-scroll {
    display: inline-flex;
    animation: scrollLeft 50s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.countries-scroll.reverse {
    animation: scrollRight 55s linear infinite;
}

.countries-scroll.slow {
    animation-duration: 65s;
}

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

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.country-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 11px 22px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--graphite);
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    margin-right: 14px;
    flex-shrink: 0;
}

.country-card:hover {
    border-color: var(--tech-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.13);
}

.country-card img {
    width: 22px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
}

.country-card small {
    color: var(--graphite-light);
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

#requirements {
    background: linear-gradient(120deg, #0f172a, #1e1b4b, #0f172a);
    background-size: 200% 200%;
    animation: darkAuroraMove 15s ease-in-out infinite alternate;
    color: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#requirements::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

#requirements .container {
    position: relative;
    z-index: 1;
}

#requirements h2 { color: var(--white); }
#requirements p { color: #cbd5e1; }

.req-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: none;
    transition: var(--transition);
}

.req-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.req-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-text {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.45;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--graphite);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    padding: 22px 0;
    transition: color 0.2s ease;
    min-height: 44px;
}

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

.faq-question:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.faq-chevron {
    transition: transform var(--duration-base) var(--ease-smooth);
    color: var(--coral);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms var(--ease-smooth);
}

.faq-answer p {
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 1rem;
    color: var(--graphite-light);
    line-height: 1.65;
}

.faq-item:last-child {
    border-bottom: none;
}

.contact-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-control {
    width: 100%;
    padding: 15px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--surface);
    transition: var(--transition);
    color: var(--graphite);
    font-size: max(16px, 0.95rem);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    color: var(--graphite-light);
}

select.form-control option { color: var(--graphite); }
select.form-control.has-value { color: var(--graphite); }

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.field {
    margin-bottom: 14px;
}

.field-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--graphite);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.field-required {
    color: var(--coral);
    font-weight: 700;
    margin-left: 2px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--gold);
}

.checkbox-label span {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--graphite-light);
}

.checkbox-label a {
    color: var(--graphite);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-control.error {
    border-color: var(--coral);
    background: #fff5f5;
}

.field-error {
    font-size: 0.78rem;
    color: var(--coral);
    margin-top: 4px;
    display: none;
}

footer {
    padding: 28px 5%;
    text-align: center;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

footer p {
    font-size: 0.78rem;
    color: var(--graphite);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--graphite-light);
    font-size: 0.72rem;
    text-decoration: none;
    transition: color 0.2s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-base) var(--ease-smooth), visibility var(--duration-base) var(--ease-smooth);
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: 100%;
    max-width: 640px;
    max-height: 88vh;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 48px -8px rgba(0, 0, 0, 0.22);
    transform: translateY(16px) scale(0.99);
    transition: transform 380ms var(--ease-out-quint);
    overflow: hidden;
}

.modal-overlay.is-open .modal-container { transform: translateY(0) scale(1); }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header h2 { margin: 0; font-size: 1.35rem; letter-spacing: -0.02em; }

.modal-close {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    cursor: pointer;
    color: var(--graphite-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--white);
    color: var(--coral);
    border-color: var(--coral);
    transform: rotate(90deg);
}

.modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.modal-body {
    padding: 28px 30px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.95rem;
    color: var(--graphite-light);
    line-height: 1.7;
    text-align: left;
}

.modal-body img,
.modal-body video,
.modal-body table { max-width: 100%; height: auto; }

.modal-body h2,
.modal-body h3,
.modal-body h4 { color: var(--graphite); margin: 22px 0 10px; font-size: 1.05rem; font-weight: 700; }
.modal-body h2:first-child,
.modal-body h3:first-child,
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 14px; font-size: 0.95rem; }
.modal-body ul { margin-bottom: 14px; padding-left: 18px; }
.modal-body li { margin-bottom: 6px; }
.modal-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }

.modal-body::-webkit-scrollbar { width: 5px; }
.modal-body::-webkit-scrollbar-track { background: var(--surface); border-radius: 4px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.modal-body::-webkit-scrollbar-thumb:hover { background: var(--graphite-light); }

.loader-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px 0; }
.loader { border: 3px solid var(--surface-dark); border-top: 3px solid var(--coral); border-radius: 50%; width: 28px; height: 28px; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.skip-link {
    position: absolute; top: -100%; left: 0; background: var(--gold); color: #000;
    font-weight: 700; padding: 12px 20px; z-index: 9999; text-decoration: none;
    border-radius: 0 0 var(--radius-sm) 0; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

* {
    -webkit-tap-highlight-color: transparent;
}

.btn:active,
.card:active,
.country-card:active,
.req-item:active,
.faq-question:active,
.modal-close:active,
.mobile-toggle:active {
    transform: scale(0.98);
}

@media (hover: none), (pointer: coarse) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .card:hover,
    .country-card:hover,
    .req-item:hover,
    .modal-close:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .card:hover {
        border-color: var(--border);
    }

    .country-card:hover {
        border-color: var(--border);
    }

    .req-item:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .modal-close:hover {
        background: var(--surface);
        color: var(--graphite-light);
        border-color: var(--border);
        transform: none;
    }

    .marquee-track img:hover {
        opacity: 0.28;
        filter: grayscale(100%);
    }

    .marquee-wrapper:hover .marquee-track,
    .countries-track:hover .countries-scroll {
        animation-play-state: running;
    }
}

header {
    padding-top: env(safe-area-inset-top, 0);
}

.mobile-menu {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

footer {
    padding-bottom: max(28px, env(safe-area-inset-bottom, 0) + 12px);
}

.modal-container {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    section {
        padding: 72px 0;
    }

    nav.nav-links {
        display: none;
    }

    .header-container {
        position: relative;
        justify-content: flex-end;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .mobile-toggle {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    header .mobile-toggle {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 24px;
        padding-bottom: 24px;
        text-align: center;
    }

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

    .hero-content p {
        max-width: 100% !important;
        text-align: center;
        font-size: 0.98rem;
    }

    .hero-content h1 {
        margin-bottom: 16px;
    }

    .hero-badges {
        justify-content: center;
        margin-bottom: 14px;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }

    .hero-image-wrapper {
        display: none;
    }

    .hero-wrapper {
        min-height: 100svh;
    }

    .partners-section {
        position: static;
        padding: 24px 0 calc(env(safe-area-inset-bottom, 0px) + 20px);
        background: transparent;
        pointer-events: auto;
    }

    .marquee-wrapper {
        --marquee-gap: 36px;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .marquee-track {
        animation-duration: 22s;
    }

    .marquee-track img {
        height: 22px;
        min-width: 56px;
        opacity: 0.45;
    }

    .grid-3,
    .grid-2,
    .req-list {
        grid-template-columns: 1fr;
    }

    .card--horizontal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

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

    .contact-wrapper {
        padding: 32px 20px;
        border-radius: var(--radius-md);
    }

    #scroll-sequence {
        height: 200vh;
    }

    .scroll-progress-container {
        display: none;
    }

    .scroll-text-container {
        padding: 0 24px;
    }

    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-container {
        max-height: 92vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 56px 0;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .card {
        padding: 24px;
    }

    .contact-wrapper {
        padding: 24px 16px;
    }

    .modal-header {
        padding: 16px 20px;
    }

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