/* ===========================================
   THE ORIGIN AGENCY - Premium Design System
   Inspired by Awwwards-level agencies
   =========================================== */

/* CSS Custom Properties */
:root {
    /* Deep Blue Palette - Technical Authority */
    --primary-900: #020617;
    --primary-800: #0A2540;
    --primary-700: #0F172A;
    --primary-600: #1E293B;
    --primary-500: #334155;

    /* Accent - Electric Blue (NO green) */
    --accent-primary: #3B82F6;
    --accent-light: #60A5FA;
    --accent-soft: #93C5FD;
    --accent-glow: rgba(59, 130, 246, 0.5);

    /* Secondary accent - Indigo/Violet */
    --secondary: #818CF8;
    --secondary-soft: #A5B4FC;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--primary-700) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-primary) 0%, var(--secondary) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-text: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-soft) 100%);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 140px 0;
    --container-width: 1440px;

    /* Effects */
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.15);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-elevated: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-main);
    background: var(--primary-900);
    color: var(--gray-300);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--white);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.03em;
    font-weight: 800;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.01em;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

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

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #FFFFFF !important;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary span {
    color: #FFFFFF !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-primary) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
    transition: transform var(--transition-smooth);
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta p {
    font-size: 0.95rem;
    color: var(--gray-300);
    margin: 0;
}

.sticky-cta p strong {
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

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

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

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid Pattern Overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: relative;
}

.status-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ping 1.5s ease-out infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(2); opacity: 0; }
}

.status-badge span {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Hero Title */
.hero h1 {
    margin-bottom: 28px;
}

.hero h1 .line {
    display: block;
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--gradient-accent);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--gray-400);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.trust-item svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

/* Hero Form Wrapper */
.hero-form-wrapper {
    background: var(--primary-700);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-elevated);
    position: relative;
    z-index: 1;
}

.hero-form-wrapper .form-header {
    margin-bottom: 28px;
}

.hero-form-wrapper .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hero-form-wrapper .form-header p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Form Testimonial */
.form-testimonial {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.mini-stars svg {
    width: 14px;
    height: 14px;
    fill: #FBBF24;
    color: #FBBF24;
}

.form-testimonial p {
    font-size: 0.9rem;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 6px;
    line-height: 1.5;
}

.form-testimonial span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Form Note with icon */
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 16px;
}

.form-note svg {
    color: var(--accent-light);
}

/* Stats Row */
.hero-stats {
    display: flex;
    gap: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   MARQUEE / LOGO TICKER
   ============================================ */
.marquee-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 48px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.marquee-item:hover {
    color: var(--white);
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gradient-accent);
}

.section-header p {
    max-width: 600px;
    margin: 24px auto 0;
    color: var(--gray-400);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.problem-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.problem-card:hover::before {
    opacity: 0.05;
}

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

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Inline CTA */
.inline-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 64px;
    padding: 32px 40px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    flex-wrap: wrap;
}

.inline-cta p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin: 0;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.solution-content .section-eyebrow {
    justify-content: flex-start;
}

.solution-content .section-eyebrow::before {
    display: none;
}

.solution-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.solution-content > p {
    color: var(--gray-400);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.solution-list {
    list-style: none;
    margin-bottom: 48px;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.solution-list li span {
    color: var(--gray-300);
    font-size: 1.05rem;
}

/* Visual Terminal */
.solution-visual {
    position: relative;
}

.terminal-window {
    background: var(--primary-700);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #FF5F57; }
.terminal-dot.yellow { background: #FFBD2E; }
.terminal-dot.green { background: #28CA41; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.terminal-body {
    padding: 32px;
}

.flow-diagram {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.flow-step:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.flow-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.75rem;
}

.flow-icon.ghl {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: var(--white);
}

.flow-icon.n8n {
    background: linear-gradient(135deg, #FF6D5A 0%, #FF8F7D 100%);
    color: var(--white);
}

.flow-icon.slack {
    background: linear-gradient(135deg, #4A154B 0%, #611F69 100%);
    color: var(--white);
}

.flow-icon.custom {
    background: var(--gradient-accent);
    color: var(--white);
}

.flow-info {
    flex: 1;
}

.flow-info strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.flow-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.flow-status {
    width: 10px;
    height: 10px;
    background: #28CA41;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.flow-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.flow-connector svg {
    color: var(--gray-600);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
}

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

.services-grid .service-card.featured {
    grid-column: 1 / -1;
}

.service-card {
    position: relative;
    padding: 48px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-glow);
}

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

.service-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(129, 140, 248, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-card.featured::before {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
}

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    left: 32px;
    line-height: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    color: var(--accent-light);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card > p {
    color: var(--gray-400);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--secondary) 50%, var(--accent-primary) 100%);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    background: var(--primary-700);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   RESULTS / TESTIMONIALS
   ============================================ */
.results {
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}

.testimonial-card {
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #FBBF24;
    fill: #FBBF24;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: normal;
}

/* Testimonial Result Badge */
.testimonial-result {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.result-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.result-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.author-avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    font-weight: 700;
    color: var(--white);
}

.author-info strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 64px 80px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
}

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

.stats-bar .stat-number {
    font-size: 3.5rem;
    margin-bottom: 8px;
}

.stats-bar .stat-label {
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

/* Final CTA - Centered */
.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content .section-eyebrow {
    justify-content: center;
}

.final-cta-content h2 {
    margin-bottom: 20px;
}

.final-cta-content > p {
    color: var(--gray-400);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.cta-benefits-inline {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.benefit-item svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

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

.cta-content .section-eyebrow {
    justify-content: flex-start;
}

.cta-content .section-eyebrow::before {
    display: none;
}

.cta-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.cta-content > p {
    color: var(--gray-400);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--gray-300);
}

.cta-benefits li svg {
    color: var(--accent-light);
}

.cta-form-wrapper {
    background: var(--primary-700);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-elevated);
}

.cta-form-wrapper h3 {
    margin-bottom: 8px;
}

.cta-form-wrapper > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-group select option {
    background: var(--primary-700);
    color: var(--white);
}

/* reCAPTCHA Container */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}

.recaptcha-container .g-recaptcha {
    transform-origin: center;
}

@media (max-width: 400px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: var(--gray-500);
    margin-top: 20px;
    max-width: 320px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

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

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

.footer-column a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid .service-card.featured {
        grid-column: 1 / -1;
    }
}

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

    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 1024px) {
    .solution-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .solution-visual {
        order: -1;
    }

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

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

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

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary-800);
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero.hero-split {
        padding: 100px 0 60px;
    }

    .hero-grid-layout {
        gap: 48px;
    }

    .hero-form-wrapper {
        padding: 32px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .sticky-cta .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .sticky-cta p {
        font-size: 0.875rem;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .cta-benefits-inline {
        flex-direction: column;
        gap: 16px;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        padding: 40px 32px;
    }

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

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .cta-form-wrapper {
        padding: 32px 24px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll offset */
section[id] {
    scroll-margin-top: 100px;
}

/* ============================================
   DEMO CTA BUTTON
   ============================================ */
.btn-demo-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(129, 140, 248, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.btn-demo-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(129, 140, 248, 0.15) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-demo-cta:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25);
}

.btn-demo-cta:hover::before {
    opacity: 1;
}

.demo-cta-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.demo-cta-icon svg {
    color: var(--white);
}

.demo-cta-text {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.demo-cta-main {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.demo-cta-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.demo-cta-arrow {
    color: var(--accent-light);
    transition: transform var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.btn-demo-cta:hover .demo-cta-arrow {
    transform: translateX(4px);
}

/* ============================================
   DEMO MODAL
   ============================================ */
.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(8px);
}

.demo-modal-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--primary-700);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
}

.demo-modal.active .demo-modal-container {
    transform: translateY(0) scale(1);
}

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.demo-modal-content {
    padding: 48px;
}

/* Progress Steps */
.demo-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.demo-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.demo-progress-step.active {
    opacity: 1;
}

.demo-progress-step.completed {
    opacity: 0.7;
}

.progress-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-smooth);
}

.demo-progress-step.active .progress-number {
    background: var(--gradient-accent);
    border-color: transparent;
}

.demo-progress-step.completed .progress-number {
    background: rgba(40, 202, 65, 0.2);
    border-color: #28CA41;
}

.demo-progress-step span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.demo-progress-step.active span {
    color: var(--white);
}

.demo-progress-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Step Header */
.demo-step-header {
    text-align: center;
    margin-bottom: 32px;
}

.demo-step-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.demo-step-header p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Demo Form Styles */
.demo-form .form-group {
    margin-bottom: 20px;
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.demo-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.demo-form-actions .btn-secondary {
    flex: 0 0 auto;
    padding: 14px 24px;
}

.demo-form-actions .btn-primary {
    flex: 1;
}

/* Color Picker */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.color-picker-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.color-picker-wrapper input[type="color"] {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
}

.color-picker-wrapper input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-picker-wrapper input[type="color"]::-webkit-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.color-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--gray-300);
    text-transform: uppercase;
}

/* Logo Upload */
.logo-upload-area {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.logo-upload-area:hover {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.05);
}

.logo-upload-area.drag-over {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

.logo-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.logo-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-upload-content svg {
    color: var(--gray-500);
}

.logo-upload-content span {
    font-size: 0.95rem;
    color: var(--gray-300);
}

.logo-upload-content small {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.logo-preview {
    position: relative;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.logo-preview img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
}

.logo-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #FCA5A5;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo-remove:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #fff;
}

/* Loading State */
.demo-loading-content {
    text-align: center;
    padding: 40px 0;
}

.demo-loading-spinner {
    margin-bottom: 24px;
}

.demo-loading-spinner svg {
    color: var(--accent-primary);
    animation: spin 1s linear infinite;
}

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

.demo-loading-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.demo-loading-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.demo-loading-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    max-width: 280px;
    margin: 0 auto;
}

.demo-loading-bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    width: 0%;
    animation: loading-progress 8s ease-out forwards;
}

@keyframes loading-progress {
    0% { width: 0%; }
    20% { width: 30%; }
    50% { width: 60%; }
    80% { width: 85%; }
    100% { width: 95%; }
}

/* Loading Quotes */
.demo-loading-quote {
    margin: 24px auto;
    padding: 16px 24px;
    max-width: 400px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(129, 140, 248, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    position: relative;
}

.demo-loading-quote::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}

.demo-loading-quote .quote-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-200);
    text-align: center;
    line-height: 1.5;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.demo-loading-quote .quote-text.fade-out {
    opacity: 0;
}

/* Error State */
.demo-error-content {
    text-align: center;
    padding: 40px 0;
}

.demo-error-icon {
    margin-bottom: 24px;
}

.demo-error-icon svg {
    color: #FCA5A5;
}

.demo-error-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #FCA5A5;
}

.demo-error-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Demo Modal Responsive */
@media (max-width: 640px) {
    .demo-modal-content {
        padding: 32px 24px;
    }

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

    .demo-progress-step span {
        display: none;
    }

    .demo-form-actions {
        flex-direction: column-reverse;
    }

    .demo-form-actions .btn-secondary,
    .demo-form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
