/* ClymMTB - Innovative AI-Powered Mountain Biking Platform */

/* Custom Properties - Racing & Nature Theme */
:root {
    /* Primary Nature & Racing color palette */
    --clym-nature-green: #33CC66;
    --clym-sun-orange: #FF9933;
    --clym-forest-green: #1A9933;
    --clym-sunset-orange: #E6751A;
    --clym-trail-blue: #3399FF;
    --clym-electric-blue: #00D4FF;
    
    /* Dark theme foundation (matching app) */
    --clym-dark-bg: #000000;
    --clym-dark-surface: #1A1A1A;
    --clym-dark-card: #262626;
    --clym-glass-bg: rgba(26, 26, 26, 0.8);
    
    /* Text colors */
    --clym-text-primary: #FFFFFF;
    --clym-text-secondary: #CCCCCC;
    --clym-text-muted: #999999;
    
    /* Racing-inspired gradients */
    --clym-gradient-primary: linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    --clym-gradient-racing: linear-gradient(90deg, #FF9933 0%, #E6751A 100%);
    --clym-gradient-nature: linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    --clym-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --clym-gradient-neural: linear-gradient(135deg, #3399FF 0%, #33CC66 100%);
    --clym-gradient-data: linear-gradient(90deg, #00D4FF 0%, #3399FF 100%);
    --clym-gradient-ai: linear-gradient(45deg, #FF9933 0%, #00D4FF 100%);
    
    /* Trail difficulty colors */
    --clym-trail-easy: #22C55E;
    --clym-trail-intermediate: #3B82F6;
    --clym-trail-advanced: #F59E0B;
    --clym-trail-expert: #EF4444;
    --clym-trail-extreme: #8B5CF6;
    
    /* Shadows and effects */
    --clym-shadow-glow: 0 0 30px rgba(255, 153, 51, 0.3);
    --clym-shadow-racing: 0 8px 32px rgba(255, 153, 51, 0.3);
    --clym-shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Animation timings */
    --clym-transition-fast: 0.2s ease-out;
    --clym-transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --clym-transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles - Dark Theme Foundation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(51, 204, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(51, 153, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

/* Typography - Futuristic */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--clym-gradient-primary);
    background: -webkit-linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    background: linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF9933; /* Fallback for browsers that don't support background-clip */
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--clym-text-secondary);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: var(--clym-gradient-primary);
    background: -webkit-linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    background: linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF9933; /* Fallback for browsers that don't support background-clip */
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 153, 51, 0.5);
}

/* Glassmorphism Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--clym-transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

/* Icon sizing utility classes */
.w-4 { width: 1rem; height: 1rem; }
.h-4 { width: 1rem; height: 1rem; }
.w-5 { width: 1.25rem; height: 1.25rem; }
.h-5 { width: 1.25rem; height: 1.25rem; }
.w-6 { width: 1.5rem; height: 1.5rem; }
.h-6 { width: 1.5rem; height: 1.5rem; }
.w-8 { width: 2rem; height: 2rem; }
.h-8 { width: 2rem; height: 2rem; }

/* ===== HERO ICONS FORMATTING ===== */
.hero-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    stroke-width: 2;
    flex-shrink: 0;
}

.hero-icon-lg {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
    stroke-width: 2;
    flex-shrink: 0;
}

.hero-icon-sm {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.375rem;
    stroke-width: 2;
    flex-shrink: 0;
}

.hero-icon-inline {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.25rem;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Hero Icons in specific contexts */
.hero-badge .hero-icon,
.hero-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    stroke-width: 2;
    flex-shrink: 0;
}

.section-title .hero-icon-lg,
.section-title svg {
    width: 2rem;
    height: 2rem;
    margin-left: 0.5rem;
    stroke-width: 2;
    vertical-align: middle;
    flex-shrink: 0;
}

.cta-title .hero-icon-lg,
.cta-title svg {
    width: 2rem;
    height: 2rem;
    margin-left: 0.5rem;
    stroke-width: 2;
    vertical-align: middle;
    flex-shrink: 0;
}

.plan-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
    margin: 0 auto;
    display: block;
}

.category-title svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    stroke-width: 2;
    flex-shrink: 0;
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    stroke-width: 2;
    flex-shrink: 0;
    color: var(--clym-electric-blue);
}

.dev-badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    stroke-width: 2;
    flex-shrink: 0;
}

.btn .w-4,
.btn .h-4 {
    width: 1rem;
    height: 1rem;
}

.btn .w-5,
.btn .h-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.btn .w-6,
.btn .h-6 {
    width: 1.5rem;
    height: 1.5rem;
}

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

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

.btn-primary {
    background: var(--clym-gradient-racing);
    background: -webkit-linear-gradient(90deg, #FF9933 0%, #E6751A 100%);
    background: linear-gradient(90deg, #FF9933 0%, #E6751A 100%);
    color: white;
    box-shadow: var(--clym-shadow-glow);
    border: 1px solid rgba(255, 153, 51, 0.3);
}

.btn-primary:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 153, 51, 0.5);
}

.btn-secondary {
    background: var(--clym-glass-bg);
    color: var(--clym-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clym-sun-orange);
    box-shadow: var(--clym-shadow-glow);
}

.btn-accent {
    background: var(--clym-gradient-nature);
    background: -webkit-linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    background: linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    color: white;
    font-weight: 700;
}

.btn-accent:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(51, 204, 102, 0.4);
}

/* Development Stage Badges */
.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: var(--clym-sun-orange);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.dev-badge::before {
    content: '';
    width: 1rem;
    height: 1rem;
    animation: pulse 2s infinite;
}

.beta-badge {
    background: rgba(51, 204, 102, 0.1);
    border-color: rgba(51, 204, 102, 0.3);
    color: var(--clym-nature-green);
}

.beta-badge svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all var(--clym-transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--clym-gradient-primary);
    opacity: 0;
    transition: opacity var(--clym-transition-smooth);
}

.glass-card:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    box-shadow: var(--clym-shadow-glass);
    border-color: rgba(255, 153, 51, 0.3);
}

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

/* Navigation - Floating Glass */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1200px;
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    z-index: 1000;
    transition: all var(--clym-transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--clym-shadow-glass);
    border-color: rgba(0, 212, 255, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clym-text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #16a34a;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
}

.logo-text {
    background: linear-gradient(135deg, #16a34a, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

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

.nav-links a:hover {
    color: var(--clym-sun-orange);
}

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

/* Hero Section - Immersive */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: var(--clym-sun-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--clym-gradient-primary);
    background: -webkit-linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    background: linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF9933; /* Fallback for browsers that don't support background-clip */
}

.hero-description {
    font-size: 1.25rem;
    color: var(--clym-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

/* Community page specific stat overrides */
.hero-stats .stat-number,
.stat-number {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
    display: block !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.hero-stats .stat-label,
.stat-label {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6) !important;
    line-height: 1.3 !important;
}

/* Override any inline styles on community page */
.hero-stats .stat span[style*="text-shadow: none"] {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6) !important;
}

.hero-stats .stat span[style*="color"] {
    color: #ffffff !important;
}

/* Hero Visual - AI Interface Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.ai-interface {
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: var(--clym-shadow-glass);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--clym-transition-smooth);
    position: relative;
    overflow: hidden;
}

.ai-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--clym-gradient-primary);
    animation: dataFlow 3s ease-in-out infinite;
}

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.ai-interface:hover {
    -webkit-transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.interface-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--clym-text-primary);
}

.interface-title svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}


.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clym-nature-green);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pulse {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--clym-nature-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--clym-nature-green);
}

.neural-network {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    height: 12rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.network-nodes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--clym-trail-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clym-trail-blue);
    animation: nodeGlow 2s ease-in-out infinite;
}

.node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.node:nth-child(2) { top: 50%; left: 20%; animation-delay: 0.3s; }
.node:nth-child(3) { top: 80%; left: 15%; animation-delay: 0.6s; }
.node:nth-child(4) { top: 30%; left: 50%; animation-delay: 0.9s; }
.node:nth-child(5) { top: 70%; left: 55%; animation-delay: 1.2s; }
.node:nth-child(6) { top: 25%; left: 85%; animation-delay: 1.5s; }
.node:nth-child(7) { top: 60%; left: 90%; animation-delay: 1.8s; }

@keyframes nodeGlow {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1);
        box-shadow: 0 0 10px var(--clym-trail-blue);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2);
        box-shadow: 0 0 20px var(--clym-trail-blue);
    }
}

.ai-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clym-electric-blue);
}

.metric-value svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--clym-text-muted);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    right: 10%;
    width: 15rem;
    height: 15rem;
    background: var(--clym-gradient-neural);
    animation-delay: 0s;
}

.floating-2 {
    bottom: 20%;
    left: 5%;
    width: 12rem;
    height: 12rem;
    background: var(--clym-gradient-data);
    animation-delay: 5s;
}

.floating-3 {
    top: 60%;
    right: 30%;
    width: 8rem;
    height: 8rem;
    background: var(--clym-gradient-ai);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--clym-gradient-primary);
    background: -webkit-linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    background: linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF9933; /* Fallback for browsers that don't support background-clip */
}

.section-description {
    font-size: 1.25rem;
    color: var(--clym-text-secondary);
    max-width: 48rem;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all var(--clym-transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--clym-gradient-primary);
    transform: scaleX(0);
    transition: transform var(--clym-transition-smooth);
}

.feature-card:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    box-shadow: var(--clym-shadow-racing);
    border-color: rgba(255, 153, 51, 0.3);
}

.feature-card:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--clym-gradient-primary);
    color: white;
    font-size: 1.5rem;
    transition: all var(--clym-transition-smooth);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

.feature-card:hover .feature-icon {
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--clym-shadow-glow);
}

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

.feature-description {
    color: var(--clym-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clym-sun-orange);
}

/* Innovation Showcase */
.innovation-section {
    background: linear-gradient(135deg, var(--clym-dark-surface) 0%, var(--clym-dark-card) 100%);
    position: relative;
    overflow: hidden;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.innovation-content > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.innovation-content > div:last-child > div {
    margin-bottom: 1.5rem;
}

.innovation-visual {
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
}

.data-stream {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.stream-line {
    position: absolute;
    height: 2px;
    background: var(--clym-gradient-data);
    animation: streamFlow 3s ease-in-out infinite;
}

.stream-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.stream-line:nth-child(2) { top: 40%; animation-delay: 0.5s; }
.stream-line:nth-child(3) { top: 60%; animation-delay: 1s; }
.stream-line:nth-child(4) { top: 80%; animation-delay: 1.5s; }

@keyframes streamFlow {
    0% { left: -100%; width: 0%; }
    50% { left: 0%; width: 100%; }
    100% { left: 100%; width: 0%; }
}

/* CTA Section - Enhanced Design */
.cta-section {
    background: linear-gradient(135deg, var(--clym-dark-surface) 0%, var(--clym-dark-card) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

/* Utility Classes for CTA Layout */
.text-center { text-align: center; }
.mb-12 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-md { max-width: 28rem; }

.inline-flex {
    display: inline-flex;
}

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

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

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.p-6 { padding: 1.5rem; }

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-500\/10 { --tw-gradient-from: rgba(139, 92, 246, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); }
.to-blue-500\/10 { --tw-gradient-to: rgba(59, 130, 246, 0.1); }
.from-orange-500\/10 { --tw-gradient-from: rgba(249, 115, 22, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
.to-red-500\/10 { --tw-gradient-to: rgba(239, 68, 68, 0.1); }

.border {
    border-width: 1px;
}

.border-purple-500\/20 { border-color: rgba(139, 92, 246, 0.2); }
.border-orange-500\/20 { border-color: rgba(249, 115, 22, 0.2); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }

.text-purple-400 { color: rgb(196, 181, 253); }
.text-orange-400 { color: rgb(251, 146, 60); }
.text-white { color: rgb(255, 255, 255); }
.text-gray-300 { color: rgb(209, 213, 219); }
.text-gray-400 { color: rgb(156, 163, 175); }
.text-green-500 { color: rgb(34, 197, 94); }

.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }

.grid {
    display: grid;
}

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }

.bg-gradient-to-r.from-purple-500.to-pink-500 {
    background: linear-gradient(to right, rgb(168, 85, 247), rgb(236, 72, 153));
}

.bg-gradient-to-r.from-blue-500.to-cyan-500 {
    background: linear-gradient(to right, rgb(59, 130, 246), rgb(6, 182, 212));
}

.bg-gradient-to-r.from-orange-500.to-red-500 {
    background: linear-gradient(to right, rgb(249, 115, 22), rgb(239, 68, 68));
}

.bg-gradient-to-r.from-green-500.to-emerald-500 {
    background: linear-gradient(to right, rgb(34, 197, 94), rgb(16, 185, 129));
}

.bg-gradient-to-r.from-yellow-500.to-orange-500 {
    background: linear-gradient(to right, rgb(234, 179, 8), rgb(249, 115, 22));
}

.bg-gradient-to-r.from-purple-600.to-blue-600 {
    background: linear-gradient(to right, rgb(147, 51, 234), rgb(37, 99, 235));
}

.bg-gradient-to-r.from-orange-600.to-red-600 {
    background: linear-gradient(to right, rgb(234, 88, 12), rgb(220, 38, 38));
}

.hover\:from-purple-700:hover { --tw-gradient-from: rgb(126, 34, 206); }
.hover\:to-blue-700:hover { --tw-gradient-to: rgb(29, 78, 216); }
.hover\:from-orange-700:hover { --tw-gradient-from: rgb(194, 65, 12); }
.hover\:to-red-700:hover { --tw-gradient-to: rgb(185, 28, 28); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }

.transition-all { transition-property: all; }
.duration-300 { transition-duration: 300ms; }

.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Responsive Grid Classes */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(51, 204, 102, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
    animation: backgroundShift 25s ease-in-out infinite;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(51, 204, 102, 0.15);
    border: 1px solid rgba(51, 204, 102, 0.4);
    color: var(--clym-nature-green);
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    animation: pulse 3s infinite;
    box-shadow: 0 8px 32px rgba(51, 204, 102, 0.2);
    transition: all var(--clym-transition-smooth);
}

.cta-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(51, 204, 102, 0.3);
}

.cta-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
}

.cta-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--clym-gradient-primary);
    background: -webkit-linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    background: linear-gradient(135deg, #FF9933 0%, #33CC66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF9933; /* Fallback for browsers that don't support background-clip */
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(255, 153, 51, 0.3);
}

.cta-description {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: var(--clym-text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    backdrop-filter: blur(10px);
    transition: all var(--clym-transition-smooth);
    text-align: left;
}

.cta-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 153, 51, 0.4);
    box-shadow: 0 8px 32px rgba(255, 153, 51, 0.2);
}

.cta-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--clym-gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.cta-feature-text {
    flex: 1;
}

.cta-feature-title {
    font-weight: 700;
    color: var(--clym-text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.cta-feature-desc {
    font-size: 0.85rem;
    color: var(--clym-text-muted);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-primary-btn {
    background: var(--clym-gradient-nature);
    background: -webkit-linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    background: linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    color: var(--clym-dark-bg);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1.5rem 3rem;
    border-radius: 1.25rem;
    box-shadow: 0 0 40px rgba(51, 204, 102, 0.4);
    border: 1px solid rgba(51, 204, 102, 0.3);
    transition: all var(--clym-transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

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

.cta-primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 60px rgba(51, 204, 102, 0.6);
    background: linear-gradient(45deg, #22c55e 0%, #16a34a 100%);
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clym-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.5rem 3rem;
    border-radius: 1.25rem;
    transition: all var(--clym-transition-smooth);
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--clym-sun-orange);
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.3);
    transform: translateY(-4px);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    opacity: 0.85;
    font-size: 0.95rem;
    color: var(--clym-text-muted);
    font-weight: 500;
}

.cta-note svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--clym-nature-green);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--clym-gradient-nature);
    background: -webkit-linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    background: linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #33CC66; /* Fallback for browsers that don't support background-clip */
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    font-size: 0.9rem;
    color: var(--clym-text-muted);
    font-weight: 500;
}

/* Enhanced button styling for CTA */
.btn-accent {
    background: var(--clym-gradient-nature);
    background: -webkit-linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    background: linear-gradient(45deg, #33CC66 0%, #1A9933 100%);
    color: var(--clym-dark-bg);
    font-weight: 700;
    box-shadow: 0 0 30px rgba(51, 204, 102, 0.3);
    border: 1px solid rgba(51, 204, 102, 0.3);
}

.btn-accent:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(51, 204, 102, 0.5);
    background: -webkit-linear-gradient(45deg, #22c55e 0%, #16a34a 100%);
    background: linear-gradient(45deg, #22c55e 0%, #16a34a 100%);
}

/* Footer - Professional & Well-Organized Design */
.footer {
    background: linear-gradient(135deg, var(--clym-dark-surface) 0%, #0f172a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--clym-gradient-primary);
    opacity: 0.6;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

/* Footer Brand Section */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clym-text-primary);
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--clym-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 153, 51, 0.15);
    border: 1px solid rgba(255, 153, 51, 0.4);
    color: var(--clym-sun-orange);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    align-self: flex-start;
    animation: pulse 3s infinite;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    color: var(--clym-text-secondary);
    transition: all var(--clym-transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: var(--clym-electric-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    border-color: var(--clym-electric-blue);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    z-index: 1;
}

/* Footer Link Sections */
.footer-title {
    color: var(--clym-text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: -0.025em;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--clym-gradient-primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--clym-text-secondary);
    text-decoration: none;
    transition: all var(--clym-transition-smooth);
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    padding: 0.3rem 0;
    line-height: 1.4;
    font-weight: 500;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--clym-electric-blue);
    transition: width var(--clym-transition-smooth);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clym-electric-blue);
    transition: width var(--clym-transition-smooth);
}

.footer-links a:hover {
    color: var(--clym-electric-blue);
    transform: translateX(8px);
    font-weight: 600;
}

.footer-links a:hover::before {
    width: 0.5rem;
}

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

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--clym-text-muted);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clym-text-secondary);
    font-size: 0.875rem;
}

.footer-status svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

/* Footer Badges (for pricing page) */
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clym-text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--clym-transition-smooth);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--clym-electric-blue);
    color: var(--clym-electric-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* Responsive Footer Design */
@media (max-width: 1200px) {
    .footer-content {
        gap: 1.25rem;
    }
    
    .footer-brand {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
        margin-bottom: 1rem;
    }
    
    .footer-badge {
        align-self: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        justify-content: center;
    }
    
    .footer-description {
        font-size: 0.875rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .footer-social {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .social-link {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .social-link svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .badge {
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.25rem 0 0.75rem;
    }
    
    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 280px;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.2rem 0;
    }
    
    .footer-social {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .social-link svg {
        width: 1rem;
        height: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .navbar {
        width: calc(100% - 1rem);
        top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-interface {
        transform: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .floating-element {
        display: none;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Utility animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Focus states for accessibility */
.btn:focus,
.nav-links a:focus,
.footer-links a:focus {
    outline: 2px solid var(--clym-electric-blue);
    outline-offset: 2px;
}

/* Pricing Page Specific Styles */

/* Pricing Plans Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    transition: all var(--clym-transition-smooth);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clym-gradient-primary);
    transform: scaleX(0);
    transition: transform var(--clym-transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--clym-shadow-racing);
    border-color: rgba(255, 153, 51, 0.3);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Featured Card (Pro Racer) */
.featured-card {
    border: 2px solid rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, var(--clym-glass-bg) 100%);
    transform: scale(1.05);
}

.featured-card::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

/* Beta Card */
.beta-card {
    border: 2px solid rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, var(--clym-glass-bg) 100%);
}

.beta-card::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* Elite Card */
.elite-card {
    border: 2px solid rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--clym-glass-bg) 100%);
}

.elite-card::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

/* Plan Badges */
.plan-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.beta-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.popular-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.elite-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clym-text-primary);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--clym-text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Plan Pricing */
.plan-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clym-text-primary);
    line-height: 1;
}

.price-period {
    color: var(--clym-text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Plan Features */
.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--clym-text-secondary);
    font-size: 0.875rem;
}

.feature-icon {
    width: 1rem;
    height: 1rem;
    color: #22c55e;
    flex-shrink: 0;
}

/* Plan CTA Buttons */
.plan-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: all var(--clym-transition-smooth);
}

.btn-beta {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.btn-beta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.btn-elite {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-elite:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

/* Plan Notes */
.plan-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--clym-text-muted);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.toggle-container {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--clym-text-secondary);
    font-weight: 500;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all var(--clym-transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn.active {
    background: var(--clym-gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

.discount-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Price Toggle States */
.hidden {
    display: none;
}

/* Beta Benefits Section */
.beta-benefits {
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    margin-top: 4rem;
}

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

.benefits-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clym-text-primary);
    margin-bottom: 0.5rem;
}

.benefits-header p {
    color: var(--clym-text-secondary);
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--clym-transition-smooth);
}

.benefit-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 153, 51, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clym-text-primary);
    margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all var(--clym-transition-smooth);
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: var(--clym-shadow-glass);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clym-text-primary);
    margin-bottom: 1rem;
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--clym-electric-blue);
    flex-shrink: 0;
}

.faq-answer {
    color: var(--clym-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section Enhancements */
.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.cta-text {
    max-width: none;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
    flex-shrink: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    color: #1f2937;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--clym-transition-smooth);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.cta-note svg {
    width: 1rem;
    height: 1rem;
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .featured-card {
        transform: none;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .toggle-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .beta-benefits {
        padding: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Coming Soon Pricing Styles */
.coming-soon-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Future Plans Preview */
.future-plans-preview {
    margin: 4rem 0;
}

.preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clym-text-primary);
    margin-bottom: 0.75rem;
}

.preview-header p {
    color: var(--clym-text-secondary);
    font-size: 1.125rem;
}

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

.preview-card {
    position: relative;
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all var(--clym-transition-smooth);
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--clym-shadow-glass);
}

.preview-blur {
    padding: 2rem;
    filter: blur(2px);
    opacity: 0.7;
    transition: all var(--clym-transition-smooth);
}

.preview-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.preview-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clym-text-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.preview-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clym-electric-blue);
    text-align: center;
    margin-bottom: 0.75rem;
}

.preview-card p {
    color: var(--clym-text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-features span {
    color: var(--clym-text-secondary);
    font-size: 0.875rem;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--clym-transition-smooth);
}

.coming-soon-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clym-electric-blue);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.coming-soon-text svg {
    width: 1.5rem;
    height: 1.5rem;
    animation: spin 2s linear infinite;
}

/* Development Process */
.development-process {
    margin: 4rem 0;
    background: var(--clym-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clym-text-primary);
    margin-bottom: 0.75rem;
}

.process-header p {
    color: var(--clym-text-secondary);
    font-size: 1.125rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: all var(--clym-transition-smooth);
    position: relative;
}

.process-step.completed {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.1);
}

.process-step.active {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.05);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--clym-shadow-glass);
}

.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--clym-gradient-primary);
    color: white;
}

.process-step.completed .step-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.process-step.active .step-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    animation: pulse 2s infinite;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clym-text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--clym-text-secondary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Feature Categories for Beta Card */
.feature-category {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clym-electric-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Coming Soon */
@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .development-process {
        padding: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .preview-header h3,
    .process-header h3 {
        font-size: 1.5rem;
    }
    
    .preview-header p,
    .process-header p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .coming-soon-container {
        padding: 0 1rem;
    }
    
    .preview-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .preview-blur {
        padding: 1.5rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .development-process {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .step-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}

/* Community page specific styles */
.highlight {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    padding: 0.125rem 0.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin: 0 0.125rem;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-highlights .highlight {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    body {
        background: white;
        color: black;
    }
}
