/* Spwig Landing Page Styles */

:root {
    /* Brand Colors */
    --growth-blue: #3DA9FC;
    --creative-purple: #9B6DFF;
    --fresh-cyan: #00BCD4;
    --success-green: #4CAF50;
    --warning-orange: #FF9800;
    --error-red: #FF6B6B;
    --light-bg: #FFFFFF;
    --dark-bg: #0D0D0D;
    --neutral-gray: #F8F9FA;
    --dark-surface: #1A1A1A;
    --text-dark: #202124;
    --text-light: #E0E0E0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--growth-blue) 0%, var(--creative-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--fresh-cyan) 0%, var(--growth-blue) 100%);

    /* Shadows - Light Mode */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    --shadow-xl: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Fira Mono', 'Roboto Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Light Mode Variables (default) */
    --bg-primary: var(--light-bg);
    --bg-secondary: var(--neutral-gray);
    --text-primary: var(--text-dark);
    --text-secondary: rgba(32, 33, 36, 0.7);
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --muted-text: #666666;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: var(--dark-bg);
        --bg-secondary: var(--dark-surface);
        --text-primary: #f5f5f5;
        --text-secondary: rgba(245, 245, 245, 0.85);
        --border-color: #333333;
        --card-bg: #1a1a1a;
        --input-bg: #2a2a2a;
        --muted-text: #aaaaaa;

        /* Shadows - Dark Mode */
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.4);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.4), 0 3px 6px rgba(0,0,0,0.5);
        --shadow-lg: 0 10px 20px rgba(0,0,0,0.5), 0 6px 6px rgba(0,0,0,0.6);
        --shadow-xl: 0 14px 28px rgba(0,0,0,0.6), 0 10px 10px rgba(0,0,0,0.7);
    }
}

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

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* RTL Support */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .nav-menu,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

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

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--growth-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--creative-purple);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-secondary);
    border-top-color: var(--growth-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
}

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

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--growth-blue);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.lang-selector {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--bg-secondary);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-selector:hover {
    border-color: var(--growth-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

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

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

.btn-secondary:hover {
    background: var(--growth-blue);
    color: white;
}

/* Badge */
.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-secondary);
    color: white;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    margin-bottom: var(--space-2xl);
}

.hero-tagline {
    color: var(--creative-purple);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    color: var(--text-primary);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-placeholder {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Sections */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--text-secondary);
}

/* Problem/Solution */
.problem-solution {
    background: var(--bg-primary);
}

.problem-list {
    list-style: none;
    max-width: 600px;
    margin: var(--space-xl) auto;
}

.problem-list li {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    background: var(--bg-secondary);
    border-left: 4px solid var(--error-red);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
}

.solution-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.solution-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--success-green);
}

/* Benefits */
.benefits {
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.benefit-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.benefit-title {
    color: var(--growth-blue);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.benefit-description {
    color: var(--text-secondary);
}

/* Screenshots */
.screenshots {
    background: var(--bg-primary);
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.screenshot-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

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

.cta-title {
    color: white;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.cta-benefits {
    list-style: none;
    margin: var(--space-xl) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.cta-benefits li {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    color: var(--text-light);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand img {
    height: 32px;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: rgba(224, 224, 224, 0.7);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-xl);
}

.footer-title {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(224, 224, 224, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    text-align: center;
}

.footer-copyright {
    color: rgba(224, 224, 224, 0.5);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        padding: var(--space-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .footer-sections {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .screenshots-gallery {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(26, 26, 26, 0.98);
    }

    .hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }

    .features {
        background: #1a1a1a;
    }

    .feature-card,
    .benefit-card {
        background: #2a2a2a;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .problem-list li {
        background: #2a2a2a;
        color: rgba(224, 224, 224, 0.9);
    }

    .problem-solution {
        background: #1a1a1a;
    }

    .benefits {
        background: #1a1a1a;
    }

    .screenshots {
        background: #0d0d0d;
    }

    .screenshot-item {
        background: #2a2a2a;
    }

    .lang-selector {
        background: #2a2a2a;
        color: var(--text-light);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .lang-selector:hover {
        border-color: var(--growth-blue);
    }

    .hero-subtitle,
    .hero-description {
        color: #f5f5f5;
    }

    .section-subtitle {
        color: rgba(245, 245, 245, 0.9);
    }

    .feature-description,
    .benefit-description {
        color: rgba(245, 245, 245, 0.9);
    }

    .section-title,
    h1, h2, h3, h4 {
        color: #ffffff;
    }

    .nav-link {
        color: #f5f5f5;
    }

    .solution-text {
        color: #66BB6A;  /* Brighter green for dark mode */
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }

/* ========================================
   COMPARISON PAGE STYLES
   ======================================== */

/* Language Switcher for Comparison Page */
body:has(.comparison-hero) .language-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

body:has(.comparison-hero) #language-selector {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(61, 169, 252, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

body:has(.comparison-hero) #language-selector:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--growth-blue);
    box-shadow: var(--shadow-md);
}

body:has(.comparison-hero) #language-selector option {
    background: white;
    color: var(--text-dark);
}

html[dir="rtl"] body:has(.comparison-hero) .language-switcher {
    right: auto;
    left: 1rem;
}

@media (max-width: 767px) {
    body:has(.comparison-hero) .language-switcher {
        top: 0.5rem;
        right: 0.5rem;
    }

    html[dir="rtl"] body:has(.comparison-hero) .language-switcher {
        right: auto;
        left: 0.5rem;
    }
}

/* Sticky Pricing Badge */
.sticky-pricing-badge {
    position: fixed;
    top: -100px;
    right: var(--space-lg);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: top 0.3s ease;
}

.sticky-pricing-badge.visible {
    top: var(--space-lg);
}

.badge-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.badge-cta {
    background: white;
    color: var(--growth-blue);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.badge-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

/* Comparison Hero */
.comparison-hero {
    min-height: 80vh;
}

.hero-price-emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: var(--space-lg);
}

.hero-price-emphasis strong {
    font-size: 2rem;
    color: var(--success-green);
}

/* Pain Points Section */
.pain-points {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.pain-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--error-red);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.pain-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--error-red), #ff8a80);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.pain-icon i {
    font-size: 2rem;
    color: white;
}

.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.pain-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.pain-cost {
    font-weight: 600;
    color: var(--error-red);
    font-size: 1.125rem;
}

/* Cost Comparison Section */
.cost-comparison {
    background: var(--bg-primary);
    padding: var(--space-3xl) 0;
}

.cost-chart-container {
    background: var(--bg-secondary);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin: var(--space-2xl) 0;
}

.cost-chart-container h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.cost-chart {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.chart-bar-group {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.chart-label {
    width: 140px;
    min-width: 140px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.chart-bars {
    flex: 1;
    display: flex;
}

.chart-bar {
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: var(--space-md);
    transition: width 1.5s ease;
    position: relative;
    min-width: 80px;
}

.shopify-bar {
    background: linear-gradient(135deg, #95bf47, #7da83f);
}

.woo-bar {
    background: linear-gradient(135deg, #96588a, #7e4a75);
}

.spwig-bar {
    background: var(--gradient-primary);
}

.bar-label {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

/* ROI Callout */
.roi-callout {
    background: linear-gradient(135deg, var(--success-green), #66BB6A);
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-md);
}

.roi-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roi-icon i {
    font-size: 2rem;
}

.roi-content h3 {
    margin-bottom: var(--space-sm);
    color: white;
}

.roi-content p {
    margin: 0;
    opacity: 0.95;
}

/* Engagement Widget - Pioneer Waitlist Counter */
.engagement-widget {
    background: linear-gradient(135deg, var(--growth-blue) 0%, var(--creative-purple) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-2xl) auto;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(61, 169, 252, 0.2);
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.engagement-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(61, 169, 252, 0.3);
}

.engagement-widget .widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.engagement-widget .widget-header i {
    font-size: 1.75rem;
    animation: float 3s ease-in-out infinite;
}

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

.engagement-widget .widget-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: white;
}

.engagement-widget .widget-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.engagement-widget .stat-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.engagement-widget .counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.engagement-widget .counter-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: lowercase;
}

.engagement-widget .stat-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 600;
    padding: var(--space-sm) 0;
    opacity: 0.95;
}

.engagement-widget .stat-activity.pulse {
    animation: pulse 1s ease;
}

@keyframes pulse {
    0%, 100% { opacity: 0.95; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.engagement-widget .stat-activity i {
    color: rgba(255, 255, 255, 0.9);
}

.engagement-widget .stat-regions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    padding-top: var(--space-sm);
}

.engagement-widget .stat-regions span {
    transition: opacity 0.3s ease;
}

.engagement-widget .stat-regions i {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .engagement-widget {
        padding: var(--space-lg);
        margin: var(--space-xl) auto;
    }

    .engagement-widget .widget-header h3 {
        font-size: 1.25rem;
    }

    .engagement-widget .counter-number {
        font-size: 2.75rem;
    }

    .engagement-widget .counter-label {
        font-size: 1rem;
    }

    .engagement-widget .stat-activity,
    .engagement-widget .stat-regions {
        font-size: 0.875rem;
    }

    .engagement-widget .stat-regions span {
        text-align: center;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .engagement-widget .counter-number {
        font-size: 2.25rem;
    }

    .engagement-widget .counter-label {
        font-size: 0.875rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .engagement-widget {
        box-shadow: 0 10px 40px rgba(61, 169, 252, 0.15);
    }

    .engagement-widget:hover {
        box-shadow: 0 15px 50px rgba(61, 169, 252, 0.25);
    }
}

/* Comparison Table */
.comparison-table-wrapper {
    margin-top: var(--space-3xl);
}

.comparison-table-wrapper h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.comparison-table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    min-width: 600px;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--bg-secondary);
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.125rem;
}

.comparison-table .feature-name {
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table .feature-name.dark {
    color: var(--text-dark);
}

.comparison-table .platform-col {
    text-align: center;
}

.comparison-table .spwig-col.highlight {
    background: linear-gradient(135deg, rgba(61, 169, 252, 0.1), rgba(155, 109, 255, 0.1));
    font-weight: 600;
    color: var(--growth-blue);
}

.comparison-table .spwig-col.highlight i {
    color: var(--success-green);
    margin-right: var(--space-xs);
}

.comparison-table .plan-note {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
}

.comparison-table .total-row {
    background: var(--bg-secondary);
    color: var(--text-dark);
    font-size: 1.125rem;
}

.table-note {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.table-note i {
    color: var(--growth-blue);
}

/* Features Included Section */
.features-included {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0;
}

.features-emphasis {
    text-align: center;
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.features-emphasis h3 {
    color: var(--growth-blue);
    margin-bottom: var(--space-md);
}

.features-emphasis p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

/* Integrations Section */
.integrations {
    background: var(--bg-primary);
    padding: var(--space-3xl) 0;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.integration-explanation h3 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.integration-explanation p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.integration-benefits {
    list-style: none;
}

.integration-benefits li {
    padding: var(--space-sm) 0;
    color: var(--text-primary);
}

.integration-benefits i {
    color: var(--success-green);
    margin-right: var(--space-sm);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.integration-card {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

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

.integration-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-icon i {
    font-size: 1.75rem;
    color: white;
}

.integration-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.integration-card p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Target Audience Section */
.target-audience {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.audience-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.audience-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.audience-pain {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--bg-secondary);
}

.audience-solution h4 {
    color: var(--growth-blue);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.audience-solution ul {
    list-style: none;
}

.audience-solution li {
    padding: var(--space-sm) 0;
    color: var(--text-primary);
}

.audience-solution li i {
    color: var(--success-green);
    margin-right: var(--space-sm);
}

/* Technical Requirements Section */
.technical-requirements {
    background: var(--bg-primary);
    padding: var(--space-3xl) 0;
}

.requirements-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.requirements-content h2 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.requirements-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.requirement-item {
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.requirement-item i {
    font-size: 3rem;
    color: var(--growth-blue);
    margin-bottom: var(--space-md);
}

.requirement-item h4 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.requirement-item p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.requirements-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0;
}

.pricing-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.pricing-badge-large {
    position: absolute;
    top: -20px;
    right: 30px;
    background: var(--gradient-secondary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.pricing-card {
    background: var(--bg-primary);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--growth-blue);
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.price-display .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--growth-blue);
}

.price-display .amount {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-display .period {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.price-regular {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.price-regular .strikethrough {
    text-decoration: line-through;
    color: var(--error-red);
}

.pricing-card h3 {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 0 auto var(--space-xl);
    max-width: 400px;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    color: var(--text-primary);
}

.pricing-features i {
    color: var(--success-green);
    margin-right: var(--space-sm);
}

.pricing-cta {
    width: 100%;
    margin-bottom: var(--space-md);
}

.pricing-urgency {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
    padding: var(--space-3xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: var(--space-2xl) auto 0;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-lg);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.faq-question i {
    color: var(--growth-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.final-cta .cta-title {
    color: white;
}

.final-cta .cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
}

.register-form {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.register-form .form-group {
    display: flex;
    gap: var(--space-md);
}

.register-form .email-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.3s ease;
}

.register-form .email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.register-form .email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.register-form .btn {
    white-space: nowrap;
}

.form-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: var(--space-md);
}

.cta-benefits-final {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
}

.benefit-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design - Comparison Page */
@media (max-width: 768px) {
    .sticky-pricing-badge {
        right: var(--space-md);
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

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

    .chart-label {
        width: 100px;
        min-width: 100px;
        font-size: 0.875rem;
    }

    .chart-bar {
        height: 40px;
    }

    .integration-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .register-form .form-group {
        flex-direction: column;
    }

    .cta-benefits-final {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .sticky-pricing-badge {
        display: none;
    }

    .hero-price-emphasis {
        font-size: 1.25rem;
    }

    .hero-price-emphasis strong {
        font-size: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--space-sm);
        font-size: 0.875rem;
    }

    .price-display .amount {
        font-size: 3rem;
    }
}

/* Dark Mode - Comparison Page */
@media (prefers-color-scheme: dark) {
    body:has(.comparison-hero) #language-selector {
        background: rgba(26, 26, 26, 0.95);
        color: #f5f5f5;
        border-color: rgba(61, 169, 252, 0.3);
    }

    body:has(.comparison-hero) #language-selector:hover {
        background: rgba(42, 42, 42, 0.98);
        border-color: var(--growth-blue);
    }

    body:has(.comparison-hero) #language-selector option {
        background: #2a2a2a;
        color: #f5f5f5;
    }

    .comparison-hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }

    .hero-price-emphasis,
    .hero-price-emphasis strong {
        color: #66BB6A;
    }

    .pain-points {
        background: #0d0d0d;
    }

    .pain-card {
        background: #2a2a2a;
        border-left-color: #ff8a80;
    }

    .pain-card h3 {
        color: #f5f5f5;
    }

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

    .pain-cost {
        color: #ff8a80;
    }

    .cost-comparison {
        background: #0d0d0d;
    }

    .cost-chart-container {
        background: #1a1a1a;
    }

    .cost-chart-container h3 {
        color: #f5f5f5;
    }

    .chart-label {
        color: #f5f5f5;
        width: 140px;
        min-width: 140px;
    }

    .roi-callout {
        background: linear-gradient(135deg, #66BB6A, #81C784);
    }

    .comparison-table-wrapper h3 {
        color: #f5f5f5;
    }

    .comparison-table {
        background: #2a2a2a;
    }

    .comparison-table thead {
        background: linear-gradient(135deg, var(--growth-blue), var(--creative-purple));
    }

    .comparison-table th,
    .comparison-table td {
        border-bottom-color: #333;
    }

    .comparison-table .feature-name {
        color: #f5f5f5;
    }

    .comparison-table .platform-col {
        color: rgba(245, 245, 245, 0.85);
    }

    .comparison-table .platform-col.dark{
        color: var(--text-dark);
    }

    .table-note {
        color: rgba(245, 245, 245, 0.7);
    }

    .features-included {
        background: #0d0d0d;
    }

    .feature-card {
        background: #2a2a2a;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-title {
        color: #f5f5f5;
    }

    .feature-description {
        color: rgba(245, 245, 245, 0.85);
    }

    .features-emphasis {
        background: #2a2a2a;
    }

    .features-emphasis h3 {
        color: var(--growth-blue);
    }

    .features-emphasis p {
        color: rgba(245, 245, 245, 0.85);
    }

    .integrations {
        background: #0d0d0d;
    }

    .integration-explanation h3 {
        color: #f5f5f5;
    }

    .integration-explanation p {
        color: rgba(245, 245, 245, 0.85);
    }

    .integration-benefits li {
        color: #f5f5f5;
    }

    .integration-card {
        background: #1a1a1a;
    }

    .integration-card h4 {
        color: #f5f5f5;
    }

    .integration-card p {
        color: rgba(245, 245, 245, 0.7);
    }

    .target-audience {
        background: #0d0d0d;
    }

    .audience-card {
        background: #2a2a2a;
    }

    .audience-card h3 {
        color: #f5f5f5;
    }

    .audience-pain {
        color: rgba(245, 245, 245, 0.8);
        border-bottom-color: #333;
    }

    .audience-solution h4 {
        color: var(--growth-blue);
    }

    .audience-solution li {
        color: #f5f5f5;
    }

    .technical-requirements {
        background: #0d0d0d;
    }

    .requirements-content h2 {
        color: #f5f5f5;
    }

    .requirements-subtitle {
        color: rgba(245, 245, 245, 0.85);
    }

    .requirement-item {
        background: #1a1a1a;
    }

    .requirement-item h4 {
        color: #f5f5f5;
    }

    .requirement-item p {
        color: rgba(245, 245, 245, 0.7);
    }

    .requirements-note {
        color: rgba(245, 245, 245, 0.7);
    }

    .pricing-section {
        background: #0d0d0d;
    }

    .pricing-card {
        background: #2a2a2a;
        border-color: var(--growth-blue);
    }

    .pricing-card h3 {
        color: #f5f5f5;
    }

    .pricing-features li {
        color: #f5f5f5;
    }

    .pricing-urgency {
        color: rgba(245, 245, 245, 0.7);
    }

    .price-regular {
        color: rgba(245, 245, 245, 0.7);
    }

    .faq-section {
        background: #0d0d0d;
    }

    .faq-item {
        background: #1a1a1a;
    }

    .faq-question {
        color: #f5f5f5;
    }

    .faq-question:hover {
        background: #2a2a2a;
    }

    .faq-answer p {
        color: rgba(245, 245, 245, 0.85);
    }

    .register-form .email-input {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

    .register-form .email-input:focus {
        background: rgba(255, 255, 255, 0.25);
    }
}

/* ================================
   Detailed Interest Modal Styles
   ================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: var(--space-lg);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.75rem;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-body {
    padding: var(--space-xl);
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 1rem;
}

.detailed-form .form-group {
    margin-bottom: var(--space-xl);
}

.detailed-form label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.detailed-form label i {
    margin-right: var(--space-xs);
    color: var(--growth-blue);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--growth-blue);
    background: rgba(255, 255, 255, 0.08);
}

.form-input[readonly] {
    background: rgba(255, 255, 255, 0.02);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-select {
    cursor: pointer;
}

.form-select[multiple] {
    padding: var(--space-sm);
}

.form-select option {
    padding: var(--space-sm);
}

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

.form-hint {
    display: block;
    margin-top: var(--space-xs);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover,
.radio-label:hover {
    border-color: var(--growth-blue);
    background: rgba(61, 169, 252, 0.05);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    margin-right: var(--space-md);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span,
.radio-label input[type="radio"]:checked + span {
    color: var(--growth-blue);
    font-weight: 600;
}

.conditional-field {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        margin-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        margin-bottom: var(--space-xl);
    }
}

.modal-footer {
    padding: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background: var(--bg-secondary);
}

.modal-footer .btn {
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-start;
    }

    .modal-container {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        min-height: 100vh;
    }

    .modal-header {
        padding: var(--space-lg);
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: var(--space-lg);
    }

    .modal-footer {
        flex-direction: column;
        padding: var(--space-lg);
    }

    .modal-footer .btn {
        width: 100%;
    }

    .checkbox-group,
    .radio-group {
        gap: var(--space-sm);
    }

    .checkbox-label,
    .radio-label {
        padding: var(--space-sm);
        font-size: 0.9rem;
    }
}

/* Dark Mode Specific */
@media (prefers-color-scheme: dark) {
    .modal-container {
        background: #1a1a1a;
    }

    .modal-header,
    .modal-footer {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .modal-subtitle {
        color: rgba(245, 245, 245, 0.7);
    }

    .detailed-form label {
        color: #f5f5f5;
    }

    .form-hint {
        color: rgba(245, 245, 245, 0.6);
    }

    .form-input,
    .form-select,
    .form-textarea {
        border-color: rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.05);
        color: #f5f5f5;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--growth-blue);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(245, 245, 245, 0.4);
    }

    .form-select option {
        background: #1a1a1a;
        color: #f5f5f5;
    }

    .checkbox-label,
    .radio-label {
        border-color: rgba(255, 255, 255, 0.15);
        color: #f5f5f5;
    }

    .checkbox-label:hover,
    .radio-label:hover {
        border-color: var(--growth-blue);
        background: rgba(61, 169, 252, 0.1);
    }

    .checkbox-label span,
    .radio-label span {
        color: rgba(245, 245, 245, 0.85);
    }

    .modal-close {
        color: rgba(245, 245, 245, 0.7);
    }

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #f5f5f5;
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: #f5f5f5;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #f5f5f5;
    }
}

/* ================================ */
/* ROADMAP STYLES */
/* ================================ */

/* Language Switcher for Roadmap Page */
body:has(.roadmap-hero) .language-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

body:has(.roadmap-hero) #language-selector {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(61, 169, 252, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

body:has(.roadmap-hero) #language-selector:hover {
    border-color: var(--growth-blue);
    box-shadow: var(--shadow-md);
}

body:has(.roadmap-hero) #language-selector:focus {
    outline: none;
    border-color: var(--growth-blue);
    box-shadow: 0 0 0 3px rgba(61, 169, 252, 0.1);
}

/* RTL support */
html[dir="rtl"] body:has(.roadmap-hero) .language-switcher {
    right: auto;
    left: 1rem;
}

@media (max-width: 767px) {
    body:has(.roadmap-hero) .language-switcher {
        top: 0.5rem;
        right: 0.5rem;
    }
    html[dir="rtl"] body:has(.roadmap-hero) .language-switcher {
        right: auto;
        left: 0.5rem;
    }
}

/* Roadmap Hero Section */
.roadmap-hero {
    background: linear-gradient(135deg, var(--growth-blue) 0%, var(--creative-purple) 100%);
    color: white;
    padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roadmap-hero::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") repeat;
    opacity: 0.1;
}

.roadmap-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.roadmap-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

/* Testing Standards Notice */
.testing-notice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testing-notice i {
    font-size: 1.5rem;
    color: var(--success-green);
    flex-shrink: 0;
}

.testing-notice span {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* Demo Stores Notice */
.demo-stores-notice {
    background: linear-gradient(135deg, rgba(61, 169, 252, 0.1) 0%, rgba(155, 109, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.demo-stores-notice i {
    font-size: 2.5rem;
    color: var(--fresh-cyan);
    flex-shrink: 0;
}

.demo-stores-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.demo-stores-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Progress Bar */
.progress-container {
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.progress-percentage {
    font-weight: 700;
    font-size: 1.5rem;
}

.progress-bar {
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-green) 0%, #66BB6A 100%);
    border-radius: 12px;
    width: 0%;
    transition: width 2s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Progress Summary */
.progress-summary {
    margin-top: var(--space-md);
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

/* Social Sharing */
.social-sharing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.share-label {
    font-size: 1.125rem;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.share-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* Roadmap Disclaimer */
.roadmap-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.roadmap-disclaimer i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Timeline Section */
.roadmap-timeline {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        var(--growth-blue) 0%,
        var(--creative-purple) 50%,
        var(--fresh-cyan) 100%
    );
    transform: translateX(-50%);
}

/* Timeline Block */
.timeline-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-3xl);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-block:nth-child(even) {
    flex-direction: row-reverse;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 3px solid var(--growth-blue);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(61, 169, 252, 0.2);
    padding: 4px;
}

.week-number {
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--growth-blue);
    line-height: 1;
}

.week-date {
    font-size: 0.7rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1;
    margin-top: 2px;
    white-space: nowrap;
}

.timeline-block.current .timeline-marker {
    border-color: var(--creative-purple);
    animation: pulse 2s infinite;
}

.timeline-block.launch .timeline-marker {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--growth-blue) 0%, var(--creative-purple) 100%);
    border: none;
    color: white;
}

.timeline-block.launch .timeline-marker i {
    font-size: 2rem;
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 4px rgba(155, 109, 255, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(155, 109, 255, 0); }
    100% { box-shadow: 0 0 0 4px rgba(155, 109, 255, 0.2); }
}

/* Timeline Content */
.timeline-content {
    width: calc(50% - 60px);
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin: 0 var(--space-xl);
}

.timeline-block:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.timeline-title.launch-title {
    background: linear-gradient(135deg, var(--growth-blue) 0%, var(--creative-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline Items */
.timeline-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: var(--neutral-gray);
}

.timeline-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-item.completed i {
    color: var(--success-green);
}

.timeline-item.in-progress i {
    color: var(--growth-blue);
}

.timeline-item.todo i {
    color: var(--creative-purple);
}

.timeline-item.milestone {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.timeline-item.milestone i {
    color: #FFC107;
}

.timeline-item.celebration {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(102, 187, 106, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.timeline-item.celebration i {
    color: var(--success-green);
}

.item-content {
    flex: 1;
}

.item-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.item-content p {
    color: #666;
    line-height: 1.6;
}

.milestone-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

/* Roadmap CTA Section */
.roadmap-cta {
    background: var(--neutral-gray);
    padding: var(--space-3xl) 0;
    text-align: center;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

/* Global Launch Section */
.global-launch-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(61, 169, 252, 0.05) 0%, rgba(155, 109, 255, 0.05) 100%);
}

.global-launch-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.global-launch-icon {
    font-size: 3rem;
    color: var(--growth-blue);
    margin-bottom: var(--space-lg);
}

.global-launch-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.global-launch-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
}

/* Sustainable Business Model Section */
.sustainable-model-section {
    padding: var(--space-3xl) 0;
    background: var(--neutral-gray);
}

.sustainable-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sustainable-icon {
    font-size: 3rem;
    color: var(--success-green);
    margin-bottom: var(--space-lg);
}

.sustainable-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.sustainable-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
}

/* Behind the Scenes Section */
.behind-scenes-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.behind-scenes-content {
    max-width: 1200px;
    margin: 0 auto;
}

.behind-scenes-content h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-3xl);
}

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

.principle-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--neutral-gray);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.principle-card i {
    font-size: 2.5rem;
    color: var(--growth-blue);
    margin-bottom: var(--space-lg);
}

.principle-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.principle-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 30px;
    }

    .timeline-block {
        flex-direction: row !important;
    }

    .timeline-marker {
        left: 30px;
        position: relative;
        transform: none;
        flex-shrink: 0;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: var(--space-lg) !important;
    }

    .countdown-timer {
        flex-direction: column;
        gap: var(--space-md);
    }

    .countdown-item {
        min-width: 200px;
    }

    .countdown-separator {
        display: none;
    }

    .social-sharing {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .social-sharing .share-label {
        width: 100%;
        text-align: center;
        margin-bottom: var(--space-sm);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .roadmap-hero {
        padding: calc(var(--space-2xl) + 80px) var(--space-md) var(--space-2xl);
    }

    .timeline-content {
        padding: var(--space-lg);
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .week-number {
        font-size: 1.125rem;
    }

    .week-date {
        font-size: 0.625rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .roadmap-timeline {
        background: var(--dark-bg);
    }

    .timeline-content {
        background: var(--dark-surface);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .timeline-title {
        color: var(--text-light);
    }

    .item-content h4 {
        color: var(--text-light);
    }

    .item-content p {
        color: #999;
    }

    .timeline-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .roadmap-cta {
        background: var(--dark-surface);
    }

    .cta-title {
        color: var(--text-light);
    }

    .cta-subtitle {
        color: #999;
    }

    .timeline-marker {
        background: var(--dark-surface);
    }

    .week-date {
        color: var(--text-light);
    }
}
/* ========================================
   FEATURES PAGE STYLES
   ======================================== */

/* Features Hero Section */
.features-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--growth-blue) 0%, var(--creative-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.features-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.features-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.features-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

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

.features-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.features-hero .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Features Main Section */
.features-main {
    padding: 4rem 0;
    background: var(--bg-primary);
}

/* Feature Category */
.feature-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.category-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-xl);
    margin-bottom: 2rem;
}

/* Expandable Feature Card */
.feature-card-expandable {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card-expandable:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-card-header {
    padding: var(--space-lg);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: background 0.3s ease;
    user-select: none;
}

.feature-card-header:hover {
    background: rgba(61, 169, 252, 0.05);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
}

.feature-card-content {
    flex: 1;
    min-width: 0;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-card-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.feature-card-toggle {
    flex-shrink: 0;
    color: var(--growth-blue);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}

.feature-card-expandable.active .feature-card-toggle {
    transform: rotate(180deg);
}

/* Feature Card Body (Expandable Content) */
.feature-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-expandable.active .feature-card-body {
    max-height: 1000px;
}

.feature-card-details {
    padding: 0 var(--space-lg) var(--space-lg);
    animation: fadeIn 0.3s ease;
}

/* Benefits Grid */
.feature-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.feature-benefits-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--growth-blue);
}

.feature-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits-list li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.feature-benefits-list li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Feature Capabilities */
.feature-capabilities {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

.feature-capabilities h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature-capabilities-list {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Integrations Placeholder Section */
.integrations-placeholder {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.integrations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.integrations-header {
    margin-bottom: var(--space-2xl);
}

.integrations-icon {
    font-size: 3rem;
    color: var(--growth-blue);
    margin-bottom: var(--space-lg);
}

.integrations-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.integrations-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.integrations-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.integration-category {
    padding: var(--space-lg);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.integration-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.integration-category-icon {
    font-size: 2rem;
    color: var(--growth-blue);
    margin-bottom: var(--space-md);
}

.integration-category-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.integration-category-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.integrations-cta {
    margin-top: var(--space-2xl);
}

.integrations-note {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

/* Features CTA Section */
.features-cta {
    background: linear-gradient(135deg, var(--growth-blue) 0%, var(--creative-purple) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
    color: white;
}

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

.features-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.features-cta .cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: var(--space-xl);
}

.features-cta .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Category-specific colors */
#core-commerce .category-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

#marketing-growth .category-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

#international .category-icon {
    background: linear-gradient(135deg, #16a085, #27ae60);
}

#design-content .category-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

#operations .category-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

#additional .category-icon {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .feature-card-expandable {
        background: var(--dark-surface);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .feature-card-header:hover {
        background: rgba(61, 169, 252, 0.1);
    }
    
    .category-header {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .feature-capabilities {
        border-top-color: rgba(255, 255, 255, 0.1);
    }
    
    .integration-category {
        background: var(--dark-surface);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-hero .hero-title {
        font-size: 2rem;
    }
    
    .features-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .integrations-categories {
        grid-template-columns: 1fr;
    }
    
    .features-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .features-cta .cta-buttons {
        flex-direction: column;
    }
    
    .features-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .feature-card-header {
        padding: var(--space-md);
    }
    
    .feature-card-details {
        padding: 0 var(--space-md) var(--space-md);
    }
    
    .feature-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
    }
    
    .feature-card-tagline {
        font-size: 0.9rem;
    }
}


/* Language Switcher for Features Page */
body:has(.features-hero) .language-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

body:has(.features-hero) #language-selector {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(61, 169, 252, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

body:has(.features-hero) #language-selector:hover {
    border-color: var(--growth-blue);
    box-shadow: var(--shadow-md);
}

body:has(.features-hero) #language-selector:focus {
    outline: none;
    border-color: var(--growth-blue);
    box-shadow: 0 0 0 3px rgba(61, 169, 252, 0.1);
}

/* Features Hero Logo */
.features-hero .hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Fix CTA Subtle contrast in dark mode */
@media (prefers-color-scheme: dark) {
    .features-cta .cta-subtitle {
        opacity: 1;
        color: rgba(255, 255, 255, 0.95);
    }
    
    body:has(.features-hero) #language-selector {
        background: rgba(26, 26, 26, 0.95);
        color: var(--text-light);
        border-color: rgba(61, 169, 252, 0.5);
    }
}

/* RTL support for Features Page */
html[dir="rtl"] body:has(.features-hero) .language-switcher {
    right: auto;
    left: 1rem;
}

@media (max-width: 767px) {
    body:has(.features-hero) .language-switcher {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    html[dir="rtl"] body:has(.features-hero) .language-switcher {
        right: auto;
        left: 0.5rem;
    }
}

/* Integrations List Styling */
.integrations-list {
    margin-top: 3rem;
}

.integration-category-section {
    margin-bottom: 3rem;
}

.category-header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.category-header-simple i {
    font-size: 1.5rem;
    color: var(--growth-blue);
}

.category-header-simple h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.integration-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.integration-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--growth-blue);
}

.integration-item.featured {
    background: linear-gradient(135deg, rgba(61, 169, 252, 0.05), rgba(155, 109, 255, 0.05));
    border-color: var(--growth-blue);
}

.integration-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.integration-type {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.integration-type.api {
    background: rgba(61, 169, 252, 0.1);
    color: var(--growth-blue);
}

.integration-type.builtin {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-green);
}

.integration-type.smtp {
    background: rgba(155, 109, 255, 0.1);
    color: var(--creative-purple);
}

/* Dark mode for integrations */
@media (prefers-color-scheme: dark) {
    .integration-item {
        background: var(--dark-surface);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .integration-item.featured {
        background: linear-gradient(135deg, rgba(61, 169, 252, 0.1), rgba(155, 109, 255, 0.1));
    }
    
    .category-header-simple {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
}

/* Mobile responsive for integrations */
@media (max-width: 768px) {
    .integration-items {
        grid-template-columns: 1fr;
    }
    
    .integration-item {
        padding: 1rem;
    }
}


/* Features CTA Section on Compare Page */
.features-cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.features-cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.features-cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.features-cta-section .btn i {
    font-size: 1.2rem;
}

.features-cta-text {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .features-cta-text {
        color: var(--text-secondary);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .features-cta-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .features-cta-section .btn {
        width: 100%;
        justify-content: center;
    }
}



/* ===== COMPREHENSIVE RTL STYLES FOR FEATURES PAGE ===== */
/* Comprehensive RTL Styles for Features Page */

/* General RTL adjustments */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* Navigation RTL */
html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu li {
    margin-left: 2rem;
    margin-right: 0;
}

html[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
}

/* Hero Section RTL */
html[dir="rtl"] .features-hero {
    text-align: right;
}

html[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

/* Category Navigation RTL */
html[dir="rtl"] .category-nav {
    direction: rtl;
}

html[dir="rtl"] .category-nav-list {
    flex-direction: row-reverse;
}

html[dir="rtl"] .category-nav-item {
    margin-left: 1.5rem;
    margin-right: 0;
}

html[dir="rtl"] .category-nav-item:last-child {
    margin-left: 0;
}

/* Feature Cards RTL */
html[dir="rtl"] .feature-card-header {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .feature-card-icon {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .feature-card-toggle {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .feature-card-content {
    text-align: right;
}

html[dir="rtl"] .feature-card-body {
    text-align: right;
}

/* Feature Benefits Grid RTL */
html[dir="rtl"] .feature-benefits-grid {
    direction: rtl;
}

html[dir="rtl"] .feature-benefits-column {
    text-align: right;
}

html[dir="rtl"] .feature-benefits-list {
    padding-left: 0;
    padding-right: 1.5rem;
}

html[dir="rtl"] .feature-benefits-list li {
    text-align: right;
}

html[dir="rtl"] .feature-benefits-list li::before {
    left: auto;
    right: -1.5rem;
}

/* Feature Capabilities RTL */
html[dir="rtl"] .feature-capabilities {
    text-align: right;
}

html[dir="rtl"] .feature-capabilities-list {
    text-align: right;
    direction: rtl;
}

/* Category Headers RTL */
html[dir="rtl"] .category-header h2 {
    text-align: right;
}

html[dir="rtl"] .category-header p {
    text-align: right;
}

/* Footer RTL */
html[dir="rtl"] .footer-container {
    text-align: right;
}

html[dir="rtl"] .footer-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-links a {
    margin-left: 1.5rem;
    margin-right: 0;
}

html[dir="rtl"] .footer-links a:last-child {
    margin-left: 0;
}

/* CTA Section RTL */
html[dir="rtl"] .cta-section {
    text-align: right;
}

html[dir="rtl"] .cta-actions {
    flex-direction: row-reverse;
}

/* Icons and Bullets RTL adjustments */
html[dir="rtl"] .feature-card-icon i {
    transform: scaleX(-1);
}

/* Specific icon exceptions that shouldn't flip */
html[dir="rtl"] .feature-card-icon .fa-globe,
html[dir="rtl"] .feature-card-icon .fa-clock,
html[dir="rtl"] .feature-card-icon .fa-chart-line,
html[dir="rtl"] .feature-card-icon .fa-database {
    transform: none;
}

/* Chevron adjustments for RTL */
html[dir="rtl"] .feature-card-toggle .fa-chevron-down {
    transform: rotate(0deg);
}

html[dir="rtl"] .feature-card-expandable.active .feature-card-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Grid adjustments for RTL */
html[dir="rtl"] .features-grid {
    direction: rtl;
}

/* Padding and Margin adjustments */
html[dir="rtl"] .feature-card-expandable {
    text-align: right;
}

html[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Search bar RTL if present */
html[dir="rtl"] .search-container {
    direction: rtl;
}

html[dir="rtl"] .search-input {
    padding-left: 1rem;
    padding-right: 2.5rem;
    text-align: right;
}

/* Responsive adjustments for RTL */
@media (max-width: 768px) {
    html[dir="rtl"] .nav-menu {
        text-align: right;
    }

    html[dir="rtl"] .mobile-menu-toggle {
        margin-left: auto;
        margin-right: 0;
    }
}

/* Additional fine-tuning for Arabic typography */
html[lang="ar"] body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', 'Noto Sans Arabic', 'Cairo', sans-serif;
    letter-spacing: 0;
    line-height: 1.8;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6 {
    font-family: 'Cairo', 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0;
}

/* Ensure proper text alignment in forms */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
    direction: rtl;
}

/* Dropdown menus RTL */
html[dir="rtl"] .dropdown-menu {
    text-align: right;
    left: auto;
    right: 0;
}

html[dir="rtl"] .dropdown-item {
    text-align: right;
}
/* RTL Styles for CTA and Footer */
/* RTL Styles for CTA and Footer */

/* Features CTA RTL */
html[dir="rtl"] .features-cta {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .cta-content {
    text-align: right;
}

html[dir="rtl"] .cta-buttons {
    flex-direction: row-reverse;
    justify-content: center;
}

html[dir="rtl"] .cta-buttons .btn {
    margin-left: 1rem;
    margin-right: 0;
}

html[dir="rtl"] .cta-buttons .btn:last-child {
    margin-left: 0;
}

/* Integrations CTA RTL */
html[dir="rtl"] .integrations-cta {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .integrations-note {
    text-align: right;
}

/* Footer RTL */
html[dir="rtl"] .footer {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .footer-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

html[dir="rtl"] .footer-brand {
    text-align: right;
    margin-left: 2rem;
    margin-right: 0;
}

html[dir="rtl"] .footer-sections {
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
}

html[dir="rtl"] .footer-section {
    text-align: right;
}

html[dir="rtl"] .footer-links {
    list-style: none;
    padding: 0;
    text-align: right;
}

html[dir="rtl"] .footer-links li {
    text-align: right;
}

html[dir="rtl"] .footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

html[dir="rtl"] .footer-company-info {
    direction: rtl;
}

/* Mobile adjustments for RTL */
@media (max-width: 768px) {
    html[dir="rtl"] .footer-content {
        flex-direction: column;
    }

    html[dir="rtl"] .footer-brand {
        margin-left: 0;
        margin-bottom: 2rem;
    }

    html[dir="rtl"] .footer-sections {
        flex-direction: column;
        gap: 2rem;
    }

    html[dir="rtl"] .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    html[dir="rtl"] .cta-buttons .btn {
        margin: 0.5rem 0;
    }
}
/* Smooth RTL/LTR Direction Change Transitions */
/* Smooth RTL/LTR transition */
html {
    transition: direction 0.3s ease;
}

body {
    transition: text-align 0.3s ease, direction 0.3s ease;
}

/* Smooth transition for navigation elements */
.nav-menu,
.nav-actions,
.hero-actions,
.footer-content,
.footer-sections,
.feature-card-header,
.cta-buttons,
.category-nav-list {
    transition: flex-direction 0.3s ease;
}

/* Smooth transition for text elements */
.feature-card-content,
.feature-card-body,
.feature-benefits-list,
.footer-section,
.cta-content {
    transition: text-align 0.3s ease;
}

/* Smooth transition for margins and paddings */
.feature-card-icon,
.feature-card-toggle,
.nav-menu li,
.language-switcher,
.footer-brand,
.cta-buttons .btn {
    transition: margin 0.3s ease, padding 0.3s ease;
}

/* Smooth transition for feature benefits bullets */
.feature-benefits-list li::before {
    transition: left 0.3s ease, right 0.3s ease;
}

/* Prevent text jumping during transition */
* {
    transition-property: margin, padding, text-align, flex-direction, direction;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* Disable transitions on page load to prevent initial animation */
.preload * {
    transition: none !important;
}