/* =============================================
   YURY FITNESS — Premium Light Landing Page
   Modern UI with glassmorphism, gradients, 3D
   ============================================= */

/* === Design Tokens === */
:root {
    /* Colors */
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-dark: #4f46e5;
    --green: #10b981;
    --green-light: #34d399;
    --orange: #f59e0b;
    --pink: #ec4899;
    --cyan: #06b6d4;

    /* Backgrounds */
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --bg-warm: #fefce8;
    --bg-glass: rgba(255, 255, 255, 0.72);
    --bg-glass-strong: rgba(255, 255, 255, 0.9);

    /* Text */
    --text-primary: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    /* Borders */
    --border-light: #e2e8f0;
    --border-glass: rgba(255, 255, 255, 0.5);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.07);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.06);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
    --transition-slow: all 0.5s var(--ease);

    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg-main);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

/* === Utility Classes === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.bg-light {
    background: var(--bg-white);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 60px;
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--text-white);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--bg-glass-strong);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(131, 58, 180, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(131, 58, 180, 0.4);
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo span {
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    font-size: 14px !important;
    padding: 10px 24px !important;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.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;
    width: 100%;
    height: 100vh;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

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

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

.mobile-nav a {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .nav, .header-cta {
        display: none;
    }
    .burger {
        display: flex;
    }
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-main) 0%, #eef2ff 50%, var(--bg-main) 100%);
}

.hero-3d-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.85;
    pointer-events: none;
    perspective: 900px;
    overflow: hidden;
}

.hero-orbit-scene {
    position: absolute;
    top: 50%;
    right: max(4vw, 24px);
    width: min(42vw, 560px);
    aspect-ratio: 1;
    transform: translateY(-50%) rotateX(58deg) rotateZ(-18deg);
    transform-style: preserve-3d;
    animation: heroSceneDrift 12s ease-in-out infinite;
    filter: drop-shadow(0 28px 50px rgba(79, 70, 229, 0.18));
}

.orbit-ring {
    position: absolute;
    inset: 12%;
    border: 2px solid rgba(99, 102, 241, 0.24);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.orbit-ring::before,
.orbit-ring::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.45);
}

.orbit-ring::before {
    top: 8%;
    left: 18%;
}

.orbit-ring::after {
    right: 13%;
    bottom: 14%;
    width: 10px;
    height: 10px;
}

.orbit-ring-1 {
    animation: orbitSpin 18s linear infinite;
}

.orbit-ring-2 {
    inset: 22%;
    border-color: rgba(16, 185, 129, 0.24);
    transform: rotateY(62deg);
    animation: orbitSpinReverse 15s linear infinite;
}

.orbit-ring-3 {
    inset: 5%;
    border-color: rgba(245, 158, 11, 0.18);
    transform: rotateX(68deg);
    animation: orbitSpin 22s linear infinite;
}

.hero-core {
    position: absolute;
    inset: 34%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 28%),
        linear-gradient(135deg, rgba(99, 102, 241, 0.92), rgba(6, 182, 212, 0.78));
    box-shadow:
        0 24px 70px rgba(79, 70, 229, 0.28),
        inset 0 -18px 36px rgba(15, 23, 42, 0.16);
    transform: translateZ(42px);
    animation: corePulse 4s ease-in-out infinite;
}

.hero-dumbbell {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58%;
    height: 56px;
    transform: translate(-50%, -50%) translateZ(86px) rotateZ(-18deg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: dumbbellFloat 6s ease-in-out infinite;
}

.hero-dumbbell i {
    width: 66%;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1f2937, #64748b, #1f2937);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
}

.hero-dumbbell span {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #111827, #475569);
    box-shadow: inset 0 8px 18px rgba(255, 255, 255, 0.12), 0 18px 34px rgba(15, 23, 42, 0.22);
}

@keyframes heroSceneDrift {
    0%, 100% { transform: translateY(-50%) rotateX(58deg) rotateZ(-18deg) translate3d(0, 0, 0); }
    50% { transform: translateY(-54%) rotateX(62deg) rotateZ(-10deg) translate3d(-18px, 12px, 0); }
}

@keyframes orbitSpin {
    to { transform: rotateZ(360deg); }
}

@keyframes orbitSpinReverse {
    to { transform: rotateY(62deg) rotateZ(-360deg); }
}

@keyframes corePulse {
    0%, 100% { transform: translateZ(42px) scale(1); }
    50% { transform: translateZ(60px) scale(1.06); }
}

@keyframes dumbbellFloat {
    0%, 100% { transform: translate(-50%, -50%) translateZ(86px) rotateZ(-18deg); }
    50% { transform: translate(-50%, -58%) translateZ(110px) rotateZ(12deg); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero-orbit-scene {
        top: 32%;
        right: -120px;
        width: 520px;
        opacity: 0.42;
    }
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    25% { transform: translate(30px, -40px) scale(1.3); opacity: 0.25; }
    50% { transform: translate(-20px, -80px) scale(0.8); opacity: 0.1; }
    75% { transform: translate(40px, -50px) scale(1.1); opacity: 0.2; }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* === HERO GALLERY (Instagram style) === */
.hero-gallery {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--bg-white);
    background: var(--bg-white);
    transition: var(--transition-slow);
    cursor: pointer;
}

.gallery-card:hover {
    transform: scale(1.05) translateY(-10px) !important;
    z-index: 10 !important;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

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

.gallery-card:hover img {
    transform: scale(1.05);
}

.reel-link {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background: #000;
    color: inherit;
    text-decoration: none;
}

.reel-card {
    background: #000;
}

.reel-card .ig-label {
    pointer-events: none;
}

.card-1 {
    width: 230px;
    height: 360px;
    top: 20px;
    left: 10%;
    transform: rotate(-8deg);
    z-index: 3;
}

.card-2 {
    width: 180px;
    height: 200px;
    bottom: 40px;
    left: 45%;
    transform: rotate(5deg);
    z-index: 4;
}

.card-3 {
    width: 220px;
    height: 280px;
    top: 60px;
    right: 5%;
    transform: rotate(12deg);
    z-index: 2;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ig-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-follower-badge {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite;
    animation-delay: 1s;
}

.gallery-follower-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-follower-badge strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.gallery-follower-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-green {
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

.badge-dot.green {
    background: var(--green);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-right: -8px;
    border: 3px solid var(--bg-white);
    position: relative;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

.hero-scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-gallery {
        max-width: 500px;
        margin: 0 auto;
        height: 400px;
    }
    .card-1 { left: 5%; }
    .card-2 { left: 40%; }
    .card-3 { right: 0%; }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    .hero-content {
        padding: 28px;
        margin: 0 4px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-scroll-indicator {
        display: none;
    }
    .section-padding {
        padding: 80px 0;
    }
    .hero-gallery {
        height: 350px;
    }
    .card-1 {
        width: 160px;
        height: 240px;
    }
    .card-2 {
        width: 140px;
        height: 160px;
    }
    .card-3 {
        width: 180px;
        height: 220px;
    }
    .gallery-follower-badge {
        bottom: 0px;
        left: -10px;
    }
}

/* === STATS BAR === */
.stats-bar {
    background: var(--text-primary);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%, rgba(6, 182, 212, 0.1) 100%);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: inline;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.stat-plus {
    display: inline;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--accent-light);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    .stat-item {
        flex: 0 0 40%;
    }
    .stat-divider {
        display: none;
    }
}

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-float-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

.about-float-badge.badge-bottom-left {
    bottom: auto;
    right: auto;
    top: -20px;
    left: -20px;
    animation-delay: 2s;
}

.float-icon {
    font-size: 28px;
}

.float-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.float-text {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lead-text {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
}

.about-text {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--bg-main);
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(99, 102, 241, 0.04);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* === APPROACH / PAIN CARDS === */
.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pain-card {
    perspective: 1000px;
    height: 320px;
    cursor: pointer;
}

.pain-card .card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.7s var(--ease);
}

.pain-card .card-front {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.pain-card .card-back {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-white);
    transform: rotateY(180deg);
}

.pain-card:hover .card-front {
    transform: rotateY(180deg);
}

.pain-card:hover .card-back {
    transform: rotateY(360deg);
}

.card-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.pain-card .card-back h3 {
    color: var(--text-white);
}

.pain-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pain-card .card-back p {
    color: rgba(255, 255, 255, 0.85);
}

.card-flip-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === HOW IT WORKS === */
.steps-timeline {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light), var(--cyan));
    border-radius: 2px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 84px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-full);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-icon {
    font-size: 36px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .steps-timeline::before {
        left: 22px;
    }
    .step-item {
        gap: 20px;
    }
    .step-number {
        width: 44px;
        font-size: 13px;
    }
    .step-icon {
        display: none;
    }
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.pricing-featured {
    background: var(--text-primary);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.featured-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.card-tier {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.pricing-featured .card-tier {
    color: var(--accent-light);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-featured h3 {
    color: var(--text-white);
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-featured .price-amount {
    color: var(--text-white);
}

.price-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-featured .price-currency {
    color: rgba(255, 255, 255, 0.5);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-featured .price-period {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
}

.feature-list li svg {
    flex-shrink: 0;
    color: var(--green);
}

.pricing-featured .feature-list li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-featured .feature-list li svg {
    color: var(--green-light);
}

.pricing-featured .btn-primary {
    background: var(--text-white);
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-featured .btn-primary:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .pricing-featured {
        transform: none;
    }
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
}

/* === RESULTS / TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.05);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-result {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* === TRANSFORMATION BANNER === */
.transformation-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 50%, #ecfeff 100%);
    position: relative;
    overflow: hidden;
}

.transformation-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-glass-strong);
    border-radius: var(--radius-xl);
    padding: 60px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-xl);
}

.transformation-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 16px;
}

.transformation-content p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.7;
}

.transformation-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.tf-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.tf-feature svg {
    color: var(--green);
    flex-shrink: 0;
}

.transformation-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.transformation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

@media (max-width: 900px) {
    .transformation-wrapper {
        grid-template-columns: 1fr;
        padding: 36px;
    }
}

/* === LEAD MAGNET === */
.lead-magnet {
    background: var(--bg-main);
}

.lead-magnet-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.lm-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lm-desc {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.lead-form input {
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
    background: var(--bg-main);
}

.lead-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
    background: var(--bg-white);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

.form-success {
    margin-top: 16px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.lm-visual {
    position: relative;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    min-height: 400px;
}

.lm-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lm-bubble {
    position: absolute;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(12px);
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
    animation: floatBadge 5s ease-in-out infinite;
    white-space: nowrap;
}

.lm-bubble-1 { top: 40px; left: -10px; animation-delay: 0s; }
.lm-bubble-2 { bottom: 60px; right: 30px; animation-delay: 1.5s; }
.lm-bubble-3 { top: 50%; left: 50%; transform: translateX(-50%); animation-delay: 3s; }

@media (max-width: 900px) {
    .lead-magnet-wrapper {
        grid-template-columns: 1fr;
    }
    .lm-content {
        padding: 36px 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .lm-visual {
        min-height: 280px;
    }
}

/* === INSTAGRAM === */
.instagram-wrapper {
    background: linear-gradient(135deg, #fdf2f8 0%, #eef2ff 50%, #ecfeff 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.instagram-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(131, 58, 180, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.instagram-desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.instagram-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

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

.ig-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.ig-stat span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .instagram-wrapper {
        padding: 48px 28px;
    }
    .instagram-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* === FAQ === */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--text-muted);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* === FORM COMPLIANCE (152-FZ) === */
.compliance-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compliance-checkbox-wrapper {
    margin: 8px 0;
}

.main-form-compliance {
    margin-top: -10px;
    margin-bottom: 24px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 13px;
    user-select: none;
    color: var(--text-muted);
    line-height: 1.5;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: var(--transition);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--accent);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox a {
    color: var(--accent);
    text-decoration: underline;
}

.custom-checkbox a:hover {
    color: var(--text-primary);
}

/* === TRANSFORMATION LABELS === */
.transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.tf-label {
    position: absolute;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.tf-before {
    top: 24px;
    left: 24px;
}

.tf-after {
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-white);
    border: none;
}

@media (max-width: 768px) {
    .tf-label {
        padding: 6px 16px;
        font-size: 14px;
    }
    .tf-before {
        top: 16px;
        left: 16px;
    }
    .tf-after {
        bottom: 16px;
        right: 16px;
    }
}

/* === CONTACT FORM === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 17px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-benefit svg {
    color: var(--green);
    flex-shrink: 0;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-main);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.social-chip:hover {
    background: var(--text-primary);
    color: var(--text-white);
    border-color: var(--text-primary);
}

.contact-form-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 22px;
}

.spam-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
    background: var(--bg-main);
    color: var(--text-primary);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px 20px;
    }
}

/* === FOOTER === */
.footer {
    background: var(--text-primary);
    color: var(--text-white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    color: var(--text-white) !important;
}

.footer-logo span {
    color: var(--accent-light) !important;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-nav h4 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-nav a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--text-white);
    transform: translateX(4px);
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--text-white);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* === FLOATING CTA (mobile) === */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
    z-index: 900;
    transition: var(--transition);
    transform: translateY(80px);
}

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

@media (max-width: 768px) {
    .floating-cta {
        display: flex;
    }
}

/* === SCROLL ANIMATIONS === */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.anim-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.anim-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* === SMOOTH SELECTION === */
::selection {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-dark);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
