/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Logo-inspired Colors */
    --primary: #e91e63; /* Magenta/Pink from logo */
    --primary-dark: #c2185b;
    --primary-light: #f06292;
    --secondary: #8b5cf6; /* Purple from logo */
    --secondary-dark: #7c3aed;
    --accent: #1e88e5; /* Blue from logo */
    --accent-dark: #1565c0;
    --accent-orange: #f97316; /* Orange from logo */
    --accent-red: #ef4444; /* Red from logo */
    
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-light: #1e293b;
    --text-light: #f1f5f9;
    --text-gray: #94a3b8;
    --text-dark: #1e293b;
    
    /* Logo-inspired Gradient Colors */
    --comic-yellow: #fbbf24;
    --comic-blue: #1e88e5; /* Blue from logo */
    --comic-red: #e91e63; /* Magenta from logo */
    --comic-green: #10b981;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Borders */
    --border-radius: 1rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
    }
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-text {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-ai {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-light);
}

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

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

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30, 136, 229, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-icon,
.btn-icon-left {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

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

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

.comic-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(30, 136, 229, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: dotScroll 20s linear infinite;
}

@keyframes dotScroll {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(30, 136, 229, 0.2), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(249, 115, 22, 0.2), transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(30, 136, 229, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.stat-description {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* ===========================
   Comic Panel Visual
   =========================== */
.hero-visual {
    position: relative;
}

.comic-panel {
    position: relative;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--bg-dark);
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    min-height: 600px;
}

.panel {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    border: 3px solid var(--text-dark);
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 9 / 16; /* Mobile ratio */
}

.panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.panel:hover .panel-image {
    opacity: 1;
    transform: scale(1.05);
}

/* Top Row: 2 panels - Logo gradient colors */
.panel-1 {
    grid-column: 1 / 4;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(139, 92, 246, 0.2)); /* Blue to Purple */
}

.panel-2 {
    grid-column: 4 / 7;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(233, 30, 99, 0.2)); /* Purple to Magenta */
}

/* Bottom Row: 3 panels - Logo gradient colors */
.panel-3 {
    grid-column: 1 / 3;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(239, 68, 68, 0.2)); /* Magenta to Red */
}

.panel-4 {
    grid-column: 3 / 5;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2)); /* Red to Orange */
}

.panel-5 {
    grid-column: 5 / 7;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2)); /* Orange to Yellow */
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.3));
}

.speech-bubble {
    position: absolute;
    background: white;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
    border: 3px solid var(--text-dark);
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
    animation: bubblePop 0.5s ease-out;
}

@keyframes bubblePop {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.bubble-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.2s;
}

.bubble-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.4s;
}

.bubble-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.6s;
}

.bubble-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.8s;
}

.bubble-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: floatRandom 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.element-3 {
    top: 30%;
    left: 5%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes floatRandom {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translate(-5px, -20px) rotate(-5deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(15px, -15px) rotate(8deg);
        opacity: 0.9;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-darker);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(30, 136, 229, 0.3);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    position: relative;
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(30, 136, 229, 0.3);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
}

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

.steps {
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .steps {
        max-width: 1000px;
    }
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.step-reverse:hover {
    transform: translateX(-10px);
}

.step-number {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.step-description {
    color: var(--text-gray);
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 2px solid rgba(30, 136, 229, 0.3);
}

.step-icon {
    font-size: 4rem;
}

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

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.showcase-card {
    background: var(--bg-darker);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 12px 32px rgba(30, 136, 229, 0.3);
}

.showcase-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.showcase-description {
    color: var(--text-gray);
}

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

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--text-light);
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: var(--transition);
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.billing-cycle {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

.pricing-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.3);
}

.pricing-featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(233, 30, 99, 0.1));
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.btn-pricing {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-featured {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.4);
}

/* ===========================
   CTA Section
   =========================== */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.btn-cta {
    background: white;
    color: var(--primary);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.cta-note {
    margin-top: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: var(--spacing-md);
}

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

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.footer-brand .logo {
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--text-gray);
    max-width: 300px;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

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

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-description {
        margin: 0 auto var(--spacing-md);
        max-width: 700px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 600px;
        margin: var(--spacing-lg) auto 0;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    /* Fix navbar button in responsive mode */
    .navbar .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .nav-container {
        gap: 1rem;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-visual {
        order: -1;
    }
    
    .step:hover {
        transform: translateY(-8px);
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 var(--spacing-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .panel-grid {
        grid-template-columns: repeat(6, 1fr);
        min-height: 400px;
        gap: 0.5rem;
    }
    
    /* Keep 2-3 layout on mobile */
    .panel-1 { grid-column: 1 / 4; }
    .panel-2 { grid-column: 4 / 7; }
    .panel-3 { grid-column: 1 / 3; }
    .panel-4 { grid-column: 3 / 5; }
    .panel-5 { grid-column: 5 / 7; }
    
    .feature-card,
    .showcase-card,
    .pricing-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Make navbar button even smaller on mobile */
    .navbar .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-description {
        font-size: 0.7rem;
    }
    
    .feature-icon,
    .showcase-icon {
        font-size: 2.5rem;
    }
    
    .step-icon {
        font-size: 3rem;
    }
    
    .footer-description {
        margin: 0 auto;
    }
}

/* ===========================
   Ultra-wide Screens
   =========================== */
@media (min-width: 1800px) {
    .hero-container {
        gap: 8rem;
    }
    
    .features-grid,
    .showcase-grid {
        gap: 3rem;
    }
    
    .step {
        gap: 3rem;
        padding: 2.5rem;
    }
}

