/* ================================================
   Corenex - Modern Gradient Theme
   ================================================ */

:root {
    --primary: #FF6B00;
    --primary-dark: #CC5500;
    --primary-light: #E65100;
    --primary-glow: rgba(255, 107, 0, 0.3);

    --secondary: #8B5CF6;
    --secondary-dark: #7C3AED;
    --secondary-light: #A78BFA;

    --accent: #00D4AA;
    --accent-dark: #00B894;
    --accent-light: #00E5CC;

    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #E65100 100%);
    --gradient-btn: linear-gradient(135deg, #FF6B00 0%, #CC5500 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 107, 0, 0.1) 0%, rgba(230, 81, 0, 0.1) 100%);

    --white: #FFFFFF;
    --off-white: #FFF8F4;
    --light-gray: #F5F5F5;
    --gray-100: #F0F0F0;
    --gray-200: #E0E0E0;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #222222;
    --dark: #1A1A1A;
    --darker: #0D0D0D;

    --text: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border: #E0E0E0;
    --card-bg: #FFFFFF;

    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
}

[data-theme="dark"] {
    --white: #1A1A1A;
    --off-white: #1E1E1E;
    --light-gray: #252525;
    --gray-100: #2A2A2A;
    --gray-200: #333333;
    --gray-300: #444444;
    --gray-400: #888888;
    --gray-500: #AAAAAA;
    --gray-600: #CCCCCC;
    --gray-700: #E0E0E0;
    --gray-800: #F5F5F5;
    --dark: #0D0D0D;
    --darker: #080808;
    --bg-card: #1E1E1E;

    --text: #F5F5F5;
    --text-secondary: #AAAAAA;
    --text-muted: #888888;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);

    --input-bg: #252525;
    --input-text: #F5F5F5;
    --input-border: #444444;

    --border: #333333;
    --card-bg: #1E1E1E;
    --success: #10B981;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

[data-theme="dark"] body {
    background: var(--dark);
    color: var(--text);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text);
}

[data-theme="dark"] p {
    color: var(--text-secondary);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--gray-800);
}

[data-theme="dark"] p {
    color: var(--gray-500);
}

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

a:hover {
    color: var(--primary-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    background: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
}

.header-btn {
    background: var(--gradient-btn);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: shimmerMove 3s ease-in-out infinite;
}

.btn-white:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
    color: var(--primary);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* ================================================
   NAVIGATION
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    padding: 12px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span,
.logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 1000;
    animation: fadeInUp 0.3s ease;
}

.nav-dropdown-content a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    color: var(--gray-600) !important;
    font-size: 14px !important;
    border-bottom: none !important;
}

.nav-dropdown-content a:hover {
    background: var(--light-gray) !important;
    color: var(--primary) !important;
}

.nav-dropdown-content a i {
    width: 20px;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

[data-theme="dark"] .nav-dropdown-content {
    background: var(--gray-800);
}

[data-theme="dark"] .nav-dropdown-content a {
    color: var(--gray-200) !important;
}

.theme-toggle {
    background: var(--light-gray);
    border: none;
    border-radius: var(--radius-full);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-auth-buttons {
    display: none;
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.mobile-auth-buttons .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
}

.mobile-auth-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.mobile-auth-buttons .btn-primary {
    background: #ffffff;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.mobile-auth-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    animation: shimmerMove 3s ease-in-out infinite;
}

.mobile-auth-buttons .btn:last-child {
    margin-bottom: 0;
}

[data-theme="dark"] .theme-toggle {
    background: var(--gray-200);
    color: var(--gray-800);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gray-800);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    perspective: 1000px;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0F172A 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.08;
    transform: rotate(-15deg);
    animation: heroFloat 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
    transform: rotate(15deg);
    animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: rotate(-15deg) translateY(0);
    }

    50% {
        transform: rotate(-15deg) translateY(-30px);
    }
}

[data-theme="dark"] .hero::before {
    opacity: 0.08;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-btn);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--gray-500);
    /* max-width: 550px; */
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

[data-theme="dark"] .hero p {
    color: var(--gray-400);
}

.hero-actions {
    display: flex;
    justify-content: center !important;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stat {
    text-align: left;
}

.hero-stat .value {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat .label {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ================================================
   FEATURES SECTION
   ================================================ */

.features {
    padding: 100px 0;
    background: var(--white);
}

[data-theme="dark"] .features {
    background: #0D0D0D;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.features-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #222222;
}

[data-theme="dark"] .features-header h2 {
    color: #FFFFFF;
}

.features-header p {
    color: var(--gray-500);
    font-size: 17px;
}

[data-theme="dark"] .features-header p {
    color: #AAAAAA;
}

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

.features-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .feature-card {
    background: #1A1A1A;
    border-color: #333333;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
    left: 100%;
    transition: left 0.6s ease;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-btn);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222222;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

[data-theme="dark"] .feature-card h3 {
    color: #FFFFFF;
}

[data-theme="dark"] .feature-card p {
    color: #CCCCCC;
}

/* ================================================
   BLOG SECTION
   ================================================ */

.blog-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

[data-theme="dark"] .blog-preview {
    background: var(--gray-100);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

[data-theme="dark"] .blog-card {
    background: var(--bg-card);
    border-color: var(--border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--gray-800);
}

[data-theme="dark"] .blog-content h3 {
    color: var(--gray-800);
}

.blog-content p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

[data-theme="dark"] .blog-content p {
    color: var(--gray-400);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    gap: 12px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

.testimonials {
    padding: 100px 0;
    background: var(--white);
}

[data-theme="dark"] .testimonials {
    background: #0D0D0D;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.testimonials-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #222222;
}

[data-theme="dark"] .testimonials-header h2 {
    color: #FFFFFF;
}

.testimonials-header p {
    color: var(--gray-500);
    font-size: 17px;
}

[data-theme="dark"] .testimonials-header p {
    color: #AAAAAA;
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

[data-theme="dark"] .testimonial-card {
    background: #1A1A1A;
    border-color: #333333;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-card .quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

[data-theme="dark"] .testimonial-card .quote {
    color: #CCCCCC;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
    color: #222222;
}

[data-theme="dark"] .testimonial-info h4 {
    color: #FFFFFF;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--gray-400);
}

[data-theme="dark"] .testimonial-info p {
    color: #999999;
}

/* ================================================
   PRICING SECTION
   ================================================ */

.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--white);
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .pricing-card {
    background: var(--bg-card);
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price .period {
    font-size: 16px;
    color: var(--gray-500);
}

[data-theme="dark"] .pricing-price .period {
    color: var(--gray-400);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-600);
}

[data-theme="dark"] .pricing-features li {
    border-bottom-color: var(--border);
    color: var(--gray-400);
}

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

.pricing-features li .check {
    color: var(--success);
    font-weight: 700;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .cta {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.cta p {
    color: #BBBBBB;
    font-size: 18px;
    margin-bottom: 32px;
}

[data-theme="dark"] .cta p {
    color: #AAAAAA;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--darker);
    padding: 60px 0 30px;
}

[data-theme="dark"] .footer {
    background: #050505;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.7;
}

[data-theme="dark"] .footer-brand p {
    color: var(--gray-400);
}

.footer-links h4 {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 14px;
}

[data-theme="dark"] .footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-600);
    font-size: 13px;
}

[data-theme="dark"] .footer-bottom {
    border-top-color: var(--border);
    color: var(--gray-500);
}

/* ================================================
   STOCK TICKER
   ================================================ */

.stock-prices {
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
    position: relative;
}

[data-theme="dark"] .stock-prices {
    background: var(--dark);
    border-bottom-color: var(--border);
}

.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.stock-header h3 {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.stock-index {
    display: flex;
    gap: 24px;
}

.index-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

[data-theme="dark"] .index-item {
    background: var(--gray-100);
    border-color: rgba(255, 107, 0, 0.3);
}

.index-label {
    font-size: 13px;
    color: var(--gray-400);
}

.index-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
}

.index-change {
    font-size: 13px;
}

.stock-ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.stock-ticker {
    display: flex;
    gap: 24px;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.stock-ticker:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.stock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    min-width: 180px;
    transition: var(--transition);
}

[data-theme="dark"] .stock-item {
    background: var(--gray-100);
    border-color: var(--border);
}

.stock-item:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    background: var(--white);
}

.stock-symbol {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-800);
}

.stock-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-700);
}

.stock-change {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stock-change.up {
    color: var(--success);
}

.stock-change.down {
    color: var(--error);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* ================================================
   CAROUSEL
   ================================================ */

.carousel-section {
    padding: 80px 0;
    background: var(--light-gray);
}

[data-theme="dark"] .carousel-section {
    background: var(--gray-100);
}

.carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.carousel-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--white);
}

.carousel-content p {
    font-size: 14px;
    opacity: 0.8;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary);
    color: var(--white);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    text-align: center;
    padding: 20px;
}

.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: var(--transition);
}

[data-theme="dark"] .carousel-dots .dot {
    background: var(--gray-400);
}

.carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ================================================
   IMAGE SECTION
   ================================================ */

.image-section {
    padding: 80px 0;
    background: var(--white);
}

.image-bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.image-bg-section .container {
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .image-section {
    background: var(--dark);
}

[data-theme="dark"] .image-bg-section::before {
    background: rgba(0, 0, 0, 0.75);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.image-card:hover .image-card-overlay {
    opacity: 1;
}

.image-card-overlay h4 {
    color: var(--white);
    font-size: 14px;
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@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 pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmerMove {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

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

@keyframes shineSweep {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

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

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: shineSweep 3s ease-in-out infinite;
}

.shine-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #f5f5f5 25%, #ffffff 50%, #f5f5f5 75%, #ffffff 100%);
    background-size: 200% 100%;
    animation: shimmerPulse 2s linear infinite;
}

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

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

/* ================================================
   ALERTS
   ================================================ */

.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--info);
    color: var(--info);
}

/* ================================================
   FORMS
   ================================================ */

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

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

[data-theme="dark"] .form-group label {
    color: var(--gray-500);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: var(--gray-100);
    border-color: var(--border);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--gray-400);
}

/* ================================================
   RESPONSIVE
   ================================================ */

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

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

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

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 17px;
    }

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

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

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

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

    .image-bg-section {
        background-attachment: scroll;
    }
}

@media (max-width: 834px) and (orientation: portrait) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .features-grid,
    .testimonials-grid,
    .blog-grid,
    .features-grid-four {
        grid-template-columns: 1fr;
    }

    .features-header h2,
    .testimonials-header h2,
    .pricing-header h2,
    .cta h2 {
        font-size: 32px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

.desktop-auth-buttons {
    display: none;
}

@media (min-width: 992px) {
    .desktop-auth-buttons {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .desktop-auth-buttons {
        display: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-auth-buttons {
        display: block;
    }

    .nav-dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        min-width: auto;
        padding: 0 16px;
    }

    .nav-dropdown-content a {
        padding: 10px 0 !important;
    }

    .nav-dropdown:hover .nav-dropdown-content {
        display: none;
    }

    .nav-dropdown .nav-dropdown-content {
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-content {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat {
        flex: 1;
        min-width: 100px;
    }

    .hero-stat .value {
        font-size: 32px;
    }

    .features-grid,
    .testimonials-grid,
    .blog-grid,
    .features-grid-three,
    .features-grid-four {
        grid-template-columns: 1fr;
    }

    .features-grid-three,
    .features-grid-four {
        gap: 16px;
    }

    .features-grid-three .feature-card {
        padding: 20px;
    }

    .features-grid-three .feature-card h3 {
        font-size: 18px;
    }

    .features-grid-three .feature-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .features-grid-three .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px !important;
    }

    .benefits-section {
        padding: 40px 0;
    }

    .benefits-section .container {
        padding: 0 16px;
    }

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

    .benefit-item {
        padding: 24px 16px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .benefit-icon::before {
        width: 60px;
        height: 60px;
    }

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

    .hero-stat {
        width: 100%;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .stat-card {
        padding: 20px;
    }

    .card {
        padding: 24px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar,
    .testimonial-author img {
        margin: 0 auto 12px;
    }

    .hero-content .hero-static,
    .testimonial-author .hero-cursor {
        display: inline;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

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

    .hero-stat {
        width: 100%;
    }

    .testimonials-slider {
        padding: 0 40px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

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

    .benefit-item {
        padding: 24px 20px;
    }

    .pricing-card {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta .btn {
        width: 100%;
        text-align: center;
    }

    .features-header,
    .testimonials-header,
    .pricing-header {
        text-align: center;
    }

    .pricing-features li {
        padding: 12px 0;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-price .amount {
        font-size: 36px;
    }

    .offer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .offer-card {
        padding: 20px;
    }

    .offer-icon {
        width: 44px;
        height: 44px;
    }

    .offer-icon i {
        font-size: 20px;
    }

    .offer-info h3 {
        font-size: 16px;
    }

    .offer-list li {
        font-size: 13px;
        padding: 8px 0;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .stat-card {
        padding: 20px;
    }

    .card {
        padding: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-features {
        padding: 0;
    }

    .pricing-features li {
        padding: 12px 0;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar,
    .testimonial-author img {
        margin: 0 auto 12px;
    }

    .hero-content .hero-static,
    .hero-content .hero-cursor {
        display: inline;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

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

    .hero-stat {
        width: 100%;
    }

    .testimonials-slider {
        padding: 0 40px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

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

    .benefit-item {
        padding: 24px 20px;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-price .amount {
        font-size: 42px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta .btn {
        width: 100%;
        text-align: center;
    }

    .features-header,
    .testimonials-header,
    .pricing-header {
        text-align: center;
    }

    .features-header p,
    .testimonials-header p,
    .pricing-header p {
        font-size: 15px;
    }

    .blog-card {
        margin-bottom: 20px;
    }

    .blog-grid {
        gap: 24px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .features {
        padding: 60px 0;
    }

    .features-header h2,
    .testimonials-header h2,
    .pricing-header h2,
    .cta h2 {
        font-size: 28px;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    .carousel-slide img {
        height: 250px;
    }

    .carousel-content {
        padding: 20px;
    }

    .carousel-content h3 {
        font-size: 18px;
    }

    .pricing-price .amount {
        font-size: 48px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .stock-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stock-ticker-wrapper {
        width: 100%;
    }

    .stock-ticker {
        animation: ticker 20s linear infinite;
    }

    .index-item {
        padding: 6px 12px;
    }

    .index-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-badge {
        padding: 8px 14px;
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat .value {
        font-size: 28px;
    }

    .hero-stat .label {
        font-size: 12px;
    }

    .features,
    .testimonials,
    .blog-preview {
        padding: 40px 0;
    }

    .features-header h2,
    .testimonials-header h2,
    .pricing-header h2,
    .cta h2 {
        font-size: 24px;
    }

    .features-header p,
    .testimonials-header p,
    .pricing-header p,
    .cta p {
        font-size: 14px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13px;
    }

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

    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 16px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

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

    .testimonial-card {
        padding: 20px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .pricing-price .amount {
        font-size: 40px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    .cta .btn {
        width: 100%;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer-links h4 {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 13px;
    }

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

    .offer-card {
        padding: 16px;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 16px;
    }

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

    .stat-label {
        font-size: 12px;
    }

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

    .benefit-item {
        padding: 20px 16px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 28px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 13px;
    }

    .carousel-slide img {
        height: 180px;
    }

    .carousel-content {
        padding: 12px;
    }

    .carousel-content h3 {
        font-size: 14px;
    }

    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
    }

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

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 15px;
    }

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

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .waitlist-card {
        padding: 24px 16px;
    }

    .waitlist-card h2 {
        font-size: 24px;
    }

    .waitlist-stats {
        grid-template-columns: 1fr;
    }

    .telegram-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .btn-telegram {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 13px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-value {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .features-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }

    .feature-card:hover,
    .benefit-item:hover,
    .testimonial-card:hover {
        transform: none;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 0;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
    }

    .offer-card:active,
    .stat-card:active,
    .feature-card:active,
    .benefit-item:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
}

@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .hero {
            min-height: -webkit-fill-available;
        }

        .parallax {
            background-attachment: scroll;
        }
    }
}

/* ================================================
   COMPREHENSIVE DARK MODE SUPPORT
   ================================================ */

[data-theme="dark"] .logo {
    color: var(--gray-800);
}

[data-theme="dark"] .nav-links a {
    color: var(--gray-500);
}

[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
    color: var(--primary);
}

[data-theme="dark"] .mobile-menu-btn {
    color: var(--gray-800);
}

[data-theme="dark"] .btn-white {
    background: var(--bg-card);
    color: var(--primary);
    border-color: var(--border);
}

[data-theme="dark"] .btn-white:hover {
    background: var(--primary);
    color: var(--white);
}

[data-theme="dark"] .hero-badge {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
}

[data-theme="dark"] .btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

[data-theme="dark"] .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
}

[data-theme="dark"] .btn-primary {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid var(--primary);
}

[data-theme="dark"] .btn-primary:hover {
    background: #ffffff;
    color: var(--primary);
}

[data-theme="dark"] input[type="checkbox"] {
    accent-color: var(--primary);
}

[data-theme="dark"] select option {
    background: var(--bg-card);
    color: var(--gray-800);
}

[data-theme="dark"] hr {
    border-color: var(--border);
}

[data-theme="dark"] h4 {
    color: var(--gray-800);
}

[data-theme="dark"] .alert {
    background: var(--bg-card);
}

[data-theme="dark"] .pricing-features li {
    color: var(--gray-500);
}

[data-theme="dark"] .alert-success,
[data-theme="dark"] .alert-error,
[data-theme="dark"] .alert-warning,
[data-theme="dark"] .alert-info {
    background-color: var(--bg-card);
}

[data-theme="dark"] .index-label {
    color: var(--gray-500);
}

/* Ensure text is visible in dark mode */
[data-theme="dark"] .hero p,
[data-theme="dark"] .hero-content p,
[data-theme="dark"] .features-header p,
[data-theme="dark"] .testimonials-header p,
[data-theme="dark"] .pricing-header p,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .testimonial-card p,
[data-theme="dark"] .quote,
[data-theme="dark"] .pricing-features li,
[data-theme="dark"] .offer-list li,
[data-theme="dark"] .stat-label,
[data-theme="dark"] .blog-content p,
[data-theme="dark"] .testimonial-info p,
[data-theme="dark"] .offer-info p,
[data-theme="dark"] .waitlist-content p,
[data-theme="dark"] .cta p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .logo,
[data-theme="dark"] .logo span {
    color: var(--text);
}

[data-theme="dark"] .form-group label {
    color: var(--text-secondary);
}

[data-theme="dark"] .alert {
    color: var(--text);
}

/* ================================================
   FAQ PAGE STYLES
   ================================================ */

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #FF6B00 0%, #E65100 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF6B00;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 50%;
    color: #FF6B00;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: #FF6B00;
}

.faq-item.active .faq-question i {
    background: #FF6B00;
    color: #FFFFFF;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #666666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ================================================
   LEGAL PAGE STYLES
   ================================================ */

.legal-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: #222222;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-date {
    margin-top: 40px !important;
    color: #999999 !important;
    font-size: 14px;
}