/* ============================================================
   CSS VARIABLES - Exact values from disence.com
============================================================ */
:root {
    /* Brand Colors - новая схема из ТЗ */
    --color-bg-dark: #140B2B;
    --color-bg-primary: #140B2B;
    --color-bg-card: #1D143E;
    --color-accent: #5A4DB2;
    --color-accent-cyan: #18d5f8;
    --color-white: #ffffff;
    --color-text: #fafafa;
    --color-text-muted: rgba(250, 250, 250, 0.7);
    --color-text-subtle: rgba(250, 250, 250, 0.5);

    /* Glass Effects - from parsed data */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(250, 250, 250, 0.1);
    --glass-border-light: rgba(250, 250, 250, 0.15);

    /* Gradients - обновлено под новую цветовую схему */
    --gradient-card: linear-gradient(146deg, rgb(29, 20, 62) 0%, rgb(29, 20, 62) 50%, rgb(29, 20, 62) 100%);
    --gradient-kol: linear-gradient(26deg, rgb(249, 99, 14) -5%, rgba(155, 20, 73, 0.7) 22%, rgba(89, 13, 116, 0.5) 55%, rgb(20, 11, 43) 94%);
    --gradient-hero-glow: radial-gradient(44.24% 44.24% at 50% 50%, rgba(90, 77, 178, 0.6) 0%, rgba(90, 77, 178, 0) 100%);
    --gradient-fade-top: linear-gradient(180deg, rgb(20, 11, 43) 11%, rgba(20, 11, 43, 0) 100%);
    --gradient-fade-bottom: linear-gradient(179.369deg, rgba(20, 11, 43, 0) 0%, rgb(20, 11, 43) 100%);
    --gradient-border-shine: linear-gradient(315deg, rgb(250, 250, 250) 0%, rgba(120, 120, 120, 0) 30%, rgba(120, 120, 120, 0) 70%, rgb(250, 250, 250) 100%);
    --gradient-button: linear-gradient(148deg, rgb(90, 77, 178) 0%, rgb(90, 77, 178) 33%, rgb(90, 77, 178) 67%, rgb(90, 77, 178) 100%);

    /* Sizing */
    --header-height: 80px;
    --container-max: 1800px;
    --container-padding: 32px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-sm: 8px;

    /* Typography - Satoshi font from disence.com */
    --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Z-index layers */
    --z-header: 1000;
    --z-mobile-menu: 999;
    --z-modal: 1100;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    min-height: 100vh;
    min-width: 100%;
}

/* Prevent horizontal overflow globally */
html, body, .main {
    overflow-x: hidden;
}

/* Custom Scrollbar - только ползунок, дорожка того же цвета что фон */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(90, 77, 178, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(90, 77, 178, 0.8);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(90, 77, 178, 0.6) #140B2B;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

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

ul, ol {
    list-style: none;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* GSAP Animation helpers */
.gsap-reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.gsap-magnetic {
    will-change: transform;
}

/* ============================================================
   HEADER - Clean transparent style
============================================================ */
.header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    height: var(--header-height);
    background: transparent;
    transition: all 0.4s ease;
}

/* No border/gradient on header */
.header::after {
    display: none;
}

/* Header scroll styles disabled - static header */

.header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 22px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.logo__text {
    letter-spacing: -0.02em;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav--left {
    margin-right: auto;
}

.nav--right {
    margin-left: auto;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 8px 0;
    will-change: color;
    letter-spacing: 0.02em;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    will-change: width;
}

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

.nav__link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: calc(var(--z-mobile-menu) + 1);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    will-change: transform, opacity;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-dark);
    z-index: var(--z-mobile-menu);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, visibility;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
}

/* ============================================================
   BUTTONS - Exact values from disence.com
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    color: var(--color-text);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-decoration: none;
    border: none;
}

/* Primary Button - Dark Purple Gradient */
.btn--primary {
    background: linear-gradient(135deg, #2a1f5c 0%, #3a2d7c 50%, #4a3d9c 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(58, 45, 124, 0.5);
}

.btn--primary:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(58, 45, 124, 0.6);
}

.btn--primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 15px rgba(58, 45, 124, 0.4);
}

/* Outline Button */
.btn--outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(24, 213, 248, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn--outline:active {
    transform: translateY(0);
}

/* Small Button */
.btn--small {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
}

/* Large Button */
.btn--large {
    padding: 20px 48px;
    font-size: 18px;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: var(--color-bg-dark);
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Hero Video - 3D Abstract Shape - FULL BLEED */
.hero__video-wrapper {
    position: absolute;
    top: calc(-1 * var(--header-height));
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + var(--header-height));
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: var(--color-bg-dark);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform, opacity;
    opacity: 0;
    z-index: 1;
    display: none;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-hero-glow);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(90, 77, 178, 0.4) 0%, rgba(90, 77, 178, 0) 100%);
    bottom: 20%;
    left: -100px;
}

.hero__glow--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(90, 77, 178, 0.3) 0%, rgba(90, 77, 178, 0) 100%);
    bottom: 10%;
    right: -50px;
}

.hero__gradient {
    position: absolute;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.hero__gradient--top {
    display: none;
}

.hero__gradient--bottom {
    bottom: 0;
    background: var(--gradient-fade-bottom);
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(90,77,178,0.1)' d='M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,117.3C672,117,768,171,864,186.7C960,203,1056,181,1152,154.7C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    opacity: 0.5;
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 60px);
}

.hero__content {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.hero__title--accent {
    color: var(--color-text);
    font-weight: 700;
    font-size: 56px;
    display: block;
    margin-top: 0;
    line-height: 1.15;
}

.hero__desc {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
    will-change: color;
}

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

/* Hero Stats Cards - positioned at bottom */
.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 40px;
    margin-top: auto;
}

.stat-card {
    position: relative;
    will-change: transform;
}

.stat-card__glass {
    position: relative;
    padding: 24px 40px;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    text-align: center;
}

.stat-card__border {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: var(--gradient-border-shine);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.stat-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card__value {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: normal;
}

.stat-card__label {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    text-transform: uppercase;
}

/* Hero Side Info */
.hero__side-info {
    position: absolute;
    right: var(--container-padding);
    bottom: 0;
}

.hero__side-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    max-width: 240px;
}

.hero__side-icon {
    font-size: 20px;
}

.hero__side-text {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.features__header {
    text-align: center;
    margin-bottom: 60px;
}

.features__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--color-text);
}

.features__subtitle {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5;
}

/* Tabs - Exact styles from disence.com */
.tabs__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.tabs__btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    will-change: background, color, border-color;
    letter-spacing: 0.14px;
    line-height: 1.25;
    white-space: nowrap;
}

.tabs__btn:hover {
    color: var(--color-text);
    background: var(--glass-bg-hover);
}

.tabs__btn.active {
    color: var(--color-text);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.tabs__content {
    position: relative;
}

.tabs__panel {
    display: none;
    opacity: 0;
    will-change: opacity;
}

.tabs__panel.active {
    display: block;
    opacity: 1;
}

/* Feature Card - Exact styles from disence.com */
.feature-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding: 48px;
    background: var(--color-accent);
    border: none;
    border-radius: var(--border-radius-lg);
    align-items: center;
    min-height: 320px;
}

.feature-card--no-case {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 280px;
    padding: 64px 48px;
}

.feature-card--no-case .feature-card__info {
    max-width: 600px;
    align-items: center;
}

.feature-card--no-case .feature-card__text {
    max-width: 100%;
}

/* Gradient variations for feature cards */
.feature-card--grad-orange {
    background: linear-gradient(135deg, rgb(249, 99, 14) 0%, rgba(155, 20, 73, 0.9) 50%, rgba(89, 13, 116, 0.8) 100%);
}

.feature-card--grad-pink {
    background: linear-gradient(135deg, rgba(155, 20, 73, 0.95) 0%, rgba(89, 13, 116, 0.85) 50%, rgba(36, 43, 180, 0.9) 100%);
}

.feature-card--grad-purple {
    background: linear-gradient(135deg, rgba(89, 13, 116, 0.9) 0%, rgba(36, 43, 180, 0.85) 50%, rgba(90, 77, 178, 0.95) 100%);
}

.feature-card--grad-blue {
    background: linear-gradient(135deg, rgba(36, 43, 180, 0.95) 0%, rgba(90, 77, 178, 0.9) 50%, rgba(24, 150, 200, 0.85) 100%);
}

.feature-card--grad-cyan {
    background: linear-gradient(135deg, rgba(90, 77, 178, 0.9) 0%, rgba(24, 150, 200, 0.85) 50%, rgba(24, 213, 248, 0.8) 100%);
}

.feature-card__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card__title {
    font-size: 38.4px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
}

.feature-card__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 400px;
}

.feature-card__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* Case Preview - darker card inside feature card */
.case-preview {
    padding: 32px;
    background: linear-gradient(135deg, rgba(90, 77, 178, 0.25) 0%, rgba(19, 20, 47, 1) 50%);
    border-radius: var(--border-radius);
    border: none;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.case-preview--bitget {
    background: linear-gradient(135deg, rgba(0, 142, 255, 0.2) 0%, rgba(19, 20, 47, 1) 100%);
}

.case-preview--kava {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.25) 0%, rgba(19, 20, 47, 1) 100%);
}

.case-preview--token {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25) 0%, rgba(19, 20, 47, 1) 100%);
}

.case-preview--defi {
    background: linear-gradient(135deg, rgba(24, 213, 248, 0.2) 0%, rgba(19, 20, 47, 1) 100%);
}

.case-preview--startup {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(19, 20, 47, 1) 100%);
}

.case-preview__brand {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: auto;
    color: var(--color-text);
    line-height: 1;
}

.case-preview__stats {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.case-preview__stat {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: rgba(9, 9, 29, 0.8);
    border-radius: 12px;
    flex: 1;
}

.case-preview__value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 4px;
}

.case-preview__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================================
   CASES SECTION
============================================================ */
.cases {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.cases__header {
    text-align: center;
    margin-bottom: 60px;
}

.cases__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--color-text);
}

.cases__subtitle {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5;
}

.cases__carousel {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cases__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.cases__arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

/* Case Card - Exact styles from disence.com */
.case-card {
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    will-change: transform;
    background: var(--color-accent);
    border: none;
}

.case-card--purple {
    background: var(--color-accent);
}

.case-card--gradient {
    background: var(--color-accent);
    border: none;
}

.case-card__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.case-card__logo-icon {
    font-size: 28px;
    color: var(--color-white);
}

.case-card__logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
}

.case-card__logo-icon--pink {
    color: #ff6b9d;
}

.case-card__logo-text--pink {
    color: #ff6b9d;
}

.case-card__logo-icon--gold {
    color: #d4a853;
}

.case-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: auto;
}

.case-card__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 400px;
}

.case-card__metrics {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.case-card__metric {
    padding: 20px 24px;
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-card__metric-value {
    font-size: 38.4px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.case-card__metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.case-card__visual {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.case-card__circles {
    display: flex;
    gap: -20px;
}

.case-card__circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: -20px;
}

.case-card__circle:first-child {
    margin-left: 0;
}

/* ============================================================
   TRUSTED BY SECTION
============================================================ */
.trusted {
    padding: 100px 0;
    background: var(--color-bg-dark);
}

.trusted__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.trusted__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.trusted__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

.trusted__content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

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

.trusted__logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--color-bg-card);
    border: 1px solid rgba(90, 77, 178, 0.3);
    border-radius: var(--border-radius-lg);
    color: var(--color-text);
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.trusted__logo:hover {
    transform: scale(1.04) translateY(-6px);
    border-color: transparent;
    box-shadow:
        0 25px 50px rgba(90, 77, 178, 0.35),
        0 0 80px rgba(90, 77, 178, 0.2),
        0 0 120px rgba(24, 213, 248, 0.15);
}

/* Chameleon glow border effect */
.trusted__logo::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        rgba(90, 77, 178, 0.8),
        rgba(24, 213, 248, 0.6),
        rgba(155, 20, 73, 0.6),
        rgba(249, 99, 14, 0.4),
        rgba(90, 77, 178, 0.8)
    );
    background-size: 400% 100%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: chameleonBorder 6s linear infinite;
}

.trusted__logo:hover::before {
    opacity: 1;
}

/* Inner background to cover the gradient border */
.trusted__logo::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--color-bg-card);
    border-radius: calc(var(--border-radius-lg) - 1px);
    z-index: -1;
    transition: background 0.4s ease;
}

.trusted__logo:hover::after {
    background: linear-gradient(135deg, rgba(19, 20, 47, 0.95) 0%, rgba(13, 14, 35, 0.98) 100%);
}

@keyframes chameleonBorder {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* Brand name display */
.trusted__brand-name {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.trusted__logo:hover .trusted__brand-name {
    transform: translateY(-24px);
    opacity: 0.7;
}

/* Hover info overlay */
.trusted__hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 29, 0.98) 40%);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.trusted__logo:hover .trusted__hover-info {
    transform: translateY(0);
    opacity: 1;
}

.trusted__hover-stats {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.trusted__stat {
    text-align: center;
}

.trusted__stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-cyan);
    line-height: 1.2;
}

.trusted__stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(250, 250, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}


.trusted__sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(135deg, rgba(19, 20, 47, 0.4) 0%, rgba(13, 14, 35, 0.3) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(250, 250, 250, 0.08);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 306px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass shine effect */
.trusted__sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Hover glow border */
.trusted__sidebar::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        135deg,
        rgba(90, 77, 178, 0.5),
        rgba(24, 213, 248, 0.3),
        rgba(90, 77, 178, 0.5)
    );
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trusted__sidebar:hover::after {
    opacity: 1;
}

.trusted__sidebar:hover {
    border-color: transparent;
    box-shadow:
        0 20px 40px rgba(90, 77, 178, 0.2),
        0 0 60px rgba(24, 213, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.trusted__count {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    padding: 18px 16px;
    background: linear-gradient(135deg, rgba(90, 77, 178, 0.85) 0%, rgba(24, 30, 140, 0.75) 100%);
    backdrop-filter: blur(16px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-bottom: 1px solid rgba(24, 213, 248, 0.2);
    transition: all 0.3s ease;
}

.trusted__count:hover {
    background: linear-gradient(135deg, rgba(90, 77, 178, 0.95) 0%, rgba(24, 30, 140, 0.85) 100%);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.trusted__count::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    animation: shimmerSlide 4s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.trusted__count-icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 215, 0, 0.9);
    filter: drop-shadow(0 0 10px rgba(255, 200, 100, 0.6));
    flex-shrink: 0;
}

.trusted__scroll {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.trusted__scroll::before,
.trusted__scroll::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.trusted__scroll::before {
    top: 0;
    background: linear-gradient(180deg, rgba(13, 14, 35, 0.9) 0%, transparent 100%);
}

.trusted__scroll::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(13, 14, 35, 0.9) 0%, transparent 100%);
}

.trusted__scroll-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 20s linear infinite;
}

.trusted__scroll-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.trusted__scroll-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(90, 77, 178, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trusted__scroll-item:hover::before {
    opacity: 1;
}

.trusted__scroll-item:hover {
    background: rgba(24, 213, 248, 0.05);
}

.trusted__scroll-item:hover .trusted__scroll-logo {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(24, 213, 248, 0.5));
    transform: scale(1.1);
}

.trusted__scroll-item:hover .trusted__scroll-name {
    color: var(--color-accent-cyan);
    text-shadow: 0 0 20px rgba(24, 213, 248, 0.5);
}

.trusted__scroll-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trusted__scroll-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Pause scroll on hover */
.trusted__sidebar:hover .trusted__scroll-track {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* ============================================================
   VETERANS SECTION
============================================================ */
.veterans {
    padding: 80px 0;
    text-align: center;
}

.veterans__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.veterans__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    line-height: 1.25;
    color: var(--color-text);
}

.veterans__marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.veterans__track {
    display: flex;
    gap: 64px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.veterans__logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

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

/* ============================================================
   KOL FEATURES SECTION
============================================================ */
.kols {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.kols__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.25;
    color: var(--color-text);
}

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

/* KOL Card - Exact styles from disence.com */
.kol-card {
    padding: 24px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    will-change: transform;
}

.kol-card__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.kol-card__icon--purple {
    background: rgba(139, 92, 246, 0.9);
}

.kol-card__icon--cyan {
    background: rgba(6, 182, 212, 0.9);
}

.kol-card__icon--blue {
    background: rgba(59, 130, 246, 0.9);
}

.kol-card__icon--green {
    background: rgba(34, 197, 94, 0.9);
}

.kol-card__title {
    font-size: 14.4px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--color-text);
}

.kol-card__desc {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.5;
}

/* ============================================================
   GLOBAL REACH - Neon Liquid Glass Block
============================================================ */
.global-reach {
    position: relative;
    margin: 100px auto;
    padding: 0 32px;
    max-width: 1000px;
}

/* Внешнее неоновое свечение */
.global-reach__neon-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 50% 50%,
        rgba(24, 213, 248, 0.15) 0%,
        rgba(90, 77, 178, 0.1) 30%,
        transparent 70%
    );
    filter: blur(40px);
    pointer-events: none;
    animation: neon-pulse 4s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* Основной glass контейнер */
.global-reach__glass {
    position: relative;
    background: linear-gradient(135deg,
        rgba(29, 20, 62, 0.9) 0%,
        rgba(20, 11, 43, 0.95) 50%,
        rgba(29, 20, 62, 0.9) 100%
    );
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
}

/* Неоновая рамка с градиентом */
.global-reach__border {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: linear-gradient(135deg,
        rgba(24, 213, 248, 0.6) 0%,
        rgba(90, 77, 178, 0.4) 25%,
        rgba(24, 213, 248, 0.2) 50%,
        rgba(90, 77, 178, 0.4) 75%,
        rgba(24, 213, 248, 0.6) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Анимированный shine эффект */
.global-reach__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    animation: shine-move 6s ease-in-out infinite;
}

@keyframes shine-move {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

/* Затемнение углов (vignette) */
.global-reach__vignette {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(ellipse at center,
        transparent 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
}

/* Контент */
.global-reach__content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    text-align: center;
}

.global-reach__label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(24, 213, 248, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 32px;
    text-shadow: 0 0 20px rgba(24, 213, 248, 0.5);
}

/* Теги регионов */
.global-reach__tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.global-reach__tag {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.03em;
    background: rgba(90, 77, 178, 0.2);
    border: 1px solid rgba(24, 213, 248, 0.25);
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.global-reach__tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(24, 213, 248, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-reach__tag:hover {
    background: rgba(90, 77, 178, 0.35);
    border-color: rgba(24, 213, 248, 0.5);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(24, 213, 248, 0.2);
}

.global-reach__tag:hover::before {
    opacity: 1;
}

/* Конвейер флагов */
.flags-marquee {
    position: relative;
    width: calc(100% + 80px);
    margin: 0 -40px;
    overflow: hidden;
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(90deg,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(90deg,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.flags-marquee__track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 18s linear infinite;
    width: max-content;
}

.flags-marquee__flag {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flags-marquee__flag:hover {
    transform: scale(1.2) translateY(-6px);
    border-color: rgba(24, 213, 248, 0.5);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(24, 213, 248, 0.3);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.flags-marquee:hover .flags-marquee__track {
    animation-play-state: paused;
}

/* Hover на весь блок - усиление свечения */
.global-reach:hover .global-reach__neon-glow {
    opacity: 1;
    filter: blur(50px);
}

.global-reach:hover .global-reach__border {
    opacity: 1;
    background: linear-gradient(135deg,
        rgba(24, 213, 248, 0.8) 0%,
        rgba(90, 77, 178, 0.5) 25%,
        rgba(24, 213, 248, 0.3) 50%,
        rgba(90, 77, 178, 0.5) 75%,
        rgba(24, 213, 248, 0.8) 100%
    );
}

/* Responsive */
@media (max-width: 768px) {
    .global-reach {
        margin: 60px auto;
        padding: 0 16px;
    }

    .global-reach__glass {
        border-radius: 22px;
    }

    .global-reach__border,
    .global-reach__vignette {
        border-radius: 22px;
    }

    .global-reach__content {
        padding: 32px 24px;
    }

    .global-reach__tags {
        gap: 10px;
    }

    .global-reach__tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .flags-marquee {
        width: calc(100% + 48px);
        margin: 0 -24px;
    }

    .flags-marquee__flag {
        width: 44px;
        height: 44px;
    }

    .flags-marquee__track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .global-reach__content {
        padding: 28px 20px;
    }

    .global-reach__label {
        font-size: 11px;
        letter-spacing: 0.2em;
    }

    .global-reach__tag {
        padding: 6px 14px;
        font-size: 11px;
    }

    .flags-marquee__flag {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .flags-marquee__track {
        gap: 12px;
    }
}

/* Social Platform Cards */
.social-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    padding: 32px 28px;
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 160px;
}

.social-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.social-card__icon--tiktok {
    background: #000;
    color: #fff;
}

.social-card__icon--youtube {
    background: #ff0000;
    color: #fff;
}

.social-card__icon--telegram {
    background: #0088cc;
    color: #fff;
}

.social-card__icon--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-card__text {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.5;
}

.kol-feature--highlight .kol-feature__text {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   WHY CHOOSE US SECTION
============================================================ */
.why {
    padding: 120px 0 180px;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

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

.why__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.25;
    color: var(--color-text);
}

/* Bento Grid */
.why__bento {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
}

/* Gauge Card */
.why__gauge {
    grid-row: span 2;
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why__gauge-meter {
    width: 180px;
    height: 100px;
    margin-bottom: 16px;
}

.why__gauge-svg {
    width: 100%;
    height: 100%;
}

.why__gauge-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.why__gauge-label {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.5;
}

/* Testimonials */
.why__testimonial {
    padding: 24px;
    border-radius: var(--border-radius-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.why__testimonial--blue {
    background: var(--color-accent);
}

.why__testimonial--dark {
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
}

.why__testimonial--wide {
    grid-column: span 1;
}

.why__testimonial--large {
    grid-column: span 1;
}

.why__testimonial-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    flex: 1;
}

.why__testimonial-nav {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.why__testimonial-nav--prev { left: 16px; }
.why__testimonial-nav--next { right: 16px; }

/* Right Stack */
.why__right-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why__testimonial-author {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why__testimonial-avatars {
    display: flex;
}

.why__testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin-right: -8px;
    border: 2px solid var(--color-accent);
}

.why__testimonial-avatar--logo {
    background: #fff;
}

.why__testimonial-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

/* Cards */
.why__card {
    padding: 24px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.why__card--gradient-orange {
    background: linear-gradient(135deg, rgb(249, 99, 14) 0%, rgba(155, 20, 73, 0.9) 50%, rgba(89, 13, 116, 0.8) 100%);
}

.why__card--gradient-pink {
    background: linear-gradient(135deg, rgba(155, 20, 73, 0.9) 0%, rgba(89, 13, 116, 0.8) 50%, rgb(36, 43, 180) 100%);
}

/* Row Split - Полный цикл + 13 МЛН рядом */
.why__row-split {
    display: flex;
    gap: 16px;
}

.why__row-split .why__card--gradient-pink {
    flex: 1;
}

.why__row-split .why__stat-card {
    flex: 1;
}

.why__card--stat {
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
}

.why__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.why__card-value {
    font-size: 38.4px;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    margin-bottom: 8px;
}

.why__card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.why__card-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Row */
.why__stat-card {
    padding: 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.why__stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    margin-bottom: 8px;
}

.why__stat-label {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.why__stat-chart {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.why__stat-chart svg {
    width: 100%;
    max-width: 200px;
    height: 70px;
}

/* Chart line animation - triggers on scroll */
.why__stat-chart .chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.why__stat-chart .chart-fill {
    opacity: 0;
}

.why__stat-chart .chart-point {
    opacity: 0;
}

.why__stat-chart .chart-point-glow {
    opacity: 0;
    filter: drop-shadow(0 0 6px #18d5f8);
}

/* Animated state - added by GSAP */
.why__stat-chart.is-animated .chart-line {
    animation: chartDraw 2s ease-out forwards;
}

.why__stat-chart.is-animated .chart-fill {
    animation: chartFillIn 1s ease-out 1.5s forwards;
}

.why__stat-chart.is-animated .chart-point:nth-child(4) { animation: chartPointIn 0.3s ease-out 0.5s forwards; }
.why__stat-chart.is-animated .chart-point:nth-child(5) { animation: chartPointIn 0.3s ease-out 0.8s forwards; }
.why__stat-chart.is-animated .chart-point:nth-child(6) { animation: chartPointIn 0.3s ease-out 1.1s forwards; }
.why__stat-chart.is-animated .chart-point:nth-child(7) { animation: chartPointIn 0.3s ease-out 1.4s forwards; }

.why__stat-chart.is-animated .chart-point-glow {
    animation: chartPointIn 0.3s ease-out 1.7s forwards, chartPulse 2s ease-in-out 2s infinite;
}

@keyframes chartDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes chartFillIn {
    to { opacity: 1; }
}

@keyframes chartPointIn {
    to { opacity: 1; }
}

@keyframes chartPulse {
    0%, 100% { filter: drop-shadow(0 0 6px #18d5f8); }
    50% { filter: drop-shadow(0 0 12px #18d5f8); }
}

/* ============================================================
   BLOG SECTION
============================================================ */
.blog {
    padding: 120px 0;
}

.blog__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.blog__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.25;
    color: var(--color-text);
}

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

/* Blog Card - Exact styles from disence.com */
.blog-card {
    background: transparent;
    will-change: transform;
}

.blog-card__image {
    height: 340px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background: #fff;
    margin-bottom: 24px;
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    font-size: 14px;
}

.blog-card__placeholder--1,
.blog-card__placeholder--2,
.blog-card__placeholder--3 {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-card__content {
    padding: 0;
}

.blog-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--color-text);
}

.blog-card__date {
    font-size: 14px;
    color: var(--color-text-muted);
}

.blog__cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================================
   FOOTER REVEAL EFFECT
============================================================ */
.main {
    position: relative;
    z-index: 2;
    background: var(--color-bg-dark);
    /* Space for footer to be revealed */
    margin-bottom: 100vh;
    overflow-x: clip;
    width: 100%;
}

.footer-reveal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.footer-reveal__video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-reveal__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15vh 0 20px;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--container-padding);
}

.cta__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cta__tag {
    padding: 12px 24px;
    background: rgba(90, 77, 178, 0.4);
    border: 1px solid rgba(90, 77, 178, 0.6);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    backdrop-filter: blur(10px);
}

.cta__title {
    font-size: 56px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--color-text);
}

.cta__subtitle {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta__btn {
    padding: 20px 56px;
    font-size: 16px;
    font-weight: 500;
    background: var(--color-text);
    color: var(--color-bg-dark);
    border: 2px solid var(--color-text);
    border-radius: 100px;
}

.cta__btn:hover {
    background: rgba(250, 250, 250, 0.9);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    padding: 10px 0 20px;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 2;
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--color-text);
}

.footer__logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
}

.footer__contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 28px;
    margin: 0 auto 20px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    color: var(--color-text);
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__contact:hover {
    opacity: 0.7;
}

.footer__contact svg {
    flex-shrink: 0;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.footer__legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer__link {
    color: var(--color-text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--color-text);
}

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

.footer__company {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    text-align: center;
    max-width: 500px;
}

.footer__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer__copyright {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ============================================================
   RESPONSIVE DESIGN
============================================================ */
@media (max-width: 1024px) {
    .kols__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .why__gauge {
        grid-row: span 1;
    }

    .why__right-stack {
        grid-column: span 1;
    }

    .why__testimonial--large {
        grid-column: span 2;
    }

    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Trusted */
    .trusted__content {
        grid-template-columns: 1fr 240px;
        gap: 24px;
    }

    .trusted__logo {
        padding: 48px 28px;
    }

    .trusted__brand-name {
        font-size: 20px;
    }
}

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

    /* Header */
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .logo {
        position: static;
        transform: none;
    }

    /* Hero Mobile Typography - from parsed data */
    .hero__title {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero__title--accent {
        font-size: 36px;
    }

    .hero__desc {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Section Titles Mobile */
    .features__title,
    .cases__title,
    .kols__title,
    .why__title,
    .blog__title,
    .trusted__title,
    .veterans__title {
        font-size: 32px;
        line-height: 1.25;
    }

    /* Card Titles Mobile */
    .feature-card__title,
    .case-preview__brand,
    .case-preview__value,
    .case-card__metric-value {
        font-size: 38.4px;
        line-height: 1;
    }

    /* Hero */
    .hero__stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card__glass {
        padding: 24px 32px;
    }

    .stat-card__value {
        font-size: 36px;
    }

    .hero__side-info {
        display: none;
    }

    /* Features */
    .feature-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .tabs__nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .tabs__btn {
        white-space: nowrap;
    }

    /* Cases */
    .cases__grid {
        grid-template-columns: 1fr;
    }

    /* KOLs */
    .kols__grid {
        grid-template-columns: 1fr;
    }

    .kol-feature {
        flex-direction: column;
    }

    /* Why */
    .why__stat-chart {
        flex-direction: column;
        text-align: center;
    }

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

    .why__testimonial--wide,
    .why__testimonial--large {
        grid-column: span 1;
    }

    .why__right-stack {
        grid-column: span 1;
    }

    .why__row-split {
        flex-direction: column;
    }

    /* Trusted */
    .trusted__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .trusted__logo {
        padding: 40px 20px;
    }

    .trusted__brand-name {
        font-size: 18px;
    }

    /* Blog */
    .blog__grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta__title {
        font-size: 42px;
    }

    .cta__tags {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .cta__tag {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cta__btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    /* Social Platforms */
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Footer */
    .footer__contacts {
        flex-direction: column;
        gap: 0;
        padding: 16px 24px;
    }

    .footer__contact {
        padding: 12px 16px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer__legal,
    .footer__right {
        text-align: center;
        align-items: center;
    }

    .footer__company {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .trusted__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why__performance-value {
        font-size: 56px;
    }
}

/* ============================================================
   DECORATIVE ELEMENTS & ANIMATIONS
============================================================ */

/* Floating Particles Container */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: -5s; animation-duration: 20s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: -10s; animation-duration: 30s; }
.particle:nth-child(4) { left: 50%; top: 60%; animation-delay: -15s; animation-duration: 22s; }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: -7s; animation-duration: 28s; }
.particle:nth-child(6) { left: 80%; top: 70%; animation-delay: -12s; animation-duration: 24s; }
.particle:nth-child(7) { left: 90%; top: 50%; animation-delay: -3s; animation-duration: 26s; }
.particle:nth-child(8) { left: 15%; top: 90%; animation-delay: -18s; animation-duration: 21s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.2; }
    75% { transform: translateY(-40px) translateX(5px); opacity: 0.4; }
}

/* Section Glow Orbs */
.section-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.section-glow--blue {
    background: radial-gradient(circle, rgba(90, 77, 178, 0.4) 0%, transparent 70%);
}

.section-glow--cyan {
    background: radial-gradient(circle, rgba(24, 213, 248, 0.3) 0%, transparent 70%);
}

.section-glow--purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent-cyan) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text--blue {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shine Effect on Cards */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 1;
}

.shine-effect:hover::before {
    left: 150%;
}

/* Pulsing Dot */
.pulse-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-accent-cyan);
    border-radius: 50%;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--color-accent-cyan);
    opacity: 0.4;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2); opacity: 0; }
}

/* Animated Border Gradient */
.border-glow {
    position: relative;
}

.border-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        var(--border-angle, 0deg),
        var(--color-accent),
        transparent 40%,
        transparent 60%,
        var(--color-accent-cyan)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.border-glow:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

/* Counter Animation (numbers increment) */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Floating Animation for decorative elements */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Text Shimmer Animation */
.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--color-text) 0%,
        var(--color-accent-cyan) 50%,
        var(--color-text) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

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

/* Typing Cursor Effect */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--color-accent-cyan);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Card Tilt Effect Indicator */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Stagger Animation Classes */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Line decoration - disabled */
.line-decoration {
    position: relative;
}

.line-decoration::after {
    display: none;
}

/* ============================================================
   GSAP ANIMATIONS & HELPERS
============================================================ */
.hidden {
    opacity: 0;
    visibility: hidden;
}

.visible {
    opacity: 1;
    visibility: visible;
}

/* Disable pointer events during animations */
.animating {
    pointer-events: none;
}

/* Smooth scroll offset for fixed header */
[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* Remove default transitions - GSAP handles animations */
.stat-card,
.case-card,
.kol-card,
.kol-feature,
.blog-card,
.trusted__logo,
.btn {
    transition: none !important;
}

/* Ensure transforms work with GSAP */
.hero__glow,
.stat-card,
.case-card,
.kol-card,
.blog-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Selection */
::selection {
    background: rgba(90, 77, 178, 0.4);
    color: var(--color-white);
}

/* Focus */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ============================================================
   LIQUID GLASS CONTACT BAR
============================================================ */
.liquid-glass-bar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 60px;
    z-index: 10;
}

.liquid-glass-bar__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 24px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Liquid shine effect */
.liquid-glass-bar__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: liquidShine 4s ease-in-out infinite;
}

@keyframes liquidShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Top edge highlight for 3D effect */
.liquid-glass-bar__inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
}

.liquid-glass-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.liquid-glass-bar__item:hover {
    color: #fff;
}

.liquid-glass-bar__item:hover svg {
    transform: scale(1.1);
}

.liquid-glass-bar__item svg {
    flex-shrink: 0;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.liquid-glass-bar__divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

/* CTA variant - slightly larger */
.liquid-glass-bar--cta {
    margin-top: 24px;
    margin-bottom: 32px;
}

.liquid-glass-bar--cta .liquid-glass-bar__inner {
    padding: 14px 28px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .liquid-glass-bar__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        padding: 12px 16px;
        border-radius: 24px;
    }

    .liquid-glass-bar__item {
        padding: 6px 12px;
        font-size: 13px;
    }

    .liquid-glass-bar__item span {
        display: none;
    }

    .liquid-glass-bar__item svg {
        width: 20px;
        height: 20px;
    }

    .liquid-glass-bar__divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .liquid-glass-bar__inner {
        gap: 0;
        padding: 10px 14px;
    }

    .liquid-glass-bar__item {
        padding: 8px 10px;
    }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS FIX
============================================================ */

/* === TABLET (max-width: 1024px) === */
@media (max-width: 1024px) {
    /* Hero */
    .hero__container {
        padding: 0 24px;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__title--accent {
        font-size: 48px;
    }

    .liquid-glass-bar {
        margin-bottom: 50px;
    }

    .hero__stats {
        gap: 16px;
        margin-top: 30px;
    }

    .stat-card__glass {
        padding: 20px 28px;
    }

    /* Cases */
    .cases__carousel {
        gap: 16px;
    }

    .case-card {
        padding: 32px;
        min-height: 350px;
    }

    .case-card__title {
        font-size: 20px;
    }

    .case-card__metric-value {
        font-size: 32px;
    }
}

/* === MOBILE (max-width: 768px) === */
@media (max-width: 768px) {
    /* General spacing */
    section {
        padding: 60px 0;
    }

    /* Hero section */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 60px;
    }

    .hero__container {
        padding: 0 16px;
    }

    .hero__content {
        text-align: center;
        padding-bottom: 50px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero__title--accent {
        font-size: 36px;
    }

    .hero__desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero__desc br {
        display: none;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .liquid-glass-bar {
        margin: 0 auto 40px auto;
        width: 100%;
        max-width: 280px;
    }

    .hero__content .liquid-glass-bar .liquid-glass-bar__inner {
        padding: 14px 24px;
        gap: 16px;
    }

    .hero__content .liquid-glass-bar .liquid-glass-bar__item {
        padding: 8px 12px;
    }

    .hero__content .liquid-glass-bar .liquid-glass-bar__item svg {
        width: 20px;
        height: 20px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 0;
    }

    .stat-card {
        width: 100%;
    }

    .stat-card__glass {
        padding: 20px 24px;
    }

    .stat-card__value {
        font-size: 32px;
    }

    .stat-card__label {
        font-size: 13px;
    }

    /* Features / Tabs section */
    .features {
        padding: 60px 0;
    }

    .features__container {
        padding: 0 16px;
    }

    .features__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .features__title {
        font-size: 26px;
    }

    .features__subtitle {
        font-size: 15px;
    }

    .tabs__nav {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 4px 16px 4px 4px;
        margin-bottom: 24px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tabs__nav::-webkit-scrollbar {
        display: none;
    }

    .tabs__btn {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 24px;
    }

    .feature-card__info {
        text-align: center;
        width: 100%;
    }

    .feature-card__case {
        width: 100%;
    }

    .feature-card__title {
        font-size: 24px !important;
        white-space: normal;
    }

    .feature-card__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .feature-card--no-case {
        min-height: auto;
        padding: 32px 24px;
    }

    .case-preview {
        min-height: 200px;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .case-preview__stats {
        gap: 10px;
        margin-top: 16px;
    }

    .case-preview__stat {
        padding: 12px 14px;
    }

    .case-preview__value {
        font-size: 24px;
    }

    .case-preview__label {
        font-size: 12px;
    }

    .case-preview__brand {
        font-size: 28px !important;
    }

    .case-preview__value {
        font-size: 28px !important;
    }

    /* Cases section */
    .cases {
        padding: 60px 0;
    }

    .cases__container {
        padding: 0 16px;
    }

    .cases__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .cases__title {
        font-size: 24px;
    }

    .cases__title br {
        display: none;
    }

    .cases__subtitle {
        font-size: 14px;
    }

    .cases__subtitle br {
        display: none;
    }

    .cases__carousel {
        flex-direction: column;
        gap: 16px;
    }

    .cases__arrow {
        display: none;
    }

    .cases__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-card {
        padding: 24px;
        min-height: auto;
    }

    .case-card__logo-icon,
    .case-card__logo-text {
        font-size: 22px;
    }

    .case-card__title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .case-card__metrics {
        flex-direction: column;
        gap: 12px;
    }

    .case-card__metric {
        padding: 16px 20px;
    }

    .case-card__metric-value {
        font-size: 28px !important;
    }

    /* Trusted section */
    .trusted {
        padding: 60px 0;
    }

    .trusted__container {
        padding: 0 16px;
    }

    .trusted__title {
        font-size: 24px;
        text-align: center;
    }

    .trusted__title br {
        display: none;
    }

    .trusted__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .trusted__logo {
        padding: 32px 16px;
    }

    .trusted__brand-name {
        font-size: 14px;
    }

    .trusted__hover-info {
        display: none;
    }

    .trusted__sidebar {
        height: auto;
        max-height: 200px;
    }

    .trusted__count {
        font-size: 16px;
        padding: 14px;
    }

    /* Veterans section */
    .veterans {
        padding: 40px 0;
    }

    .veterans__title {
        font-size: 22px;
        text-align: center;
    }

    .veterans__title br {
        display: none;
    }

    /* KOLs section */
    .kols {
        padding: 60px 0;
    }

    .kols__container {
        padding: 0 16px;
    }

    .kols__title {
        font-size: 26px;
        text-align: center;
    }

    .kols__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kol-card {
        padding: 24px;
    }

    .kol-card__title {
        font-size: 18px;
    }

    .kol-card__desc {
        font-size: 14px;
    }

    /* Global Reach */
    .global-reach {
        margin: 40px auto;
    }

    .global-reach__content {
        padding: 24px 16px;
    }

    .global-reach__tags {
        gap: 8px;
    }

    .global-reach__tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Social platforms */
    .social-platforms {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .social-card {
        padding: 20px;
    }

    .social-card__text {
        font-size: 13px;
    }

    /* Why section */
    .why {
        padding: 60px 0;
    }

    .why__container {
        padding: 0 16px;
    }

    .why__title {
        font-size: 24px;
        text-align: center;
    }

    .why__bento {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why__gauge {
        grid-row: auto;
        padding: 24px;
    }

    .why__gauge-value {
        font-size: 36px;
    }

    .why__gauge-label {
        font-size: 13px;
    }

    .why__testimonial {
        padding: 24px;
    }

    .why__testimonial--wide,
    .why__testimonial--large {
        grid-column: 1;
    }

    .why__testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .why__testimonial-name {
        font-size: 12px;
    }

    .why__right-stack {
        grid-column: 1;
        gap: 16px;
    }

    .why__card {
        padding: 24px;
    }

    .why__card-title {
        font-size: 18px;
    }

    .why__card-value {
        font-size: 36px;
    }

    .why__stat-card {
        padding: 24px;
    }

    .why__stat-value {
        font-size: 28px;
    }

    .why__stat-label {
        font-size: 14px;
        max-width: 100%;
    }

    .why__stat-chart {
        justify-content: center;
        width: 100%;
    }

    .why__stat-chart svg {
        max-width: 180px;
        height: 60px;
    }

    /* Footer reveal - scrollable on mobile */
    .footer-reveal {
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* CTA section */
    .cta {
        padding: 15vh 0 10px;
        min-height: auto;
        flex: none;
    }

    .cta__content {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta__title {
        font-size: 28px !important;
        margin-bottom: 16px;
    }

    .cta__subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .cta__tags {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
    }

    .cta__tag {
        padding: 12px 20px;
        font-size: 13px;
    }

    .cta__btn {
        width: 100%;
        max-width: 300px;
        order: 1;
        margin-bottom: 0;
    }

    /* CTA social bar - compact on mobile */
    .liquid-glass-bar--cta {
        max-width: 230px;
        margin-left: auto;
        margin-right: auto;
        order: 2;
        margin-top: 40px;
        margin-bottom: 0;
    }

    .liquid-glass-bar--cta .liquid-glass-bar__inner {
        border-radius: 14px;
        padding: 14px 18px;
        gap: 8px;
    }

    .liquid-glass-bar--cta .liquid-glass-bar__item {
        padding: 8px 10px;
    }

    .liquid-glass-bar--cta .liquid-glass-bar__item span {
        display: inline;
        font-size: 10px;
    }

    .liquid-glass-bar--cta .liquid-glass-bar__item svg {
        width: 16px;
        height: 16px;
    }

    /* Footer */
    .footer {
        padding: 16px 0 24px;
    }

    .footer__container {
        padding: 0 16px;
    }

    .footer__logo {
        justify-content: center;
        margin-bottom: 16px;
    }

    /* Hide duplicate contacts - already shown in CTA */
    .footer__contacts {
        display: none;
    }

    .footer__contact {
        padding: 10px 12px;
        font-size: 13px;
        justify-content: center;
    }

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

    .footer__legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer__company {
        font-size: 11px;
        order: 1;
    }

    .footer__company br {
        display: none;
    }

    .footer__right {
        flex-direction: column;
        gap: 8px;
        order: 0;
    }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
    /* Even smaller adjustments */
    .hero__title {
        font-size: 28px;
    }

    .hero__title--accent {
        font-size: 28px;
    }

    .stat-card__value {
        font-size: 28px;
    }

    .features__title,
    .cases__title,
    .trusted__title,
    .kols__title,
    .why__title {
        font-size: 22px;
    }

    .tabs__btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .trusted__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trusted__logo {
        padding: 24px 12px;
    }

    .trusted__brand-name {
        font-size: 12px;
    }

    .global-reach__tag {
        padding: 5px 10px;
        font-size: 11px;
    }

    .cta__title {
        font-size: 24px !important;
    }

    .why__stat-value {
        font-size: 24px;
    }

    .why__stat-label {
        font-size: 13px;
    }

    .why__stat-chart {
        margin-top: 16px;
    }

    .why__stat-chart svg {
        max-width: 150px;
        height: 50px;
    }

    .why__card-value {
        font-size: 32px;
    }
}
