/* ============================================
   LOADING SCREEN
   ============================================ */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
}

body.loading {
    overflow: hidden;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.loader-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loader-ring:nth-child(1) {
    border-top-color: var(--primary-color);
    animation-duration: 1.2s;
}

.loader-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    border-top-color: var(--secondary-color);
    animation-duration: 1s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    width: 120px;
    height: 120px;
    border-top-color: var(--accent-color);
    animation-duration: 0.8s;
}

.loader-ring:nth-child(4) {
    width: 140px;
    height: 140px;
    border-top-color: var(--primary-color);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.loader-text {
    margin-top: 180px;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   MODERN CSS RESET & NORMALIZE
   ============================================ */

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

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role='list'], ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
    font: inherit;
    color: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Remove button defaults */
button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Remove input defaults */
input, textarea {
    background: none;
    border: none;
}

/* Remove link defaults */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove list defaults */
ul, ol {
    list-style: none;
}

/* Table defaults */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 60px;
    }
}

/* Custom Gradient Scrollbar */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 50%,
        var(--bg-primary) 100%
    );
    border-left: 1px solid var(--border-color);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--primary-color) 0%,
        rgba(0, 255, 136, 0.8) 25%,
        var(--secondary-color) 50%,
        rgba(0, 136, 255, 0.8) 75%,
        var(--accent-color) 100%
    );
    border-radius: 7px;
    border: 2px solid var(--bg-secondary);
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.4),
        0 0 20px rgba(0, 136, 255, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        var(--secondary-color) 0%,
        var(--primary-color) 50%,
        var(--secondary-color) 100%
    );
    background-size: 100% 200%;
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.6),
        0 0 30px rgba(0, 136, 255, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.15);
    transform: scaleX(1.1);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(
        180deg,
        var(--accent-color) 0%,
        var(--primary-color) 50%,
        var(--accent-color) 100%
    );
    background-size: 100% 200%;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.8),
        0 0 40px rgba(255, 0, 136, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Firefox Scrollbar with Gradient */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 136, 0.8) var(--bg-secondary);
}

/* Для Firefox можно использовать псевдоэлементы, но ограниченно */
@supports (scrollbar-color: red blue) {
    * {
        scrollbar-color: rgba(0, 255, 136, 0.8) var(--bg-secondary);
    }
}

:root {
    /* Colors */
    --primary-color: #00ff88;
    --primary-dark: #00cc6f;
    --primary-light: #33ffaa;
    --secondary-color: #0088ff;
    --secondary-dark: #0066cc;
    --secondary-light: #33aaff;
    --accent-color: #ff0088;
    --accent-dark: #cc0066;
    --accent-light: #ff33aa;
    
    /* Text Colors - Improved Contrast (WCAG AA compliant) */
    --text-primary: #ffffff;
    --text-secondary: #c8c8c8;
    --text-muted: #888888;
    --text-inverse: #000000;
    
    /* Background Colors */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1525;
    --bg-tertiary: #141a2a;
    --bg-dark: #050810;
    --bg-glass: rgba(15, 21, 37, 0.7);
    --bg-glass-light: rgba(20, 26, 42, 0.5);
    
    /* Border Colors */
    --border-color: #1a1a1a;
    --border-light: #2a2a2a;
    --border-glow: rgba(0, 255, 136, 0.3);
    
    /* Gradients */
    --gradient-start: #00ff88;
    --gradient-end: #0088ff;
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    --gradient-secondary: linear-gradient(135deg, #0088ff 0%, #ff0088 100%);
    --gradient-accent: linear-gradient(135deg, #00ff88, #0088ff, #ff0088);
    --gradient-radial: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.2), transparent);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    
    /* Shadows - Modern */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(0, 255, 136, 0.5);
    
    /* Glow Effects - Улучшенные мягкие свечения */
    --glow-primary: 0 0 30px rgba(0, 255, 136, 0.25), 0 0 60px rgba(0, 255, 136, 0.15), 0 0 90px rgba(0, 255, 136, 0.08);
    --glow-secondary: 0 0 40px rgba(0, 136, 255, 0.25), 0 0 70px rgba(0, 136, 255, 0.15), 0 0 100px rgba(0, 136, 255, 0.08);
    --glow-accent: 0 0 35px rgba(255, 0, 136, 0.25), 0 0 65px rgba(255, 0, 136, 0.15);
    --glow-combined: 0 0 30px rgba(0, 255, 136, 0.2), 0 0 50px rgba(0, 136, 255, 0.15), 0 0 80px rgba(0, 255, 136, 0.1);
    --glow-soft: 0 0 20px rgba(0, 255, 136, 0.15), 0 0 40px rgba(0, 255, 136, 0.1);
    --glow-card: 0 8px 32px rgba(0, 255, 136, 0.12), 0 4px 16px rgba(0, 136, 255, 0.08);
    
    /* Spacing - Modern Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius - Modern */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Backdrop Blur */
    --blur-sm: blur(4px);
    --blur-md: blur(8px);
    --blur-lg: blur(16px);
    --blur-xl: blur(24px);
    
    /* Z-index Scale */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    border-top: none !important;
}

html::before,
html::after {
    display: none !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-top: none !important;
}

/* Optimize scroll performance on mobile */
@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        scroll-behavior: auto;
    }
    
    /* Disable smooth scroll on mobile for better performance */
    html {
        scroll-behavior: auto;
    }
    
    /* Optimize rendering */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Reduce paint operations */
    section {
        contain: layout style paint;
    }
}

/* body::before и body::after используются для многослойного плавного фона */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: 
        /* Плавный базовый градиент без резких переходов */
        linear-gradient(180deg, 
            #0a0e1a 0%, 
            #0c111d 8%,
            #0f1525 18%,
            #0d121f 28%,
            #0a0e1a 38%,
            #0c111d 48%,
            #0f1525 58%,
            #0d121f 68%,
            #0a0e1a 78%,
            #0c111d 88%,
            #050810 100%),
        /* Мягкая сетка для текстуры */
        linear-gradient(rgba(0, 136, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 255, 0.025) 1px, transparent 1px);
    background-size: 
        100% 100%,
        60px 60px,
        60px 60px;
    background-position: 0 0, 0 0, 0 0;
    opacity: 1;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        /* Мягкие орб-эффекты - светящиеся сферы с плавными краями */
        radial-gradient(ellipse at 15% 25%, rgba(0, 136, 255, 0.14) 0%, rgba(0, 136, 255, 0.07) 25%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.06) 25%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 136, 255, 0.08) 0%, rgba(0, 136, 255, 0.04) 30%, transparent 60%),
        radial-gradient(ellipse at 25% 80%, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 25%, transparent 45%),
        radial-gradient(ellipse at 75% 20%, rgba(0, 136, 255, 0.09) 0%, rgba(0, 136, 255, 0.045) 25%, transparent 45%);
    background-size: 100% 100%;
    background-attachment: fixed;
    opacity: 1;
    animation: orbFloat 40s ease-in-out infinite;
    mix-blend-mode: screen;
    filter: blur(0.5px);
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 50px 50px, 50px 50px;
    }
}

@keyframes orbFloat {
    0% {
        background-position: 
            15% 25%,
            85% 75%,
            50% 50%,
            25% 80%,
            75% 20%;
        opacity: 1;
    }
    20% {
        background-position: 
            18% 28%,
            82% 72%,
            52% 48%,
            28% 78%,
            72% 22%;
        opacity: 0.98;
    }
    40% {
        background-position: 
            12% 22%,
            88% 78%,
            48% 52%,
            22% 82%,
            78% 18%;
        opacity: 1;
    }
    60% {
        background-position: 
            20% 30%,
            80% 70%,
            55% 45%,
            30% 75%,
            70% 25%;
        opacity: 0.97;
    }
    80% {
        background-position: 
            16% 26%,
            84% 74%,
            51% 49%,
            26% 79%,
            74% 21%;
        opacity: 0.99;
    }
    100% {
        background-position: 
            15% 25%,
            85% 75%,
            50% 50%,
            25% 80%,
            75% 20%;
        opacity: 1;
    }
}

* {
    box-sizing: border-box;
}

/* Section Spacing Improvements */
section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section:not(.hero) {
    background: transparent;
    position: relative;
    overflow: visible !important;
}

/* Убираем декоративные элементы, которые могут создавать разрывы */
section:not(.hero)::after {
    display: none;
}

/* Убираем разделительные линии между секциями для непрерывного фона */
section:not(.hero)::before {
    display: none;
}

/* Remove any green line above navbar */
.navbar,
.navbar *,
.nav-content,
.nav-content *,
.container:has(.navbar),
body > *:first-child {
    border-top: none !important;
    box-shadow: none !important;
}

.navbar {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   CONTAINER SYSTEM
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    overflow: visible !important;
}

.container-fluid {
    width: 100%;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.container-sm {
    max-width: 640px;
}

.container-md {
    max-width: 768px;
}

.container-lg {
    max-width: 1024px;
}

.container-xl {
    max-width: 1280px;
}

.container-2xl {
    max-width: 1536px;
}

@media (max-width: 768px) {
    /* Ensure all sections are centered on mobile */
    section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .container,
    .container-fluid {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center section headers */
    .section-header {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .section-title,
    .section-description {
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Center all grids */
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .lifehacks-grid {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-items: center !important;
        width: 100% !important;
    }
    
    /* Center cards */
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .lifehack-card {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center FAQ */
    .faq-list {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    /* Center CTA */
    .cta-content {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center buttons */
    .hero-buttons,
    .lifehacks-cta,
    .testimonials-load-more,
    .lifehacks-load-more {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    border-top: none !important;
    z-index: 1000;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
    height: 70px;
    min-height: 70px;
    max-height: 70px;
}

.navbar::before,
.navbar::after {
    display: none !important;
    content: none !important;
    border-top: none !important;
    background: none !important;
}

.navbar *::before,
.navbar *::after {
    border-top: none !important;
}

.nav-content::before,
.nav-content::after {
    display: none !important;
    content: none !important;
    border-top: none !important;
}

.nav-content {
    border-top: none !important;
}

.container:has(.navbar)::before,
.container:has(.navbar)::after {
    display: none !important;
    border-top: none !important;
}

/* Remove any green line above navbar - comprehensive */
body > nav.navbar,
body > nav.navbar::before,
body > nav.navbar::after,
body > nav.navbar *::before,
body > nav.navbar *::after {
    border-top: none !important;
    box-shadow: none !important;
    outline: none !important;
}

body > nav.navbar {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    width: 100%;
    position: relative;
    height: 100%;
}

.nav-content .logo {
    flex: 0 0 auto;
    z-index: 1;
}

.nav-content .nav-menu {
    flex: 1;
    justify-content: center;
    z-index: 1;
}

.nav-content .nav-buttons {
    flex: 0 0 auto;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    outline: none;
}

.logo a {
    outline: none;
    text-decoration: none;
}

.logo a:focus,
.logo a:active,
.logo a:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    width: 100%;
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
    color: var(--text-primary);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn-primary,
.nav-buttons .telegram-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.nav-buttons .telegram-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    margin: 0;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Active States */
@media (max-width: 768px) {
    .nav-menu.active,
    .nav-buttons.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.98) !important;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        padding: 1.5rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--border-color);
        z-index: 9999;
        animation: slideDown 0.3s ease-out;
        pointer-events: auto !important;
        touch-action: auto !important;
    }
    
    .nav-menu.active {
        background: rgba(0, 0, 0, 0.98) !important;
    }
    
    .nav-buttons.active {
        background: transparent !important;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu.active {
        gap: 0;
        list-style: none;
        background: rgba(0, 0, 0, 0.98) !important;
    }
    
    .nav-menu.active li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active a {
        color: var(--text-primary) !important;
        font-size: 1rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }
    
    .nav-menu.active a:hover,
    .nav-menu.active a:focus-visible {
        color: var(--primary-color) !important;
    }
    
    .nav-menu.active a::after {
        display: none;
    }
    
    .nav-buttons.active {
        gap: 1rem;
        margin-top: 1rem;
        width: 100%;
        background: transparent !important;
    }
    
    .nav-buttons.active .btn-primary {
        width: 100%;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    }
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: clamp(0.625rem, 1.25vw, 0.75rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: clamp(0.5rem, 1vw, 0.75rem);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    border: none;
    font-family: inherit;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 44px;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000000;
    box-shadow: var(--glow-soft), var(--shadow-md);
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
    filter: brightness(1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.25),
        0 0 50px rgba(0, 255, 136, 0.15),
        0 0 75px rgba(0, 255, 136, 0.08),
        0 0 40px rgba(0, 136, 255, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

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

.btn-secondary:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.05);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: #000000;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.2),
        0 0 40px rgba(0, 255, 136, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: clamp(6rem, 10vw + 2rem, 10rem) 0 clamp(5rem, 8vw + 2rem, 8rem);
    margin-top: 0;
    overflow: visible !important;
    background: transparent;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

/* Многослойный плавный фон для Hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        /* Плавный базовый градиент без резких переходов */
        linear-gradient(180deg, 
            #0a0e1a 0%, 
            #0d121f 15%,
            #0f1525 30%,
            #0d121f 45%,
            #0a0e1a 60%,
            #0d121f 75%,
            #0f1525 90%,
            #050810 100%),
        /* Динамичные орб-эффекты для Hero */
        radial-gradient(ellipse at 20% 30%, rgba(0, 136, 255, 0.3) 0%, rgba(0, 136, 255, 0.15) 30%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0.15) 30%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 136, 255, 0.2) 0%, rgba(0, 136, 255, 0.1) 40%, transparent 70%),
        radial-gradient(ellipse at 10% 80%, rgba(0, 255, 136, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(0, 136, 255, 0.25) 0%, transparent 50%);
    background-size: 100% 100%, 150% 150%, 120% 120%, 200% 200%, 180% 180%;
    background-attachment: fixed;
    animation: heroBackgroundFlow 30s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        /* Динамичные светящиеся линии */
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.1) 30%, rgba(0, 255, 136, 0.15) 50%, rgba(0, 255, 136, 0.1) 70%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 136, 255, 0.1) 30%, rgba(0, 136, 255, 0.15) 50%, rgba(0, 136, 255, 0.1) 70%, transparent 100%),
        linear-gradient(45deg, transparent 0%, rgba(0, 255, 136, 0.08) 50%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(0, 136, 255, 0.08) 50%, transparent 100%);
    background-size: 300% 300%, 300% 300%, 200% 200%, 200% 200%;
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    animation: heroLinesMove 25s linear infinite;
    mix-blend-mode: screen;
    opacity: 0.8;
    filter: blur(1px);
}

@keyframes heroBackgroundFlow {
    0% {
        background-position: 
            0% 0%,
            20% 30%,
            80% 70%,
            50% 50%,
            10% 80%,
            90% 20%;
        opacity: 1;
    }
    25% {
        background-position: 
            0% 0%,
            25% 35%,
            75% 65%,
            55% 45%,
            15% 75%,
            85% 25%;
        opacity: 1;
    }
    50% {
        background-position: 
            0% 0%,
            15% 25%,
            85% 75%,
            45% 55%,
            5% 85%,
            95% 15%;
        opacity: 1;
    }
    75% {
        background-position: 
            0% 0%,
            30% 40%,
            70% 60%,
            60% 40%,
            20% 70%,
            80% 30%;
        opacity: 1;
    }
    100% {
        background-position: 
            0% 0%,
            20% 30%,
            80% 70%,
            50% 50%,
            10% 80%,
            90% 20%;
        opacity: 1;
    }
}

@keyframes heroLinesMove {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.8;
    }
    25% {
        background-position: 25% 25%, 25% 25%, 30% 30%, 30% 30%;
        opacity: 0.9;
    }
    50% {
        background-position: 100% 100%, 100% 100%, 50% 50%, 50% 50%;
        opacity: 0.85;
    }
    75% {
        background-position: 75% 75%, 75% 75%, 70% 70%, 70% 70%;
        opacity: 0.9;
    }
    100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.8;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animated Background Canvas for Hero */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.hero-animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: heroBgGlow 10s ease-in-out infinite;
}

@keyframes heroBgGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: clamp(400px, 40vw, 800px);
    height: clamp(400px, 40vw, 800px);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.18) 0%, rgba(0, 255, 136, 0.1) 25%, rgba(0, 255, 136, 0.05) 50%, transparent 75%);
    border-radius: 50%;
    filter: blur(clamp(60px, 8vw, 120px));
    animation: heroOrbFloat 12s ease-in-out infinite;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 8%;
    width: clamp(350px, 35vw, 700px);
    height: clamp(350px, 35vw, 700px);
    background: radial-gradient(circle, rgba(0, 136, 255, 0.18) 0%, rgba(0, 136, 255, 0.1) 25%, rgba(0, 136, 255, 0.05) 50%, transparent 75%);
    border-radius: 50%;
    filter: blur(clamp(60px, 8vw, 120px));
    animation: heroOrbFloat 15s ease-in-out infinite reverse;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

@keyframes heroOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.85;
    }
    25% {
        transform: translate(30px, -40px) scale(1.15);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.9;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-title-wrapper {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    display: inline-block;
    position: relative;
    padding-left: 0.5rem;
    animation: brandGradientFlow 3s ease infinite;
    background-size: 200% 200%;
}

.hero-brand::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--text-primary);
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-wrap: normal;
    overflow-wrap: normal;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    width: 100%;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Mobile centering for hero title lines */
@media (max-width: 768px) {
    .hero-title-line {
        display: block;
        text-align: center;
        width: 100%;
        line-height: 1;
        margin: 0;
        padding: 0;
    }
}

.hero-title .gradient-text {
    color: transparent;
}

.gradient-text {
    background: linear-gradient(135deg, #00ff88, #0088ff, #ff0088, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientFlow 4s ease infinite;
    display: inline-block;
    color: transparent !important;
    position: relative;
}

/* Animated text cursor effect */
#animated-text {
    position: relative;
    min-width: fit-content;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    margin: 0 auto;
    max-width: 100%;
    word-break: keep-all;
}

#animated-text::after {
    content: '|';
    color: var(--primary-color);
    animation: blink 1s infinite;
    margin-left: 3px;
    font-weight: 300;
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
}


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

@keyframes gradientFlow {
    0% { 
        background-position: 0% 50%;
    }
    25% { 
        background-position: 100% 50%;
    }
    50% { 
        background-position: 200% 50%;
    }
    75% { 
        background-position: 100% 50%;
    }
    100% { 
        background-position: 0% 50%;
    }
}

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

.hero-description {
    font-size: clamp(1.4rem, 3vw + 0.5rem, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    line-height: 1.75;
    max-width: 800px;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
}

.hero-buttons a {
    pointer-events: auto !important;
    z-index: 100 !important;
    position: relative;
}

.hero-stats {
    display: flex;
    gap: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
}

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

.stat-number {
    font-size: clamp(2rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Connection Animation - Futuristic */
.connection-animation {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
}

.connection-animation canvas {
    pointer-events: none !important;
}

.hero .connection-animation {
    max-width: 100%;
    width: 100%;
    min-height: 780px;
    opacity: 1 !important;
    visibility: visible !important;
}

.connection-animation * {
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

/* Prevent GSAP from affecting connection animation */
.connection-animation,
.connection-animation *,
.server-node,
.client-node,
.connection-core,
.server-icon,
.client-icon {
    will-change: auto !important;
}

/* Canvas for interactive particles - must be on top for mouse events */
#particles-canvas,
#particles-canvas-hero {
    pointer-events: auto !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 1;
    cursor: none;
    will-change: contents;
    transform: translateZ(0);
}

/* CTA canvas should NOT block clicks */
#particles-canvas-cta {
    pointer-events: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: -1 !important;
    cursor: none;
    will-change: contents;
    transform: translateZ(0);
}

/* Main elements should not block mouse events on canvas */
.server-node,
.client-node,
.connection-core,
.connection-status-animated {
    pointer-events: none;
    position: relative;
    z-index: 3;
}

.connection-animation::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color), transparent);
    pointer-events: none;
    opacity: 0;
    left: var(--cursor-x, 50%);
    top: var(--cursor-y, 50%);
    transform: translate(-50%, -50%);
    transition: left 0.1s ease, top 0.1s ease, opacity 0.3s ease;
    z-index: 1000;
    filter: blur(10px);
}

.connection-animation:hover::before {
    opacity: 0.6;
}

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

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.8), transparent);
    top: 10%;
    left: 10%;
    animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.8), transparent);
    bottom: 15%;
    right: 15%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 136, 0.6), transparent);
    top: 50%;
    right: 20%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.2); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.1); }
    75% { transform: translate(-30px, 30px) scale(0.9); }
}

.server-node, .client-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    position: relative;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.server-node {
    order: 1;
}

.client-node {
    order: 3;
}


.server-glow, .client-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent);
    filter: blur(20px);
    animation: nodeGlow 3s ease-in-out infinite;
    z-index: -1;
}

.server-glow-secondary, .client-glow-secondary {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.3), transparent);
    filter: blur(30px);
    animation: nodeGlowSecondary 4s ease-in-out infinite;
    z-index: -2;
    opacity: 0.6;
}

@keyframes nodeGlowSecondary {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.3) rotate(180deg); 
    }
}

@keyframes nodeGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.server-icon, .client-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite, gradientShift 5s ease infinite;
    box-shadow: 
        var(--glow-primary),
        var(--glow-secondary),
        0 0 40px rgba(0, 255, 136, 0.5),
        0 0 60px rgba(0, 136, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
    will-change: transform, filter, box-shadow;
    transform: translateZ(0);
    overflow: visible;
    border: 2px solid transparent;
    background-clip: padding-box;
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 
            var(--glow-primary),
            var(--glow-secondary),
            0 0 40px rgba(0, 255, 136, 0.5),
            0 0 60px rgba(0, 136, 255, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.15);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 
            0 0 50px rgba(0, 255, 136, 0.7),
            0 0 80px rgba(0, 136, 255, 0.5),
            inset 0 0 25px rgba(255, 255, 255, 0.2);
        filter: brightness(1.1);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
        box-shadow: 
            0 0 60px rgba(0, 255, 136, 0.9),
            0 0 100px rgba(0, 136, 255, 0.7),
            0 0 140px rgba(255, 0, 136, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.25);
        filter: brightness(1.2);
    }
    75% {
        transform: scale(1.05) rotate(-2deg);
        box-shadow: 
            0 0 50px rgba(0, 255, 136, 0.7),
            0 0 80px rgba(0, 136, 255, 0.5),
            inset 0 0 25px rgba(255, 255, 255, 0.2);
        filter: brightness(1.1);
    }
}

.icon-inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
    animation: innerGlow 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes innerGlow {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
    }
}

.icon-ring {
    position: absolute;
    width: 130%;
    height: 130%;
    top: 50%;
    left: 50%;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
    border-radius: 50%;
    animation: ringRotate 4s ease-in-out infinite;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 40px rgba(0, 136, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 255, 136, 0.15) 45deg,
        rgba(0, 136, 255, 0.15) 90deg,
        transparent 135deg,
        rgba(0, 255, 136, 0.15) 180deg,
        rgba(0, 136, 255, 0.15) 225deg,
        transparent 270deg,
        rgba(0, 255, 136, 0.15) 315deg,
        transparent 360deg
    );
    mask: radial-gradient(circle, transparent 45%, black 50%);
    -webkit-mask: radial-gradient(circle, transparent 45%, black 50%);
}

.icon-hologram {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 255, 136, 0.2) 90deg,
        transparent 180deg,
        rgba(0, 136, 255, 0.2) 270deg,
        transparent 360deg
    );
    animation: hologramRotate 3s linear infinite;
    opacity: 0.7;
    z-index: 1;
    filter: blur(1px);
}

@keyframes ringRotate {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
        opacity: 0.6;
        filter: brightness(1);
    }
    25% {
        transform: translate(-50%, -50%) rotate(90deg) scale(1.05);
        opacity: 0.9;
        filter: brightness(1.2);
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1); 
        opacity: 1;
        filter: brightness(1.4);
    }
    75% {
        transform: translate(-50%, -50%) rotate(270deg) scale(1.05);
        opacity: 0.9;
        filter: brightness(1.2);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1); 
        opacity: 0.6;
        filter: brightness(1);
    }
}

@keyframes hologramRotate {
    0% { transform: rotate(0deg); opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { transform: rotate(360deg); opacity: 0.5; }
}

.server-icon svg, .client-icon svg {
    width: 50px;
    height: 50px;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.server-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: labelGlow 2s ease-in-out infinite;
    order: -1;
    margin-bottom: 0.5rem;
}

.client-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: labelGlow 2s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 136, 255, 0.5); }
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    animation: particleFloat 3s ease-in-out infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.data-particles .particle:nth-child(1) {
    top: -20px;
    left: 50%;
    animation-delay: 0s;
}

.data-particles .particle:nth-child(2) {
    top: -30px;
    left: 40%;
    animation-delay: 1s;
}

.data-particles .particle:nth-child(3) {
    top: -25px;
    left: 60%;
    animation-delay: 2s;
}

.data-particles .particle:nth-child(4) {
    top: -35px;
    left: 45%;
    animation-delay: 0.5s;
}

.data-particles .particle:nth-child(5) {
    top: -15px;
    left: 55%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
    100% {
        transform: translateY(-60px) scale(0);
        opacity: 0;
    }
}

.connection-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 340px;
    z-index: 2;
    order: 2;
}

.core-line {
    position: absolute;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 255, 136, 0.8) 0%,
        rgba(0, 136, 255, 0.8) 50%,
        rgba(0, 255, 136, 0.8) 100%);
    border-radius: 3px;
    box-shadow: 
        var(--glow-primary),
        var(--glow-secondary);
    animation: corePulse 2s ease-in-out infinite;
    will-change: box-shadow, opacity;
    transform: translateZ(0);
}

.core-line-glow {
    position: absolute;
    width: 20px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, 
        rgba(0, 255, 136, 0.2) 0%,
        rgba(0, 136, 255, 0.2) 50%,
        rgba(0, 255, 136, 0.2) 100%);
    filter: blur(8px);
    border-radius: 10px;
    animation: coreGlowPulse 2.5s ease-in-out infinite;
    z-index: -1;
}

.core-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(0, 255, 136, 0.3) 20px,
        rgba(0, 255, 136, 0.3) 22px
    );
    animation: coreParticlesMove 3s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

.connection-grid {
    position: absolute;
    width: 300px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: gridPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes coreGlowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes coreParticlesMove {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(20px); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

@keyframes corePulse {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 
            var(--glow-primary),
            var(--glow-secondary);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 20px rgba(0, 255, 136, 1),
            0 0 40px rgba(0, 136, 255, 0.8),
            0 0 60px rgba(255, 0, 136, 0.4);
    }
}

.energy-wave {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 136, 0.8),
        rgba(0, 136, 255, 0.8),
        rgba(0, 255, 136, 0.8),
        transparent);
    border-radius: 2px;
    filter: blur(2px);
    animation: waveMove 2s ease-in-out infinite;
    will-change: opacity, transform;
}

.wave-1 {
    top: 20%;
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    animation-delay: 0.7s;
}

.wave-3 {
    top: 80%;
    animation-delay: 1.4s;
}

.wave-4 {
    top: 35%;
    animation-delay: 2.1s;
    width: 250px;
    height: 5px;
    filter: blur(3px);
}

@keyframes waveMove {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleX(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) scaleX(0.5);
    }
}

.data-stream {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.data-bit {
    position: absolute;
    left: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 136, 1);
    transform: translateX(-50%) translateZ(0);
    animation: dataFlow 2s linear infinite;
    will-change: transform, opacity;
}

.bit-1 { animation-delay: 0s; }
.bit-2 { animation-delay: 0.4s; }
.bit-3 { animation-delay: 0.8s; }
.bit-4 { animation-delay: 1.2s; }
.bit-5 { animation-delay: 1.6s; }
.bit-6 { animation-delay: 2s; }
.bit-7 { animation-delay: 2.4s; }

@keyframes dataFlow {
    0% {
        top: 0;
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
}

.connection-status-animated {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-tertiary);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 255, 136, 0.2);
    border: 1px solid var(--primary-color);
    z-index: 4;
}

.status-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
    filter: blur(15px);
    animation: statusGlow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes statusGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.status-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    animation: statusPulse 1.5s ease-in-out infinite;
    position: relative;
}

.status-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: statusRipple 1.5s ease-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(16, 185, 129, 1);
    }
}

@keyframes statusRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.status-text-container {
    display: flex;
    align-items: center;
    gap: 2px;
}

.status-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    min-height: 1.2em;
}

.cursor-blink {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    animation: cursorBlink 1s step-end infinite;
    font-family: 'Courier New', monospace;
}

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

@keyframes textShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
    z-index: 100;
    pointer-events: auto;
    cursor: pointer;
    white-space: nowrap;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--primary-color);
}

.badge-icon {
    font-size: 1.5rem;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.badge-text {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Telegram Button - Enhanced */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.telegram-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.telegram-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.btn-primary.telegram-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    color: #000000;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        var(--glow-primary),
        var(--glow-secondary);
    animation: telegramGradient 3s ease infinite;
    font-weight: 700;
}

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

.btn-primary.telegram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary.telegram-btn:hover::before {
    left: 100%;
}

.btn-primary.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--glow-primary),
        var(--glow-secondary),
        0 8px 25px rgba(0, 255, 136, 0.4);
    filter: brightness(1.1);
}

.btn-primary.telegram-btn:active {
    transform: translateY(-1px);
}

.btn-primary.telegram-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.btn-primary.telegram-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Ensure buttons are clickable */
a.btn-primary,
a.btn-outline,
a.telegram-btn,
a.hero-badge,
button.btn-primary,
button.btn-outline,
button.mobile-menu-toggle {
    pointer-events: auto !important;
    z-index: 1000 !important;
    position: relative !important;
    cursor: pointer !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
}

/* Ensure hero section buttons are above everything */
.hero .btn-primary,
.hero .hero-badge,
.hero .hero-buttons a {
    z-index: 1001 !important;
    position: relative !important;
    pointer-events: auto !important;
}

/* Ensure FAQ questions are clickable */
.faq-question {
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Ensure pricing card buttons are clickable */
.pricing-card .btn-full,
.pricing-card .btn-outline {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    cursor: pointer !important;
    touch-action: manipulation;
}

/* Ensure mobile menu toggle is clickable */
.mobile-menu-toggle {
    pointer-events: auto !important;
    z-index: 1001 !important;
    cursor: pointer !important;
    touch-action: manipulation;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding: 0 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    color: var(--text-primary);
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.section-description {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* Features Section */
.features {
    background: transparent;
    position: relative;
    overflow: visible;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features .container {
    position: relative;
    z-index: 1;
    overflow: visible;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.features::before {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    overflow: visible;
    align-items: start;
}

/* Scroll animation support - Ensure elements are visible by default */
.feature-card,
.pricing-card,
.testimonial-card,
.lifehack-card,
.faq-item {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
}

/* Disable will-change on mobile for better scroll performance */
@media (max-width: 768px) {
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .lifehack-card,
    .faq-item {
        will-change: auto !important;
        perspective: none !important;
    }
}

/* Mobile optimizations for animations and scroll performance */
@media (max-width: 768px) {
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .lifehack-card,
    .faq-item,
    .section-title,
    .section-description {
        will-change: auto !important;
        transform: translate3d(0, 0, 0) !important;
        animation: none !important;
        transition: none !important;
    }
    
    /* Disable complex animations on mobile for better scroll performance */
    .feature-card::before,
    .feature-card::after,
    .pricing-card::before,
    .pricing-card::after,
    .testimonial-card::before,
    .testimonial-card::after,
    .lifehack-card::before,
    .lifehack-card::after {
        animation: none !important;
        transition: opacity 0.2s ease !important;
    }
    
    /* Optimize scroll performance */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        overscroll-behavior-y: contain;
    }
    
    /* Reduce repaints and improve scroll */
    .navbar {
        will-change: auto;
        transform: translate3d(0, 0, 0);
    }
    
    /* Disable backdrop-filter on mobile for better performance */
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .lifehack-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Simplify hover effects on mobile */
    .feature-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover,
    .lifehack-card:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Remove card fade-in animations on mobile */
    .testimonial-card,
    .lifehack-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    .testimonial-card.show,
    .lifehack-card.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
}

.section-title,
.section-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-title,
.hero-description,
.hero-buttons,
.hero-badge {
    opacity: 1;
    visibility: visible;
}

.cta-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Optimized transitions - GPU accelerated */
.feature-card,
.pricing-card,
.testimonial-card,
.lifehack-card {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.2s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Remove will-change when not needed */
.feature-card:not(:hover),
.pricing-card:not(:hover),
.testimonial-card:not(:hover),
.lifehack-card:not(:hover) {
    will-change: auto;
}

/* Убираем ограничения для эффектов свечения - чтобы никакие элементы не перекрывали свечение */
.feature-card::before,
.feature-card::after,
.pricing-card::before,
.pricing-card::after,
.testimonial-card::before,
.testimonial-card::after,
.lifehack-card::before,
.lifehack-card::after,
.feature-icon::before,
.feature-icon::after,
.btn-primary::before,
.btn-primary::after {
    overflow: visible !important;
    clip-path: none !important;
}

/* Убеждаемся, что родительские контейнеры не обрезают свечение */
.features-grid,
.pricing-grid,
.testimonials-grid,
.lifehacks-grid,
.features .container,
.pricing .container,
.testimonials .container,
.lifehacks .container,
.features,
.pricing,
.testimonials,
.lifehacks {
    overflow: visible !important;
    clip-path: none !important;
}

/* Убеждаемся, что все карточки и их псевдоэлементы могут показывать свечение */
.feature-card,
.pricing-card,
.testimonial-card,
.lifehack-card {
    overflow: visible !important;
    clip-path: none !important;
    isolation: isolate;
}

/* Увеличиваем z-index для элементов со свечением, чтобы они были поверх других элементов */
.feature-card::before,
.pricing-card::before,
.testimonial-card::before,
.lifehack-card::before {
    z-index: 1 !important;
}

.feature-card::after,
.pricing-card::after,
.testimonial-card::after,
.lifehack-card::after {
    z-index: -1 !important;
}

.feature-card {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(15, 15, 25, 0.95));
    border-radius: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    will-change: transform;
    overflow: visible;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientShift 4s ease infinite;
    pointer-events: none;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Optimized hover - desktop only */
@media (min-width: 769px) {
    .feature-card:hover {
        transform: translate3d(0, -8px, 0) scale(1.02);
        box-shadow: 
            0 12px 40px rgba(0, 255, 136, 0.15),
            0 6px 20px rgba(0, 136, 255, 0.1),
            0 4px 15px rgba(0, 255, 136, 0.08);
        border-color: rgba(0, 255, 136, 0.25);
    }
}

/* Disable hover on mobile */
@media (max-width: 768px) {
    .feature-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

/* Feature Header - Icon and Title in one line */
.feature-header {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
}

.feature-icon {
    width: clamp(48px, 9vw, 56px);
    height: clamp(48px, 9vw, 56px);
    min-width: clamp(48px, 9vw, 56px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    border-radius: clamp(0.625rem, 1.25vw, 0.875rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: #000000;
    box-shadow: 
        0 6px 20px rgba(0, 255, 136, 0.25),
        0 3px 12px rgba(0, 136, 255, 0.18),
        0 0 8px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Disable gradient animation on mobile */
@media (min-width: 769px) {
    .feature-icon {
        animation: gradientShift 4s ease infinite;
    }
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 1rem;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 30%,
        var(--primary-color) 60%,
        var(--secondary-color) 100%);
    background-size: 300% 300%;
    opacity: 0.35;
    filter: blur(14px);
    z-index: -1;
    animation: gradientShift 4s ease infinite;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Optimized icon hover - desktop only */
@media (min-width: 769px) {
    .feature-card:hover .feature-icon {
        transform: scale(1.05) translateZ(0);
        box-shadow: 
            0 8px 24px rgba(0, 255, 136, 0.25),
            0 4px 16px rgba(0, 136, 255, 0.2),
            0 2px 8px rgba(0, 255, 136, 0.15);
    }
}

@media (max-width: 768px) {
    .feature-card:hover .feature-icon {
        transform: none;
    }
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon svg {
    width: clamp(24px, 5vw, 30px);
    height: clamp(24px, 5vw, 30px);
}

.feature-title {
    font-size: clamp(1.125rem, 2.25vw, 1.5rem);
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    position: relative;
    padding-bottom: clamp(0.5rem, 1vw, 0.75rem);
    line-height: 1.3;
    flex: 1;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

/* Pricing Section */
.pricing {
    background: transparent;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding-top: 2rem;
}

.pricing-3d-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    perspective: 1200px;
    /* Добавляем градиентный фон для дополнительного эффекта */
    background: radial-gradient(
        circle at center,
        rgba(0, 255, 136, 0.1) 0%,
        rgba(0, 136, 255, 0.05) 50%,
        transparent 100%
    );
    border-radius: 50%;
    animation: iconPulse 4s ease-in-out infinite;
}

/* Анимация пульсации фона */
@keyframes iconPulse {
    0%, 100% {
        background: radial-gradient(
            circle at center,
            rgba(0, 255, 136, 0.1) 0%,
            rgba(0, 136, 255, 0.05) 50%,
            transparent 100%
        );
        opacity: 0.4;
    }
    50% {
        background: radial-gradient(
            circle at center,
            rgba(0, 255, 136, 0.15) 0%,
            rgba(0, 136, 255, 0.08) 50%,
            transparent 100%
        );
        opacity: 0.5;
    }
}

.pricing-3d-icon-left {
    left: 5%;
}

.pricing-3d-icon-right {
    right: 5%;
}

.globe-3d-container {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.globe-3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: globe3DRotate 15s linear infinite;
    transform-origin: center center;
    will-change: transform;
    transform: translateZ(0);
}

.pricing-3d-icon-right .globe-3d {
    animation: globe3DRotateReverse 15s linear infinite;
}

.globe-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Градиентное свечение в цветах сайта */
    filter: 
        drop-shadow(0 0 50px rgba(0, 255, 136, 0.8))
        drop-shadow(0 0 30px rgba(0, 136, 255, 0.6))
        drop-shadow(0 0 15px rgba(0, 255, 136, 0.4))
        brightness(1.1)
        contrast(1.1);
    /* Применение цветового фильтра для гармонии с дизайном */
    mix-blend-mode: screen;
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
    animation: iconGlow 3s ease-in-out infinite;
}

/* Анимация пульсирующего свечения */
@keyframes iconGlow {
    0%, 100% {
        filter: 
            drop-shadow(0 0 50px rgba(0, 255, 136, 0.8))
            drop-shadow(0 0 30px rgba(0, 136, 255, 0.6))
            drop-shadow(0 0 15px rgba(0, 255, 136, 0.4))
            brightness(1.1)
            contrast(1.1);
    }
    50% {
        filter: 
            drop-shadow(0 0 60px rgba(0, 255, 136, 1))
            drop-shadow(0 0 40px rgba(0, 136, 255, 0.8))
            drop-shadow(0 0 20px rgba(0, 255, 136, 0.6))
            brightness(1.2)
            contrast(1.15);
    }
}

/* Дополнительный эффект для левой иконки */
.pricing-3d-icon-left .globe-svg {
    filter: 
        drop-shadow(0 0 50px rgba(0, 255, 136, 0.9))
        drop-shadow(0 0 30px rgba(0, 136, 255, 0.7))
        drop-shadow(0 0 15px rgba(0, 255, 136, 0.5))
        brightness(1.15)
        contrast(1.1);
}

/* Дополнительный эффект для правой иконки */
.pricing-3d-icon-right .globe-svg {
    filter: 
        drop-shadow(0 0 50px rgba(0, 136, 255, 0.9))
        drop-shadow(0 0 30px rgba(0, 255, 136, 0.7))
        drop-shadow(0 0 15px rgba(0, 136, 255, 0.5))
        brightness(1.15)
        contrast(1.1);
}

@keyframes globe3DRotate {
    0% {
        transform: rotateY(0deg) rotateX(20deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(20deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(20deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(20deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(20deg);
    }
}

@keyframes globe3DRotateReverse {
    0% {
        transform: rotateY(360deg) rotateX(-20deg);
    }
    25% {
        transform: rotateY(270deg) rotateX(-20deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(-20deg);
    }
    75% {
        transform: rotateY(90deg) rotateX(-20deg);
    }
    100% {
        transform: rotateY(0deg) rotateX(-20deg);
    }
}

.pricing .container {
    position: relative;
    z-index: 1;
    overflow: visible;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing::before {
    display: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 0;
    overflow: visible;
    align-items: start;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
}

.pricing-card {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(15, 15, 25, 0.98));
    border-radius: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s ease, 
                border-color 0.2s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

/* Backdrop filter only on desktop and only on hover for performance */
@media (min-width: 769px) {
    .pricing-card:hover {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Optimize will-change - only set on hover */
.pricing-card {
    will-change: auto;
}

@media (min-width: 769px) {
    .pricing-card:hover {
        will-change: transform, box-shadow;
    }
    
    .pricing-card:not(:hover) {
        will-change: auto;
    }
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: clamp(1.1rem, 2.1vw, 1.6rem);
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--primary-color) 100%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
    border: 2px solid transparent;
}

/* Disable gradient animation on mobile */
@media (min-width: 769px) {
    .pricing-card::before {
        animation: gradientShift 6s ease infinite;
    }
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: clamp(1.15rem, 2.15vw, 1.65rem);
    background: radial-gradient(ellipse at center, 
        rgba(0, 255, 136, 0.2) 0%, 
        rgba(0, 136, 255, 0.15) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

/* Disable gradient animation on mobile */
@media (min-width: 769px) {
    .pricing-card::after {
        animation: gradientShift 8s ease infinite;
    }
}


.pricing-card:hover::before {
    opacity: 0.4;
}

.pricing-card:hover::after {
    opacity: 0.3;
}

/* Optimized hover - desktop only */
@media (min-width: 769px) {
    .pricing-card:hover {
        transform: translate3d(0, -8px, 0) scale(1.02);
        box-shadow: 
            0 15px 50px rgba(0, 255, 136, 0.1),
            0 8px 30px rgba(0, 136, 255, 0.06),
            0 4px 15px rgba(0, 255, 136, 0.04);
        border-color: rgba(0, 255, 136, 0.3);
    }
    
    .pricing-card:hover::before {
        opacity: 0.3;
    }
    
    .pricing-card:hover::after {
        opacity: 0.2;
    }
}

/* Disable hover on mobile */
@media (max-width: 768px) {
    .pricing-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.pricing-card.featured {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 255, 136, 0.12),
        0 10px 30px rgba(0, 136, 255, 0.08),
        0 5px 15px rgba(0, 255, 136, 0.05);
    background: linear-gradient(135deg, rgba(10, 20, 25, 0.98), rgba(15, 25, 35, 0.98));
    border-width: 2px;
    padding-top: 3.5rem;
    margin-top: 0;
    z-index: 2;
}

/* Scale only on desktop */
@media (min-width: 769px) {
    .pricing-card.featured {
        transform: scale(1.03);
    }
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
}

.pricing-card.featured::before {
    opacity: 0.3;
}

.pricing-card.featured::after {
    opacity: 0.25;
}

/* Disable pulse animation on mobile */
@media (min-width: 769px) {
    .pricing-card.featured::before {
        animation: gradientShift 5s ease infinite;
    }
}

@keyframes gradientPulse {
    0% {
        background-position: 0% 50%;
        opacity: 0.4;
    }
    25% {
        background-position: 25% 50%;
        opacity: 0.45;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.5;
    }
    75% {
        background-position: 75% 50%;
        opacity: 0.45;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.4;
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000000;
    padding: 0.6rem 2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(0, 255, 136, 0.15),
        0 0 10px rgba(0, 255, 136, 0.1);
    z-index: 20;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

/* Disable animations on mobile */
@media (min-width: 769px) {
    .pricing-badge {
        background-size: 200% 200%;
        animation: gradientShift 4s ease infinite;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.pricing-header {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.pricing-name {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-transform: capitalize;
    line-height: 1.2;
}

.pricing-card.featured .pricing-name {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.price-amount {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    position: relative;
}

/* Disable gradient animation on mobile */
@media (min-width: 769px) {
    .price-amount {
        background-size: 200% 200%;
        animation: gradientShift 5s ease infinite;
    }
}

.price-amount::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    border-radius: 2px;
}

.price-period {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
}

.pricing-savings {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 136, 255, 0.1));
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-savings::before {
    content: '💰';
    font-size: 1.1rem;
    animation: savingsIcon 2s ease-in-out infinite;
}

.pricing-savings::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: savingsShine 3s ease-in-out infinite;
}

@keyframes savingsIcon {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 1rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    padding-left: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.3);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover .pricing-features li::before {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
    transform: scale(1.1);
}

.pricing-features li:hover {
    color: var(--text-primary);
    padding-left: 1rem;
}

.pricing-card .btn-full {
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 0.75rem;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.pricing-card .btn-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-card .btn-full:hover::before {
    left: 100%;
}

.pricing-card .btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.pricing-card .btn-full svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pricing-card .btn-full:hover svg {
    transform: translateX(3px);
}

/* ============================================
   TESTIMONIALS SECTION - COMPLETELY REWRITTEN
   ============================================ */
.testimonials {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    width: 100%;
}

.testimonials .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.testimonials .section-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto clamp(3rem, 6vw, 4rem);
    padding: 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Responsive grid adaptation */
@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1025px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Load More Button */
.testimonials-load-more,
.lifehacks-load-more {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: 0 var(--space-lg);
}

.load-more-btn {
    padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    border-radius: clamp(0.75rem, 1.5vw, 1rem);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

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

.load-more-btn.hidden {
    display: none;
}

/* Testimonial Card - Modern Redesign */
.testimonial-card {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(15, 15, 25, 0.98));
    border-radius: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s ease,
                border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    min-height: 280px;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Subtle glow effect on hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: clamp(1rem, 2vw, 1.5rem);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%, 
        rgba(0, 136, 255, 0.08) 50%,
        rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 255, 136, 0.15),
        0 6px 20px rgba(0, 136, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Disable hover effects on mobile for better performance */
@media (max-width: 768px) {
    .testimonial-card {
        min-height: auto;
    }
    
    .testimonial-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

.testimonial-card.hidden {
    display: none;
}

.testimonial-card.show {
    display: flex;
}

/* Testimonial Header (Icon + Rating) */
.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial-icon {
    width: clamp(48px, 9vw, 56px);
    height: clamp(48px, 9vw, 56px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: clamp(0.625rem, 1.25vw, 0.875rem);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-icon svg {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
}

.testimonial-card:hover .testimonial-icon {
    transform: scale(1.05);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: clamp(1rem, 2vw, 1.125rem);
    letter-spacing: 2px;
    line-height: 1;
}

/* Testimonial Text */
.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-style: italic;
    flex-grow: 1;
    margin: 0;
    text-align: left;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.125rem);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.3;
}

.author-role {
    font-size: clamp(0.8125rem, 1.25vw, 0.875rem);
    color: var(--text-muted);
    line-height: 1.3;
}

/* FAQ Section */
.faq {
    background: var(--bg-primary);
    position: relative;
    overflow: visible;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq .container {
    position: relative;
    z-index: 1;
    overflow: visible;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 0;
    overflow: visible;
}

.faq-item {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(15, 15, 25, 0.95));
    border-radius: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    border: 2px solid rgba(255, 255, 255, 0.05);
    overflow: visible;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    outline: none;
}

.faq-item:focus,
.faq-item:active,
.faq-item:focus-visible {
    outline: none;
    border-color: rgba(255, 255, 255, 0.05);
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientShift 4s ease infinite;
    pointer-events: none;
    z-index: 1;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    opacity: 0.5;
}

.faq-item:hover::after {
    opacity: 0.3;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 
        0 10px 40px rgba(0, 255, 136, 0.15),
        0 0 20px rgba(0, 136, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 10px 40px rgba(0, 255, 136, 0.15),
        0 0 20px rgba(0, 136, 255, 0.1);
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.98), rgba(15, 20, 30, 0.98));
    transform: translateY(-2px);
    outline: none;
}

.faq-item.active::before {
    opacity: 0;
}

.faq-item.active::after {
    opacity: 0.3;
}

.faq-question {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    position: relative;
    z-index: 2;
    font-size: clamp(1rem, 2vw, 1.1rem);
    outline: none;
}

.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible {
    outline: none;
}

.faq-question span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Mobile override for FAQ question span - prevent text wrapping */
@media (max-width: 768px) {
    .faq-question span {
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        word-break: keep-all !important;
    }
}

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

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.faq-item.active .faq-question::after {
    opacity: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 255, 136, 0.2));
}

.faq-item:hover .faq-icon {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 6px rgba(0, 255, 136, 0.4));
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
    filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.5));
}

.faq-answer {
    padding: 0 clamp(1.25rem, 2.5vw, 1.75rem);
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    line-height: 1.75;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.faq-item.active .faq-answer {
    padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
    max-height: 2000px;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    background: var(--bg-secondary);
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 0 !important;
    pointer-events: none !important;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.cta .container {
    position: relative;
    z-index: 100 !important;
    pointer-events: auto !important;
}

.cta .container * {
    pointer-events: auto !important;
}

.cta-animation * {
    pointer-events: none !important;
}

.cta-animation canvas {
    pointer-events: none !important;
}

.cta-content {
    position: relative;
    z-index: 10 !important;
    pointer-events: auto !important;
    isolation: isolate;
}

.cta-content * {
    pointer-events: auto !important;
}

.cta-button-wrapper {
    position: relative;
    z-index: 1000 !important;
    pointer-events: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 1.5rem 0;
    width: 100%;
    isolation: isolate;
}

.cta-button-wrapper * {
    pointer-events: auto !important;
    z-index: 1001 !important;
    position: relative !important;
}

.cta-button,
.cta-content .btn-primary,
.cta-content .telegram-btn,
.cta .btn-primary,
.cta .telegram-btn,
.cta a.btn-primary,
.cta a.telegram-btn {
    pointer-events: auto !important;
    z-index: 1001 !important;
    position: relative !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

.cta-button svg,
.cta .btn-primary svg,
.cta .telegram-btn svg,
.cta-content .btn-primary svg,
.cta-content .telegram-btn svg {
    flex-shrink: 0 !important;
    margin-right: 0.5rem !important;
}

.cta-content .btn-primary:hover,
.cta-content .telegram-btn:hover,
.cta .btn-primary:hover,
.cta .telegram-btn:hover {
    pointer-events: auto !important;
}

.cta-content .btn-primary:active,
.cta-content .telegram-btn:active,
.cta .btn-primary:active,
.cta .telegram-btn:active {
    pointer-events: auto !important;
}

.cta #particles-canvas-cta {
    pointer-events: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 0 !important;
    cursor: none;
    display: block !important;
    will-change: contents;
    transform: translateZ(0);
}

.cta-animation .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.cta-animation .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.8), transparent);
    top: 10%;
    left: 10%;
    animation: orbFloat1 8s ease-in-out infinite;
}

.cta-animation .orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.8), transparent);
    bottom: 15%;
    right: 15%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.cta-animation .orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 136, 0.6), transparent);
    top: 50%;
    right: 20%;
    animation: orbFloat3 12s ease-in-out infinite;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 100 !important;
    pointer-events: auto !important;
}

.cta .container * {
    pointer-events: auto !important;
}

.cta-content {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000000;
    box-shadow: var(--glow-primary), var(--glow-secondary);
}

.cta .btn-primary:hover {
    filter: brightness(1.2);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer .logo-text {
    color: white;
    -webkit-text-fill-color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   TABLET OPTIMIZATION
   (768px - 1024px)
   ============================================ */

/* Tablet Portrait and Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Hero Section */
    .hero {
        padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
        height: 100vh;
        min-height: 100vh;
        margin-top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-image {
        min-height: 450px;
        order: -1;
    }
    
    .connection-animation {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        line-height: 0.95;
    }
    
    .hero-brand {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        letter-spacing: 2.5px;
    }
    
    .hero-description {
        font-size: clamp(1.15rem, 2.5vw, 1.4rem);
        line-height: 1.7;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: clamp(1rem, 2vw, 1.1rem);
        padding: 0.875rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        flex: 0 1 auto;
        min-width: 200px;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    /* Section Headers */
    .section-title {
        font-size: clamp(2.25rem, 5vw, 3rem);
    }
    
    .section-description {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.35rem;
    }
    
    .feature-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1000px;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 900px;
    }
    
    .pricing-card {
        padding: 2.25rem;
    }
    
    .pricing-card.featured {
        padding-top: 3rem;
        margin-top: 0.875rem;
    }
    
    .pricing-badge {
        font-size: 0.8rem;
        padding: 0.55rem 1.75rem;
    }
    
    .pricing-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.75rem;
    }
    
    .price-period {
        font-size: 1.05rem;
    }
    
    .pricing-header {
        margin-bottom: 2rem;
    }
    
    .pricing-features li {
        padding: 0.9375rem 0;
    }
    
    .pricing-savings {
        font-size: 0.9rem;
        padding: 0.6rem 1.15rem;
    }
    
    .pricing-card .btn-full {
        font-size: 0.875rem;
        padding: 0.9375rem 1.375rem;
    }
    
    .pricing-3d-icon-left,
    .pricing-3d-icon-right {
        display: none;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem var(--space-lg);
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* FAQ */
    .faq-list {
        max-width: 900px;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 1.05rem;
        line-height: 1.75;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.875rem 0;
    }
    
    .logo-text {
        font-size: 1.65rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-outline {
        font-size: 1.05rem;
        padding: 0.9375rem 1.875rem;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 1.0625rem 2rem;
    }
    
    /* Section Spacing */
    section {
        padding: clamp(4rem, 8vw, 6rem) 0;
    }
}

/* Tablet Landscape Orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
        margin-top: 0;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .hero-image {
        min-height: 400px;
    }
    
    .connection-animation {
        min-height: 400px;
    }
}

/* Tablet and below (1024px) - Legacy support */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-image {
        min-height: 500px;
        order: -1;
    }
    
    .connection-animation {
        min-height: 500px;
    }
    
    .pricing-3d-icon-left,
    .pricing-3d-icon-right {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Testimonials and Lifehacks optimized for mobile */
    .testimonials-grid,
    .lifehacks-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .testimonial-card,
    .lifehack-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100%;
    }
    
    * {
        box-sizing: border-box;
    }
    
    img, video, canvas, svg, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Navigation - Hide on mobile, show on desktop */
    .nav-menu,
    .nav-buttons {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2) !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    
    .nav-content {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-content .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .nav-content .nav-menu {
        order: 2;
    }
    
    .nav-content .nav-buttons {
        order: 3;
    }
    
    .nav-content .mobile-menu-toggle {
        order: 4;
        margin-left: auto;
        margin-right: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* FAQ - Mobile optimizations */
    .faq-question {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        padding: clamp(1rem, 4vw, 1.25rem);
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;
        pointer-events: auto !important;
        cursor: pointer !important;
        touch-action: manipulation;
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Ensure all buttons are clickable on mobile */
    .btn-primary,
    .btn-outline,
    .telegram-btn,
    .hero-badge,
    .mobile-menu-toggle,
    .pricing-card .btn-full,
    .pricing-card .btn-outline {
        pointer-events: auto !important;
        z-index: 1000 !important;
        position: relative !important;
        cursor: pointer !important;
        touch-action: manipulation;
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
    }
    
    /* Canvas elements should NOT block clicks on mobile */
    #particles-canvas-hero,
    #particles-canvas,
    #particles-canvas-cta {
        pointer-events: none !important;
        z-index: 1 !important;
    }
    
    /* Ensure buttons are clickable and above everything */
    .hero .btn-primary,
    .hero .hero-badge,
    .cta .btn-primary,
    .cta .telegram-btn,
    .cta-content .btn-primary,
    .cta-content .telegram-btn,
    .cta-button {
        position: relative !important;
        z-index: 9999 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
    }
    
    /* Ensure CTA container and content are clickable */
    .cta .container {
        pointer-events: auto !important;
        z-index: 9998 !important;
        position: relative !important;
    }
    
    .cta-content {
        pointer-events: auto !important;
        z-index: 9998 !important;
        position: relative !important;
        isolation: isolate;
    }
    
    .cta-content * {
        pointer-events: auto !important;
    }
    
    .cta-content a,
    .cta-content button {
        pointer-events: auto !important;
        z-index: 9999 !important;
        position: relative !important;
    }
    
    /* Ensure CTA animation doesn't block clicks */
    .cta-animation {
        pointer-events: none !important;
        z-index: 0 !important;
    }
    
    .cta-animation * {
        pointer-events: none !important;
    }
    
    .faq-question span {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.4;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        word-break: keep-all !important;
    }
    
    /* Remove all focus/active outlines and borders on mobile */
    .faq-item,
    .faq-item:active,
    .faq-item:focus,
    .faq-item:focus-visible,
    .faq-item:focus-within {
        outline: none !important;
        border-color: rgba(255, 255, 255, 0.05) !important;
        box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15), 0 0 20px rgba(0, 136, 255, 0.1) !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
    }
    
    .faq-item.active {
        outline: none !important;
        border-color: rgba(255, 255, 255, 0.05) !important;
    }
    
    .faq-question,
    .faq-question:active,
    .faq-question:focus,
    .faq-question:focus-visible,
    .faq-question:focus-within {
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* Desktop Navigation - Ensure menu is visible */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        list-style: none !important;
        gap: 2rem;
        align-items: center;
        margin: 0;
        padding: 0;
        flex: 1;
        justify-content: center;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-buttons {
        display: flex !important;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-buttons .btn-primary,
    .nav-buttons .telegram-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .nav-buttons .telegram-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .navbar {
        height: 70px;
        min-height: 70px;
        max-height: 70px;
        padding: 0;
    }
    
    .nav-content {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        height: 100%;
        padding: 0.75rem 0;
    }
    
    .nav-content .logo {
        flex: 0 0 auto;
        z-index: 1;
    }
    
    .nav-content .nav-menu {
        flex: 1;
        justify-content: center;
        z-index: 1;
    }
    
    .nav-content .nav-buttons {
        flex: 0 0 auto;
        z-index: 1;
    }
}

/* Mobile (768px and below) - continued */
@media (max-width: 768px) {
    .navbar {
        padding: 0.625rem 0;
        width: 100%;
        max-width: 100%;
        height: 60px;
        min-height: 60px;
    }
    
    .nav-content {
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Hero Section - Optimized spacing for mobile, full viewport height */
    .hero {
        padding: 2rem 0 1.5rem;
        margin-top: 0;
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    .hero-title-wrapper {
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.25rem);
        line-height: 0.9;
        letter-spacing: -1.5px;
        margin-bottom: 0.75rem;
        font-weight: 900;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    
    .hero-title-line {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    #animated-text {
        text-align: center;
        margin: 0 auto;
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-brand {
        font-size: clamp(1.1rem, 4vw, 1.35rem);
        margin-bottom: 0.5rem;
        letter-spacing: 2.5px;
        font-weight: 700;
    }
    
    .hero-brand::before {
        height: 70%;
    }
    
    .hero-description {
        font-size: clamp(1.15rem, 4vw, 1.4rem);
        line-height: 1.65;
        margin-bottom: 1.5rem;
        max-width: 100%;
        color: var(--text-secondary);
        font-weight: 400;
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        padding: 0.75rem 1.25rem;
        margin-bottom: 1.5rem;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.625rem;
        white-space: normal;
        border-radius: 2rem;
        box-shadow: 0 4px 20px rgba(0, 255, 136, 0.25);
    }
    
    .badge-icon {
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .badge-text {
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1.125rem 1.75rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 0.75rem;
        min-height: 56px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-primary svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .stat {
        min-width: 75px;
        flex: 0 0 auto;
        text-align: center;
    }
    
    .stat-number {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        line-height: 1.2;
        font-weight: 800;
    }
    
    .stat-label {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
        margin-top: 0.375rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    /* Hero Animation - Mobile: Hide entire hero-image block */
    .hero-image {
        display: none !important;
    }
    
    .connection-animation {
        display: none !important;
    }
    
    /* Show only canvas for dynamic background */
    .connection-animation #particles-canvas {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        z-index: 1;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Enhanced dynamic background for mobile */
    .hero-background {
        animation: mobileBackgroundFlow 20s ease-in-out infinite;
    }
    
    .hero-background::before {
        display: block;
        width: 400px;
        height: 400px;
        right: -10%;
        top: 10%;
        animation: mobileGlowMove1 12s ease-in-out infinite;
    }
    
    .hero-background::after {
        display: block;
        width: 350px;
        height: 350px;
        left: -10%;
        bottom: 10%;
        animation: mobileGlowMove2 15s ease-in-out infinite;
    }
    
    @keyframes mobileBackgroundFlow {
        0%, 100% {
            background: radial-gradient(ellipse at 20% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 80%, rgba(0, 136, 255, 0.08) 0%, transparent 60%);
        }
        33% {
            background: radial-gradient(ellipse at 60% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 55%),
                        radial-gradient(ellipse at 40% 70%, rgba(0, 136, 255, 0.1) 0%, transparent 55%);
        }
        66% {
            background: radial-gradient(ellipse at 30% 60%, rgba(0, 255, 136, 0.09) 0%, transparent 58%),
                        radial-gradient(ellipse at 70% 40%, rgba(0, 136, 255, 0.09) 0%, transparent 58%);
        }
    }
    
    @keyframes mobileGlowMove1 {
        0%, 100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.6;
        }
        50% {
            transform: translate(-20px, 30px) scale(1.1);
            opacity: 0.8;
        }
    }
    
    @keyframes mobileGlowMove2 {
        0%, 100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.5;
        }
        50% {
            transform: translate(20px, -30px) scale(1.15);
            opacity: 0.7;
        }
    }
    
    .orb-1, .orb-2, .orb-3 {
        display: none;
    }
    
    /* Sections - Optimized spacing for mobile UX */
    section {
        padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.625rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: clamp(0.95rem, 3vw, 1.05rem);
        line-height: 1.5;
    }
    
    /* Features - Optimized for mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 0;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.875rem;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-title {
        font-size: 1.15rem;
        margin-bottom: 0.625rem;
        line-height: 1.3;
    }
    
    .feature-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .pricing-card {
        padding: 1.75rem;
        border-radius: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .feature-card {
        padding: 1.75rem;
        border-radius: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-title {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        margin: 0;
        padding-top: 2.5rem;
        margin-top: 0.75rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
        top: 0;
        transform: translate(-50%, -50%);
    }
    
    .pricing-name {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-period {
        font-size: 1rem;
    }
    
    .pricing-header {
        margin-bottom: 1.75rem;
        padding-bottom: 1.25rem;
    }
    
    .pricing-features {
        margin-bottom: 1.75rem;
    }
    
    .pricing-features li {
        padding: 0.875rem 0;
        font-size: 0.95rem;
    }
    
    .pricing-features li::before {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
    
    .pricing-savings {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-top: 0.75rem;
    }
    
    .pricing-card .btn-full {
        font-size: 0.85rem;
        padding: 0.875rem 1.25rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem var(--space-lg);
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-rating {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    /* FAQ */
    .faq-list {
        gap: 1rem;
        padding: 1rem 0;
        max-width: 100%;
    }
    
    .faq-item {
        border-radius: 1.25rem;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
        gap: 0.75rem;
    }
    
    .faq-question span {
        flex: 1;
        min-width: 0;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        opacity: 0;
        visibility: hidden;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
        max-height: 2000px;
        opacity: 1;
        visibility: visible;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    /* CTA */
    .cta {
        padding: 3rem 0;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: clamp(0.95rem, 3vw, 1.05rem);
        margin-bottom: 1.5rem;
    }
    
    /* CTA animation visible but doesn't block clicks */
    .cta-animation {
        display: block !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }
    
    .cta #particles-canvas-cta {
        display: block !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }
    
    .cta-button-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 1.5rem 0 !important;
    }
    
    .cta .btn-primary,
    .cta .telegram-btn,
    .cta a.btn-primary,
    .cta a.telegram-btn,
    .cta-content .btn-primary,
    .cta-content .telegram-btn,
    .cta-content a.btn-primary,
    .cta-content a.telegram-btn,
    .cta-button {
        width: auto !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 1000 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        font-size: clamp(0.85rem, 2vw, 1.1rem) !important;
        padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 2rem) !important;
    }
    
    .cta-button svg,
    .cta .btn-primary svg,
    .cta .telegram-btn svg,
    .cta-content .btn-primary svg,
    .cta-content .telegram-btn svg {
        flex-shrink: 0 !important;
        margin-right: 0.5rem !important;
        width: clamp(20px, 4vw, 24px) !important;
        height: clamp(20px, 4vw, 24px) !important;
    }
    
    /* Скрыть кнопку "Попробовать бесплатно" на мобильных устройствах */
    .cta-button-wrapper {
        display: none !important;
    }
    
    .cta-note {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .cta-animation {
        min-height: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-brand .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }
    
    .footer-brand .logo-text {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
        margin-top: 1rem;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-column ul {
        gap: 0.75rem;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-outline {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
    
    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .telegram-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Utilities */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero - Small mobile optimization, full viewport */
    .hero {
        padding: 1.75rem 0 1.25rem;
        margin-top: 0;
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        gap: 1.25rem;
    }
    
    .hero-title-wrapper {
        margin-bottom: 0.875rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 9vw, 2.75rem);
        letter-spacing: -1px;
        margin-bottom: 0.625rem;
        line-height: 0.9;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    
    .hero-brand {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: clamp(1.05rem, 3.5vw, 1.25rem);
        line-height: 1.65;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6875rem 1rem;
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        white-space: normal;
    }
    
    .badge-icon {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        margin-bottom: 1.75rem;
        gap: 0.875rem;
    }
    
    .hero-buttons .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        min-height: 52px;
    }
    
    .hero-buttons .btn-primary svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-stats {
        gap: 1.25rem;
        padding: 0 0.25rem;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: clamp(1.6rem, 4.5vw, 2rem);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
        margin-top: 0.375rem;
    }
    
    /* Hide entire hero-image block on small mobile */
    .hero-image {
        display: none !important;
    }
    
    .connection-animation {
        display: none !important;
    }
    
    /* Enhanced mobile background */
    .hero-background::before {
        width: 300px;
        height: 300px;
    }
    
    .hero-background::after {
        width: 250px;
        height: 250px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Sections */
    section {
        padding: clamp(2.5rem, 5vw, 3rem) 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
    }
    
    /* Cards */
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .pricing-name {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-outline {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .pricing-card .btn-full {
        font-size: 0.85rem;
        padding: 0.75rem 0.875rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn-primary,
    .btn-outline,
    .mobile-menu-toggle,
    .faq-question,
    .back-to-top {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    /* Improve tap feedback */
    .btn-primary:active,
    .btn-outline:active {
        transform: scale(0.98);
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 3rem 0 2rem;
    }
    
    /* Hide entire hero-image block in landscape */
    .hero-image {
        display: none !important;
    }
    
    .connection-animation {
        display: none !important;
    }
    
    section {
        padding: 2.5rem 0;
    }
}

/* ============================================
   UX ENHANCEMENTS STYLES
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bg-secondary);
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    z-index: 1000;
    box-shadow: 
        0 4px 15px rgba(0, 255, 136, 0.3),
        0 0 20px rgba(0, 136, 255, 0.2);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 6px 20px rgba(0, 255, 136, 0.5),
        0 0 30px rgba(0, 136, 255, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Skip Link for Accessibility - Hidden */
.skip-link {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute;
    top: -9999px;
    left: -9999px;
    background: transparent !important;
    color: transparent !important;
    padding: 0 !important;
    text-decoration: none;
    z-index: -1 !important;
    font-weight: 700;
    border-radius: 0;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.skip-link:focus {
    display: none !important;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Form Enhancements */
.form-group.focused input,
.form-group.focused textarea {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: var(--primary-color);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: var(--accent-color);
}

/* Keyboard Focus */
.keyboard-focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Image Loading States */
img.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-error {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 2rem;
    text-align: center;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Mobile Menu Enhancements */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-animation .orb-1,
    .cta-animation .orb-2,
    .cta-animation .orb-3 {
        width: 150px;
        height: 150px;
    }
    
    .hero-background::before {
        width: 400px;
        height: 400px;
        right: -20%;
    }
    
    .hero-background::after {
        width: 350px;
        height: 350px;
        left: -20%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   MODERN PROFESSIONAL CSS ENHANCEMENTS
   ============================================ */

/* Glassmorphism Utility Classes */
.glass {
    background: var(--bg-glass);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.glass-light {
    background: var(--bg-glass-light);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: var(--blur-xl);
    -webkit-backdrop-filter: var(--blur-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 255, 136, 0.1);
}

/* Modern Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Modern Button Enhancements */
.btn-modern {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-base);
    z-index: 1;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern > * {
    position: relative;
    z-index: 2;
}

/* Modern Card Styles */
.card-modern {
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--glow-combined);
    border-color: var(--border-glow);
}

.card-modern:hover::before {
    transform: scaleX(1);
}

/* Modern Input Styles */
.input-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    transition: all var(--transition-base);
    width: 100%;
}

.input-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 3px rgba(0, 255, 136, 0.1),
        var(--glow-primary);
    background: var(--bg-tertiary);
}

.input-modern::placeholder {
    color: var(--text-muted);
}

/* Modern Hover Effects */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--glow-combined);
}

.hover-glow {
    transition: box-shadow var(--transition-base);
}

.hover-glow:hover {
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.hover-scale {
    transition: transform var(--transition-base);
}

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

/* Modern Grid Layouts */
.grid-modern {
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-auto {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Modern Flex Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-column {
    display: flex;
    flex-direction: column;
}

/* Modern Spacing Utilities */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

/* Modern Text Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-glow {
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 136, 255, 0.3);
}

/* Modern Border Utilities */
.border-gradient {
    border: 2px solid transparent;
    background: 
        linear-gradient(var(--bg-tertiary), var(--bg-tertiary)) padding-box,
        var(--gradient-primary) border-box;
    border-radius: var(--radius-lg);
}

/* Modern Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--glow-primary);
    }
    50% {
        box-shadow: var(--glow-lg);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Modern Container Enhancements */
.container-modern {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .container-modern {
        padding: 0 var(--space-md);
    }
}

/* Modern Section Spacing */
.section-modern {
    padding: var(--space-4xl) 0;
}

/* ============================================
   LARGE SCREEN OPTIMIZATIONS
   Wide Format, 2K, 4K Monitors
   ============================================ */

/* Wide Format Monitors (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .container-xl {
        max-width: 1600px;
    }
    
    .container-2xl {
        max-width: 1800px;
    }
    
    /* Navigation - Fixed height for wide format */
    .navbar {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        padding: 0 !important;
    }
    
    .nav-content {
        padding: 0.75rem 0 !important;
        height: 100% !important;
    }
    
    .logo-text {
        font-size: 1.75rem !important;
    }
    
    .nav-menu a {
        font-size: 0.95rem !important;
    }
    
    /* Hero Section */
    .hero {
        padding: clamp(8rem, 12vw, 12rem) 0 clamp(6rem, 10vw, 10rem);
        min-height: 85vh;
        margin-top: 70px;
    }
    
    .hero-content {
        gap: clamp(3rem, 6vw, 5rem);
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 6vw, 5.5rem);
    }
    
    .hero-brand {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
        letter-spacing: 3px;
    }
    
    .hero-description {
        font-size: clamp(1.35rem, 2.5vw, 1.6rem);
        max-width: 700px;
        line-height: 1.8;
    }
    
    .hero-badge {
        font-size: 1.15rem;
        padding: 1rem 2rem;
    }
    
    .hero-buttons {
        gap: 1.25rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 1.25rem 2.5rem;
        font-size: 1.15rem;
    }
    
    .hero-stats {
        gap: clamp(2.5rem, 5vw, 4rem);
    }
    
    .stat-number {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    /* Section Spacing */
    section {
        padding: clamp(6rem, 10vw, 8rem) 0;
    }
    
    section:not(.hero)::before {
        max-width: 1400px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1400px;
    }
    
    .feature-card {
        padding: 2.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 1.1rem;
        line-height: 1.75;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        max-width: 1400px;
        gap: 2.5rem;
    }
    
    .pricing-card {
        padding: 3rem;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-price {
        font-size: 3rem;
    }
    
    .pricing-period {
        font-size: 1.25rem;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1400px;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    /* FAQ */
    .faq-list {
        max-width: 1000px;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 2rem;
        font-size: 1.25rem;
    }
    
    .faq-answer {
        padding: 0 2rem 2rem;
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    /* Section Headers */
    .section-title {
        font-size: clamp(3rem, 5vw, 4rem);
    }
    
    .section-description {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        max-width: 800px;
    }
    
    
    /* Buttons */
    .btn-primary,
    .btn-outline {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .btn-large {
        font-size: 1.15rem;
        padding: 1.125rem 2.25rem;
    }
    
    /* Footer */
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        gap: 3rem;
    }
}

/* 2K Monitors (2560px and above) */
@media (min-width: 2560px) {
    .container {
        max-width: 1800px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .container-xl {
        max-width: 2000px;
    }
    
    .container-2xl {
        max-width: 2200px;
    }
    
    /* Navigation - Fixed height for 2K */
    .navbar {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        padding: 0 !important;
    }
    
    .nav-content {
        padding: 0.75rem 0 !important;
        height: 100% !important;
    }
    
    .logo-text {
        font-size: 1.75rem !important;
    }
    
    .nav-menu a {
        font-size: 0.95rem !important;
    }
    
    /* Hero Section */
    .hero {
        padding: clamp(10rem, 14vw, 14rem) 0 clamp(8rem, 12vw, 12rem);
        min-height: 80vh;
        margin-top: 70px;
    }
    
    .hero-content {
        gap: clamp(4rem, 7vw, 6rem);
    }
    
    .hero-title {
        font-size: clamp(4.5rem, 7vw, 6.5rem);
    }
    
    .hero-brand {
        font-size: clamp(1.5rem, 3vw, 1.75rem);
        letter-spacing: 3.5px;
    }
    
    .hero-description {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
        max-width: 800px;
        line-height: 1.85;
    }
    
    .hero-badge {
        font-size: 1.25rem;
        padding: 1.125rem 2.25rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 1.375rem 3rem;
        font-size: 1.25rem;
    }
    
    .hero-stats {
        gap: clamp(3rem, 6vw, 5rem);
    }
    
    .stat-number {
        font-size: clamp(3rem, 5vw, 4rem);
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    /* Section Spacing */
    section {
        padding: clamp(8rem, 12vw, 10rem) 0;
    }
    
    section:not(.hero)::before {
        max-width: 1800px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1800px;
    }
    
    .feature-card {
        padding: 3rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.25rem;
    }
    
    .feature-title {
        font-size: 1.75rem;
    }
    
    .feature-description {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        max-width: 1800px;
        gap: 3rem;
    }
    
    .pricing-card {
        padding: 3.5rem;
    }
    
    .pricing-card.featured {
        padding-top: 4.5rem;
        margin-top: 1.5rem;
    }
    
    .pricing-badge {
        font-size: 0.95rem;
        padding: 0.7rem 2.5rem;
    }
    
    .pricing-name {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 4rem;
    }
    
    .price-period {
        font-size: 1.4rem;
    }
    
    .pricing-header {
        margin-bottom: 3rem;
    }
    
    .pricing-features li {
        padding: 1.25rem 0;
        font-size: 1.1rem;
    }
    
    .pricing-features li::before {
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }
    
    .pricing-savings {
        font-size: 1.05rem;
        padding: 0.75rem 1.5rem;
    }
    
    .pricing-card .btn-full {
        font-size: 1rem;
        padding: 1.25rem 1.75rem;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1800px;
    }
    
    .testimonial-card {
        padding: 3rem;
    }
    
    .testimonial-text {
        font-size: 1.2rem;
        line-height: 1.85;
    }
    
    /* FAQ */
    .faq-list {
        max-width: 1200px;
    }
    
    .faq-item {
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 2.25rem;
        font-size: 1.35rem;
    }
    
    .faq-answer {
        padding: 0 2.25rem 2.25rem;
        font-size: 1.2rem;
        line-height: 1.85;
    }
    
    /* Section Headers */
    .section-title {
        font-size: clamp(3.5rem, 6vw, 5rem);
    }
    
    .section-description {
        font-size: clamp(1.35rem, 3vw, 1.65rem);
        max-width: 900px;
    }
    
    
    /* Buttons */
    .btn-primary,
    .btn-outline {
        font-size: 1.15rem;
        padding: 1.125rem 2.25rem;
    }
    
    .btn-large {
        font-size: 1.2rem;
        padding: 1.25rem 2.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 5rem 0 2.5rem;
    }
    
    .footer-content {
        gap: 4rem;
    }
}

/* ============================================
   iOS OPTIMIZATION
   iPhone, iPad, Safari-specific adaptations
   ============================================ */

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari detection */
    html {
        /* Prevent iOS Safari from zooming on input focus */
        -webkit-text-size-adjust: 100%;
        /* Smooth scrolling for iOS */
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        /* Prevent text selection on iOS (optional, can be removed if needed) */
        -webkit-touch-callout: default;
        -webkit-user-select: text;
        user-select: text;
        /* Better font rendering on iOS */
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }
    
    /* Safe area insets for iPhone X and newer - only on mobile */
    @media (max-width: 768px) {
        .navbar {
            padding-top: max(1rem, env(safe-area-inset-top));
            padding-bottom: max(1rem, env(safe-area-inset-top));
        }
    }
    
    .hero {
        padding-top: max(clamp(6rem, 10vw + 2rem, 10rem), calc(clamp(6rem, 10vw + 2rem, 10rem) + env(safe-area-inset-top)));
        padding-bottom: max(clamp(5rem, 8vw + 2rem, 8rem), calc(clamp(5rem, 8vw + 2rem, 8rem) + env(safe-area-inset-bottom)));
    }
    
    /* Back to top button with safe area */
    .back-to-top {
        bottom: max(2rem, calc(2rem + env(safe-area-inset-bottom)));
        right: max(2rem, calc(2rem + env(safe-area-inset-right)));
    }
    
    /* Footer with safe area */
    .footer {
        padding-bottom: max(2rem, calc(2rem + env(safe-area-inset-bottom)));
    }
}

/* iOS-specific button styles */
@supports (-webkit-touch-callout: none) {
    /* iOS-style buttons with better touch feedback */
    .btn-primary,
    .btn-outline,
    .hero-badge {
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        /* iOS-style rounded corners */
        border-radius: 12px;
        /* Better touch target */
        min-height: 44px;
        /* Smooth transitions for iOS */
        -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Active state for iOS */
    .btn-primary:active,
    .btn-outline:active,
    .hero-badge:active {
        transform: scale(0.96);
        opacity: 0.8;
    }
    
    /* iOS-style cards with glassmorphism */
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .faq-item {
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        /* iOS-style rounded corners */
        border-radius: 16px;
        /* Better shadow for iOS */
        -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Remove tap highlight on cards */
    .feature-card,
    .pricing-card,
    .testimonial-card {
        -webkit-tap-highlight-color: transparent;
    }
}

/* iPhone specific (portrait) */
@media only screen 
    and (max-device-width: 480px)
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: portrait) {
    
    /* Optimize for iPhone portrait */
    .hero {
        min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        padding-top: max(2rem, calc(2rem + env(safe-area-inset-top)));
        padding-bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom)));
    }
    
    .navbar {
        height: max(60px, calc(60px + env(safe-area-inset-top)));
        padding-top: env(safe-area-inset-top);
    }
    
    /* Larger touch targets for iPhone */
    .btn-primary,
    .btn-outline {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }
    
    .faq-question {
        min-height: 56px;
        padding: 1.25rem;
    }
    
    /* Better spacing for iPhone */
    section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }
}

/* iPhone specific (landscape) */
@media only screen 
    and (max-device-width: 480px)
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: landscape) {
    
    .hero {
        min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        padding: max(2rem, calc(2rem + env(safe-area-inset-top))) 0 max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom)));
    }
    
    .navbar {
        height: max(50px, calc(50px + env(safe-area-inset-top)));
        padding-top: env(safe-area-inset-top);
    }
    
    /* Compact layout for landscape */
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}

/* iPad specific (portrait) */
@media only screen 
    and (min-device-width: 768px)
    and (max-device-width: 1024px)
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: portrait) {
    
    /* iPad portrait optimizations */
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .hero {
        padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    }
    
    /* Better grid layout for iPad */
    .features-grid,
    .pricing-grid {
        gap: 2.5rem;
    }
    
    /* Larger touch targets for iPad */
    .btn-primary,
    .btn-outline {
        min-height: 50px;
        padding: 1.125rem 2rem;
    }
}

/* iPad specific (landscape) */
@media only screen 
    and (min-device-width: 768px)
    and (max-device-width: 1024px)
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: landscape) {
    
    /* iPad landscape optimizations */
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        display: block !important;
        min-height: 500px;
    }
    
    .connection-animation {
        display: block !important;
        min-height: 500px;
    }
}

/* iOS Safari viewport fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari address bar */
    .hero {
        min-height: -webkit-fill-available;
    }
    
    /* iOS Safari optimizations - removed fixed position to prevent desktop issues */
    @media (max-width: 768px) {
        /* Allow scrolling in main content */
        html {
            height: -webkit-fill-available;
        }
    }
}

/* iOS-specific scrollbar styling */
@supports (-webkit-touch-callout: none) {
    /* Hide scrollbar on iOS but keep functionality */
    ::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }
    
    /* Custom iOS-style scroll indicator */
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* iOS input and form optimizations */
@supports (-webkit-touch-callout: none) {
    input,
    textarea,
    select {
        /* Prevent iOS zoom on input focus */
        font-size: 16px;
        /* Better appearance on iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* iOS-style form elements */
    input:focus,
    textarea:focus,
    select:focus {
        outline: none;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
        box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
    }
}

/* iOS-specific animations and transitions */
@supports (-webkit-touch-callout: none) {
    /* Optimize animations for iOS */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    /* Smooth transitions for iOS */
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .faq-item {
        -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                           opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                           box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                   opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                   box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* iOS status bar area handling */
@supports (-webkit-touch-callout: none) {
    /* Ensure content doesn't go under status bar */
    .navbar {
        padding-top: env(safe-area-inset-top, 0);
    }
    
    /* Adjust hero section for status bar */
    .hero {
        margin-top: calc(70px + env(safe-area-inset-top, 0));
    }
    
    @media (max-width: 768px) {
        .hero {
            margin-top: calc(60px + env(safe-area-inset-top, 0));
        }
    }
}

/* iOS-specific glassmorphism effects */
@supports (-webkit-backdrop-filter: blur(20px)) {
    .navbar,
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .faq-item,
    .hero-badge {
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        background: rgba(0, 0, 0, 0.6);
    }
}

/* iOS-specific typography improvements */
@supports (-webkit-touch-callout: none) {
    /* Better font rendering on iOS */
    body,
    .hero-title,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Prevent font boosting on iOS */
    .hero-title,
    .section-title,
    .hero-brand {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* ============================================
   SMART TV OPTIMIZATION
   Large screens with remote control navigation
   ============================================ */

/* Smart TV and Large Displays (1600px+ with TV-like characteristics) */
@media (min-width: 1600px) and (min-height: 900px) {
    /* Enhanced focus states for remote navigation */
    *:focus-visible {
        outline: 4px solid var(--primary-color);
        outline-offset: 4px;
        box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.3);
    }
    
    /* Remove focus outline for FAQ items */
    .faq-item:focus-visible,
    .faq-question:focus-visible {
        outline: none;
        box-shadow: none;
    }
    
    /* Remove focus outline for logo */
    .logo:focus-visible,
    .logo a:focus-visible {
        outline: none;
        box-shadow: none;
    }
    
    
    /* Hero Section - TV optimized */
    .hero {
        padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
    }
    
    .hero-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
        line-height: 1.15;
    }
    
    .hero-brand {
        font-size: clamp(1.2rem, 2vw, 1.4rem);
    }
    
    .hero-description {
        font-size: clamp(1.25rem, 2vw, 1.5rem);
        line-height: 1.8;
    }
    
    .hero-badge {
        font-size: 1.2rem;
        padding: 1.125rem 2rem;
        min-height: 60px;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        font-size: 1.2rem;
        padding: 1.25rem 2.75rem;
        min-height: 60px;
        min-width: 220px;
    }
    
    /* Buttons - TV friendly sizes */
    .btn-primary,
    .btn-outline {
        font-size: 1.15rem;
        padding: 1.125rem 2.25rem;
        min-height: 56px;
        min-width: 180px;
    }
    
    .btn-large {
        font-size: 1.25rem;
        padding: 1.375rem 2.75rem;
        min-height: 64px;
        min-width: 240px;
    }
    
    /* Cards - Larger touch targets */
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 2.5rem;
        min-height: 200px;
    }
    
    .feature-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    /* FAQ - TV optimized */
    .faq-question {
        padding: 1.75rem;
        font-size: 1.2rem;
        min-height: 70px;
        display: flex;
        align-items: center;
    }
    
    .faq-answer {
        padding: 0 1.75rem 1.75rem;
        font-size: 1.15rem;
        line-height: 1.8;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Section Headers - TV readable */
    .section-title {
        font-size: clamp(2.75rem, 4vw, 3.75rem);
        line-height: 1.2;
    }
    
    .section-description {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
        line-height: 1.8;
    }
    
    /* Stats - TV readable */
    .stat-number {
        font-size: clamp(2.25rem, 3.5vw, 3rem);
    }
    
    .stat-label {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }
    
    /* Footer - TV optimized */
    .footer {
        padding: 4rem 0 2.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-column ul li a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Smart TV - Ultra Large (1920px+ height for TV aspect ratios) */
@media (min-width: 1920px) and (min-height: 1080px) {
    /* Even larger for true TV viewing distance */
    .hero-title {
        font-size: clamp(3.5rem, 5.5vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(3.25rem, 4.5vw, 4.5rem);
    }
    
    .btn-primary,
    .btn-outline {
        font-size: 1.2rem;
        padding: 1.25rem 2.5rem;
        min-height: 60px;
    }
    
    .btn-large {
        font-size: 1.3rem;
        padding: 1.5rem 3rem;
        min-height: 68px;
    }
    
    .faq-question {
        font-size: 1.3rem;
        padding: 2rem;
        min-height: 80px;
    }
    
    .faq-answer {
        font-size: 1.2rem;
        padding: 0 2rem 2rem;
    }
}

/* Smart TV - Touch/Remote Navigation Enhancement */
@media (min-width: 1600px) and (pointer: coarse) {
    /* For touch-enabled Smart TVs */
    .nav-menu a,
    .btn-primary,
    .btn-outline,
    .hero-badge,
    .faq-question {
        min-height: 56px;
        touch-action: manipulation;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        min-height: 64px;
    }
}

/* 4K Monitors (3840px and above) */
@media (min-width: 3840px) {
    .container {
        max-width: 2400px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
    
    .container-xl {
        max-width: 2600px;
    }
    
    .container-2xl {
        max-width: 2800px;
    }
    
    /* Navigation - Fixed height for 4K */
    .navbar {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        padding: 0 !important;
    }
    
    .nav-content {
        padding: 0.75rem 0 !important;
        height: 100% !important;
    }
    
    .logo-text {
        font-size: 1.75rem !important;
    }
    
    .nav-menu a {
        font-size: 0.95rem !important;
    }
    
    /* Hero Section */
    .hero {
        padding: clamp(12rem, 16vw, 16rem) 0 clamp(10rem, 14vw, 14rem);
        min-height: 75vh;
        margin-top: 70px;
    }
    
    .hero-content {
        gap: clamp(5rem, 8vw, 7rem);
    }
    
    .hero-title {
        font-size: clamp(5.5rem, 8vw, 8rem);
    }
    
    .hero-brand {
        font-size: clamp(1.75rem, 3.5vw, 2rem);
        letter-spacing: 4px;
    }
    
    .hero-description {
        font-size: clamp(1.75rem, 3.5vw, 2.1rem);
        max-width: 1000px;
        line-height: 1.9;
    }
    
    .hero-badge {
        font-size: 1.4rem;
        padding: 1.25rem 2.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 1.5rem 3.5rem;
        font-size: 1.35rem;
    }
    
    .hero-stats {
        gap: clamp(4rem, 7vw, 6rem);
    }
    
    .stat-number {
        font-size: clamp(3.5rem, 6vw, 5rem);
    }
    
    .stat-label {
        font-size: 1.35rem;
    }
    
    /* Section Spacing */
    section {
        padding: clamp(10rem, 14vw, 12rem) 0;
    }
    
    section:not(.hero)::before {
        max-width: 2400px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.5rem, 2vw, 2.5rem);
        max-width: 2000px;
        margin: 0 auto;
        justify-items: center;
    }
    
    .feature-card {
        padding: clamp(2.5rem, 3vw, 3.5rem);
        max-width: 100%;
    }
    
    .feature-icon {
        width: clamp(80px, 6vw, 90px);
        height: clamp(80px, 6vw, 90px);
        font-size: clamp(2rem, 2.5vw, 2.5rem);
    }
    
    .feature-title {
        font-size: clamp(1.8rem, 2.2vw, 2rem);
    }
    
    .feature-description {
        font-size: clamp(1.2rem, 1.5vw, 1.35rem);
        line-height: 1.85;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        max-width: 2000px;
        gap: clamp(1.5rem, 2vw, 2.5rem);
        margin: 0 auto;
        justify-items: center;
    }
    
    .pricing-card {
        padding: clamp(3rem, 3.5vw, 4rem);
        max-width: 100%;
    }
    
    .pricing-card.featured {
        padding-top: 5rem;
        margin-top: 1.75rem;
    }
    
    .pricing-badge {
        font-size: 1rem;
        padding: 0.75rem 2.75rem;
    }
    
    .pricing-name {
        font-size: 2.25rem;
    }
    
    .price-amount {
        font-size: 4.5rem;
    }
    
    .price-period {
        font-size: 1.6rem;
    }
    
    .pricing-header {
        margin-bottom: 3.5rem;
    }
    
    .pricing-features li {
        padding: 1.375rem 0;
        font-size: 1.15rem;
    }
    
    .pricing-features li::before {
        width: 30px;
        height: 30px;
        font-size: 1.4rem;
    }
    
    .pricing-savings {
        font-size: 1.1rem;
        padding: 0.8rem 1.65rem;
    }
    
    .pricing-card .btn-full {
        font-size: 1.05rem;
        padding: 1.375rem 2rem;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.5rem, 2vw, 2.5rem);
        max-width: 2000px;
        padding: clamp(4rem, 6vw, 6rem) var(--space-lg);
        margin: 0 auto;
        justify-items: center;
    }
    
    .testimonial-card {
        padding: clamp(3rem, 4vw, 4rem);
        border-radius: clamp(1.5rem, 2vw, 2rem);
    }
    
    .testimonial-rating {
        font-size: clamp(1.5rem, 2vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        font-size: clamp(1.2rem, 1.8vw, 1.5rem);
        line-height: 1.85;
        margin-bottom: 2rem;
    }
    
    .testimonial-author {
        gap: 1.5rem;
    }
    
    .author-avatar {
        width: clamp(60px, 5vw, 80px);
        height: clamp(60px, 5vw, 80px);
        font-size: clamp(1.5rem, 2vw, 2rem);
    }
    
    .author-name {
        font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    }
    
    .author-role {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: clamp(4rem, 6vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(3.5rem, 5vw, 4.5rem);
        margin-bottom: clamp(1.5rem, 2vw, 2rem);
    }
    
    .section-description {
        font-size: clamp(1.4rem, 2vw, 1.7rem);
        line-height: 1.8;
        max-width: 1400px;
    }
    
    /* FAQ */
    .faq-list {
        max-width: 1600px;
    }
    
    .faq-item {
        margin-bottom: 2.5rem;
        border-radius: clamp(1.5rem, 2vw, 2rem);
    }
    
    .faq-question {
        padding: clamp(2rem, 3vw, 2.5rem);
        font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    }
    
    .faq-answer {
        padding: 0 clamp(2rem, 3vw, 2.5rem) clamp(2rem, 3vw, 2.5rem);
        font-size: clamp(1.2rem, 1.6vw, 1.4rem);
        line-height: 1.85;
    }
    
    /* CTA Section */
    .cta {
        padding: clamp(8rem, 12vw, 10rem) 0;
    }
    
    .cta-content {
        max-width: 1600px;
    }
    
    .cta-title {
        font-size: clamp(3.5rem, 5vw, 4.5rem);
        margin-bottom: clamp(1.5rem, 2vw, 2rem);
    }
    
    .cta-description {
        font-size: clamp(1.4rem, 2vw, 1.7rem);
        line-height: 1.8;
        margin-bottom: clamp(3rem, 4vw, 4rem);
    }
    
    .cta .btn-primary {
        padding: clamp(1.5rem, 2vw, 2rem) clamp(3rem, 4vw, 4rem);
        font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    }
    
    /* Load More Buttons */
    .testimonials-load-more,
    .lifehacks-load-more {
        margin-top: clamp(4rem, 6vw, 5rem);
    }
    
    .load-more-btn {
        padding: clamp(1.25rem, 2vw, 1.5rem) clamp(3rem, 4vw, 4rem);
        font-size: clamp(1.1rem, 1.4vw, 1.3rem);
        border-radius: clamp(1rem, 1.5vw, 1.25rem);
    }
    
    /* Lifehacks CTA */
    .lifehacks-cta {
        margin-top: clamp(4rem, 6vw, 5rem);
        padding-top: clamp(3rem, 4vw, 4rem);
    }
    
    .lifehacks-cta-text {
        font-size: clamp(1.3rem, 1.8vw, 1.6rem);
        margin-bottom: clamp(2rem, 3vw, 2.5rem);
    }
    
    .lifehacks-cta .btn-primary {
        padding: clamp(1.5rem, 2vw, 2rem) clamp(3rem, 4vw, 4rem);
        font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    }
    
    
    /* Buttons */
    .btn-primary,
    .btn-outline {
        font-size: clamp(1.1rem, 1.4vw, 1.3rem);
        padding: clamp(1.125rem, 1.5vw, 1.5rem) clamp(2.5rem, 3.5vw, 3.5rem);
        border-radius: clamp(1rem, 1.3vw, 1.25rem);
    }
    
    .btn-large {
        font-size: clamp(1.2rem, 1.6vw, 1.5rem);
        padding: clamp(1.25rem, 1.7vw, 1.75rem) clamp(3rem, 4vw, 4rem);
    }
    
    /* Features Grid - Better spacing on 4K */
    .features-grid {
        gap: clamp(1.5rem, 2vw, 2.5rem);
        max-width: 2000px;
    }
    
    .feature-card {
        padding: clamp(2.5rem, 3vw, 3.5rem);
    }
    
    .feature-title {
        font-size: clamp(1.8rem, 2.2vw, 2.2rem);
        margin-bottom: 1.5rem;
    }
    
    .feature-description {
        font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    }
    
    /* Pricing Grid - Better spacing on 4K */
    .pricing-grid {
        gap: clamp(1.5rem, 2vw, 2.5rem);
        max-width: 2000px;
    }
    
    .pricing-card {
        padding: clamp(3rem, 3.5vw, 4rem);
    }
    
    .pricing-name {
        font-size: clamp(2rem, 2.5vw, 2.5rem);
    }
    
    .price-amount {
        font-size: clamp(4rem, 5vw, 5rem);
    }
    
    .price-period {
        font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    }
    
    .pricing-features li {
        font-size: clamp(1.1rem, 1.4vw, 1.3rem);
        padding: clamp(1.25rem, 1.5vw, 1.5rem) 0;
    }
}

.section-modern-sm {
    padding: var(--space-2xl) 0;
}

/* Modern Focus States */
.focus-ring {
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: outline var(--transition-fast);
}

.focus-ring:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Modern Loading States */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-secondary) 0%,
        var(--bg-tertiary) 50%,
        var(--bg-secondary) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Modern Scroll Snap */
.scroll-snap {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scroll-snap > * {
    scroll-snap-align: start;
}

/* Modern Aspect Ratios */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-4-3 {
    aspect-ratio: 4 / 3;
}

/* Modern Clip Path Effects */
.clip-path-hexagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.clip-path-diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Modern Backdrop Effects */
.backdrop-blur {
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
}

.backdrop-blur-sm {
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
}

.backdrop-blur-xl {
    backdrop-filter: var(--blur-xl);
    -webkit-backdrop-filter: var(--blur-xl);
}

/* ============================================
   UTILITY CLASSES (Tailwind-like)
   ============================================ */

/* Display Utilities */
.hidden { display: none !important; }
.block { display: block !important; }
.inline { display: inline !important; }
.inline-block { display: inline-block !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* Overflow */
.overflow-auto { overflow: auto !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.overflow-scroll { overflow: scroll !important; }

/* Position */
.static { position: static !important; }
.fixed { position: fixed !important; }
.absolute { position: absolute !important; }
.relative { position: relative !important; }
.sticky { position: sticky !important; }

/* Width & Height */
.w-full { width: 100% !important; }
.w-auto { width: auto !important; }
.h-full { height: 100% !important; }
.h-auto { height: auto !important; }

/* Typography */
.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-base { font-size: 1rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }

.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }

/* Spacing - Quick Utilities */
.m-0 { margin: 0 !important; }
.m-auto { margin: auto !important; }
.p-0 { padding: 0 !important; }
.p-2 { padding: var(--space-sm) !important; }
.p-4 { padding: var(--space-lg) !important; }
.p-6 { padding: var(--space-2xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-auto { margin-top: auto !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-auto { margin-bottom: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.px-2 { padding-left: var(--space-sm) !important; padding-right: var(--space-sm) !important; }
.px-4 { padding-left: var(--space-lg) !important; padding-right: var(--space-lg) !important; }
.py-2 { padding-top: var(--space-sm) !important; padding-bottom: var(--space-sm) !important; }
.py-4 { padding-top: var(--space-lg) !important; padding-bottom: var(--space-lg) !important; }

/* Border Radius */
.rounded { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: var(--radius-full) !important; }

/* Opacity */
.opacity-0 { opacity: 0 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-100 { opacity: 1 !important; }

/* Transform */
.scale-100 { transform: scale(1) !important; }
.scale-105 { transform: scale(1.05) !important; }
.scale-110 { transform: scale(1.1) !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }

/* User Select */
.select-none { user-select: none !important; }
.select-text { user-select: text !important; }

/* Responsive Utilities */
@media (min-width: 768px) {
    .md\:block { display: block !important; }
    .md\:hidden { display: none !important; }
    .md\:flex { display: flex !important; }
}

@media (min-width: 1024px) {
    .lg\:block { display: block !important; }
    .lg\:hidden { display: none !important; }
    .lg\:flex { display: flex !important; }
}

/* ============================================
   LIBRARY INTEGRATION STYLES
   ============================================ */

/* LazySizes Styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazyloading {
    opacity: 0.5;
}

.lazyloaded {
    opacity: 1;
}

/* Form Error Styles */
.form-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.form-error.show {
    opacity: 1;
    transform: translateY(0);
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 136, 0.1);
}

/* Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all var(--transition-base);
    max-width: 400px;
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
}

.notification-error {
    border-color: var(--accent-color);
    background: rgba(255, 0, 136, 0.1);
    color: var(--accent-color);
}

.notification-info {
    border-color: var(--secondary-color);
    background: rgba(0, 136, 255, 0.1);
    color: var(--secondary-color);
}

/* GSAP Animation Classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scroll Indicator */
.smooth-scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    opacity: 0.5;
    animation: scrollIndicator 2s infinite;
    z-index: 1000;
}

.smooth-scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollIndicatorDot 2s infinite;
}

@keyframes scrollIndicator {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes scrollIndicatorDot {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

@media (max-width: 768px) {
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   LIFEHACKS SECTION - COMPLETELY REWRITTEN
   ============================================ */
.lifehacks {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    width: 100%;
}

.lifehacks .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.lifehacks .section-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto clamp(3rem, 6vw, 4rem);
    padding: 0;
    text-align: center;
}

.lifehacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Responsive grid adaptation */
@media (max-width: 480px) {
    .lifehacks-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .lifehacks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .lifehacks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1025px) {
    .lifehacks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}


/* Lifehack Card - Modern Redesign */
.lifehack-card {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(15, 15, 25, 0.98));
    border-radius: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s ease,
                border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    min-height: 200px;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Subtle glow effect on hover */
.lifehack-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: clamp(1rem, 2vw, 1.5rem);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%, 
        rgba(0, 136, 255, 0.08) 50%,
        rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.lifehack-card:hover::before {
    opacity: 1;
}

.lifehack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 255, 136, 0.15),
        0 6px 20px rgba(0, 136, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Disable hover effects on mobile for better performance */
@media (max-width: 768px) {
    .lifehack-card {
        min-height: auto;
    }
    
    .lifehack-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

.lifehack-card.hidden {
    display: none;
}

.lifehack-card.show {
    display: flex;
}

.lifehack-icon {
    width: clamp(48px, 9vw, 56px);
    height: clamp(48px, 9vw, 56px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: clamp(0.625rem, 1.25vw, 0.875rem);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
    transition: transform 0.3s ease;
}

.lifehack-icon svg {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
}

.lifehack-card:hover .lifehack-icon {
    transform: scale(1.05);
}

.lifehack-text {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.75;
    color: var(--text-primary);
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

/* Lifehacks Responsive - Optimized */
@media (max-width: 480px) {
    .lifehacks-grid {
        gap: 1.25rem;
    }
    
    .lifehack-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .lifehack-icon {
        width: 44px;
        height: 44px;
    }
    
    .lifehack-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .lifehack-text {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .lifehacks-grid {
        gap: 1.5rem;
    }
    
    .lifehack-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }
}

/* Lifehacks CTA */
.lifehacks-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lifehacks-cta-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lifehacks-cta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .lifehacks-cta-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .lifehacks-cta {
        margin-top: 1.75rem;
        padding-top: 1.25rem;
    }
    
    .lifehacks-cta-text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .lifehacks-grid {
        gap: 1.5rem;
        padding: 1.25rem 0;
    }
    
    .lifehack-card {
        padding: 1.5rem;
        gap: 1.25rem;
        min-width: 340px;
        max-width: 400px;
    }
    
    .lifehack-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .lifehack-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .lifehack-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* Wide screens (1920px+) */
@media (min-width: 1920px) {
    .lifehacks-grid {
        gap: 1.75rem;
        max-width: 1400px;
        padding: 1.5rem 0;
    }
    
    .lifehack-card {
        padding: 1.75rem;
        gap: 1.5rem;
        min-width: 360px;
        max-width: 420px;
        border-radius: 1.5rem;
    }
    
    .lifehack-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }
    
    .lifehack-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .lifehack-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .lifehacks-cta {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
    
    .lifehacks-cta-text {
        font-size: 1.125rem;
    }
}

/* 2K Monitors (2560px+) */
@media (min-width: 2560px) {
    .lifehacks-grid {
        gap: 2rem;
        max-width: 1800px;
        padding: 2rem 0;
    }
    
    .lifehack-card {
        padding: 2rem;
        gap: 1.75rem;
        min-width: 400px;
        max-width: 480px;
        border-radius: 1.5rem;
    }
    
    .lifehack-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .lifehack-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .lifehack-text {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
    
    .lifehacks-cta {
        margin-top: 3.5rem;
        padding-top: 3rem;
    }
    
    .lifehacks-cta-text {
        font-size: 1.1875rem;
    }
}

/* 4K Monitors (3840px+) */
@media (min-width: 3840px) {
    .lifehacks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.5rem, 2vw, 2.5rem);
        max-width: 2000px;
        padding: clamp(4rem, 6vw, 6rem) var(--space-lg);
        margin: 0 auto;
        justify-items: center;
    }
    
    .lifehack-card {
        padding: clamp(3rem, 4vw, 4rem);
        gap: clamp(1.5rem, 2vw, 2rem);
        border-radius: clamp(1.5rem, 2vw, 2rem);
    }
    
    .lifehack-icon {
        width: clamp(60px, 5vw, 80px);
        height: clamp(60px, 5vw, 80px);
        min-width: clamp(60px, 5vw, 80px);
    }
    
    .lifehack-icon svg {
        width: clamp(30px, 3vw, 40px);
        height: clamp(30px, 3vw, 40px);
    }
    
    .lifehack-text {
        font-size: clamp(1.2rem, 1.8vw, 1.5rem);
        line-height: 1.85;
    }
    
    .lifehack-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .lifehack-text {
        font-size: 1.1875rem;
        line-height: 1.8;
    }
    
    .lifehacks-cta {
        margin-top: 4rem;
        padding-top: 3.5rem;
    }
    
    .lifehacks-cta-text {
        font-size: 1.3125rem;
    }
}

/* Smart TV (1600px+ and 1920px+) */
@media (min-width: 1600px) and (min-height: 900px) {
    .lifehacks-grid {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .lifehack-card {
        padding: 2rem;
        gap: 1.75rem;
        min-width: 380px;
        max-width: 450px;
    }
    
    .lifehack-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .lifehack-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .lifehack-text {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE FIXES
   Production-ready improvements
   ============================================ */

/* Global Text Overflow Protection */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal overflow on all elements */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

img, video, canvas, svg, iframe {
    max-width: 100%;
    height: auto;
}

/* Privacy and Terms Pages Responsive Styles */
.privacy-policy,
.terms-of-service {
    padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 4rem) !important;
    margin-top: 70px;
}

.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-title,
.terms-title {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.privacy-subtitle,
.terms-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.privacy-text,
.terms-text {
    line-height: 1.8;
    color: var(--text-primary);
}

.privacy-text h2,
.terms-text h2 {
    font-size: clamp(1.5rem, 3vw, 1.75rem) !important;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.privacy-text p,
.terms-text p {
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.privacy-text ul,
.terms-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style-type: disc;
}

.privacy-text li,
.terms-text li {
    margin-bottom: 0.75rem;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.privacy-text a,
.terms-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-text a:hover,
.terms-text a:hover {
    color: var(--primary-light);
}

/* Mobile optimizations for Privacy/Terms */
@media (max-width: 768px) {
    .privacy-policy,
    .terms-of-service {
        margin-top: 60px;
        padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) !important;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 1rem;
    }
    
    .privacy-title,
    .terms-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
        margin-bottom: 0.75rem;
    }
    
    .privacy-subtitle,
    .terms-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 2rem;
    }
    
    .privacy-text h2,
    .terms-text h2 {
        font-size: clamp(1.25rem, 5vw, 1.5rem) !important;
        margin-top: 2rem;
    }
    
    .privacy-text ul,
    .terms-text ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy,
    .terms-of-service {
        padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem) !important;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 0.75rem;
    }
    
    .privacy-title,
    .terms-title {
        font-size: clamp(1.5rem, 9vw, 2rem) !important;
    }
    
    .privacy-text ul,
    .terms-text ul {
        padding-left: 1.25rem;
    }
}

/* Additional Text Positioning Fixes */
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-top: 1.5rem;
}

/* Pricing Card Text Improvements */
.pricing-features li {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.pricing-savings {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* Testimonial Author Text */
.author-name {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 600;
}

.author-role {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--text-muted);
}

/* FAQ Text Improvements */
.faq-question span {
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.faq-answer {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
}

/* Footer Text */
.footer-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.footer-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1rem;
}

.footer-links ul li a {
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* Additional Overflow Protection */
.container,
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
    max-width: 100%;
}

/* Button Text Improvements */
.btn-primary,
.btn-outline {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
}

.btn-large {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
}

/* Hero Badge Text */
.badge-text {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.4;
}

/* Production Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .hero-image,
    .connection-animation,
    .cta-animation,
    .back-to-top,
    .scroll-progress {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: blue;
        text-decoration: underline;
    }
}

/* ============================================
   GLOBAL CENTERING FIXES
   Ensure all blocks are centered
   ============================================ */

/* Ensure all sections are centered */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Ensure all containers are centered */
.container {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center all grid containers */
.features-grid,
.pricing-grid,
.testimonials-grid,
.lifehacks-grid {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center FAQ list */
.faq-list {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center CTA content */
.cta-content {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center lifehacks CTA */
.lifehacks-cta {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Hero Section Centering */
.hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero .container {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-content {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1200px !important;
}

.hero-text {
    width: 100% !important;
    max-width: 100% !important;
}

.hero-image {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
}

/* ============================================
   COMPREHENSIVE SIZE OPTIMIZATION
   Normalized sizes for all blocks and resolutions
   ============================================ */

/* Base Typography Scale - Optimized */
:root {
    /* Font Sizes - Responsive Scale */
    --fs-xs: clamp(0.75rem, 1.5vw, 0.875rem);      /* 12-14px */
    --fs-sm: clamp(0.875rem, 1.75vw, 1rem);        /* 14-16px */
    --fs-base: clamp(1rem, 2vw, 1.125rem);         /* 16-18px */
    --fs-lg: clamp(1.125rem, 2.25vw, 1.25rem);     /* 18-20px */
    --fs-xl: clamp(1.25rem, 2.5vw, 1.5rem);        /* 20-24px */
    --fs-2xl: clamp(1.5rem, 3vw, 2rem);            /* 24-32px */
    --fs-3xl: clamp(2rem, 4vw, 2.5rem);            /* 32-40px */
    --fs-4xl: clamp(2.5rem, 5vw, 3.5rem);          /* 40-56px */
    --fs-5xl: clamp(3rem, 6vw, 4.5rem);             /* 48-72px */
    
    /* Spacing Scale - Consistent */
    --spacing-xs: 0.5rem;      /* 8px */
    --spacing-sm: 0.75rem;     /* 12px */
    --spacing-md: 1rem;        /* 16px */
    --spacing-lg: 1.5rem;      /* 24px */
    --spacing-xl: 2rem;        /* 32px */
    --spacing-2xl: 3rem;       /* 48px */
    --spacing-3xl: 4rem;       /* 64px */
    --spacing-4xl: 6rem;       /* 96px */
    
    /* Card Padding - Responsive */
    --card-padding-sm: clamp(1rem, 2vw, 1.25rem);
    --card-padding-md: clamp(1.5rem, 3vw, 2rem);
    --card-padding-lg: clamp(2rem, 4vw, 2.5rem);
    --card-padding-xl: clamp(2.5rem, 5vw, 3rem);
    
    /* Border Radius - Consistent */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

/* Hero Section - Optimized Sizes */
.hero {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-brand {
    font-size: clamp(0.875rem, 1.75vw, 1.125rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    max-width: 600px;
}

.hero-badge {
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.hero-buttons {
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    padding: clamp(0.875rem, 1.75vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    min-height: clamp(44px, 8vw, 52px);
}

.hero-stats {
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-number {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
}

.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    margin-top: 0.25rem;
}

/* Section Headers - Optimized */
.section-header {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.section-description {
    font-size: clamp(0.95rem, 1.9vw, 1.125rem);
    line-height: 1.7;
    max-width: 700px;
}

/* Features Section - Optimized */
.features-grid {
    gap: clamp(1.25rem, 2.5vw, 2rem);
    padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.feature-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: clamp(1rem, 2vw, 1.5rem);
}

.feature-icon {
    width: clamp(56px, 11vw, 70px);
    height: clamp(56px, 11vw, 70px);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    border-radius: clamp(0.75rem, 1.5vw, 1rem);
}

.feature-icon svg {
    width: clamp(24px, 5vw, 30px);
    height: clamp(24px, 5vw, 30px);
}

.feature-title {
    font-size: clamp(1.125rem, 2.25vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    padding-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.feature-description {
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    line-height: 1.75;
}

/* Pricing Section - Optimized */
.pricing-grid {
    gap: clamp(1.25rem, 2.5vw, 2rem);
    padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.pricing-card {
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border-radius: clamp(1rem, 2vw, 1.5rem);
}

.pricing-card.featured {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.pricing-badge {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    padding: clamp(0.5rem, 1vw, 0.6rem) clamp(1.5rem, 3vw, 2rem);
}

.pricing-header {
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.pricing-name {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.price-amount {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.price-period {
    font-size: clamp(0.875rem, 1.75vw, 1.1rem);
}

.pricing-savings {
    font-size: clamp(0.8rem, 1.6vw, 0.95rem);
    padding: clamp(0.5rem, 1vw, 0.65rem) clamp(1rem, 2vw, 1.25rem);
    margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

.pricing-features {
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.pricing-features li {
    padding: clamp(0.75rem, 1.5vw, 1rem) 0;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.pricing-features li::before {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.pricing-card .btn-full {
    font-size: clamp(0.875rem, 1.75vw, 0.95rem);
    padding: clamp(0.875rem, 1.75vw, 1rem) clamp(1.25rem, 2.5vw, 1.5rem);
    min-height: clamp(44px, 8vw, 48px);
}

/* Testimonials Section - Optimized */
.testimonials-grid {
    gap: clamp(1.25rem, 2.5vw, 2rem);
    padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.testimonial-card {
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border-radius: clamp(1rem, 2vw, 1.5rem);
    min-width: clamp(300px, 60vw, 350px);
    max-width: clamp(320px, 64vw, 400px);
}

.testimonial-rating {
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.testimonial-text {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.testimonial-author {
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.author-avatar {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.author-name {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
}

.author-role {
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
}

/* FAQ Section - Optimized */
.faq-list {
    gap: clamp(0.75rem, 1.5vw, 1rem);
    padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.faq-item {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    border-radius: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-question {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.faq-question span {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.5;
}

.faq-icon {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
}

.faq-answer {
    padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.75;
}

/* Lifehacks Section - Optimized */
.lifehacks-grid {
    gap: clamp(0.875rem, 1.75vw, 1.5rem);
    padding: clamp(0.75rem, 1.5vw, 1rem) 0;
}

.lifehack-card {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    border-radius: clamp(1rem, 2vw, 1.25rem);
    gap: clamp(1rem, 2vw, 1.25rem);
    min-width: clamp(280px, 56vw, 320px);
    max-width: clamp(300px, 60vw, 400px);
}

.lifehack-icon {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    min-width: clamp(40px, 8vw, 48px);
    border-radius: clamp(0.625rem, 1.25vw, 0.875rem);
}

.lifehack-icon svg {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
}

.lifehack-text {
    font-size: clamp(0.875rem, 1.75vw, 0.9375rem);
    line-height: 1.65;
}

.lifehacks-cta {
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
}

.lifehacks-cta-text {
    font-size: clamp(0.95rem, 1.9vw, 1.0625rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

/* CTA Section - Optimized */
.cta {
    padding: clamp(5rem, 10vw, 8rem) 0;
}

.cta-content {
    max-width: clamp(600px, 80vw, 800px);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-note {
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    margin-top: clamp(1.25rem, 2.5vw, 1.5rem);
}

/* Footer - Optimized */
.footer {
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer-content {
    gap: clamp(2rem, 4vw, 3rem);
}

.footer-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.footer-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-links ul li a {
    font-size: clamp(0.875rem, 1.75vw, 0.95rem);
    padding: clamp(0.25rem, 0.5vw, 0.5rem) 0;
}

.footer-bottom {
    padding-top: clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.875rem, 1.75vw, 0.95rem);
}

/* Buttons - Optimized */
.btn-primary,
.btn-outline {
    font-size: clamp(0.95rem, 1.9vw, 1rem);
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: clamp(0.5rem, 1vw, 0.75rem);
    min-height: clamp(44px, 8vw, 48px);
}

.btn-large {
    font-size: clamp(1.05rem, 2.1vw, 1.15rem);
    padding: clamp(0.875rem, 1.75vw, 1.125rem) clamp(1.75rem, 3.5vw, 2.25rem);
    min-height: clamp(48px, 9vw, 56px);
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
}

.cta-button,
.cta .btn-primary,
.cta .telegram-btn,
.cta-content .btn-primary,
.cta-content .telegram-btn {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

.cta-button svg,
.cta .btn-primary svg,
.cta .telegram-btn svg,
.cta-content .btn-primary svg,
.cta-content .telegram-btn svg {
    flex-shrink: 0 !important;
    margin-right: 0.5rem !important;
}

/* Section Spacing - Optimized */
section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

section:not(.hero) {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Container Padding - Optimized */
.container {
    padding-left: clamp(1rem, 2vw, 1.5rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
}

/* Mobile Optimizations (480px and below) - Consolidated */
@media (max-width: 480px) {
    /* Ensure all sections are centered */
    section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Center all containers */
    .container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: clamp(1rem, 4vw, 1.5rem) !important;
        padding-right: clamp(1rem, 4vw, 1.5rem) !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center section headers */
    .section-header {
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .section-title {
        text-align: center !important;
        width: 100% !important;
    }
    
    .section-description {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center all grids */
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .lifehacks-grid {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-items: center !important;
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }
    
    /* Center cards */
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .lifehack-card {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .pricing-card.featured {
        padding-top: clamp(2rem, 4vw, 2.5rem);
    }
    
    /* Center FAQ */
    .faq-list {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    .faq-item {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    /* Center CTA */
    .cta-content {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center buttons */
    .hero-buttons,
    .lifehacks-cta,
    .testimonials-load-more,
    .lifehacks-load-more {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .hero {
        padding: clamp(3rem, 6vw, 4rem) 0 clamp(2.5rem, 5vw, 3rem);
        text-align: center !important;
    }
    
    .hero-content {
        text-align: center !important;
        align-items: center !important;
    }
    
    .hero-text {
        text-align: center !important;
        align-items: center !important;
    }
    
    /* Center footer */
    .footer {
        text-align: center !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}

/* Tablet Optimizations (768px - 1024px) - Consolidated */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Ensure all sections are centered */
    section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .container {
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .section-header {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        text-align: center !important;
    }
    
    .section-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    /* Center grids */
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .lifehacks-grid {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-items: center !important;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    /* Center cards */
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .lifehack-card {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center CTA and buttons */
    .cta-content,
    .hero-buttons,
    .lifehacks-cta {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Desktop Optimizations (1024px and above) - Consolidated */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
    }
    
    /* Ensure grids are 3 columns on desktop */
    .testimonials-grid,
    .lifehacks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
