/* ========================================
   RankImpulse - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    /* Colors from logo */
    --primary: #6C5CE7;
    --primary-light: #8B7AE8;
    --secondary: #00D9FF;
    --accent: #00E676;

    /* Dark backgrounds */
    --bg-dark: #0a0e27;
    --bg-dark-2: #1a1f3a;
    --bg-dark-3: #141833;

    /* Text colors */
    --text-primary: #E8EAED;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #00D9FF 100%);
    --gradient-accent: linear-gradient(135deg, #00E676 0%, #00D9FF 100%);
    --gradient-bg: radial-gradient(ellipse at top, #1a1f3a 0%, #0a0e27 100%);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(108, 92, 231, 0.3);

    /* Glow effects */
    --glow-purple: rgba(108, 92, 231, 0.15);
    --glow-cyan: rgba(0, 217, 255, 0.1);
    --glow-green: rgba(0, 230, 118, 0.08);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-secondary);
}

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

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    color: var(--accent);
}

/* ========================================
   Background Effects & Decorations
   ======================================== */

/* Base section with effects */
.section-bg {
    position: relative;
    overflow: hidden;
}

/* Grid pattern overlay */
.bg-grid {
    position: relative;
}

.bg-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Glow orbs */
.bg-glow {
    position: relative;
}

.bg-glow::before,
.bg-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow::before {
    width: 600px;
    height: 600px;
    background: var(--glow-purple);
    top: -200px;
    right: -200px;
}

.bg-glow::after {
    width: 500px;
    height: 500px;
    background: var(--glow-cyan);
    bottom: -150px;
    left: -150px;
}

/* Alternate glow position */
.bg-glow-alt::before {
    top: auto;
    bottom: -200px;
    right: auto;
    left: -200px;
    background: var(--glow-cyan);
}

.bg-glow-alt::after {
    bottom: auto;
    top: -150px;
    left: auto;
    right: -150px;
    background: var(--glow-purple);
}

/* Gradient mesh background */
.bg-mesh {
    position: relative;
}

.bg-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, var(--glow-purple), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, var(--glow-cyan), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Noise texture overlay */
.bg-noise::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

/* Ensure content stays above effects */
.section-bg > .container,
.bg-grid > .container,
.bg-glow > .container,
.bg-mesh > .container {
    position: relative;
    z-index: 2;
}

/* Diagonal gradient accent line */
.bg-accent-line {
    position: relative;
}

.bg-accent-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
}

.btn-ghost:hover {
    color: var(--secondary);
}

.btn-block {
    width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(10, 14, 39, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-trigger::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    padding: 12px 0;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-light);
}

.dropdown-divider {
    height: 1px;
    margin: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
}

.badge-soon {
    font-size: 10px;
    padding: 2px 6px;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    border-radius: 4px;
    font-weight: 600;
}

.coming-soon {
    opacity: 0.6;
}

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

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 120px;
    padding: 8px 0;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    list-style: none;
}

.lang-selector:hover .lang-dropdown,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown button {
    display: block;
    width: 100%;
    padding: 8px 16px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-dropdown button:hover,
.lang-dropdown button.active {
    background: rgba(108, 92, 231, 0.1);
    color: var(--text-primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    order: 3;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Mobile language selector - hidden on desktop */
.nav-lang-mobile,
.nav-buttons-mobile {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(108, 92, 231, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

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

/* Hero Visual - Dashboard Mock */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-dashboard {
    width: 100%;
    max-width: 480px;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-dots span:first-child { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #febc2e; }
.dashboard-dots span:last-child { background: #28c840; }

.dashboard-title {
    font-size: 13px;
    color: var(--text-muted);
}

.dashboard-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.stat-icon-clicks {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

.stat-icon-ctr {
    background: rgba(0, 217, 255, 0.2);
    color: var(--secondary);
}

.stat-icon-rank {
    background: rgba(0, 230, 118, 0.2);
    color: var(--accent);
}

.stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.stat-trend {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.stat-trend-up {
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent);
}

.dashboard-chart {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: 4px 4px 0 0;
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.chart-bar.active {
    opacity: 1;
    background: var(--gradient-accent);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    padding: 60px 0;
    background: var(--bg-dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}

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

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--secondary);
}

.stat-text {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.stats-trust {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.trust-brands {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ========================================
   Section Common Styles
   ======================================== */
section {
    padding: var(--section-padding) 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
}

/* ========================================
   What We Do Section
   ======================================== */
.what-we-do {
    background: var(--bg-dark);
}

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

.what-card {
    padding: 32px;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.what-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.what-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: white;
}

.what-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.what-card p {
    font-size: 15px;
    line-height: 1.6;
}

.what-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-md);
}

.note-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.what-note p {
    font-size: 15px;
    color: var(--text-secondary);
}

.what-note strong {
    color: var(--accent);
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    background: var(--bg-dark-2);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.step-content h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
}

.step-visual {
    width: 280px;
    flex-shrink: 0;
}

.step-mock {
    padding: 20px;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.mock-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.mock-input:last-child {
    margin-bottom: 0;
}

.mock-label {
    font-size: 12px;
    color: var(--text-muted);
}

.mock-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.mock-slider {
    margin-bottom: 16px;
}

.mock-slider .mock-label {
    margin-bottom: 8px;
    display: block;
}

.mock-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.mock-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.mock-slider .mock-value {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mock-devices {
    display: flex;
    gap: 8px;
}

.device {
    flex: 1;
    padding: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
}

.device.active {
    border-color: var(--primary);
    color: var(--text-primary);
}

.mock-stats {
    display: flex;
    gap: 24px;
}

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

.mock-stat-value {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.mock-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: var(--bg-dark);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary-light);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--text-primary);
}

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

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
    background: var(--bg-dark-2);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.comparison-card.highlight {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.comparison-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-logo {
    height: 36px;
}

.comparison-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.comparison-list li.check::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300E676'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

.comparison-list li.cross::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff5f57'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
}

.comparison-list li.partial::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23febc2e'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.highlight .comparison-list li {
    color: var(--text-primary);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    background: var(--bg-dark);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    padding: 4px;
    background: var(--bg-dark-2);
    border-radius: var(--radius-xl);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tab {
    padding: 12px 32px;
    background: none;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pricing-tab:hover {
    color: var(--text-primary);
}

.pricing-tab.active {
    background: var(--gradient-primary);
    color: white;
}

.pricing-content {
    position: relative;
}

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

.pricing-grid.active {
    display: grid;
}

/* Agency grid with smaller prices */
.agency-grid .pricing-card {
    padding: 28px 20px;
}

.agency-price .price-amount {
    font-size: 32px;
}

.pricing-card {
    position: relative;
    padding: 32px;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular-no-glow {
    border-color: var(--secondary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
    color: var(--bg-dark);
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--secondary) 0%, #00b8d4 100%);
}

.pricing-name {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 10px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features strong {
    color: var(--text-primary);
}

.pricing-features small {
    color: var(--text-muted);
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: 120px 0;
    background: var(--gradient-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.2) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-actions {
    margin-bottom: 20px;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-dark-2);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-lang {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-lang button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.footer-lang button:hover {
    color: var(--text-primary);
}

.footer-lang span {
    color: var(--text-muted);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .hero-visual {
        display: none;
    }

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

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

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

    .step {
        grid-template-columns: auto 1fr;
    }

    .step-visual {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile menu */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 24px;
        background: #0a0a12;
        border-bottom: 1px solid rgba(108, 92, 231, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        gap: 0;
    }

    .nav-menu.active > li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active > li:last-child {
        border-bottom: none;
    }

    .nav-menu.active > li > a {
        display: block;
        padding: 8px 0;
    }

    .nav-menu.active .nav-dropdown {
        width: 100%;
    }

    .nav-menu.active .nav-dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
    }

    .nav-menu.active .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 20px;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* Mobile language selector */
    .nav-lang-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-lang-mobile a {
        font-size: 14px;
        color: var(--text-secondary);
    }

    .nav-lang-mobile a.active {
        color: var(--primary-light);
    }

    .nav-lang-mobile .lang-separator {
        color: var(--text-muted);
        font-size: 12px;
    }

    /* Mobile buttons */
    .nav-buttons-mobile {
        display: flex;
        gap: 12px;
        padding-top: 20px;
        margin-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-buttons-mobile .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .what-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-content {
        margin: 0 -20px;
        padding: 26px 20px 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-content::-webkit-scrollbar {
        display: none;
    }

    .pricing-grid {
        display: none;
        flex-wrap: nowrap;
        gap: 16px;
        min-width: max-content;
        padding-bottom: 20px;
    }

    .pricing-grid.active {
        display: flex;
    }

    .pricing-grid .pricing-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
    }

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

    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .step-number {
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .pricing-toggle {
        flex-direction: column;
        width: 100%;
    }

    .pricing-tab {
        width: 100%;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Counter animation handled by JS */
[data-counter] {
    transition: all 0.3s ease;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: var(--bg-dark);
}

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

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

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

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

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Language dropdown link styles */
.lang-dropdown a {
    display: block;
    width: 100%;
    padding: 8px 16px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(108, 92, 231, 0.1);
    color: var(--text-primary);
}

/* Footer language links */
.footer-lang a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-lang a:hover,
.footer-lang a.active {
    color: var(--text-primary);
}

/* ========================================
   Service Pages
   ======================================== */

/* Service Hero */
.service-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.service-badge svg {
    width: 24px;
    height: 24px;
}

.service-badge span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.service-subtitle {
    font-size: 20px;
    color: var(--primary-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.service-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Service Why Section */
.service-why {
    background: var(--bg-dark-2);
}

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

.why-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.why-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
}

.why-stat {
    margin-bottom: 20px;
}

.why-number {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Service How Section */
.service-how {
    background: var(--bg-dark);
}

.how-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.3;
}

.how-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.how-step-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark-2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
}

.how-step-content h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.how-step-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* Service Features */
.service-features {
    background: var(--bg-dark-2);
}

.service-features .features-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .service-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-features .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Coming Soon Page */
.coming-soon-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.coming-soon-page .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: 50%;
}

.coming-soon-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-light);
}

.coming-soon-content h1 {
    margin-bottom: 16px;
}

.coming-soon-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

/* Responsive Service Pages */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 140px 0 60px;
    }

    .how-steps::before {
        left: 24px;
    }

    .how-step {
        gap: 20px;
    }

    .how-step-icon {
        width: 48px;
        height: 48px;
    }

    .how-step-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn {
        width: 100%;
    }
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */

.case-studies-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.case-studies-header {
    max-width: 700px;
    margin: 0 auto;
}

.case-studies-header .section-tag {
    margin-bottom: 16px;
}

.case-studies-header .section-title {
    margin-bottom: 20px;
}

.case-studies-header .section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-studies-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-study-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
}

.case-study-header {
    display: flex;
    gap: 20px;
    padding: 28px 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-badge {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    color: var(--primary-light);
}

.case-study-badge.legal {
    background: rgba(0, 217, 255, 0.15);
    color: var(--secondary);
}

.case-study-badge.beauty {
    background: rgba(234, 67, 53, 0.15);
    color: #EA4335;
}

.case-study-badge.saas {
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent);
}

.case-study-badge.ecommerce {
    background: rgba(255, 152, 0, 0.15);
    color: #FF9800;
}

.case-study-badge.medical {
    background: rgba(33, 150, 243, 0.15);
    color: #2196F3;
}

.case-study-badge.realestate {
    background: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
}

.case-study-badge.software {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.case-study-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.case-study-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.case-study-industry {
    font-size: 14px;
    color: var(--text-secondary);
}

.case-study-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.case-study-country svg {
    opacity: 0.6;
}

.case-study-content {
    padding: 24px 28px;
}

.case-study-section {
    margin-bottom: 20px;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-section h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.case-study-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.case-study-results {
    padding: 24px 28px;
    background: rgba(108, 92, 231, 0.05);
    border-top: 1px solid rgba(108, 92, 231, 0.15);
}

.case-study-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.case-study-results-header span:first-child {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.case-study-timeframe {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.case-study-results-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-study-results-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.case-study-results-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Responsive Case Studies */
@media (max-width: 1024px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .case-studies-hero {
        padding: 140px 0 60px;
    }

    .case-study-header {
        flex-direction: column;
        gap: 16px;
    }

    .case-study-badge {
        width: 48px;
        height: 48px;
    }

    .case-study-content,
    .case-study-results {
        padding: 20px;
    }

    .case-study-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================
   CUSTOM SERVICES PAGE
   ============================================ */

.custom-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.custom-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.custom-hero-content .section-tag {
    margin-bottom: 16px;
}

.custom-hero-content .section-title {
    margin-bottom: 24px;
}

.custom-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.custom-services-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
}

.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.custom-service-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
}

.custom-service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 217, 255, 0.1));
    border-radius: 16px;
    margin-bottom: 28px;
    color: var(--primary-light);
}

.custom-service-icon.seo {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 230, 118, 0.1));
    color: var(--secondary);
}

.custom-service-icon.ads {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 87, 34, 0.1));
    color: #FF9800;
}

.custom-service-icon.consulting {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(103, 58, 183, 0.1));
    color: #9C27B0;
}

.custom-service-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.custom-service-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.custom-service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.custom-service-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

.custom-contact-section {
    padding: 80px 0;
}

.custom-contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 217, 255, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
}

.custom-contact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 50%;
    color: var(--primary-light);
}

.custom-contact-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.custom-contact-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Responsive Custom Services */
@media (max-width: 1024px) {
    .custom-services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .custom-hero {
        padding: 140px 0 60px;
    }

    .custom-service-card {
        padding: 28px;
    }

    .custom-service-icon {
        width: 64px;
        height: 64px;
    }

    .custom-service-icon svg {
        width: 32px;
        height: 32px;
    }

    .custom-contact-card {
        padding: 40px 24px;
    }

    .custom-contact-icon {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-content .section-tag {
    margin-bottom: 16px;
}

.contact-hero-content .section-title {
    margin-bottom: 24px;
}

.contact-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(108, 92, 231, 0.05);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.15);
    border-radius: 50%;
    color: var(--accent);
}

.form-success h3 {
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.6;
}

.form-error {
    background: rgba(234, 67, 53, 0.1);
    border: 1px solid rgba(234, 67, 53, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.form-error p {
    color: #EA4335;
    font-size: 14px;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 217, 255, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 50%;
    color: var(--primary-light);
}

.contact-info-card h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-info-card a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-light);
}

.contact-response-time {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.contact-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-feature span {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 60px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .contact-info-card {
        padding: 24px;
    }
}

/* ============================================
   AFFILIATES PAGE
   ============================================ */

.affiliates-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
}

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

.affiliates-intro {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.affiliates-hero-cta {
    display: flex;
    justify-content: center;
}

/* Commission Section */
.affiliates-commission {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.commission-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commission-card.level-1 {
    border-color: rgba(108, 92, 231, 0.4);
}

.commission-card.level-2 {
    border-color: rgba(0, 217, 255, 0.4);
}

.commission-level {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.commission-card.level-1 .commission-level {
    color: var(--primary-light);
}

.commission-card.level-2 .commission-level {
    color: var(--secondary);
}

.commission-rate {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.rate-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.commission-card.level-1 .rate-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commission-card.level-2 .rate-number {
    background: linear-gradient(135deg, var(--secondary) 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rate-symbol {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-left: 4px;
}

.commission-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.commission-example {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
}

.example-label {
    color: var(--text-muted);
    margin-right: 8px;
}

.example-value {
    color: var(--text-primary);
}

/* Recurring Notice */
.recurring-notice {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 60px auto 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 217, 255, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 16px;
}

.recurring-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.15);
    border-radius: 16px;
    color: var(--accent);
}

.recurring-text h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.recurring-text p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* How It Works - Affiliates */
.affiliates-how {
    padding: 100px 0;
}

.affiliates-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.affiliate-step {
    text-align: center;
    padding: 32px 24px;
}

.affiliate-step .step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.affiliate-step .step-content h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.affiliate-step .step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Program Details */
.affiliates-details {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

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

.detail-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.detail-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    color: var(--primary-light);
}

.detail-card h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.detail-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.detail-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Dashboard Preview */
.affiliates-dashboard {
    padding: 100px 0;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dashboard-text .section-tag {
    margin-bottom: 16px;
}

.dashboard-text .section-title {
    margin-bottom: 20px;
}

.dashboard-text > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.dashboard-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.dashboard-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Dashboard Mock */
.dashboard-mock {
    background: var(--bg-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-dots {
    display: flex;
    gap: 8px;
}

.mock-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mock-dots span:first-child {
    background: #ff5f56;
}

.mock-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mock-dots span:last-child {
    background: #27ca40;
}

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

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

.mock-stat {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.mock-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mock-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 24px;
    height: 150px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 6px 6px 0 0;
    min-height: 20px;
}

/* Affiliates CTA */
.affiliates-cta {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

.affiliates-cta .cta-box {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 217, 255, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 24px;
}

.affiliates-cta .cta-box h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.affiliates-cta .cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Affiliates */
@media (max-width: 1024px) {
    .affiliates-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dashboard-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .affiliates-hero {
        padding: 140px 0 60px;
    }

    .affiliates-intro {
        font-size: 17px;
    }

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

    .rate-number {
        font-size: 56px;
    }

    .recurring-notice {
        flex-direction: column;
        text-align: center;
    }

    .affiliates-steps {
        grid-template-columns: 1fr;
    }

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

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

    .affiliates-cta .cta-box {
        padding: 48px 28px;
    }

    .affiliates-cta .cta-box h2 {
        font-size: 28px;
    }
}

/* ========================================
   Legal Pages (Privacy & Terms)
   ======================================== */

.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark-2);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}

.legal-content ul li {
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.legal-content ul li strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }

    .legal-content {
        padding: 32px 24px;
        border-radius: var(--radius-md);
    }

    .legal-content h2 {
        font-size: 1.1rem;
    }
}

/* ========================================
   WEBSAFE - How It Works Section
   ======================================== */

.how-it-works {
    padding: var(--section-padding) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

    .step-card {
        padding: 30px 24px;
    }
}

/* ========================================
   WEBSAFE - Why SEO Section (Stats)
   ======================================== */

.why-seo {
    padding: var(--section-padding) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.stat-item .stat-value {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-item .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-item .stat-value {
        font-size: 2.5rem;
    }
}

/* ========================================
   WEBSAFE - Language Switcher
   ======================================== */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 16px;
}

.lang-option {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.lang-option:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
    color: var(--secondary);
    background: rgba(0, 217, 255, 0.1);
}

.lang-divider {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.nav-lang-mobile {
    display: none;
}

@media (max-width: 992px) {
    .nav-lang-mobile {
        display: block;
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 16px;
    }

    .nav-lang-mobile .lang-switch {
        justify-content: center;
        margin-right: 0;
    }

    .nav-actions .lang-switch {
        display: none;
    }
}
