/* ============================================
   FLEZEN — MODERN PROFESSIONAL THEME
   BLACK & PURPLE EDITION
   ============================================ */

:root {
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --purple-soft: rgba(139, 92, 246, 0.12);
    --purple-glow: rgba(139, 92, 246, 0.25);
    --black: #0f0f0f;
    --black-light: #161616;
    --gray: #8892a0;
    --gray-light: #a0aec0;
    --white: #ffffff;
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.07);
    --card-bg: #141414;
    --input-bg: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* GLOBAL SECTION STACKING FIX (prevents overlap) */
section {
    position: relative;
}

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), #a78bfa);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s;
}

/* CURSOR GLOW */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    mix-blend-mode: screen;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 0.75rem 0;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}
.brand-glow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.brand-glow i { font-size: 1.5rem; }

.nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.4rem 1rem !important;
    transition: color 0.25s;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--purple) !important; }

.btn-glow {
    background: var(--purple);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.25s;
    text-decoration: none;
}
.btn-glow:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
    color: white;
}

.navbar-toggler {
    border: none;
    background: none;
    padding: 0.5rem;
}
.toggler-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--purple);
    margin: 4px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-cinematic {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 7rem 0 3rem;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.aurora {
    position: absolute;
    top: -40%; left: -40%;
    width: 180%; height: 180%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: aurora 25s ease-in-out infinite;
}
@keyframes aurora {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(20px,-15px) rotate(0.5deg); }
}

/* ============================================
   PARTICLES - BUBBLE EFFECT (FIXED)
   ============================================ */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.particle {
    position: absolute;
    bottom: -30px;
    border-radius: 50%;
    animation: float-particle linear infinite;
    will-change: transform, opacity;
}
@keyframes float-particle {
    0% {
        transform: translateY(0) scale(0.4);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.55;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-105vh) scale(1.2);
        opacity: 0;
    }
}

/* Hero content above particles */
.hero-cinematic .container {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}
.pulse-dot {
    width: 6px; height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: pulse-dot 3s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 var(--purple-glow); }
    50% { box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}
.title-line { display: block; }
.title-gradient {
    background: linear-gradient(135deg, var(--purple), #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 400;
}

/* TELEGRAM BOT BUTTON */
.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #0088cc, #00a8e8);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 0.875rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
}
.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.45);
    color: white;
}
.btn-telegram i { font-size: 1.2rem; }

/* SEARCH BOX */
.search-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 0.4rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 620px;
    margin: 0 auto 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    transition: all 0.3s;
}
.search-glass:focus-within {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.1);
}
.search-inner { background: rgba(0,0,0,0.25); border-radius: 1.05rem; }
.search-icon {
    display: flex;
    align-items: center;
    padding: 0 0.875rem;
    color: var(--gray);
    font-size: 1.1rem;
}
.search-glass .form-control {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9375rem;
    padding: 0.875rem 0;
}
.search-glass .form-control::placeholder { color: var(--gray); }
.search-glass .form-control:focus { box-shadow: none; background: transparent; }
.btn-paste {
    background: transparent;
    border: none;
    color: var(--gray);
    padding: 0 0.875rem;
    font-size: 1rem;
    transition: color 0.25s;
    cursor: pointer;
}
.btn-paste:hover { color: var(--purple); }
.btn-search {
    background: var(--purple);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.875rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.25s;
}
.btn-search:hover:not(:disabled) {
    background: var(--purple-dark);
    transform: translateX(2px);
    box-shadow: 0 4px 16px var(--purple-glow);
}
.btn-search:disabled {
    opacity: 0.85;
    cursor: wait;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.search-glass.is-loading {
    border-color: rgba(139, 92, 246, 0.7) !important;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5) !important;
    animation: searchPulse 1.4s infinite ease-in-out;
}
@keyframes searchPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(139, 92, 246, 0.35); }
    50% { box-shadow: 0 0 35px rgba(139, 92, 246, 0.75); }
}

/* RESULTS */
.results-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 620px;
    margin: 0 auto;
    animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.result-media {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}
.media-thumb {
    position: relative;
    border-radius: 0.875rem;
    overflow: hidden;
    width: 180px;
    flex-shrink: 0;
}
.media-thumb img { width: 100%; height: 110px; object-fit: cover; }
.media-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s;
}
.media-thumb:hover .media-play { opacity: 1; }
.media-play i { font-size: 2rem; color: white; }
.media-time {
    position: absolute;
    bottom: 6px; right: 6px;
    background: rgba(0,0,0,0.8);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}
.media-info { flex: 1; min-width: 180px; }
.media-info h4 { font-weight: 600; margin-bottom: 0.35rem; font-size: 1rem; }
.media-info p { color: var(--gray); font-size: 0.85rem; margin-bottom: 0.6rem; }
.media-stats { display: flex; gap: 0.875rem; color: var(--gray); font-size: 0.75rem; }
.media-stats i { color: var(--purple); margin-right: 0.2rem; }

.result-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.btn-action {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem;
    border-radius: 0.875rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-play { background: var(--purple); color: white; }
.btn-play:hover { background: var(--purple-dark); box-shadow: 0 4px 16px var(--purple-glow); }
.btn-dl {
    background: transparent;
    color: var(--purple);
    border: 1.5px solid var(--purple);
}
.btn-dl:hover { background: var(--purple); color: white; }

.app-nudge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.25rem;
    padding: 0.875rem;
    background: var(--purple-soft);
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: 0.875rem;
}
.nudge-icon {
    width: 40px; height: 40px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.nudge-text { flex: 1; }
.nudge-text strong { display: block; color: white; font-size: 0.9rem; font-weight: 600; }
.nudge-text span { color: var(--gray); font-size: 0.8rem; }
.btn-nudge {
    background: var(--purple);
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-nudge:hover {
    background: var(--purple-dark);
    color: white;
    box-shadow: 0 4px 12px var(--purple-glow);
}

.no-result { text-align: center; color: var(--gray); padding: 2rem; }
.no-result i { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

/* TRUST BAR */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 500;
}
.trust-item i { color: var(--purple); font-size: 1rem; }

/* SCROLL HINT */
.scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray);
    font-size: 0.7rem;
}
.mouse {
    width: 20px; height: 32px;
    border: 1.5px solid var(--gray);
    border-radius: 10px;
    position: relative;
}
.wheel {
    width: 3px; height: 6px;
    background: var(--purple);
    border-radius: 2px;
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2.5s infinite;
}
@keyframes scroll-wheel {
    0% { top: 5px; opacity: 1; }
    100% { top: 16px; opacity: 0; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header { margin-bottom: 1.75rem; }
.section-header.text-center { text-align: center; }
.section-tag {
    display: inline-block;
    background: var(--purple-soft);
    color: var(--purple);
    padding: 0.3rem 0.875rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.875rem;
}
.section-tag.light { background: rgba(255,255,255,0.08); color: var(--purple); }
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}
.section-title.light { color: white; }
.text-gradient {
    background: linear-gradient(135deg, var(--purple), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    color: var(--gray);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    font-weight: 400;
}
.section-text {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
}
.section-text.light { color: rgba(255,255,255,0.7); }

/* SCROLL REVEAL */
.section-header, .card-glass, .step-card, .counter-card, .accordion-item, .contact-glass, .feature-list, .phone-showcase, .achievement-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================
   ACHIEVEMENT SECTION (NEW)
   ============================================ */
.achievement-cinematic {
    padding: 3.5rem 0;
    background: var(--black-light);
    position: relative;
    z-index: 1;
}
.achievement-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.35s;
    height: 100%;
}
.achievement-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.1);
}
.achievement-icon {
    width: 56px; height: 56px;
    background: var(--purple-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.875rem;
    font-size: 1.4rem;
    color: var(--purple);
    transition: all 0.3s;
}
.achievement-card:hover .achievement-icon {
    background: var(--purple);
    color: white;
    transform: scale(1.1);
}
.achievement-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.25rem;
}
.achievement-label {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.85rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-cinematic {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.section-glow {
    position: absolute;
    top: 50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.feature-list { margin-top: 1.5rem; }
.f-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}
.f-check {
    width: 24px; height: 24px;
    background: var(--purple-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* PHONE SHOWCASE */
.phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
.phone-glow {
    position: absolute;
    width: 250px; height: 250px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%,100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.7; }
}
.phone-device {
    width: 230px; height: 460px;
    background: var(--black-light);
    border-radius: 2rem;
    padding: 0.625rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    z-index: 5;
}
.phone-notch {
    position: absolute;
    top: 0.625rem; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 22px;
    background: var(--black);
    border-radius: 0 0 0.875rem 0.875rem;
    z-index: 10;
}
.phone-screen {
    background: var(--black);
    border-radius: 1.5rem;
    height: 100%;
    padding: 2rem 0.875rem 0.875rem;
    overflow: hidden;
}
.screen-header {
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.875rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.screen-header.light { color: var(--purple); }
.screen-search {
    background: rgba(255,255,255,0.04);
    border-radius: 0.625rem;
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 0.875rem;
    border: 1px solid rgba(255,255,255,0.04);
}
.screen-videos { display: flex; flex-direction: column; gap: 0.625rem; }
.sv-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.4rem;
    background: rgba(255,255,255,0.02);
    border-radius: 0.625rem;
    border: 1px solid rgba(255,255,255,0.04);
}
.sv-thumb {
    width: 42px; height: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), var(--purple));
    border-radius: 0.4rem;
    flex-shrink: 0;
}
.sv-meta { flex: 1; }
.sv-meta div:first-child { height: 7px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-bottom: 3px; width: 75%; }
.sv-meta div:last-child { height: 5px; background: rgba(255,255,255,0.04); border-radius: 2px; width: 45%; }
.sv-item > i { color: var(--purple); font-size: 1.1rem; }
.screen-play {
    text-align: center;
    padding: 3rem 0;
}
.screen-play i { font-size: 3.5rem; color: var(--purple); }
.screen-play span { display: block; color: white; margin-top: 0.75rem; font-weight: 600; font-size: 0.9rem; }

.float-tag {
    position: absolute;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.625rem 1rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    z-index: 10;
    animation: float-tag 5s ease-in-out infinite;
}
.float-tag i { font-size: 1.1rem; color: var(--purple); }
.tag-1 { top: 12%; left: 0; animation-delay: 0s; }
.tag-2 { top: 35%; right: 0; animation-delay: 1.5s; }
.tag-3 { bottom: 18%; left: -3%; animation-delay: 3s; }
@keyframes float-tag {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-cinematic {
    padding: 3.5rem 0;
    background: var(--black-light);
    position: relative;
    z-index: 1;
}
.card-glass {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s;
    height: 100%;
    position: relative;
    z-index: 1;
}
.card-glass:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08);
}
.card-icon {
    width: 64px; height: 64px;
    background: var(--purple-soft);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    color: var(--purple);
    transition: all 0.35s;
}
.card-glass:hover .card-icon {
    background: var(--purple);
    color: white;
    transform: scale(1.05);
}
.card-glass h5 { font-weight: 600; margin-bottom: 0.6rem; color: white; font-size: 1.05rem; }
.card-glass p { color: var(--gray); font-size: 0.85rem; margin: 0; line-height: 1.6; }

/* ============================================
   HOW TO USE
   ============================================ */
.how-cinematic {
    padding: 3.5rem 0;
    position: relative;
    z-index: 1;
}
.steps-track { position: relative; }
.step-line {
    position: absolute;
    top: 50px; left: 12%; right: 12%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--purple), transparent);
    opacity: 0.2;
}
.step-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s;
    height: 100%;
    position: relative;
}
.step-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08);
}
.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.15);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.step-icon {
    width: 52px; height: 52px;
    background: var(--purple-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.875rem;
    font-size: 1.25rem;
    color: var(--purple);
    transition: all 0.3s;
}
.step-card:hover .step-icon {
    background: var(--purple);
    color: white;
    transform: scale(1.1);
}
.step-card h6 { font-weight: 600; color: white; margin-bottom: 0.4rem; font-size: 0.95rem; }
.step-card p { color: var(--gray); font-size: 0.82rem; margin: 0; }

/* ============================================
   ACHIEVEMENTS (OLD COUNTER SECTION)
   ============================================ */
.achieve-cinematic {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.achieve-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    z-index: 0;
}
.achieve-cinematic .container {
    position: relative;
    z-index: 2;
}
.counter-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 2rem 1.25rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s;
}
.counter-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-4px);
}
.counter-icon {
    width: 56px; height: 56px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}
.counter-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}
.counter-label { color: var(--gray); font-weight: 500; font-size: 0.85rem; }

/* ============================================
   DOWNLOAD
   ============================================ */
.download-cinematic {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.download-glow {
    position: absolute;
    top: -50%; left: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.download-cinematic .container {
    position: relative;
    z-index: 2;
}
.dl-features { margin: 1.75rem 0; }
.dl-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.625rem;
    font-weight: 500;
    font-size: 0.9rem;
}
.dl-item i { color: var(--purple); font-size: 1.1rem; }

.store-btns { display: flex; flex-wrap: wrap; gap: 0.875rem; }
.btn-store {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: white;
    color: var(--black);
    padding: 0.75rem 1.25rem;
    border-radius: 0.875rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s;
    font-size: 0.875rem;
}
.btn-store i { font-size: 1.35rem; }
.btn-store div { display: flex; flex-direction: column; line-height: 1.2; }
.btn-store small { font-size: 0.6rem; font-weight: 500; opacity: 0.7; }
.btn-store span { font-size: 0.9rem; }
.btn-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
    color: var(--black);
}
.btn-store-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-store-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.phone-hero { position: relative; display: inline-block; }
.phone-ring {
    position: absolute;
    inset: -16px;
    border: 1.5px solid rgba(139, 92, 246, 0.2);
    border-radius: 2.5rem;
    animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.4; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-cinematic {
    padding: 3.5rem 0;
    background: var(--black-light);
    position: relative;
    z-index: 1;
}
.faq-accordion .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.875rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.faq-accordion .accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border: none;
    font-size: 0.9375rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--purple-soft);
    color: var(--purple);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { display: none; }
.faq-accordion .accordion-button i { transition: transform 0.3s; font-size: 0.875rem; }
.faq-accordion .accordion-button:not(.collapsed) i { transform: rotate(180deg); }
.faq-num {
    width: 28px; height: 28px;
    background: var(--purple-soft);
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--purple);
    flex-shrink: 0;
    font-weight: 700;
}
.faq-accordion .accordion-body {
    padding: 1.25rem;
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ============================================
   CONTACT (FIXED OVERLAP)
   ============================================ */
.contact-cinematic {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
    background: var(--black);
}
.contact-glass {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.35s;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}
.contact-glass:hover {
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.06);
}
.contact-icon {
    width: 64px; height: 64px;
    background: var(--purple-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    color: var(--purple);
}
.contact-glass h3 { font-weight: 700; margin-bottom: 0.4rem; font-size: 1.5rem; color: white; }
.contact-glass > p { color: var(--gray); margin-bottom: 1.75rem; font-size: 0.9rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer-glass {
    background: var(--black-light);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    z-index: 1;
}
.footer-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.footer-glass .container {
    position: relative;
    z-index: 2;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.875rem;
    letter-spacing: -0.3px;
}
.footer-desc { color: var(--gray); margin-bottom: 1.25rem; max-width: 280px; font-size: 0.875rem; line-height: 1.6; }
.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--purple); transform: translateX(3px); }

.social-orbit { display: flex; gap: 0.625rem; }
.social-planet {
    width: 38px; height: 38px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.25s;
    font-size: 0.875rem;
}
.social-planet:hover {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
}
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    margin-bottom: 1.25rem;
    opacity: 0.3;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.footer-bottom i { color: var(--purple); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .phone-showcase { min-height: 320px; }
    .contact-glass { padding: 2rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.9rem; }
    .hero-cinematic { padding: 6rem 0 2.5rem; min-height: auto; }
    .section-title { font-size: 1.6rem; }
    .trust-bar { gap: 1rem; margin-top: 2rem; }
    .media-thumb { width: 100%; }
    .media-thumb img { height: 160px; }
    .contact-glass { padding: 1.5rem; }
    .float-tag { display: none; }
    .step-line { display: none; }
    .btn-telegram { font-size: 0.8rem; padding: 0.6rem 1.25rem; }
    .achievement-num { font-size: 1.5rem; }
    .cursor-glow { display: none; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.5rem !important; }
    .section-title { font-size: 1.3rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1rem; }
    .card-glass { padding: 1rem !important; }
    .container { padding-left: 1rem; padding-right: 1rem; }
    .brand-glow { gap: 0.25rem; font-size: 1.1rem; }
    .nav-link { padding: 0.3rem 0.75rem !important; font-size: 0.75rem; }
    .btn-glow { padding: 0.4rem 1rem; font-size: 0.75rem; }
    .achievement-num { font-size: 1.3rem; }
    .achievement-icon { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ============================================
   RESPONSIVE CONTENT PAGES
   ============================================ */
@media (max-width: 991px) {
    .card-glass { padding: 1.5rem; }
    .section-header { margin-bottom: 2rem; }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    .card-glass {
        padding: 1.25rem !important;
        margin-bottom: 1rem;
    }
    .about-cinematic {
        padding: 2rem 0 !important;
    }
    code {
        font-size: 0.75rem;
        word-break: break-all;
    }
    table { font-size: 0.85rem; }
    table th, table td { padding: 8px !important; }
    h2 { font-size: 1.4rem; margin-bottom: 1rem; }
    h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
    h4 { font-size: 1rem; }
    h5 { font-size: 0.95rem; }
    ol, ul { padding-left: 15px; font-size: 0.9rem; line-height: 1.6; }
    ol li, ul li { margin-bottom: 8px; }
    p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
    .section-header { margin-bottom: 1.5rem; }
    .section-tag { font-size: 0.75rem; }
    .btn-store { width: 100%; margin-bottom: 1rem; }
    .row { --bs-gutter-x: 1rem; }
    [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ============================================
   KEYWORD BADGE TAGS
   ============================================ */
.badge-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(139, 92, 246, 0.12);
    color: #c4b5fd !important;
    border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}
.badge-tag:hover {
    background: rgba(139, 92, 246, 0.3);
    color: #ffffff !important;
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25);
}