/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

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

:root {
    /* Brand Colors */
    --primary-navy: #1a2a4a;
    --primary-gold: #FFC527;
    --accent-purple: #6366f1;
    --accent-blue: #3b82f6;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, var(--primary-gold) 100%);
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
}

h2 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
}

h3 {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ===================================
   LAYOUT & CONTAINERS
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding) 0;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
}

.logo i {
    color: var(--primary-gold);
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

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

.nav-links a:not(.btn-primary-nav):hover {
    color: var(--primary-navy);
}

.nav-links a:not(.btn-primary-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width var(--transition-base);
}

.nav-links a:not(.btn-primary-nav):hover::after {
    width: 100%;
}

.btn-primary-nav {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 197, 39, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

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

.mobile-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    padding: 12px;
    text-align: center;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(255, 197, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 197, 39, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, #0f1b35 0%, var(--primary-navy) 50%, #2a3f5f 100%);
    padding: 180px 0 140px;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 197, 39, 0.15);
    color: var(--primary-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

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

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.hero-trust i {
    color: var(--primary-gold);
}

/* Hero Visual */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.mockup-content {
    padding: 32px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card i {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.stat-card h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 4px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===================================
   TRUST SECTION
   =================================== */

.trust-section {
    padding: 60px 0;
    background: var(--gray-50);
}

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

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

.trust-badge p {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    margin: 0;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 60px;
}

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

.highlight {
    color: var(--accent-purple);
}

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

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

.stat-item i {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===================================
   MARKETING ENGINE SECTION
   =================================== */

.marketing-engine {
    padding: 120px 0;
    background: var(--gray-50);
}

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

.engine-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.engine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.engine-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.engine-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.engine-card > p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 15px;
}

.feature-list i {
    color: var(--accent-purple);
    font-size: 16px;
}

/* ===================================
   FEATURE SECTIONS
   =================================== */

.feature-section {
    padding: 120px 0;
}

.feature-section.alternate {
    background: var(--gray-50);
}

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

.feature-content.reverse {
    direction: rtl;
}

.feature-content.reverse > * {
    direction: ltr;
}

.feature-label {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-purple);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.feature-text h2 {
    margin-bottom: 24px;
    line-height: 1.25;
}

.feature-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--primary-navy);
}

.benefit-item p {
    color: var(--gray-600);
    font-size: 15px;
    margin: 0;
}

/* Feature Mockups */
.feature-mockup {
    position: relative;
}

.mockup-browser {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.browser-header {
    background: var(--gray-100);
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
}

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

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-content {
    padding: 40px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.form-preview {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-preview h3 {
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.form-field {
    height: 48px;
    background: var(--gray-100);
    border-radius: 8px;
    margin-bottom: 16px;
}

.form-field.short {
    width: 60%;
}

.form-button {
    height: 48px;
    background: var(--primary-gold);
    border-radius: 8px;
    margin-top: 8px;
}

/* Messaging Preview */
.messaging-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 24px;
    max-width: 400px;
}

.message-thread {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
}

.message.received {
    background: var(--gray-100);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.sent {
    background: var(--accent-purple);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message.automated {
    border: 2px dashed var(--primary-gold);
}

.message p {
    margin: 0;
    font-size: 14px;
}

.message .time {
    font-size: 11px;
    opacity: 0.7;
    display: block;
    margin-top: 4px;
}

/* AI Booking Preview */
.ai-booking-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.booking-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.booking-header i {
    font-size: 24px;
}

.booking-content {
    padding: 32px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.calendar-day {
    aspect-ratio: 1;
    background: var(--gray-100);
    border-radius: 8px;
}

.calendar-day.active {
    background: var(--primary-gold);
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-slot {
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.time-slot.selected {
    background: var(--accent-purple);
    color: var(--white);
}

/* Pipeline Preview */
.pipeline-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
}

.pipeline-column {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.column-header {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.pipeline-card {
    height: 60px;
    background: var(--gray-100);
    border-radius: 6px;
    margin-bottom: 8px;
}

/* Course Preview */
.course-preview {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.course-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 24px;
}

.course-header h4 {
    color: var(--white);
    margin: 0;
}

.course-content {
    padding: 24px;
}

.module {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 500;
}

.module i {
    color: var(--accent-purple);
    font-size: 24px;
}

/* White Label Preview */
.whitelabel-preview {
    display: flex;
    justify-content: center;
}

.device-frame {
    width: 300px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 8px solid var(--gray-900);
}

.frame-header {
    background: var(--gray-100);
    padding: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-navy);
}

.frame-content {
    padding: 32px 24px;
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin: 0 auto 24px;
}

.brand-text {
    height: 16px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 12px;
}

.brand-text.short {
    width: 60%;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */

.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: 24px;
    left: 32px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.author-info h4 {
    color: var(--primary-navy);
    font-size: 18px;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    padding: 120px 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--primary-gold);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 24px 0;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-600);
}

.amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-navy);
}

.period {
    font-size: 18px;
    color: var(--gray-600);
}

.pricing-description {
    color: var(--gray-600);
    font-size: 16px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.pricing-features .feature-item i {
    color: var(--accent-purple);
    font-size: 18px;
    margin-top: 2px;
}

.pricing-features .feature-item span {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-footer {
    text-align: center;
    margin-top: 48px;
}

.pricing-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 14px;
}

.pricing-footer i {
    color: var(--accent-purple);
}

/* ===================================
   COMMUNITY SECTION
   =================================== */

.community-section {
    padding: 120px 0;
}

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

.community-benefits .benefit-item {
    margin-bottom: 32px;
}

.community-benefits .benefit-item i {
    font-size: 32px;
    color: var(--primary-gold);
}

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

.community-stat {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.community-stat i {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.community-stat h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.community-stat p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   SUPPORT SECTION
   =================================== */

.support-section {
    padding: 120px 0;
    background: var(--gray-50);
}

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

.support-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.support-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.support-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0f1b35 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 24px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.cta-trust i {
    color: var(--primary-gold);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 32px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-gold);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* ===================================
   ANIMATIONS
   =================================== */

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-content,
    .feature-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-content.reverse {
        direction: ltr;
    }

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

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

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

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

    .hero {
        padding: 140px 0 100px;
    }

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

    .btn-large {
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

    section {
        padding: var(--section-padding-mobile) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }