/* ═══════════════════════════════════════════════
   MusorOK — Apple-Inspired Design System
   Cinematic scroll, dramatic typography, pure minimalism
   ═══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-400: #86868b;
    --gray-500: #6e6e73;
    --gray-600: #424245;
    --gray-800: #1d1d1f;
    --gray-900: #141414;

    --green-light: #30d158;
    --green: #34c759;
    --green-dark: #248a3d;
    --cyan: #64d2ff;

    --gradient: linear-gradient(135deg, #34c759 0%, #30d158 30%, #64d2ff 100%);
    --gradient-text: linear-gradient(90deg, #34c759, #64d2ff);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 48px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.accent {
    color: var(--green);
}

/* ── Gradient text ── */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════
   NAVIGATION — Apple glass bar
   ══════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 48px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: background 0.3s;
}

.nav-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-logo-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    display: inline-block;
}

/* ── Language Switcher ── */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font);
    padding: 3px 10px;
    border-radius: 980px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px) scale(0.98);
    transition: all 0.2s var(--ease);
    z-index: 10000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-family: var(--font);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.lang-option.active {
    color: var(--green);
    background: rgba(52, 199, 89, 0.1);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 0.75rem;
    color: var(--white);
    background: var(--green);
    padding: 4px 14px;
    border-radius: 980px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--green-dark);
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    position: relative;
}

.nav-burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.nav-burger span:first-child {
    top: 6px;
}

.nav-burger span:last-child {
    top: 13px;
}

.nav-burger.open span:first-child {
    top: 9px;
    transform: rotate(45deg);
}

.nav-burger.open span:last-child {
    top: 9px;
    transform: rotate(-45deg);
}

/* ══════════════════════════════
   HERO — Cinematic full-screen
   ══════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 22px 80px;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-400);
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    padding: 14px 30px;
    background: var(--green);
    color: var(--white);
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 30px rgba(52, 199, 89, 0.3);
}

.btn-primary-hero:hover {
    background: var(--green-dark);
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(52, 199, 89, 0.5);
}

.btn-ghost-hero {
    padding: 14px 30px;
    color: var(--cyan);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-ghost-hero:hover {
    color: var(--white);
}

/* Phone 3D container */
.hero-phone-3d {
    perspective: 1200px;
    margin-top: 60px;
    z-index: 2;
    position: relative;
    transition: transform 0.1s ease-out;
}

.hero-phone {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(5deg) rotateY(-8deg);
    transition: transform 0.3s ease-out;
    animation: phone-float 6s ease-in-out infinite;
}

.phone-frame {
    position: relative;
    overflow: visible;
}

.hero-phone-img {
    max-width: 300px;
    display: block;
    border-radius: 32px;
}

/* Screen glare - hidden for transparent mockup */
.phone-glare {
    display: none;
}

/* Reflection below phone */
.phone-reflection {
    margin-top: 8px;
    transform: scaleY(-1) perspective(400px) rotateX(15deg);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
    opacity: 0.35;
    pointer-events: none;
}

.phone-reflection-img {
    max-width: 300px;
    display: block;
    border-radius: 32px;
    filter: blur(2px);
}

.hero-phone-glow {
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.15) 0%, rgba(100, 210, 255, 0.06) 40%, transparent 60%);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite alternate;
}

/* Floating animation */
@keyframes phone-float {

    0%,
    100% {
        transform: rotateX(5deg) rotateY(-8deg) translateY(0px);
    }

    50% {
        transform: rotateX(3deg) rotateY(-6deg) translateY(-12px);
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ══════════════════════════════
   STATS RIBBON
   ══════════════════════════════ */
.ribbon {
    background: var(--gray-900);
    padding: 40px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ribbon-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.ribbon-stat {
    text-align: center;
}

.ribbon-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
}

.ribbon-plus,
.ribbon-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    margin-left: 2px;
}

.ribbon-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.ribbon-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════
   FIRST IN KAZAKHSTAN — WOW Section
   ══════════════════════════════ */
.section-firstkz {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 22px 100px;
    overflow: hidden;
    text-align: center;
    background: var(--black);
}

/* ── Full-bleed parallax background ── */
.firstkz-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.firstkz-bg-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center 30%;
    transform: translateY(-10%);
    transition: transform 0.1s linear;
}

.firstkz-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.75) 40%,
            rgba(0, 0, 0, 0.92) 75%,
            #000000 100%);
}

/* ── Floating badge ── */
.firstkz-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(52, 199, 89, 0.15);
    border: 1px solid rgba(52, 199, 89, 0.4);
    border-radius: 980px;
    color: var(--green-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
    animation: badge-glow 3s ease-in-out infinite alternate;
}

.firstkz-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52, 199, 89, 0.6);
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 0 20px rgba(52, 199, 89, 0.1);
    }

    100% {
        box-shadow: 0 0 40px rgba(52, 199, 89, 0.25);
    }
}

/* ── Hero text ── */
.firstkz-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.firstkz-headline {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 24px;
}

.firstkz-sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ── Sorting bins showcase ── */
.firstkz-sorting {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.firstkz-sorting-img {
    max-width: 600px;
    width: 100%;
    border-radius: 24px;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Impact counters ── */
.firstkz-impact {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.impact-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.impact-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    margin-left: 2px;
}

.impact-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.impact-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
}

/* ── CTA button ── */
.firstkz-cta {
    position: relative;
    z-index: 2;
}

.firstkz-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--green);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 980px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 40px rgba(52, 199, 89, 0.3);
    letter-spacing: 0.01em;
}

.firstkz-cta-btn:hover {
    background: var(--green-dark);
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(52, 199, 89, 0.5);
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .section-firstkz {
        padding: 80px 16px 60px;
        min-height: auto;
    }

    .firstkz-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .firstkz-sorting-img {
        max-width: 100%;
        border-radius: 16px;
    }

    .firstkz-impact {
        gap: 24px;
        padding: 24px 20px;
    }

    .impact-divider {
        display: none;
    }

    .impact-num {
        font-size: 2rem;
    }

    .firstkz-cta-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* ══════════════════════════════
   SECTIONS — Common
   ══════════════════════════════ */
.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-headline {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.section-headline.dark {
    color: var(--gray-800);
}

/* ── DARK SECTION ── */
.section-dark {
    background: var(--black);
    padding: 120px 22px;
    text-align: center;
}

/* ── LIGHT SECTION ── */
.section-light {
    background: var(--gray-100);
    padding: 120px 22px;
    text-align: center;
}

/* ══════════════════════════════
   HOW IT WORKS — Step cards
   ══════════════════════════════ */
.step-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 980px;
    margin: 60px auto 0;
    padding: 0 22px;
}

.step-card {
    flex: 1;
    max-width: 300px;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(52, 199, 89, 0.3);
    transform: translateY(-8px);
}

.step-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.step-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ══════════════════════════════
   FEATURES — Large reveal rows
   ══════════════════════════════ */
.feature-showcase {
    max-width: 980px;
    margin: 80px auto 0;
    padding: 0 22px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-200);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-text-block {
    text-align: left;
}

.feature-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.feature-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 400px;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-metric {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.metric-number {
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-unit {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-400);
}

/* ══════════════════════════════
   PRICING — Dark cards
   ══════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 60px auto 0;
    padding: 0 22px;
    align-items: start;
}

.price-card {
    border-radius: 20px;
    padding: 44px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: all 0.4s var(--ease);
    position: relative;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.price-card.featured {
    background: rgba(52, 199, 89, 0.06);
    border-color: rgba(52, 199, 89, 0.3);
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--green);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 980px;
    letter-spacing: 0.03em;
}

.price-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.price-card-price {
    margin-bottom: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-left: 4px;
}

.price-card-per {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.price-features {
    margin-bottom: 32px;
}

.price-features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
}

.price-cta {
    display: block;
    text-align: center;
    padding: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 980px;
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.price-cta:hover {
    border-color: var(--cyan);
    background: rgba(100, 210, 255, 0.05);
}

.featured-cta {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.featured-cta:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

/* ══════════════════════════════
   ECO — Cinematic numbers
   ══════════════════════════════ */
.section-eco {
    background: var(--black);
    padding: 120px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-eco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.eco-sub {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto 80px;
    line-height: 1.7;
}

.eco-numbers {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 980px;
    margin: 0 auto;
}

.eco-num-card {
    text-align: center;
}

.eco-big-num {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.eco-big-pct,
.eco-big-unit {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--green);
}

.eco-num-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
    line-height: 1.4;
}

/* ══════════════════════════════
   DOWNLOAD — CTA
   ══════════════════════════════ */
.section-download {
    background: linear-gradient(to bottom, var(--black) 0%, #0a1a0a 100%);
    padding: 120px 22px;
    text-align: center;
}

.download-inner {
    max-width: 600px;
    margin: 0 auto;
}

.download-headline {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
}

.download-sub {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.download-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s var(--ease);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.store-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.store-btn small {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-400);
}

.store-btn strong {
    display: block;
    font-size: 1rem;
}

.download-courier {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.link-accent {
    color: var(--green);
}

.link-accent:hover {
    color: var(--cyan);
}

/* ══════════════════════════════
   FAQ
   ══════════════════════════════ */
.section-faq {
    background: var(--white);
    padding: 120px 22px;
    text-align: center;
}

.faq-list {
    max-width: 680px;
    margin: 60px auto 0;
    text-align: left;
}

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

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
}

.faq-q:hover {
    color: var(--green);
}

.faq-q svg {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--gray-400);
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-a p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
    background: var(--gray-100);
    padding: 40px 22px 20px;
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
    line-height: 1.5;
}

.footer-cols {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.footer-col a {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    padding: 3px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

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

.footer-social a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--green);
}

/* ══════════════════════════════
   VALUE — Why sorting matters
   ══════════════════════════════ */
.section-value {
    background: var(--black);
    overflow: hidden;
}

.value-hero-img {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.value-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 6s var(--ease-out);
}

.value-hero-img.visible img {
    transform: scale(1.05);
}

.value-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 60px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: background 0.4s var(--ease);
}

.value-card:last-child {
    border-right: none;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.value-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ══════════════════════════════
   RECYCLING — Process pipeline
   ══════════════════════════════ */
.section-recycle {
    padding-bottom: 0;
}

.recycle-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 22px;
}

.recycle-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    max-width: 260px;
}

.recycle-step-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.recycle-step-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.recycle-step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.recycle-step:hover .recycle-step-img img {
    transform: scale(1.08);
}

.recycle-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.recycle-step p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.55;
}

.recycle-arrow {
    font-size: 1.5rem;
    color: var(--green);
    padding-top: 80px;
    flex-shrink: 0;
    opacity: 0.5;
}

/* Materials grid */
.recycle-materials {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 22px;
}

.recycle-materials-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.material-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.material-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(52, 199, 89, 0.3);
    transform: translateY(-4px);
}

.material-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.material-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.material-info {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-400);
    line-height: 1.55;
}

/* ══════════════════════════════
   NEWS — Kazakhstan Green Plan
   ══════════════════════════════ */
.section-news {
    background: var(--white);
    padding: 120px 22px 80px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.news-card {
    background: var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Featured card spans full width */
.news-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.news-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.news-featured .news-card-img {
    aspect-ratio: auto;
    min-height: 320px;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.news-card:hover .news-card-img img {
    transform: scale(1.06);
}

.news-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--green);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.news-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.news-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.news-featured .news-card-body h3 {
    font-size: 1.5rem;
}

.news-card-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-200);
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

/* Before/After contrast */
.news-contrast {
    max-width: 1000px;
    margin: 80px auto 0;
    text-align: center;
}

.contrast-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.contrast-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.contrast-img {
    width: 100%;
    height: auto;
    display: block;
}

.contrast-labels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
}

.contrast-label-left,
.contrast-label-right {
    flex: 1;
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contrast-label-left {
    background: rgba(0, 0, 0, 0.7);
    color: #ff4d4d;
    text-align: center;
}

.contrast-label-right {
    background: rgba(52, 199, 89, 0.85);
    color: var(--white);
    text-align: center;
}

/* ══════════════════════════════
   ANIMATIONS — Apple-style
   ══════════════════════════════ */

/* Fade in from below */
.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.anim-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale up */
.anim-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.anim-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide up with stagger */
.anim-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.anim-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
[data-delay="1"] {
    transition-delay: 0.15s !important;
}

[data-delay="2"] {
    transition-delay: 0.3s !important;
}

[data-delay="3"] {
    transition-delay: 0.45s !important;
}

[data-delay="4"] {
    transition-delay: 0.6s !important;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: block;
    }

    /* Mobile menu */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 48px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.96);
        backdrop-filter: blur(30px);
        padding: 40px 22px;
        gap: 24px;
        z-index: 9998;
    }

    .nav-links.open a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--white);
    }

    .hero {
        padding: 100px 22px 60px;
    }

    .hero-phone-img,
    .phone-reflection-img {
        max-width: 220px;
    }

    .hero-phone {
        animation: none;
        transform: rotateX(3deg) rotateY(-4deg);
    }

    .phone-reflection {
        display: none;
    }

    .step-cards {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        max-width: 100%;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 0;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-text-block {
        text-align: center;
    }

    .feature-desc {
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-4px);
    }

    .ribbon-inner {
        flex-direction: column;
        gap: 24px;
    }

    .ribbon-divider {
        width: 60px;
        height: 1px;
    }

    .eco-numbers {
        flex-direction: column;
        gap: 40px;
    }

    .download-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-cols {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Value section mobile */
    .value-hero-img {
        height: 50vh;
        min-height: 350px;
    }

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

    .value-card {
        padding: 40px 20px;
    }

    /* Recycling pipeline mobile */
    .recycle-pipeline {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .recycle-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .recycle-step {
        max-width: 100%;
    }

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

    /* News mobile */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-featured {
        grid-template-columns: 1fr;
    }

    .news-featured .news-card-img {
        min-height: 200px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

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

/* ══════════════════════════════
   APP SERVICES — Feature cards
   ══════════════════════════════ */
.services-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 22px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(52, 199, 89, 0.25);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1;
}

.service-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 980px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-badge.live {
    background: rgba(52, 199, 89, 0.15);
    color: var(--green);
    border: 1px solid rgba(52, 199, 89, 0.35);
}

.service-badge.coming {
    background: rgba(255, 214, 10, 0.1);
    color: #ffd60a;
    border: 1px solid rgba(255, 214, 10, 0.25);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ══════════════════════════════
   CONTACTS — Glassmorphism cards
   ══════════════════════════════ */
.section-contacts {
    background: var(--black);
    padding: 120px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-contacts::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(52, 199, 89, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contacts-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 400px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 22px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s var(--ease);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(52, 199, 89, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    transition: all 0.3s var(--ease);
}

.contact-card:hover .contact-icon {
    background: var(--green);
    transform: scale(1.08);
}

.contact-icon-instagram {
    background: linear-gradient(135deg, rgba(233, 89, 80, 0.2), rgba(131, 58, 180, 0.2));
}

.contact-card:hover .contact-icon-instagram {
    background: linear-gradient(135deg, #e95950, #833ab4);
}

.contact-icon-whatsapp {
    background: rgba(37, 211, 102, 0.15);
}

.contact-card:hover .contact-icon-whatsapp {
    background: #25d366;
}

.contact-icon-telegram {
    background: rgba(0, 136, 204, 0.15);
}

.contact-card:hover .contact-icon-telegram {
    background: #0088cc;
}

.contact-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.contact-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--gray-500);
    transition: all 0.3s var(--ease);
}

.contact-card:hover .contact-arrow {
    color: var(--green);
    transform: translateX(4px);
}

/* ══════════════════════════════
   PRICING — Extras
   ══════════════════════════════ */
.pricing-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 0;
}

.price-savings {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.savings-highlight {
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
}

.price-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--green);
    margin-top: 16px;
    font-weight: 500;
    opacity: 0.8;
}

.price-amount-small {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-right: 4px;
}

/* Price comparison row */
.price-comparison {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 0 22px;
}

.comparison-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.comparison-price {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
}

.comparison-price.old {
    color: var(--gray-500);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 77, 77, 0.6);
}

.comparison-per {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.comparison-arrow {
    font-size: 1.5rem;
    color: var(--green);
    opacity: 0.6;
}

.comparison-item.highlight .comparison-price {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-save {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(52, 199, 89, 0.12);
    border: 1px solid rgba(52, 199, 89, 0.3);
    border-radius: 980px;
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Footer contact info */
.footer-contact-info {
    margin-top: 12px;
}

.footer-contact-info a {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: inline-block;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--green);
}

/* ══════════════════════════════
   RESPONSIVE — New sections
   ══════════════════════════════ */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contact-card {
        padding: 20px 20px;
    }

    .comparison-row {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }
}

/* ══════════════════════════════
   TESTIMONIALS — Social Proof
   ══════════════════════════════ */
.section-testimonials {
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.section-testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 210, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 60px auto 0;
    padding: 0 22px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: left;
    transition: all 0.4s var(--ease);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    pointer-events: none;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(52, 199, 89, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #ffd60a;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-role {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ══════════════════════════════
   SMOOTH SECTION DIVIDERS
   ══════════════════════════════ */
.section-light::before {
    content: '';
    display: block;
    height: 80px;
    margin: -120px -22px 120px;
    background: linear-gradient(to bottom, var(--black) 0%, var(--gray-100) 100%);
    pointer-events: none;
}

.section-news::before {
    content: '';
    display: block;
    height: 80px;
    margin: -120px -22px 120px;
    background: linear-gradient(to bottom, var(--black) 0%, var(--white) 100%);
    pointer-events: none;
}

.section-faq::before {
    content: '';
    display: block;
    height: 80px;
    margin: -120px -22px 120px;
    background: linear-gradient(to bottom, var(--black) 0%, var(--white) 100%);
    pointer-events: none;
}

/* ══════════════════════════════
   STEP CARDS — Connector Lines
   ══════════════════════════════ */
.step-cards {
    position: relative;
}

.step-card {
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(52, 199, 89, 0.4), rgba(100, 210, 255, 0.4));
    transform: translateY(-50%);
    border-radius: 1px;
}

.step-num {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.1);
    border: 1.5px solid rgba(52, 199, 89, 0.3);
}

/* ══════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(52, 199, 89, 0.9);
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(52, 199, 89, 0.25);
}

/* ══════════════════════════════
   PRICING CTA — Glow Pulse
   ══════════════════════════════ */
.featured-cta {
    position: relative;
    animation: cta-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(52, 199, 89, 0.2);
    }

    50% {
        box-shadow: 0 0 35px rgba(52, 199, 89, 0.45), 0 0 60px rgba(52, 199, 89, 0.15);
    }
}

.price-card.featured {
    overflow: hidden;
}

.price-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(52, 199, 89, 0.04),
            transparent);
    transition: left 0.8s var(--ease);
    pointer-events: none;
}

.price-card.featured:hover::before {
    left: 100%;
}

/* ══════════════════════════════
   HERO — Ghost Button Enhancement
   ══════════════════════════════ */
.btn-ghost-hero {
    border: 1px solid rgba(100, 210, 255, 0.3);
    border-radius: 980px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(100, 210, 255, 0.05);
}

.btn-ghost-hero:hover {
    border-color: rgba(100, 210, 255, 0.6);
    background: rgba(100, 210, 255, 0.1);
}

/* ══════════════════════════════
   RESPONSIVE — New components
   ══════════════════════════════ */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .section-light::before,
    .section-news::before,
    .section-faq::before {
        height: 50px;
        margin-top: -80px;
        margin-bottom: 80px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ══════════════════════════════════════
   WOW EFFECT 1: Animated Gradient Mesh
   ══════════════════════════════════════ */
.gradient-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform;
}

.mesh-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.3) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: mesh-drift-1 15s ease-in-out infinite;
}

.mesh-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 210, 255, 0.25) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation: mesh-drift-2 18s ease-in-out infinite;
}

.mesh-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.2) 0%, transparent 70%);
    bottom: -5%;
    left: 30%;
    animation: mesh-drift-3 20s ease-in-out infinite;
}

@keyframes mesh-drift-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, 40px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 80px) scale(0.95);
    }
}

@keyframes mesh-drift-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-60px, 50px) scale(1.05);
    }

    66% {
        transform: translate(40px, -30px) scale(1.1);
    }
}

@keyframes mesh-drift-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -40px) scale(1.15);
    }

    66% {
        transform: translate(-40px, 60px) scale(0.9);
    }
}

/* ══════════════════════════════════════
   WOW EFFECT 2: Cursor Glow
   ══════════════════════════════════════ */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: left, top;
    mix-blend-mode: screen;
}

.cursor-glow.active {
    opacity: 1;
}

/* ══════════════════════════════════════
   WOW EFFECT 4: Noise Texture Overlay
   ══════════════════════════════════════ */
.noise-svg {
    position: absolute;
    width: 0;
    height: 0;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    filter: url(#noiseFilter);
    background: transparent;
    mix-blend-mode: overlay;
}

/* ══════════════════════════════════════
   WOW EFFECT 3: 3D Card Tilt
   ══════════════════════════════════════ */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.tilt-card .testimonial-text,
.tilt-card .testimonial-author,
.tilt-card .testimonial-stars,
.tilt-card .service-icon,
.tilt-card h3,
.tilt-card p {
    transform: translateZ(20px);
}

/* ══════════════════════════════════════
   WOW EFFECT 5: Magnetic Buttons
   ══════════════════════════════════════ */
.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ══════════════════════════════════════
   WOW EFFECT 6: Staggered Cascade
   ══════════════════════════════════════ */
.anim-slide-up[data-delay="1"] {
    transition-delay: 0.1s;
}

.anim-slide-up[data-delay="2"] {
    transition-delay: 0.2s;
}

.anim-slide-up[data-delay="3"] {
    transition-delay: 0.3s;
}

.anim-slide-up[data-delay="4"] {
    transition-delay: 0.4s;
}

.anim-slide-up[data-delay="5"] {
    transition-delay: 0.5s;
}

.anim-fade[data-delay="1"] {
    transition-delay: 0.15s;
}

.anim-fade[data-delay="2"] {
    transition-delay: 0.3s;
}

.anim-fade[data-delay="3"] {
    transition-delay: 0.45s;
}

.anim-fade[data-delay="4"] {
    transition-delay: 0.6s;
}

/* Stagger FAQ items */
.faq-item:nth-child(1) {
    transition-delay: 0s;
}

.faq-item:nth-child(2) {
    transition-delay: 0.08s;
}

.faq-item:nth-child(3) {
    transition-delay: 0.16s;
}

.faq-item:nth-child(4) {
    transition-delay: 0.24s;
}

.faq-item:nth-child(5) {
    transition-delay: 0.32s;
}

/* Stagger grid cards */
.service-card:nth-child(1) {
    transition-delay: 0s;
}

.service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) {
    transition-delay: 0.3s;
}

.service-card:nth-child(5) {
    transition-delay: 0.4s;
}

.service-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ══════════════════════════════════════
   WOW EFFECTS — Batch 2
   ══════════════════════════════════════ */

/* 1. Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--green));
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
    z-index: 10001;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
}

@keyframes progress-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 2. Hero Particles Canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 3. Animated Gradient Text Shimmer */
.gradient-text {
    background: linear-gradient(90deg,
            var(--green) 0%,
            var(--cyan) 25%,
            #a8edea 50%,
            var(--cyan) 75%,
            var(--green) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 4s ease-in-out infinite;
}

@keyframes gradient-flow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* 4. Text Reveal — letter-by-letter */
.hero-headline .reveal-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(40deg);
    animation: letter-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes letter-reveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* 5. Section Parallax depth */
.parallax-section {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Animated number counter glow */
.stat-number.counting {
    text-shadow: 0 0 20px rgba(52, 199, 89, 0.6);
    transition: text-shadow 0.3s ease;
}

/* ══════════════════════════════════════
   RESPONSIVE — Disable WOW on mobile
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }

    .gradient-mesh {
        opacity: 0.4;
    }

    .mesh-blob {
        filter: blur(60px);
    }
}

@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}

/* ══════════════════════════════
   LIVE COURIER COUNTER
   ══════════════════════════════ */
.ribbon-stat-live {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin-bottom: 6px;
    animation: live-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52, 199, 89, 0.6);
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(52, 199, 89, 0.6);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 16px rgba(52, 199, 89, 0.3);
    }
}

.ribbon-stat-live .ribbon-num {
    font-size: 2rem;
    color: var(--green);
}

/* ══════════════════════════════
   QR CODE — Desktop only
   ══════════════════════════════ */
.download-qr {
    margin-top: 32px;
    text-align: center;
}

.qr-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#qrCanvas {
    border-radius: 12px;
    background: white;
    padding: 8px;
}

.qr-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

/* Hide QR on mobile (they're already on their phone) */
@media (max-width: 768px) {
    .download-qr {
        display: none;
    }
}

/* ══════════════════════════════
   EXIT-INTENT POPUP
   ══════════════════════════════ */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.exit-popup.active {
    pointer-events: auto;
    opacity: 1;
}

.exit-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.exit-popup-card {
    position: relative;
    max-width: 420px;
    width: 90%;
    padding: 48px 36px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.exit-popup.active .exit-popup-card {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.exit-popup-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.exit-popup-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.exit-popup-card p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 28px;
}

.exit-popup-card p strong {
    color: var(--green);
}

.exit-popup-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--green);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 980px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 30px rgba(52, 199, 89, 0.3);
    margin-bottom: 12px;
}

.exit-popup-cta:hover {
    background: var(--green-dark);
    transform: scale(1.04);
    box-shadow: 0 0 50px rgba(52, 199, 89, 0.5);
}

.exit-popup-dismiss {
    display: block;
    margin: 0 auto;
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 16px;
    font-family: var(--font);
    transition: color 0.2s;
}

.exit-popup-dismiss:hover {
    color: var(--gray-400);
}

/* ══════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════ */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--green);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: background 0.2s;
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.3);
}

.sticky-cta-btn:hover {
    background: var(--green-dark);
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }

    /* Offset back-to-top button so it doesn't overlap sticky CTA */
    .back-to-top.visible {
        bottom: 80px;
    }
}

/* ══════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    flex-wrap: wrap;
}

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

.cookie-banner p {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-accept {
    padding: 6px 20px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 980px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-accept:hover {
    background: var(--green-dark);
}

.cookie-link {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-link:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 16px 20px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
}