/* ============================================================
   FEDER — V8 (Compact Hero + iOS Lattice Fix)
   ============================================================ */

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

html,
body {
    overflow-x: hidden;
}

.page-wrapper {
    overflow-x: clip;
    position: relative;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    background: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Asian Lattice Pattern — truly fixed via ::before (iOS compatible) */
.lattice-bg {
    background-color: var(--bg-main);
}

.lattice-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='none' stroke='%2338bdf8' stroke-opacity='0.1' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

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

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

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
    --bg-main: #ffffff;
    --bg-surface: #f8fafc;

    --blue-sky: #38bdf8;
    --blue-azure: #0284c7;
    --gold-light: #fcd34d;
    --gold-rich: #d97706;
    --gold-accent: #fbbf24;

    --gradient-hero: linear-gradient(135deg, var(--blue-azure) 0%, #ffffff 100%);
    --gradient-accent: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-rich) 100%);
    --gradient-blue: linear-gradient(135deg, var(--blue-sky) 0%, var(--blue-azure) 100%);

    --text-primary: #020617;
    --text-muted: #64748b;
    --text-dark: #1e293b;

    --border-subtle: rgba(2, 132, 199, 0.15);
    --border-strong: rgba(2, 132, 199, 0.4);
    --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.05);
    --shadow-heavy: 0 40px 100px rgba(2, 6, 23, 0.25);
    --shadow-gold: 0 10px 30px rgba(217, 119, 6, 0.3);

    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.ambient-glow.gold {
    background: var(--gold-rich);
}

.ambient-glow.blue {
    background: var(--blue-azure);
}

.asian-accent-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #dc2626;
    color: white;
    font-size: 14px;
    font-weight: 800;
    border-radius: 4px;
    transform: rotate(5deg);
    margin-left: 12px;
    vertical-align: super;
    font-family: sans-serif;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 5px;
}

.text-gradient.gold {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-lang] {
    display: none;
    transition: opacity 0.3s;
}

[data-lang].active {
    display: revert;
}

span[data-lang].active,
a[data-lang].active {
    display: inline;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    position: relative;
    padding: 8rem 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    color: #fff;
    padding: 1.5rem 3.5rem;
    box-shadow: 0 15px 40px rgba(180, 83, 9, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 50px rgba(180, 83, 9, 0.6);
}

.btn-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
}

.navbar .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.navbar-logo span.er {
    color: var(--text-primary);
}

.lang-switcher button {
    display: inline-block;
    background: none;
    border: none;
    color: #cbd5e1;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.875rem;
    margin-left: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switcher button:hover {
    color: var(--blue-sky);
}

.lang-switcher button.active {
    color: var(--blue-azure);
    text-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(2, 132, 199, 0.05);
    border: 1px solid var(--border-subtle);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--blue-azure);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Hero illustration — in flow, full brightness */
.hero-illustration {
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 500px;
    border-left: 4px solid var(--gold-accent);
    padding-left: 1rem;
}

/* Hero team photo block */
.hero-team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-team-divider {
    display: none;
}

.hero-mask {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--blue-sky), var(--blue-azure), var(--gold-accent));
    padding: 4px;
    box-shadow:
        0 25px 50px rgba(2, 132, 199, 0.2),
        0 0 0 1px rgba(2, 132, 199, 0.08);
}

.hero-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: contrast(1.05);
    border-radius: 17px;
}

.hero-photo-label {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ============================================================
   Section Titles & Dividers
   ============================================================ */
.section-title {
    position: relative;
    text-align: center;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 5rem;
    padding-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px;
}

/* ============================================================
   Trusted By Grid
   ============================================================ */
.trusted-section {
    background: var(--bg-surface);
    padding: 5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trusted-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trusted-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: all 0.4s ease;
    animation: breathing 4s ease-in-out infinite alternate;
}

.trusted-logo:nth-child(even) {
    animation-delay: 1s;
    animation-duration: 5s;
}

.trusted-logo:nth-child(3n) {
    animation-delay: 2s;
    animation-duration: 4.5s;
}

.trusted-logo.logo-large {
    height: 55px;
}

@keyframes breathing {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.trusted-logo:hover {
    transform: scale(1.05) translateY(0);
    animation-play-state: paused;
}

/* ============================================================
   Geography
   ============================================================ */
.geo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.geo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid var(--blue-sky);
    border-radius: 0 32px 0 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    z-index: 1;
}

.geo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
    border-color: var(--blue-azure);
}

.geo-watermark {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    z-index: 0;
    opacity: 0.10;
    pointer-events: none;
    transform-origin: bottom right;
    transform: scale(0.9);
    transition: transform 2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 2s ease;
}

.geo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.geo-card:hover .geo-watermark,
.geo-card.in-view .geo-watermark {
    opacity: 0.3;
    transform: scale(1.15);
}

.geo-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.geo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0;
    text-transform: none;
}

.geo-title::after {
    display: none;
}

.geo-countries {
    list-style: none;
    margin-bottom: 2rem;
    border-left: 3px solid var(--gold-accent);
    padding-left: 1rem;
    position: relative;
    z-index: 1;
}

.geo-countries li {
    padding: 4px 0;
    color: var(--text-dark);
    font-weight: 600;
}

.geo-countries li strong {
    color: var(--blue-azure);
    font-weight: 800;
}

.geo-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Stats Section & Tags
   ============================================================ */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stats-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--blue-azure), transparent);
    opacity: 0.3;
}

.stats-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 1rem;
}

.stats-num {
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.85;
    color: var(--blue-azure);
}

.stats-sym-large {
    font-size: 2.5rem;
    color: var(--gold-rich);
    font-weight: 800;
    margin-right: 4px;
}

.stats-unit {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-rich);
    display: flex;
    align-items: baseline;
}

.stats-desc {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 250px;
    text-align: center;
}

.stats-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.stats-feature {
    background: var(--bg-surface);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-strong);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.stats-feature::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-azure);
}

.stats-feature:hover {
    border-color: var(--blue-azure);
    transform: translateY(-2px);
    color: var(--blue-azure);
}

/* ============================================================
   CTA & Contact Island
   ============================================================ */
.contact-section {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.cta-wrapper {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    border-radius: 40px 0 40px 0;
    background: linear-gradient(135deg, var(--blue-sky), var(--blue-azure), var(--gold-accent), var(--gold-rich));
    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
    padding: 3px;
    box-shadow: var(--shadow-heavy);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-island {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 40%, #fef3c7 100%);
    border-radius: 37px 0 37px 0;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.cta-title::after {
    display: none;
}

.cta-subtitle {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   Messenger Icons + Wave Animation
   ============================================================ */
.messenger-cluster {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 3rem;
}

.messenger-icon {
    width: 65px;
    height: 65px;
    background: transparent;
    border: 2px solid var(--border-strong);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    animation: icon-wave 5s ease-in-out infinite;
}

.messenger-icon:nth-child(1) { animation-delay: 0s; }
.messenger-icon:nth-child(2) { animation-delay: 0.4s; }
.messenger-icon:nth-child(3) { animation-delay: 0.8s; }
.messenger-icon:nth-child(4) { animation-delay: 1.2s; }
.messenger-icon:nth-child(5) { animation-delay: 1.6s; }

@keyframes icon-wave-tm {
    0%, 30%, 100% { transform: translateY(0); border-color: rgba(2,132,199,0.4); color: var(--text-dark); }
    10% { transform: translateY(-6px); border-color: #0088cc; color: #0088cc; box-shadow: 0 8px 20px rgba(0,136,204,0.2); }
}
@keyframes icon-wave-ig {
    0%, 30%, 100% { transform: translateY(0); border-color: rgba(2,132,199,0.4); color: var(--text-dark); }
    10% { transform: translateY(-6px); border-color: #E1306C; color: #E1306C; box-shadow: 0 8px 20px rgba(225,48,108,0.2); }
}
@keyframes icon-wave-vk {
    0%, 30%, 100% { transform: translateY(0); border-color: rgba(2,132,199,0.4); color: var(--text-dark); }
    10% { transform: translateY(-6px); border-color: #0077FF; color: #0077FF; box-shadow: 0 8px 20px rgba(0,119,255,0.2); }
}
@keyframes icon-wave-max {
    0%, 30%, 100% { transform: translateY(0); border-color: rgba(2,132,199,0.4); color: var(--text-dark); }
    10% { transform: translateY(-6px); border-color: #8B5CF6; color: #8B5CF6; box-shadow: 0 8px 20px rgba(139,92,246,0.2); }
}
@keyframes icon-wave-wc {
    0%, 30%, 100% { transform: translateY(0); border-color: rgba(2,132,199,0.4); color: var(--text-dark); }
    10% { transform: translateY(-6px); border-color: #07c160; color: #07c160; box-shadow: 0 8px 20px rgba(7,193,96,0.2); }
}

.messenger-icon.tm-icon { animation-name: icon-wave-tm; }
.messenger-icon.ig-icon { animation-name: icon-wave-ig; }
.messenger-icon.vk-icon { animation-name: icon-wave-vk; }
.messenger-icon.max-icon { animation-name: icon-wave-max; }
.messenger-icon.wechat-icon { animation-name: icon-wave-wc; }

.messenger-icon svg,
.messenger-icon img {
    width: 32px;
    height: 32px;
    fill: currentColor;
    object-fit: contain;
}

.messenger-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    animation-play-state: paused;
}

.messenger-icon.tm-icon:hover {
    border-color: #0088cc;
    color: #0088cc;
}

.messenger-icon.ig-icon:hover {
    border-color: #E1306C;
    color: #E1306C;
}

.messenger-icon.vk-icon:hover {
    border-color: #0077FF;
    color: #0077FF;
}

.messenger-icon.max-icon:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
    background: linear-gradient(225deg, rgba(139, 92, 246, 0.15) 0%, rgba(56, 189, 248, 0.15) 100%);
}

.messenger-icon.wechat-icon:hover {
    border-color: #07c160;
    color: #07c160;
}

.contact-info-block {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-item {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--blue-azure);
}

/* CTA button — pulse ring only, no scale */
.btn-pulse {
    position: relative;
    width: 100%;
    max-width: 350px;
    font-size: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

.btn-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    animation: gold-ring 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes gold-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(251, 191, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.promo-credit {
    margin-top: 0.75rem;
    font-size: 0.6rem;
    font-weight: 300;
    opacity: 0.18;
    letter-spacing: 0.2px;
}

.promo-credit a {
    color: var(--text-muted);
    transition: opacity 0.3s;
}

.promo-credit a:hover {
    opacity: 1;
}

.nowrap {
    white-space: nowrap;
}

.airplane-divider {
    text-align: center;
    padding: 0.5rem 0;
    line-height: 0;
    overflow: hidden;
}

.airplane-divider svg {
    width: 100%;
    max-width: 800px;
    height: 60px;
    margin: 0 auto;
    display: block;
}

.airplane-trail {
    stroke-dashoffset: 0;
}

.geo-section {
    padding-bottom: 4rem;
}

.stats-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   Media Queries
   ============================================================ */
@media (max-width: 900px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .hero-badge {
        padding: 5px 10px;
        font-size: 0.6rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .hero-illustration {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary {
        padding: 1.1rem 2.25rem;
        font-size: 0.85rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-team-divider {
        display: block;
        width: 60px;
        height: 3px;
        background: var(--gradient-accent);
        border-radius: 3px;
        margin: 2.5rem auto;
    }

    .hero-mask {
        margin: 0 auto;
        max-width: 100%;
    }

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

    .geo-watermark {
        width: 180px;
        height: 180px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .stats-block:not(:last-child)::after {
        display: none;
    }

    .stats-block:not(:last-child) {
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 2rem;
        width: 100%;
    }

    .messenger-icon {
        width: 50px;
        height: 50px;
    }
    .messenger-icon svg, .messenger-icon img {
        width: 26px;
        height: 26px;
    }
    .messenger-cluster {
        gap: 0.75rem;
    }

    .contact-info-block {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-island {
        padding: 3rem 1.5rem;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .navbar {
        height: 60px;
    }

    .navbar-brand {
        gap: 0.75rem;
    }

    .navbar-brand img {
        height: 32px;
    }

    .navbar-logo {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .asian-accent-mark {
        width: 22px;
        height: 22px;
        font-size: 11px;
        margin-left: 6px;
    }

    .lang-switcher button {
        margin-left: 0.75rem;
        font-size: 0.75rem;
    }
}