/* ══════════════════════════════════════════════════════════════════
   TrudLink — Main Stylesheet
   Color Palette: Deep Blue + Golden Yellow (Construction theme)
   ══════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    /* Primary — Deep Blue */
    --blue-50:  #EBF0FA;
    --blue-100: #D0DDEF;
    --blue-200: #A1BBE0;
    --blue-300: #7299D0;
    --blue-400: #4377C1;
    --blue-500: #2A5FAE;
    --blue-600: #1A3A6B;
    --blue-700: #142E55;
    --blue-800: #0F2340;
    --blue-900: #0A172B;
    --blue-950: #060E1B;

    /* Accent — Golden Yellow */
    --yellow-50:  #FFF9E6;
    --yellow-100: #FFF0BF;
    --yellow-200: #FFE080;
    --yellow-300: #FFD040;
    --yellow-400: #FFC107;
    --yellow-500: #E5A800;
    --yellow-600: #CC9600;
    --yellow-700: #997000;
    --yellow-800: #664B00;
    --yellow-900: #332500;

    /* Neutrals */
    --gray-50:  #F8FAFB;
    --gray-100: #F0F3F5;
    --gray-200: #E2E7EB;
    --gray-300: #CBD2D9;
    --gray-400: #9AA5B4;
    --gray-500: #6B7A8D;
    --gray-600: #4A5568;
    --gray-700: #2D3748;
    --gray-800: #1A202C;
    --gray-900: #0D1117;

    /* Semantic */
    --success: #22C55E;
    --danger:  #EF4444;
    --warning: var(--yellow-400);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--blue-600), var(--blue-400));
    --gradient-accent:  linear-gradient(135deg, var(--yellow-400), var(--yellow-300));
    --gradient-hero:    linear-gradient(160deg, var(--blue-950) 0%, var(--blue-800) 40%, var(--blue-700) 70%, #1a3a6b 100%);
    --gradient-text:    linear-gradient(135deg, var(--yellow-300), var(--yellow-400), var(--yellow-300));
    --gradient-glass:   linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));

    /* Shadows */
    --shadow-sm:  0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl:  0 20px 60px rgba(0,0,0,0.20);
    --shadow-glow-blue:   0 0 40px rgba(42,95,174,0.3);
    --shadow-glow-yellow: 0 0 40px rgba(255,193,7,0.3);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 120px);
    --container-max:   1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
code { font-family: var(--font-mono); }

/* ─── Container ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* ─── Section ─── */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow-500);
    background: var(--yellow-50);
    border: 1px solid var(--yellow-200);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--blue-800);
    margin-bottom: 16px;
}

.section__desc {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--gray-500);
    line-height: 1.7;
}

/* ─── Glass Card ─── */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: var(--shadow-lg);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    padding: 12px 28px;
    transition: var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 58, 107, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 58, 107, 0.45);
}

.btn--secondary {
    background: var(--gradient-accent);
    color: var(--blue-800);
    box-shadow: 0 4px 14px rgba(255, 193, 7, 0.35);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--blue-600);
    border-color: var(--blue-200);
}

.btn--outline:hover {
    background: var(--blue-50);
    border-color: var(--blue-400);
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--blue-700);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn--sm { padding: 8px 20px; font-size: 0.875rem; border-radius: var(--radius-sm); }
.btn--lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--full { width: 100%; }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ─── Accent text ─── */
.accent { color: var(--yellow-400); }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Tag ─── */
.tag {
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--blue-50);
    color: var(--blue-600);
    border: 1px solid var(--blue-100);
}


/* ══════════════════════════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--blue-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner { text-align: center; }

.preloader__logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    justify-content: center;
}

.preloader__logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.preloader__bar {
    width: 200px;
    height: 3px;
    background: var(--blue-800);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader__progress {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    animation: preloaderBar 1.5s ease-in-out forwards;
}

@keyframes preloaderBar {
    0%   { width: 0; }
    100% { width: 100%; }
}


/* ══════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition-base), transform 0.35s cubic-bezier(.4,0,.2,1);
    background: transparent;
}

.header.header--hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header__logo {
    display: flex;
    align-items: center;
    z-index: 11;
}

.header__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.header.scrolled .header__link {
    color: var(--gray-600);
}

.header__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .header__link:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 11;
    padding: 4px;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition-base);
}

.header.scrolled .header__burger span {
    background: var(--blue-800);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
    opacity: 0;
}
.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.hero__content { max-width: 580px; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow-400);
    animation: pulse 2s infinite;
}

.hero__title {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__cta .btn--outline {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.2);
}

.hero__cta .btn--outline:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
}

/* Stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat { text-align: center; }

.hero__stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--yellow-400);
    line-height: 1.2;
}

.hero__stat-number::after {
    content: '+';
}

.hero__stat-number--time::after {
    content: '';
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* Phone Mockup */
.hero__visual {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.phone-mockup {
    position: relative;
}

.phone-mockup__frame {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.1),
        var(--shadow-xl),
        0 0 80px rgba(42,95,174,0.2);
    position: relative;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(2deg);
    transition: var(--transition-slow);
}

.phone-mockup:hover .phone-mockup__frame {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-mockup__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: var(--gray-900);
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    background: #1E2B3A;
    border-radius: 28px;
    overflow: hidden;
}

/* ─── Phone Mockup Carousel ─── */
.phone-mockup__carousel {
    position: relative;
    width: 100%;
    height: calc(100% - 28px);
    overflow: hidden;
}

.phone-mockup__slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup__slide-wrap {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.phone-mockup__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 430px;
    height: 932px;
    border: none;
    transform: scale(0.595);
    transform-origin: top left;
    pointer-events: none;
}

.phone-mockup__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 28px;
    background: rgba(0, 0, 0, 0.3);
}

.phone-mockup__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-mockup__dot--active {
    background: var(--yellow-400);
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.4);
}

/* ─── Disabled Button State ─── */
.btn--disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.phone-mockup__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--yellow-400);
    border-radius: 3px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}


/* ══════════════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════════════ */
.marquee {
    background: var(--blue-800);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 1;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--blue-800), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--blue-800), transparent);
}

.marquee__track {
    display: flex;
    width: max-content;
}

.marquee__content {
    display: flex;
    gap: 32px;
    animation: marqueeSlide 30s linear infinite;
    padding-right: 32px;
}

.marquee__content span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

@keyframes marqueeSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Telegram Button ─── */
.btn--telegram {
    background: #2AABEE;
    color: #fff;
    box-shadow: 0 4px 14px rgba(42, 171, 238, 0.35);
}

.btn--telegram:hover {
    background: #229ED9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 171, 238, 0.45);
}


/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ══════════════════════════════════════════════════════════════════ */
.how-it-works {
    background: var(--gray-50);
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.steps__line {
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-200), var(--yellow-300), var(--blue-200));
    opacity: 0.5;
}

.step {
    position: relative;
    text-align: center;
}

.step__number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--blue-100);
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-mono);
}

.step__card {
    padding: 32px 24px;
    text-align: center;
    height: 100%;
}

.step__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow-blue);
}

.step__icon {
    width: 26px;
    height: 26px;
    color: #fff;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-800);
    margin-bottom: 12px;
}

.step__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 16px;
}

.step__tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════════ */
.features {
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 28px;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card__icon-wrap--blue {
    background: var(--blue-50);
    color: var(--blue-600);
}

.feature-card__icon-wrap--yellow {
    background: var(--yellow-50);
    color: var(--yellow-600);
}

.feature-card__icon {
    width: 22px;
    height: 22px;
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-800);
    margin-bottom: 8px;
}

.feature-card__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════════════
   FOR WHOM
   ══════════════════════════════════════════════════════════════════ */
.for-whom {
    background: #fff;
}

.for-whom__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.role-card {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.role-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow-300);
}

.role-card__header {
    padding: 32px 28px;
    text-align: center;
}

.role-card__header--customer {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
}

.role-card__header--executor {
    background: linear-gradient(135deg, var(--yellow-600), var(--yellow-400));
}

.role-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.role-card__icon {
    width: 26px;
    height: 26px;
    color: #fff;
}

.role-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.role-card__subtitle {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.role-card__body {
    padding: 28px;
}

.role-card__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.role-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.role-card__check {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.testimonials {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials__bg-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 58, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

/* ─── Card ─── */
.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow-300);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 193, 7, 0.15);
}

/* ─── Quote icon ─── */
.testimonial-card__quote-icon {
    color: var(--yellow-500);
    opacity: 0.25;
    line-height: 1;
}

/* ─── Stars ─── */
.testimonial-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.testimonial-card__star {
    color: var(--yellow-400);
    font-size: 1rem;
}

.testimonial-card__rating {
    margin-left: 8px;
    color: var(--yellow-600);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ─── Text ─── */
.testimonial-card__text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.75;
    flex: 1;
    position: relative;
}

/* ─── Footer ─── */
.testimonial-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 58, 107, 0.2);
}

.testimonial-card__avatar span {
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    color: var(--blue-800);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card__role {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ─── Badge ─── */
.testimonial-card__badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.testimonial-card__badge--customer {
    background: var(--blue-50);
    color: var(--blue-600);
    border: 1px solid var(--blue-200);
}

.testimonial-card__badge--executor {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ─── Summary bar ─── */
.testimonials__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding: 28px 40px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-lg);
}

.testimonials__summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonials__summary-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-700);
}

.testimonials__summary-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials__summary-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}


/* ══════════════════════════════════════════════════════════════════
   ADVANTAGES BAR
   ══════════════════════════════════════════════════════════════════ */
.advantages {
    background: var(--blue-800);
    padding: 60px 0;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.advantage-item__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--yellow-400);
    line-height: 1.1;
    margin-bottom: 8px;
}

.advantage-item__label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    font-weight: 500;
}


/* ══════════════════════════════════════════════════════════════════
   WHY NOT WHATSAPP
   ══════════════════════════════════════════════════════════════════ */
.why-not-chats {
    background: var(--blue-800);
    overflow: hidden;
}

.why-not-chats .section__tag {
    color: var(--yellow-400);
    border-color: rgba(255, 193, 7, 0.3);
}

.why-not-chats .section__title {
    color: #fff;
}

.why-not-chats .section__desc {
    color: rgba(255, 255, 255, 0.7);
}

.why-not-chats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Override glass-card for dark section */
.why-not-card.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.why-not-card.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.why-not-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 28px 24px 24px;
}

.why-not-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-not-card__icon-wrap--red {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.why-not-card__icon {
    width: 24px;
    height: 24px;
    color: #f87171;
}

.why-not-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.why-not-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-not-card__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.why-not-card__vs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: auto;
}

.why-not-card__vs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.why-not-card__vs-item--bad {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.12);
    color: #fca5a5;
}

.why-not-card__vs-item--good {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.12);
    color: #86efac;
}

.why-not-card__vs-label {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.why-not-card__vs-item--bad .why-not-card__vs-label {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
}

.why-not-card__vs-item--good .why-not-card__vs-label {
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
}

.why-not-chats__bottom {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.why-not-chats__cta {
    font-size: 1.05rem;
    padding: 16px 36px;
    white-space: normal;
    text-align: center;
    max-width: 100%;
}

.why-not-chats__source {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}


/* ══════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════ */
.pricing {
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
    margin: 0 auto;
}

.pricing-card {
    padding: 36px 32px;
    position: relative;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.pricing-card--pro {
    border-color: var(--yellow-300);
    box-shadow: 0 0 40px rgba(255,193,7,0.08);
}

.pricing-card__badge {
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--blue-50);
    color: var(--blue-600);
    margin-bottom: 12px;
}

.pricing-card__badge--pro {
    background: var(--yellow-50);
    color: var(--yellow-700);
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-800);
    margin-bottom: 16px;
}

.pricing-card__price {
    margin-bottom: 4px;
}

.pricing-card__amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-700);
    line-height: 1;
}

.pricing-card--pro .pricing-card__amount {
    color: var(--yellow-600);
}

.pricing-card__period {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
}

.pricing-card__note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pricing-card__features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.pricing-card__check {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════════ */
.faq {
    background: var(--gray-50);
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-800);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: var(--transition-fast);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover {
    color: var(--blue-600);
}

.faq__chevron {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq__item[open] .faq__chevron {
    transform: rotate(180deg);
    color: var(--yellow-500);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════════ */
.cta-section {
    background: #fff;
}

.cta-block {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 64px);
    text-align: center;
}

.cta-block__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.cta-block__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-block__content {
    position: relative;
    z-index: 1;
}

.cta-block__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-block__desc {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-block__buttons {
    margin-bottom: 24px;
}

.cta-block__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-block__trust span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}


/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--blue-950);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 8px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--blue-600);
    color: #fff;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer__link {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    transition: var(--transition-fast);
}

a.footer__link:hover {
    color: var(--yellow-400);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

.footer__madeWith {
    color: rgba(255,255,255,0.25);
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */

/* ─── Touch-friendly defaults ─── */
@media (hover: none) and (pointer: coarse) {
    .glass-card:hover {
        transform: none;
        box-shadow: none;
    }

    .feature-card:hover {
        transform: none;
    }

    .role-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* ─── Mobile nav CTA ─── */
.header__nav-cta {
    display: none;
}

/* ─── Screenshot in phone mockup ─── */
.phone-mockup__screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    border-radius: 28px;
    background-color: #0f1720;
}

/* ═══ Large Tablet (≤1024px) ═══ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero__subtitle {
        margin: 0 auto 32px;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        margin-top: 24px;
    }

    .phone-mockup__frame {
        width: 240px;
        height: 480px;
        transform: none;
    }

    .phone-mockup:hover .phone-mockup__frame {
        transform: none;
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .steps__line {
        display: none;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        margin: 0 auto;
    }

    .testimonials__summary {
        gap: 32px;
        padding: 24px 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ═══ Tablet portrait (≤768px) ═══ */
@media (max-width: 768px) {
    /* Safe areas iOS */
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    /* Header */
    .header {
        padding: 8px 0;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 23, 43, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
    }

    .header__nav .header__link {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.8);
        padding: 14px 28px;
    }

    .header__nav-cta {
        display: inline-flex;
        margin-top: 16px;
        padding: 14px 32px;
        font-size: 1rem;
    }

    .header__burger {
        display: flex;
    }

    .header__actions .header__cta-btn {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero__title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 16px;
    }

    .hero__subtitle {
        font-size: 0.9375rem;
        margin: 0 auto 24px;
    }

    .hero__cta {
        margin-bottom: 32px;
    }

    .hero__cta .btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    .hero__visual {
        margin-top: 16px;
    }

    .phone-mockup__frame {
        width: 200px;
        height: 400px;
        border-radius: 28px;
        padding: 8px;
    }

    .phone-mockup__notch {
        width: 90px;
        height: 18px;
        border-radius: 0 0 12px 12px;
    }

    .phone-mockup__screenshot {
        border-radius: 22px;
    }

    /* Section spacing */
    .section {
        padding: clamp(40px, 6vw, 60px) 0;
    }

    .section__header {
        margin-bottom: clamp(28px, 4vw, 40px);
    }

    .section__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    /* For Whom */
    .for-whom__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .role-card__header {
        padding: 24px 20px;
    }

    .role-card__body {
        padding: 20px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .testimonials__summary {
        gap: 24px;
        padding: 20px 16px;
        flex-wrap: wrap;
    }

    .testimonials__summary-divider {
        display: none;
    }

    .testimonials__summary-value {
        font-size: 1.5rem;
    }

    /* Advantages */
    .advantages {
        padding: 40px 0;
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .advantage-item__number {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .why-not-chats__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-not-card {
        padding: 24px 20px 20px;
    }

    /* Pricing */
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-card__amount {
        font-size: 2.5rem;
    }

    /* FAQ */
    .faq__question {
        padding: 16px 18px;
        font-size: 0.9375rem;
    }

    .faq__answer {
        padding: 0 18px 16px;
        font-size: 0.875rem;
    }

    /* CTA */
    .cta-block {
        padding: 40px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-block__buttons .btn {
        width: 100%;
        padding: 14px 24px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__desc {
        max-width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 0;
    }

    /* Marquee */
    .marquee__content span {
        font-size: 0.8125rem;
    }

    /* Steps */
    .step__card {
        padding: 24px 20px;
    }

    .step__number {
        font-size: 2.5rem;
    }

    /* Scroll indicator hidden on mobile */
    .hero__scroll-indicator {
        display: none;
    }
}

/* ═══ Small Mobile (≤480px) ═══ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 32px;
    }

    .hero__title {
        font-size: 1.75rem;
        line-height: 1.15;
    }

    .hero__title br {
        display: none;
    }

    .hero__subtitle {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .hero__cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .hero__stat-number {
        font-size: 1.375rem;
    }

    .hero__stat-label {
        font-size: 0.75rem;
    }

    .hero__stat-divider {
        width: 1px;
        height: 30px;
    }

    .phone-mockup__frame {
        width: 180px;
        height: 360px;
        border-radius: 24px;
        padding: 6px;
    }

    .phone-mockup__notch {
        width: 80px;
        height: 16px;
        border-radius: 0 0 10px 10px;
    }

    .phone-mockup__screenshot {
        border-radius: 20px;
    }

    .phone-mockup__glow {
        width: 200px;
        height: 200px;
    }

    /* Section */
    .section {
        padding: 36px 0;
    }

    .section__header {
        margin-bottom: 24px;
    }

    .section__tag {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .section__title {
        font-size: 1.375rem;
        margin-bottom: 10px;
    }

    .section__desc {
        font-size: 0.875rem;
    }

    /* Buttons: larger tap targets */
    .btn--lg {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    .btn--full {
        min-height: 48px;
    }

    /* Steps */
    .step__number {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .step__card {
        padding: 20px 16px;
    }

    .step__title {
        font-size: 1.1rem;
    }

    .step__desc {
        font-size: 0.875rem;
    }

    /* Features */
    .feature-card {
        padding: 20px 16px;
    }

    .feature-card__title {
        font-size: 1rem;
    }

    .feature-card__desc {
        font-size: 0.875rem;
    }

    /* Role cards */
    .role-card__title {
        font-size: 1.25rem;
    }

    .role-card__list li {
        font-size: 0.875rem;
    }

    /* Advantages */
    .advantages {
        padding: 32px 0;
    }

    .advantages__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .advantage-item__number {
        font-size: 1.5rem;
    }

    .advantage-item__label {
        font-size: 0.8125rem;
    }

    .why-not-card__title {
        font-size: 1rem;
    }

    .why-not-card__desc {
        font-size: 0.8125rem;
    }

    .why-not-card__vs-item {
        font-size: 0.75rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 24px 18px;
    }

    .pricing-card__amount {
        font-size: 2rem;
    }

    .pricing-card__features li {
        font-size: 0.875rem;
    }

    /* CTA */
    .cta-block {
        padding: 32px 16px;
        border-radius: var(--radius-md);
    }

    .cta-block__title {
        font-size: 1.375rem;
    }

    .cta-block__desc {
        font-size: 0.875rem;
        margin-bottom: 24px;
    }

    .cta-block__trust {
        gap: 12px;
    }

    .cta-block__trust span {
        font-size: 0.8125rem;
    }

    /* Footer */
    .footer__heading {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .footer__link {
        font-size: 0.875rem;
        padding: 5px 0;
    }

    .footer__bottom {
        font-size: 0.75rem;
        padding: 16px 0;
    }

    /* Marquee */
    .marquee {
        padding: 12px 0;
    }

    .marquee__content {
        gap: 20px;
    }

    .marquee__content span {
        font-size: 0.75rem;
    }
}

/* ═══ Extra small (≤360px) ═══ */
@media (max-width: 360px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .hero__badge {
        font-size: 0.6875rem;
        padding: 5px 10px;
    }

    .phone-mockup__frame {
        width: 160px;
        height: 320px;
    }

    .hero__stats {
        gap: 8px;
    }

    .hero__stat-number {
        font-size: 1.25rem;
    }

    .advantages__grid {
        gap: 12px;
    }

    .advantage-item__number {
        font-size: 1.25rem;
    }
}

/* ═══ Landscape phone ═══ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 24px;
    }

    .hero__visual {
        display: none;
    }

    .hero__cta {
        flex-direction: row;
        margin-bottom: 20px;
    }

    .hero__stats {
        flex-direction: row;
    }
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee__content {
        animation: none;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}



/* ═══════ Cookie Banner ═══════ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 32px);
    max-width: 520px;
    background: linear-gradient(135deg, rgba(17, 24, 18, 0.96), rgba(10, 15, 11, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    padding: 28px 24px 24px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow:
        0 0 40px rgba(34, 197, 94, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner.hide {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.5, 0, 0.75, 0), opacity 0.3s ease;
}

.cookie-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.cookie-icon svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}

.cookie-icon span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.cookie-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-text a {
    color: #22c55e;
    text-decoration: none;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.2s ease;
}

.cookie-text a:hover {
    color: #4ade80;
    border-bottom-color: #4ade80;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: -0.01em;
}

.cookie-btn--accept {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.cookie-btn--accept:hover {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
    transform: translateY(-2px);
}

.cookie-btn--accept:active {
    transform: translateY(0);
}

.cookie-btn--decline {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn--decline:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cookie-btn--decline:active {
    transform: translateY(0);
}

.cookie-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: cookiePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

@keyframes cookiePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 24px);
        padding: 22px 18px 18px;
        border-radius: 16px;
    }
    .cookie-icon span {
        font-size: 15px;
    }
    .cookie-text {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .cookie-btn {
        padding: 11px 16px;
        font-size: 13px;
    }
}
