/* ==================================
   Estorayard CSS Design System
==================================== */

:root {
    /* Base Variables - Dark Theme (Default) */
    --clr-bg: #0a0b10;
    --clr-bg-alt: #12141c;
    --clr-surface: rgba(255, 255, 255, 0.03);
    --clr-surface-hover: rgba(255, 255, 255, 0.08);
    --clr-border: rgba(255, 255, 255, 0.08);
    
    /* Typography Colors */
    --clr-text: #ffffff;
    --clr-text-muted: #94a3b8;
    
    /* Accents */
    --clr-primary: #3b82f6;      /* Vibrant Blue */
    --clr-primary-glow: rgba(59, 130, 246, 0.4);
    --clr-secondary: #8b5cf6;    /* Vibrant Purple */
    --clr-accent: #06b6d4;       /* Cyan */
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    --gradient-text: linear-gradient(to right, #60a5fa, #c084fc);
    --gradient-glow: radial-gradient(circle at center, var(--clr-primary-glow) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Glass */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(12px);
    
    /* Timings */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Overrides */
.light-theme {
    --clr-bg: #f8fafc;
    --clr-bg-alt: #ffffff;
    --clr-surface: rgba(255, 255, 255, 0.7);
    --clr-surface-hover: rgba(255, 255, 255, 0.9);
    --clr-border: rgba(0, 0, 0, 0.08);
    
    --clr-text: #0f172a;
    --clr-text-muted: #475569;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Typography Utilities */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ==================================
   Background Effects
==================================== */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

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

.orb-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: var(--clr-primary-glow);
}
.orb-2 {
    bottom: -10%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(139, 92, 246, 0.3);
    animation-delay: -5s;
}
.orb-3 {
    top: 40%; left: 60%;
    width: 300px; height: 300px;
    background: rgba(6, 182, 212, 0.2);
    animation-delay: -10s;
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(var(--clr-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--clr-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* ==================================
   Buttons
==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--clr-primary);
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--clr-primary-glow);
}

.btn-secondary {
    background: var(--clr-surface);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: var(--clr-surface-hover);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
}

.btn-outline:hover {
    background: var(--clr-surface);
    border-color: var(--clr-text);
}

/* Button Glow Effect */
.glow-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.glow-button:hover::before {
    left: 100%;
}

/* ==================================
   Navigation
==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 11, 16, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.light-theme .navbar.scrolled {
    background: rgba(248, 250, 252, 0.8);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text);
}

.brand-logo i {
    color: var(--clr-primary);
    font-size: 1.8rem;
}

.brand-logo span {
    font-weight: 300;
    color: var(--clr-text-muted);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--clr-primary);
    transition: width var(--transition-normal);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--clr-accent);
    margin-bottom: 24px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Visual Mockup */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.glass-dashboard-mockup {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.light-theme .glass-dashboard-mockup {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.05);
}

.glass-dashboard-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    height: 40px;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--clr-border);
}

.light-theme .mockup-header {
    background: rgba(0,0,0,0.05);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--clr-border);
}
.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #eab308; }
.dots span:nth-child(3) { background: #22c55e; }

.mockup-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bento-mockup {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-1 { grid-column: span 2; }

.bento-mockup i {
    font-size: 2rem;
    color: var(--clr-primary);
}

.m-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 6px;
    background: var(--clr-border);
    border-radius: 4px;
}

.w-70 { width: 70%; }
.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-80 { width: 80%; }

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.bar {
    flex: 1;
    background: var(--clr-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.h-30 { height: 30%; }
.h-60 { height: 60%; }
.h-40 { height: 40%; }
.h-90 { height: 90%; background: var(--gradient-brand); opacity: 1; }

/* ==================================
   Animations
==================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-up.active, .reveal-scale.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stagger-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease var(--delay, 0s), transform 0.5s ease var(--delay, 0s);
}

.stagger-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================
   Media Queries
==================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none; /* Mobile menu implementation will toggle a class */
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ==================================
   Section Utilities
==================================== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-description {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

.glass-panel {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.glass-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--clr-surface-hover);
    border-color: rgba(255,255,255,0.15);
}

/* ==================================
   Problem Section
==================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.problem-card {
    padding: 30px;
    border-radius: 16px;
    background: rgba(239, 68, 68, 0.03); /* Subtle red tint */
    border: 1px solid rgba(239, 68, 68, 0.1);
    transition: transform var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-5px);
    background: rgba(239, 68, 68, 0.08);
}

.problem-icon {
    font-size: 2.5rem;
    color: #ef4444; /* Red accent */
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--clr-text);
}

.problem-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==================================
   Solution Section
==================================== */
.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--clr-text);
}

.solution-list i {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.solution-graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-hub {
    width: 120px;
    height: 120px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 30px var(--clr-primary-glow);
    z-index: 2;
    position: relative;
}

.central-hub i {
    font-size: 2.5rem;
    margin-bottom: 4px;
}

.central-hub span {
    font-size: 0.8rem;
    font-weight: 600;
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

/* Orbit layout formulas */
.node-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 35%; right: 10%; }
.node-3 { bottom: 15%; right: 25%; }
.node-4 { bottom: 15%; left: 25%; }
.node-5 { top: 35%; left: 10%; }

.rotating-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 280px; height: 280px;
    margin: -140px 0 0 -140px;
    border: 1px dashed var(--clr-border);
    border-radius: 50%;
    animation: spin 30s linear infinite;
    z-index: 1;
}

.rotating-ring-reverse {
    position: absolute;
    top: 50%; left: 50%;
    width: 180px; height: 180px;
    margin: -90px 0 0 -90px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: spin 20s linear infinite reverse;
    z-index: 1;
}

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

/* ==================================
   Features Section
==================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.feature-card:hover .icon-wrapper {
    background: var(--clr-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* CSS variables cursor tracking via JS */
.hover-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 0;
    pointer-events: none;
}

.hover-glow:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

/* ==================================
   How It Works
==================================== */
.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-progress-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent));
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--clr-bg-alt);
    border: 2px solid var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-primary);
    box-shadow: 0 0 20px var(--clr-primary-glow);
    flex-shrink: 0;
    z-index: 2;
}

.step-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 30px;
    flex-grow: 1;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--clr-text-muted);
}

/* ==================================
   Why Choose Us
==================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
}

.b-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.b-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.b-text p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.premium-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.premium-card:hover {
    transform: rotate(0deg) translateY(-10px);
}

.card-glass-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* ==================================
   Target Users
==================================== */
.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.user-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.user-card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.user-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(to top, var(--clr-bg-alt), transparent);
}

/* Temporary gradient backgrounds for images until real images are added */
.bg-buyer { background: linear-gradient(45deg, #1e3a8a, #3b82f6); }
.bg-seller { background: linear-gradient(45deg, #064e3b, #10b981); }
.bg-investor { background: linear-gradient(45deg, #4c1d95, #8b5cf6); }
.bg-nri { background: linear-gradient(45deg, #7f1d1d, #ef4444); }

.user-card-content {
    padding: 30px;
}

.user-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.user-card-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==================================
   Call to Action
==================================== */
.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--clr-primary-glow);
    padding: 80px 40px;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ==================================
   Footer
==================================== */
.footer {
    background: var(--clr-bg-alt);
    border-top: 1px solid var(--clr-border);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin: 20px 0;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--clr-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4, .footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--clr-text);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--clr-text-muted);
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-newsletter p {
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--clr-primary);
}

.newsletter-form button {
    padding: 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--clr-text);
}

/* ==================================
   Additional Media Queries
==================================== */
@media (max-width: 992px) {
    .solution-wrapper, .why-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-graphic {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    /* Mobile Menu styles */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--clr-bg-alt);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-normal);
        pointer-events: none;
        z-index: 99;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        display: flex;
    }

    .nav-actions {
        position: fixed;
        top: 250px;
        left: 0;
        width: 100%;
        padding: 20px;
        justify-content: center;
        background: var(--clr-bg-alt);
        z-index: 99;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
        border-bottom: 1px solid var(--clr-border);
    }
    .nav-actions.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        display: flex;
    }

    .step-progress-line {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 20px auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

