/* ========================================
   CSS VARIABLES - BRAND COLORS
======================================== */
:root {
    /* Brand Colors */
    --brand-primary: #ff914d;
    --brand-primary-dark: #ff6b35;
    --brand-primary-light: #ffb380;
    
    --brand-complement: #4dbbfe;
    --brand-complement-dark: #2196f3;
    
    --brand-dark: #11222C;
    --brand-dark-secondary: #1a3240;
    
    --brand-light: #F6F6F6;
    --brand-gray: #343a40;
    --brand-gray-light: #6c757d;
    
    /* Additional Colors */
    --white: #ffffff;
    --black: #000000;
    
    --success: #12b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #4dbbfe;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff914d 0%, #ff6b35 100%);
    --gradient-complement: linear-gradient(135deg, #4dbbfe 0%, #2196f3 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255,145,77,0.1) 0%, rgba(77,187,254,0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Light Mode (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #F6F6F6;
    --text-primary: #11222C;
    --text-secondary: #343a40;
    --text-tertiary: #6c757d;
    --border-color: rgba(17, 34, 44, 0.1);
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f28;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --text-tertiary: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: #1a1f28;
    --header-bg: rgba(15, 20, 25, 0.95);

    --brand-dark: #e5e7eb;
    --brand-gray: #9ca3af;
    --brand-gray-light: #6b7280;
    --white: #1a1f28;
}

/* ========================================
   SCROLL PROGRESS BAR
======================================== */
/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff914d 0%, #4dbbfe 50%, #fee94d 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-dark);
}

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

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

/* ========================================
   CONTAINER
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: #ff914d;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 145, 77, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: #ff711a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 145, 77, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ff914d;
    border: 2px solid #ff914d;
}

.btn-outline:hover:not(:disabled) {
    background: rgba(255, 145, 77, 0.1);
    transform: translateY(-2px);
}

.btn-premium {
    background: linear-gradient(135deg, #914dfe, #ec4899);
    color: white;
    box-shadow: 0 2px 8px rgba(145, 77, 254, 0.3);
}

.btn-premium:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 77, 254, 0.4);
}

.btn-full-width {
    width: 100%;
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff914d, #ff711a);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 145, 77, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 999;
}

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

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 145, 77, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

.scroll-to-top i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* ========================================
   HERO SECTION - FULL HEIGHT
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff914d 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4dbbfe 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #12b981 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

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

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(17, 34, 44, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 34, 44, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 145, 77, 0.1);
    border: 1px solid rgba(255, 145, 77, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

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

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--brand-gray-light);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

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

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--brand-gray);
    border: 2px solid var(--brand-primary);
}

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

.cta-button i {
    font-size: 20px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-gray-light);
}

/* ========================================
   TRUST SECTION
======================================== */
.trust-section {
    padding: var(--spacing-xl) 0;
    background: var(--brand-light);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--brand-gray);
}

.trust-badge i {
    font-size: 24px;
    color: var(--brand-primary);
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    background: rgba(255, 145, 77, 0.1);
    color: var(--brand-primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 20px;
    color: var(--brand-gray-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   SECTIONS SHOWCASE
======================================== */
.sections-showcase {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.section-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(17, 34, 44, 0.1);
    transition: var(--transition-base);
    position: relative;
}

.section-card.featured {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

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

.section-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.section-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.section-icon i {
    font-size: 36px;
    color: var(--white);
}

.section-title-card {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.section-badge-card {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    background: rgba(255, 145, 77, 0.1);
    color: var(--brand-primary);
}

.section-description-card {
    color: var(--brand-gray-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.section-features {
    list-style: none;
}

.section-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-gray);
    margin-bottom: 8px;
}

.section-features i {
    color: var(--success);
    font-size: 14px;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
    padding: var(--spacing-3xl) 0;
    background: var(--brand-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(17, 34, 44, 0.1);
    transition: var(--transition-base);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--brand-gray-light);
    line-height: 1.8;
}

/* ========================================
   COMPARISON SECTION
======================================== */
.comparison {
    padding: var(--spacing-3xl) 0;
    background: var(--brand-light);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(17, 34, 44, 0.1);
}

.comparison-row.header {
    background: var(--brand-dark);
    color: var(--white);
}

.comparison-cell {
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell.feature-cell {
    justify-content: flex-start;
    font-weight: 600;
}

.comparison-cell.highlight {
    background: rgba(255, 145, 77, 0.05);
    font-weight: 700;
    color: var(--brand-primary);
}

.comparison-cell i.fa-check {
    color: var(--success);
    font-size: 20px;
}

.comparison-cell i.fa-times {
    color: var(--error);
    font-size: 20px;
}

.our-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.our-brand i {
    color: var(--brand-primary);
}

/* ========================================
   USE CASES SECTION
======================================== */
.use-cases {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

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

.use-case-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(17, 34, 44, 0.1);
    transition: var(--transition-base);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 145, 77, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.use-case-icon i {
    font-size: 28px;
    color: var(--brand-primary);
}

.use-case-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.use-case-description {
    color: var(--brand-gray-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.use-case-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit {
    padding: 4px 12px;
    background: rgba(255, 145, 77, 0.1);
    color: var(--brand-primary);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits-section {
    padding: 5rem 0;
    background: var(--color-surface, #ffffff);
}

[data-theme="dark"] .benefits-section {
    background: #0f1419;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

[data-theme="dark"] .benefit-card p {
    color: #94a3b8;
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.stats-content {
    text-align: center;
}

.stats-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    padding: 5rem 0;
    background: var(--color-background, #f6f6f6);
}

[data-theme="dark"] .pricing-section {
    background: #1a1f28;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.toggle-label.active {
    color: #1e293b;
}

[data-theme="dark"] .toggle-label {
    color: #94a3b8;
}

[data-theme="dark"] .toggle-label.active {
    color: #e2e8f0;
}

.toggle-switch {
    width: 64px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .toggle-switch {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.toggle-switch:hover {
    border-color: #ff914d;
}

.toggle-slider {
    width: 28px;
    height: 28px;
    background: #ff914d;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch[data-billing="annual"] .toggle-slider {
    left: 32px;
}

.save-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #12b981, #84cc16);
    color: white;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(18, 185, 129, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .pricing-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border-color: #ff914d;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 145, 77, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(145, 77, 254, 0.1), rgba(236, 72, 153, 0.1));
    border-color: #914dfe;
}

[data-theme="dark"] .pricing-card.premium {
    background: linear-gradient(135deg, rgba(145, 77, 254, 0.15), rgba(236, 72, 153, 0.15));
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #ff914d, #ff711a);
    color: white;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 145, 77, 0.4);
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

[data-theme="dark"] .plan-name {
    color: #e2e8f0;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff914d;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #64748b;
    margin-left: 0.5rem;
}

.annual-note {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 15px;
    line-height: 1.6;
}

.plan-features i {
    font-size: 16px;
    flex-shrink: 0;
}

.plan-features .fa-check {
    color: #12b981;
}

.plan-features .fa-xmark {
    color: #94a3b8;
}

.plan-features .fa-crown,
.plan-features .fa-infinity {
    color: #914dfe;
}

/* ========================================
   TECHNICAL SPECS
======================================== */
.technical-specs {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.spec-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(17, 34, 44, 0.1);
    text-align: center;
    transition: var(--transition-base);
}

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

.spec-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 145, 77, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.spec-icon i {
    font-size: 28px;
    color: var(--brand-primary);
}

.spec-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.spec-description {
    color: var(--brand-gray-light);
    line-height: 1.6;
}


/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff914d 0%, #4dbbfe 50%, #fee94d 100%);
    z-index: 0;
}

[data-theme="dark"] .cta-bg {
    background: linear-gradient(135deg, #ff914d 0%, #4dbbfe 50%, #fee94d 100%) !important;
}

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

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: white;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--brand-primary);
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
    min-width: 150px;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cta-stats .stat:hover {
    transform: none !important;
    box-shadow: none !important;
}

.cta-stats .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white !important;
    margin-bottom: 4px;
    display: block;
}

.cta-stats .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    display: block;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #11222C;
    color: #ffffff;
    padding: 64px 0 24px;
}

[data-theme="dark"] .footer {
    background: #0a0f14;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.9fr 0.9fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

/* Section 1: Branding */
.footer-brand {
    padding-right: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.footer-logo-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #ffffff !important;
}

.social-link i {
    color: #ffffff !important;
}

.social-link:hover {
    background: #ff914d;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 145, 77, 0.3);
}

.social-link:hover i {
    color: #ffffff !important;
}

/* Footer Columns */
.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff !important;
}

[data-theme="dark"] .footer-title {
    color: #ffffff !important;
}

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

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-list a i {
    font-size: 14px;
    color: #ff914d;
    width: 18px;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: #ff914d;
    padding-left: 6px;
}

.footer-list a:hover i {
    transform: translateX(3px);
}

/* Section 5: CTA Section */
.footer-cta {
    background: rgba(30, 41, 59, 0.5);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .footer-cta {
    background: rgba(20, 28, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 145, 77, 0.3);
}

[data-theme="dark"] .footer-cta:hover {
    background: rgba(20, 28, 40, 0.8);
}

.footer-cta-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff !important;
}

[data-theme="dark"] .footer-cta-title {
    color: #ffffff !important;
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff914d 0%, #ff711a 100%);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 145, 77, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 77, 0.4);
}

.footer-cta-button i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-cta-button:hover i {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom i {
    color: #ff914d;
    margin: 0 4px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 500;
    line-height: 1;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--brand-primary);
    background: var(--bg-secondary);
}

.nav-link i {
    font-size: 14px;
}

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

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 0.2rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 340px;
    max-width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 8px;
    padding: 8px;
    overflow: hidden;
}

[data-theme="dark"] .dropdown-menu {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 145, 77, 0.08) 0%, rgba(255, 145, 77, 0.04) 100%);
    color: var(--text-primary);
    border-left-color: var(--brand-primary);
    padding-left: 20px;
    transform: translateX(2px);
}

[data-theme="dark"] .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 145, 77, 0.15) 0%, rgba(255, 145, 77, 0.05) 100%);
}

.dropdown-item i {
    font-size: 20px;
    color: var(--brand-primary);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.25s ease;
}

.dropdown-item-desc {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.4;
    transition: color 0.25s ease;
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--brand-primary);
}

.dropdown-item:hover .dropdown-item-desc {
    color: var(--text-secondary);
}

/* Active/Focus states for accessibility */
.dropdown-item:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: -2px;
}

.dropdown-item:active {
    transform: translateX(1px) scale(0.98);
}

/* Staggered animation for dropdown items */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown:hover .dropdown-item,
.nav-dropdown.active .dropdown-item {
    animation: dropdownFadeIn 0.3s ease forwards;
}

.nav-dropdown:hover .dropdown-item:nth-child(1),
.nav-dropdown.active .dropdown-item:nth-child(1) {
    animation-delay: 0.03s;
}

.nav-dropdown:hover .dropdown-item:nth-child(2),
.nav-dropdown.active .dropdown-item:nth-child(2) {
    animation-delay: 0.06s;
}

.nav-dropdown:hover .dropdown-item:nth-child(3),
.nav-dropdown.active .dropdown-item:nth-child(3) {
    animation-delay: 0.09s;
}

.nav-dropdown:hover .dropdown-item:nth-child(4),
.nav-dropdown.active .dropdown-item:nth-child(4) {
    animation-delay: 0.12s;
}

.nav-dropdown:hover .dropdown-item:nth-child(5),
.nav-dropdown.active .dropdown-item:nth-child(5) {
    animation-delay: 0.15s;
}

.nav-dropdown:hover .dropdown-item:nth-child(6),
.nav-dropdown.active .dropdown-item:nth-child(6) {
    animation-delay: 0.18s;
}

.nav-dropdown:hover .dropdown-item:nth-child(7),
.nav-dropdown.active .dropdown-item:nth-child(7) {
    animation-delay: 0.21s;
}

.nav-dropdown:hover .dropdown-item:nth-child(8),
.nav-dropdown.active .dropdown-item:nth-child(8) {
    animation-delay: 0.24s;
}

.nav-dropdown:hover .dropdown-item:nth-child(9),
.nav-dropdown.active .dropdown-item:nth-child(9) {
    animation-delay: 0.27s;
}

.nav-dropdown:hover .dropdown-item:nth-child(10),
.nav-dropdown.active .dropdown-item:nth-child(10) {
    animation-delay: 0.30s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Right Side Actions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle i {
    position: absolute;
    font-size: 18px;
    color: #ff914d;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-light {
    opacity: 1;
}

.theme-icon-dark {
    opacity: 0;
}

[data-theme="dark"] .theme-icon-light {
    opacity: 0;
}

[data-theme="dark"] .theme-icon-dark {
    opacity: 1;
}

/* Mobile Toggle */
.mobile-toggle,
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 20px;
}

[data-theme="dark"] .mobile-toggle,
[data-theme="dark"] .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu - Dropdown Style */
.mobile-menu {
    display: none;
    padding: 16px 20px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active,
.mobile-menu.show {
    display: block;
}

.mobile-menu-dropdown {
    margin-bottom: 4px;
}

.mobile-menu-dropdown-toggle {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.mobile-dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-menu-dropdown.active .mobile-dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.mobile-menu-dropdown.active .mobile-submenu {
    max-height: 500px;
    padding: 8px 0;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mobile-submenu-link i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: var(--brand-primary);
}

.mobile-submenu-link:hover {
    background: rgba(255, 145, 77, 0.1);
    color: var(--brand-primary);
    padding-left: 24px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.mobile-menu-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--brand-primary);
}

.mobile-menu-link:hover {
    background: var(--bg-secondary);
    color: var(--brand-primary);
    padding-left: 16px;
}

.mobile-menu-link:last-of-type {
    border-bottom: none;
}

.mobile-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

/* ========================================
   MODAL STYLES
======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    z-index: 1;
}

.auth-modal {
    padding: 48px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

[data-theme="dark"] .modal-close {
    background: rgba(255, 255, 255, 0.05);
}

.modal-close:hover {
    background: rgba(255, 145, 77, 0.1);
    color: var(--brand-primary);
    transform: rotate(90deg);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.auth-header p {
    color: var(--text-tertiary);
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.1);
}

.form-error {
    font-size: 13px;
    color: var(--error);
    min-height: 18px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--brand-primary);
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

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

.auth-footer a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-footer a:hover {
    text-decoration: underline;
}

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

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 32px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-right .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: calc(4rem + 60px) 0 4rem;
        min-height: auto;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }
}

/* Ensure mobile toggle is hidden on desktop */
@media (min-width: 993px) {
    .mobile-menu-toggle,
    .mobile-toggle {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-outline,
    .nav-actions .btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-xl);
        padding: 0 clamp(16px, 3vw, 24px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-menu.show {
        max-height: 800px;
        padding: 16px clamp(16px, 3vw, 24px);
    }

    .dropdown-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        margin-top: 0;
        padding: 12px;
    }

    .dropdown-item {
        padding: 14px 16px;
    }
}

@media (max-width: 768px) {
    .nav-actions .btn-outline,
    .nav-actions .btn-primary {
        display: none;
    }

    .modal-content {
        padding: 2rem;
    }

    .hero {
        padding: calc(var(--spacing-2xl) + 80px) 0 var(--spacing-2xl);
        min-height: auto;
    }

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

    .hero-description {
        font-size: 16px;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

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

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

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-cell {
        border-bottom: 1px solid rgba(17, 34, 44, 0.1);
    }

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

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

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

    .cta-title {
        font-size: 32px;
    }

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

    .footer-brand,
    .footer-column,
    .footer-cta {
        grid-column: 1;
        text-align: center;
    }

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

    .footer-list a {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .cta-button.large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ========================================
   UTILITIES
======================================== */
.hidden {
    display: none !important;
}

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