/* ===================================
   MyTownAI Website Styles
   Colors: Dark Blue (#0A2540), Teal (#00CED1), Red (#DC3545)
   =================================== */

/* CSS Variables */
:root {
    --color-dark-blue: #0A2540;
    --color-dark-blue-light: #0f3460;
    --color-navy: #1a3a5c;
    --color-teal: #1a7f9e;
    --color-teal-light: #3a9fc0;
    --color-teal-dark: #125a70;
    --color-red: #A31621;
    --color-red-light: #DC3545;
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow-teal: 0 0 40px rgba(0, 206, 209, 0.3);
    --shadow-glow-gold: 0 0 40px rgba(212, 160, 23, 0.2);

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
    color: var(--color-white);
    text-align: center;
    padding: 16px 20px;
    font-size: 1.05rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
}

.announcement-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: bannerShimmer 3s ease-in-out infinite;
}

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

.announcement-banner p {
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.announcement-banner strong {
    color: #FFD700;
}

.announcement-banner a {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 4px;
    text-underline-offset: 3px;
}

.announcement-banner a:hover {
    color: #FFD700;
}

/* Push navbar and content below the banner */
body.has-banner .navbar {
    top: 52px;
}

body.has-banner .hero {
    padding-top: 192px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.02) 0%, rgba(0, 206, 209, 0.02) 100%);
}

/* Large Moving Gradient Orbs - More visible */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.25) 0%, rgba(0, 206, 209, 0.05) 100%);
    top: -200px;
    right: -150px;
    animation: orbFloat1 25s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.2) 0%, rgba(10, 37, 64, 0.05) 100%);
    bottom: -100px;
    left: -200px;
    animation: orbFloat2 30s ease-in-out infinite;
}

.orb-3 {
    display: none;
}

.orb-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.2) 0%, rgba(0, 206, 209, 0.05) 100%);
    bottom: 20%;
    left: 30%;
    animation: orbFloat4 28s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-100px, 150px) scale(1.1); }
    50% { transform: translate(-50px, 80px) scale(0.9); }
    75% { transform: translate(100px, -50px) scale(1.05); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(200px, -100px) scale(1.15); }
    66% { transform: translate(100px, 150px) scale(0.95); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-150px, 100px) scale(1.2); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-100px, -80px) scale(1.1); }
    50% { transform: translate(80px, 100px) scale(0.9); }
    75% { transform: translate(50px, -120px) scale(1.05); }
}

/* Animated Grid Lines */
.grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.15), transparent);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 206, 209, 0.15), transparent);
}

.h1 { top: 25%; animation: slideHorizontal 12s linear infinite; }
.h2 { top: 50%; animation: slideHorizontal 15s linear infinite reverse; animation-delay: -5s; }
.h3 { top: 75%; animation: slideHorizontal 10s linear infinite; animation-delay: -3s; }

.v1 { left: 20%; animation: slideVertical 14s linear infinite; }
.v2 { left: 50%; animation: slideVertical 12s linear infinite reverse; animation-delay: -4s; }
.v3 { left: 80%; animation: slideVertical 16s linear infinite; animation-delay: -7s; }

@keyframes slideHorizontal {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes slideVertical {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.p1 { width: 8px; height: 8px; background: var(--color-teal); left: 10%; animation-duration: 20s; opacity: 0.6; }
.p2 { width: 8px; height: 8px; background: #B8860B; left: 20%; animation-duration: 25s; animation-delay: -5s; opacity: 0.7; }
.p3 { width: 10px; height: 10px; background: var(--color-dark-blue); left: 30%; animation-duration: 18s; animation-delay: -2s; opacity: 0.4; }
.p4 { width: 5px; height: 5px; background: #D4A017; left: 40%; animation-duration: 22s; animation-delay: -8s; opacity: 0.7; }
.p5 { width: 9px; height: 9px; background: var(--color-teal); left: 50%; animation-duration: 19s; animation-delay: -3s; opacity: 0.7; }
.p6 { width: 9px; height: 9px; background: var(--color-teal); left: 60%; animation-duration: 24s; animation-delay: -10s; opacity: 0.6; }
.p7 { width: 6px; height: 6px; background: #B8860B; left: 70%; animation-duration: 17s; animation-delay: -6s; opacity: 0.6; }
.p8 { width: 10px; height: 10px; background: var(--color-teal); left: 80%; animation-duration: 21s; animation-delay: -4s; opacity: 0.7; }
.p9 { width: 5px; height: 5px; background: #D4A017; left: 90%; animation-duration: 23s; animation-delay: -9s; opacity: 0.6; }
.p10 { width: 7px; height: 7px; background: var(--color-dark-blue); left: 15%; animation-duration: 26s; animation-delay: -12s; opacity: 0.4; }
.p11 { width: 6px; height: 6px; background: #B8860B; left: 75%; animation-duration: 20s; animation-delay: -7s; opacity: 0.6; }
.p12 { width: 10px; height: 10px; background: var(--color-teal); left: 45%; animation-duration: 18s; animation-delay: -11s; opacity: 0.8; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Moving Rings - Subtle dotted circles */
.moving-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    opacity: 0.15;
}

.ring-a {
    width: 400px;
    height: 400px;
    border-color: var(--color-teal);
    top: 10%;
    left: -100px;
    animation: ringMove1 30s linear infinite, ringPulseSubtle 4s ease-in-out infinite;
}

.ring-b {
    width: 300px;
    height: 300px;
    border-color: var(--color-teal);
    top: 50%;
    right: -50px;
    animation: ringMove2 25s linear infinite reverse, ringPulseSubtle 5s ease-in-out infinite;
    animation-delay: -10s;
}

.ring-c {
    width: 500px;
    height: 500px;
    border-color: var(--color-dark-blue);
    bottom: -100px;
    left: 30%;
    animation: ringMove3 35s linear infinite, ringPulseSubtle 6s ease-in-out infinite;
    animation-delay: -15s;
}

@keyframes ringMove1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(200px, 100px) rotate(90deg); }
    50% { transform: translate(150px, 300px) rotate(180deg); }
    75% { transform: translate(-50px, 200px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes ringMove2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-150px, -80px) rotate(-90deg); }
    50% { transform: translate(-200px, 100px) rotate(-180deg); }
    75% { transform: translate(-50px, 150px) rotate(-270deg); }
    100% { transform: translate(0, 0) rotate(-360deg); }
}

@keyframes ringMove3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(100px, -150px) rotate(120deg); }
    66% { transform: translate(-100px, -100px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes ringPulseSubtle {
    0%, 100% { opacity: 0.06; }
    50% { opacity: 0.12; }
}

/* Gradient Waves */
.wave {
    position: absolute;
    width: 200%;
    height: 200px;
    left: -50%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 206, 209, 0.08) 25%,
        rgba(0, 206, 209, 0.04) 50%,
        rgba(0, 206, 209, 0.08) 75%,
        transparent 100%
    );
    animation: waveMove linear infinite;
}

.wave-1 {
    top: 20%;
    animation-duration: 20s;
    transform: rotate(-5deg);
}

.wave-2 {
    top: 50%;
    animation-duration: 25s;
    animation-delay: -8s;
    transform: rotate(3deg);
    opacity: 0.7;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(204, 119, 34, 0.08) 25%,
        rgba(204, 119, 34, 0.04) 50%,
        rgba(204, 119, 34, 0.08) 75%,
        transparent 100%
    );
}

.wave-3 {
    top: 80%;
    animation-duration: 18s;
    animation-delay: -12s;
    transform: rotate(-2deg);
    opacity: 0.5;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 206, 209, 0.06) 20%,
        rgba(204, 119, 34, 0.06) 50%,
        rgba(0, 206, 209, 0.06) 80%,
        transparent 100%
    );
}

@keyframes waveMove {
    0% { transform: translateX(-25%) rotate(-5deg); }
    100% { transform: translateX(25%) rotate(-5deg); }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-dark-blue);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 70px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-dark-blue);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-ai {
    color: var(--color-teal);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-dark-blue));
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-dark-blue);
}

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

.nav-cta {
    display: flex;
    gap: 12px;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-dark-blue);
    transition: all var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    border-color: var(--color-dark-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark-blue);
    border-color: var(--color-gray-300);
}

.btn-outline:hover {
    border-color: var(--color-dark-blue);
    background: rgba(10, 37, 64, 0.05);
}

.btn-ghost {
    background: rgba(10, 37, 64, 0.06);
    color: var(--color-dark-blue);
    border: 1px solid rgba(10, 37, 64, 0.12);
}

.btn-ghost:hover {
    background: rgba(10, 37, 64, 0.1);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark-blue);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-gold {
    background: #FFD700;
    color: var(--color-dark-blue);
    border-color: #FFD700;
    font-weight: 700;
}

.btn-gold:hover {
    background: #FFC200;
    border-color: #FFC200;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px 24px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 206, 209, 0.1);
    border: 1px solid rgba(0, 206, 209, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark-blue);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-dark-blue);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

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

.gradient-text-line2 {
    background:
        linear-gradient(
            90deg,
            #B8860B 0%,
            #D4A017 50%,
            #DEAA43 100%
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.gradient-text {
    background:
        linear-gradient(
            90deg,
            var(--color-dark-blue) 0%,
            var(--color-dark-blue) 45%,
            #B8860B 55%,
            #D4A017 75%,
            #DEAA43 100%
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-badge {
    background:
        linear-gradient(
            90deg,
            var(--color-dark-blue) 0%,
            var(--color-dark-blue) 58%,
            #B8860B 62%,
            #D4A017 80%,
            #DEAA43 100%
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.gradient-text-platform {
    background:
        linear-gradient(
            90deg,
            var(--color-dark-blue) 0%,
            var(--color-dark-blue) 68%,
            #B8860B 72%,
            #D4A017 85%,
            #DEAA43 100%
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.gradient-text-policy {
    background:
        linear-gradient(
            90deg,
            var(--color-dark-blue) 0%,
            var(--color-dark-blue) 58%,
            #B8860B 62%,
            #D4A017 80%,
            #DEAA43 100%
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.gradient-shine {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.gradient-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 15%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shineEffect 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes shineEffect {
    0%, 100% {
        left: -20%;
    }
    50% {
        left: 120%;
    }
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0e4d5e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

/* OPTION 1: Dark Blue Glassmorphism - uncomment to use */
/*
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.stat {
    text-align: center;
    padding: 20px 12px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.7) 100%);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.3);
    box-shadow: 0 8px 32px rgba(10, 37, 64, 0.3);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--color-dark-blue) 0%, #B8860B 50%, #D4A017 75%, #DEAA43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-height: 2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    display: block;
    line-height: 1.3;
}
*/

/* OPTION 2: Gradient Cards - uncomment to use */
/*
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.stat {
    text-align: center;
    padding: 20px 12px;
    background: linear-gradient(145deg, var(--color-dark-blue) 0%, #0d3a5c 50%, var(--color-teal-dark) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.2);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-teal-light) 0%, var(--color-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-height: 2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    display: block;
    line-height: 1.3;
}
*/

/* OPTION 3: Single Dark Banner - uncomment to use */
/*
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-top: 16px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, #0a3048 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 128, 0.2);
    box-shadow: 0 12px 40px rgba(10, 37, 64, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 128, 0.5), transparent);
}

.stat {
    text-align: center;
    padding: 8px;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(0, 128, 128, 0.4), transparent);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-teal-light);
    line-height: 1;
    min-height: 2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    display: block;
    line-height: 1.3;
}
*/

/* OPTION 4: Frosted Dark Glass */
/*
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.75) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 128, 0.25);
    box-shadow: 0 8px 32px rgba(10, 37, 64, 0.4), 0 0 60px rgba(0, 128, 128, 0.1);
}

.stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-teal-light);
    line-height: 1;
    min-height: 2rem;
    text-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    display: block;
    line-height: 1.3;
}
*/

/* OPTION 5: Light Frosted Glass with Teal Accents */
/*
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 16px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 248, 248, 0.9) 100%);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 128, 0.2);
    box-shadow: 0 8px 32px rgba(10, 37, 64, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat {
    text-align: center;
    padding: 16px 8px;
    background: linear-gradient(145deg, rgba(10, 37, 64, 0.04) 0%, rgba(0, 128, 128, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 128, 0.15);
    transition: all 0.3s ease;
}

.stat:hover {
    background: linear-gradient(145deg, rgba(10, 37, 64, 0.08) 0%, rgba(0, 128, 128, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-height: 2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-dark-blue);
    opacity: 0.8;
    margin-top: 8px;
    display: block;
    line-height: 1.3;
}
*/

/* OPTION 6: Teal Gradient Banner with Glow (ACTIVE) */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.15) 0%, rgba(10, 37, 64, 0.25) 100%);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(0, 128, 128, 0.3);
    box-shadow:
        0 12px 40px rgba(10, 37, 64, 0.2),
        0 0 80px rgba(0, 128, 128, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 128, 128, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 128, 128, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.15), 0 0 20px rgba(0, 128, 128, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-blue) 30%, #CC7722 60%, #D4A017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-height: 2rem;
    min-width: 70px;
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-dark-blue);
    margin-top: 10px;
    display: block;
    line-height: 1.3;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-300);
}

/* Hero Visual / Video Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-showcase {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.video-frame {
    background: linear-gradient(145deg, var(--color-dark-blue) 0%, #0d3a5c 100%);
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(10, 37, 64, 0.4),
        0 0 80px rgba(0, 128, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: floatVideo 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 128, 128, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Hero Logo Showcase */
.logo-showcase {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.logo-frame {
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 20px;
}

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

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 100%;
    max-width: 750px;
    height: auto;
}

/* Logo Build Animation - Tetris Block Reveal */
.logo-build-wrapper {
    position: relative;
    display: inline-block;
}

.logo-build-wrapper .hero-logo-img {
    opacity: 0;
    animation: logoFadeIn 2.5s ease-out 0.3s forwards;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Tetris Overlay Grid - blocks fade out to reveal logo */
.tetris-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    pointer-events: none;
}

/* Hide the tetris overlay - we'll fade in the logo instead */
.tetris-overlay {
    display: none;
}

/* Staggered delays for smooth Tetris-like reveal - scattered pattern */
.tetris-block.b1  { animation-delay: 0.1s; }
.tetris-block.b2  { animation-delay: 0.4s; }
.tetris-block.b3  { animation-delay: 0.2s; }
.tetris-block.b4  { animation-delay: 0.6s; }
.tetris-block.b5  { animation-delay: 0.3s; }
.tetris-block.b6  { animation-delay: 0.8s; }
.tetris-block.b7  { animation-delay: 0.5s; }
.tetris-block.b8  { animation-delay: 0.9s; }

.tetris-block.b9  { animation-delay: 0.3s; }
.tetris-block.b10 { animation-delay: 0.5s; }
.tetris-block.b11 { animation-delay: 0.7s; }
.tetris-block.b12 { animation-delay: 0.4s; }
.tetris-block.b13 { animation-delay: 0.9s; }
.tetris-block.b14 { animation-delay: 0.6s; }
.tetris-block.b15 { animation-delay: 1.0s; }
.tetris-block.b16 { animation-delay: 0.7s; }

.tetris-block.b17 { animation-delay: 0.5s; }
.tetris-block.b18 { animation-delay: 0.8s; }
.tetris-block.b19 { animation-delay: 0.6s; }
.tetris-block.b20 { animation-delay: 1.1s; }
.tetris-block.b21 { animation-delay: 0.7s; }
.tetris-block.b22 { animation-delay: 1.2s; }
.tetris-block.b23 { animation-delay: 0.9s; }
.tetris-block.b24 { animation-delay: 1.3s; }

.tetris-block.b25 { animation-delay: 0.8s; }
.tetris-block.b26 { animation-delay: 1.0s; }
.tetris-block.b27 { animation-delay: 1.2s; }
.tetris-block.b28 { animation-delay: 0.9s; }
.tetris-block.b29 { animation-delay: 1.4s; }
.tetris-block.b30 { animation-delay: 1.1s; }
.tetris-block.b31 { animation-delay: 1.5s; }
.tetris-block.b32 { animation-delay: 1.2s; }

.tetris-block.b33 { animation-delay: 1.0s; }
.tetris-block.b34 { animation-delay: 1.3s; }
.tetris-block.b35 { animation-delay: 1.1s; }
.tetris-block.b36 { animation-delay: 1.6s; }
.tetris-block.b37 { animation-delay: 1.2s; }
.tetris-block.b38 { animation-delay: 1.7s; }
.tetris-block.b39 { animation-delay: 1.4s; }
.tetris-block.b40 { animation-delay: 1.8s; }

.tetris-block.b41 { animation-delay: 1.3s; }
.tetris-block.b42 { animation-delay: 1.5s; }
.tetris-block.b43 { animation-delay: 1.7s; }
.tetris-block.b44 { animation-delay: 1.4s; }
.tetris-block.b45 { animation-delay: 1.9s; }
.tetris-block.b46 { animation-delay: 1.6s; }
.tetris-block.b47 { animation-delay: 2.0s; }
.tetris-block.b48 { animation-delay: 2.1s; }

/* Shimmer Effect */
.logo-shimmer {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }
    50%, 100% {
        left: 150%;
    }
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.logo-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    animation: floatDot 3s ease-in-out infinite;
}

.logo-dot.d1 {
    background: var(--color-teal);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.logo-dot.d2 {
    background: var(--color-dark-blue);
    top: 15%;
    right: 25%;
    animation-delay: 0.5s;
}

.logo-dot.d3 {
    background: var(--color-teal);
    top: 30%;
    left: 10%;
    animation-delay: 1s;
}

.logo-dot.d4 {
    background: var(--color-teal);
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.logo-dot.d5 {
    background: var(--color-dark-blue);
    bottom: 20%;
    left: 25%;
    animation-delay: 2s;
}

.logo-dot.d6 {
    background: var(--color-teal);
    top: 50%;
    right: 10%;
    animation-delay: 2.5s;
}

@keyframes floatDot {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-15px) scale(1);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 128, 128, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: logoGlowPulse 4s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.video-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.video-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.video-dots span:hover {
    transform: scale(1.2);
}

.video-dots span:nth-child(1) { background: #ff5f56; }
.video-dots span:nth-child(2) { background: #ffbd2e; }
.video-dots span:nth-child(3) { background: #27ca40; }

.video-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 37, 64, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 128, 128, 0.5);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 128, 128, 0.6);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

/* Legacy Dashboard Preview styles (kept for reference) */
.dashboard-preview {
    background: var(--color-dark-blue);
    border-radius: 16px;
    box-shadow: var(--shadow-xl), var(--shadow-glow-teal);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    display: none;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #ff5f56; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #27ca40; }

.dashboard-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.dashboard-content {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition-base);
    animation: cardFloat 4s ease-in-out infinite;
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 0.5s; }
.card-3 { animation-delay: 1s; }

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

.dashboard-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card-icon.blue {
    background: rgba(10, 37, 64, 0.5);
    color: var(--color-teal);
}

.card-icon.teal {
    background: rgba(0, 206, 209, 0.2);
    color: var(--color-teal);
}

.card-icon.red {
    background: rgba(212, 160, 23, 0.2);
    color: #D4A017;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
}

.card-trend {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

.card-trend.up {
    background: rgba(0, 206, 209, 0.2);
    color: var(--color-teal);
}

.card-trend.down {
    background: rgba(212, 160, 23, 0.2);
    color: #D4A017;
}

.dashboard-graph {
    grid-column: span 3;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin-top: 8px;
}

/* Chat Preview */
.chat-preview {
    grid-column: span 3;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 16px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    animation: fadeInUp 0.5s ease-out forwards;
}

.chat-message.user {
    background: rgba(0, 206, 209, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

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

.graph-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    gap: 12px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-teal-dark), var(--color-teal));
    border-radius: 4px 4px 0 0;
    transition: all var(--transition-base);
    opacity: 0.6;
}

.bar.active {
    opacity: 1;
    box-shadow: var(--shadow-glow-teal);
}

.bar:hover {
    opacity: 1;
    transform: scaleY(1.05);
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* Customer Logos Banner */
.customers {
    padding: 50px 0;
    background: var(--color-white);
    overflow: hidden;
}

.customers-label {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.logo-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-white) 0%, transparent 100%);
}

.logo-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-white) 0%, transparent 100%);
}

.logo-scroll {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
}

.logo-scroll:hover {
    animation-play-state: paused;
}

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

.logo-item {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Invert the white Mancos logo */
.logo-item.logo-dark img {
    filter: invert(20%) sepia(10%) saturate(500%) hue-rotate(180deg) brightness(0.3);
}

/* Recognition Section */
.recognition {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
}

.recognition-header {
    text-align: center;
    margin-bottom: 40px;
}

.recognition-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-top: 8px;
}

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

.award-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-teal);
}

.award-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.award-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.award-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-blue) 100%);
    border-radius: 50%;
    color: var(--color-white);
}

.award-badge svg {
    width: 32px;
    height: 32px;
}

.award-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 8px;
}

.award-card p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .recognition {
        padding: 40px 0;
    }
}

/* Product Showcase Section - Modern UI Style */
.product-showcase {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Solutions Section Animated Background - Hidden to use page-level animated-bg */
.solutions-bg {
    display: none;
}

.solutions-orb {
    display: none;
}

.solutions-orb.orb-teal {
    width: 700px;
    height: 700px;
    background: var(--color-teal);
    top: -15%;
    right: -10%;
    animation: floatOrb1 25s ease-in-out infinite;
}

.solutions-orb.orb-blue {
    width: 600px;
    height: 600px;
    background: var(--color-dark-blue);
    bottom: -10%;
    left: -15%;
    animation: floatOrb2 30s ease-in-out infinite;
}

.solutions-orb.orb-red {
    width: 600px;
    height: 600px;
    background: #CC7722;
    top: 30%;
    right: 20%;
    opacity: 0.3;
    animation: floatOrb3 20s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -30px); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

/* Rising Particles */
.solutions-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sol-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-teal);
    border-radius: 50%;
    opacity: 0.4;
}

.sol-particle.sp1 {
    left: 10%;
    animation: riseParticle 15s ease-in-out infinite;
    animation-delay: 0s;
}

.sol-particle.sp2 {
    left: 25%;
    background: var(--color-dark-blue);
    animation: riseParticle 18s ease-in-out infinite;
    animation-delay: 2s;
}

.sol-particle.sp3 {
    left: 40%;
    animation: riseParticle 12s ease-in-out infinite;
    animation-delay: 4s;
}

.sol-particle.sp4 {
    left: 55%;
    background: #D4A017;
    animation: riseParticle 20s ease-in-out infinite;
    animation-delay: 1s;
}

.sol-particle.sp5 {
    left: 70%;
    animation: riseParticle 16s ease-in-out infinite;
    animation-delay: 3s;
}

.sol-particle.sp6 {
    left: 85%;
    background: var(--color-dark-blue);
    animation: riseParticle 14s ease-in-out infinite;
    animation-delay: 5s;
}

.sol-particle.sp7 {
    left: 15%;
    background: #D4A017;
    animation: riseParticle 17s ease-in-out infinite;
    animation-delay: 7s;
}

.sol-particle.sp8 {
    left: 60%;
    animation: riseParticle 19s ease-in-out infinite;
    animation-delay: 6s;
}

@keyframes riseParticle {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(20px);
    }
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 206, 209, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 206, 209, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Rotating rings for product showcase */
.showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    opacity: 0.15;
    pointer-events: none;
}

.showcase-ring.ring-1 {
    width: 500px;
    height: 500px;
    border-color: var(--color-teal);
    top: -100px;
    right: -150px;
    animation: floatRing1 20s ease-in-out infinite;
}

.showcase-ring.ring-2 {
    width: 350px;
    height: 350px;
    border-color: var(--color-dark-blue);
    bottom: -50px;
    left: -100px;
    animation: floatRing2 25s ease-in-out infinite;
}

.showcase-ring.ring-3 {
    width: 250px;
    height: 250px;
    border-color: #D4A017;
    top: 40%;
    left: 10%;
    animation: floatRing3 18s ease-in-out infinite;
}

@keyframes floatRing1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, 40px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -30px) rotate(270deg);
    }
}

@keyframes floatRing2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, -30px) rotate(-90deg);
    }
    50% {
        transform: translate(60px, 20px) rotate(-180deg);
    }
    75% {
        transform: translate(30px, 40px) rotate(-270deg);
    }
}

@keyframes floatRing3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, 30px) rotate(120deg);
    }
    66% {
        transform: translate(20px, -40px) rotate(240deg);
    }
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-family);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--color-white);
    color: var(--color-gray-600);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tab-btn:hover {
    background: var(--color-gray-100);
    color: var(--color-dark-blue);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.4);
}

/* Sub-tabs for nested content */
.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.sub-tab-btn {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-family);
    border: 2px solid var(--color-dark-blue);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    background: rgba(10, 37, 64, 0.05);
    color: var(--color-dark-blue);
}

.sub-tab-btn:hover {
    border-color: var(--color-teal);
    background: rgba(0, 206, 209, 0.1);
    color: var(--color-teal);
}

.sub-tab-btn.active {
    background: #B8860B;
    border-color: transparent;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.sub-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.sub-tab-content.active {
    display: block;
}

.showcase-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.showcase-content.active {
    display: block;
}

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

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

.showcase-grid.reverse {
    grid-template-columns: 1.4fr 1fr;
}

.showcase-grid.reverse .showcase-text {
    order: 2;
}

.showcase-grid.reverse .showcase-visual {
    order: 1;
}

.showcase-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 16px;
}

.showcase-text > p {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-features li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.95rem;
    color: var(--color-gray-700);
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: 10px;
    border-left: 3px solid var(--color-teal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.showcase-features li strong {
    display: block;
    color: var(--color-dark-blue);
    font-size: 1rem;
    margin-bottom: 2px;
}

.showcase-features li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Sub-features nested list */
.showcase-sub-features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.showcase-sub-features li {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    padding: 4px 0 4px 16px;
    background: transparent;
    border-left: 2px solid var(--color-gray-300);
    border-radius: 0;
    box-shadow: none;
}

.showcase-sub-features li:hover {
    transform: none;
    box-shadow: none;
    border-left-color: var(--color-teal);
    color: var(--color-gray-700);
}

/* Device Frame - Modern Browser Mockup */
.device-frame {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: transform var(--transition-base);
}

.device-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.device-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.device-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.device-dot:nth-child(1) { background: #fca5a5; }
.device-dot:nth-child(2) { background: #fcd34d; }
.device-dot:nth-child(3) { background: #6ee7b7; }

.device-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Premium Device Frame */
.device-frame.premium {
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 20px;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
}

.device-frame.premium:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.device-frame.premium .device-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
}

.device-frame.premium .device-dot {
    width: 14px;
    height: 14px;
}

.device-frame.premium .device-dot.red { background: #ff5f56; }
.device-frame.premium .device-dot.yellow { background: #ffbd2e; }
.device-frame.premium .device-dot.green { background: #27ca40; }

.device-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 12px;
    font-weight: 500;
}

.device-screen {
    position: relative;
    overflow: hidden;
}

.device-screen img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.device-frame.premium:hover .device-screen img {
    transform: scale(1.02);
}

/* Image Gallery - Main + Thumbnails */
.device-frame:has(.image-carousel),
.device-frame.premium:has(.image-carousel) {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.device-frame:has(.image-carousel) .device-screen,
.device-frame.premium:has(.image-carousel) .device-screen {
    background: transparent !important;
    padding: 0 !important;
}

.showcase-visual:has(.image-carousel) {
    background: transparent !important;
}

.image-carousel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
}

/* Main large image */
.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    cursor: zoom-in;
}

/* Showcase image without device frame */
.showcase-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Single image display */
.single-image-display {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-single-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.showcase-single-img:hover {
    transform: scale(1.02);
}

/* Showcase video */
.showcase-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: zoom-in;
}

/* Lightbox overlay */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img,
.lightbox video {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

#lightbox-video {
    display: none;
}

.lightbox.video-mode #lightbox-img {
    display: none;
}

.lightbox.video-mode #lightbox-video {
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Thumbnails container */
.thumbnails {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    background: transparent;
}

.thumb {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    max-width: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.9;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.thumb:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thumb.active {
    opacity: 1;
    border-color: var(--color-teal);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.device-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.device-glow.teal {
    background: var(--color-teal);
}

.device-glow.blue {
    background: var(--color-dark-blue);
}

.device-glow.red {
    background: #D4A017;
}

.device-frame.premium:hover .device-glow {
    opacity: 0.6;
}

.device-frame.premium.no-header {
    border-radius: 16px;
}

.device-frame.premium.no-header .device-screen {
    border-radius: 16px;
}

.device-frame.premium.no-header .device-screen img {
    border-radius: 16px;
}

/* Showcase Badge */
.showcase-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.1) 0%, rgba(10, 37, 64, 0.1) 100%);
    border: 1px solid rgba(0, 128, 128, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-teal-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Showcase Stats */
.showcase-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(10, 37, 64, 0.1);
}

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

.showcase-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-stat .stat-desc {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* Responsive for showcase */
@media (max-width: 1024px) {
    .showcase-grid,
    .showcase-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-grid.reverse .showcase-text,
    .showcase-grid.reverse .showcase-visual {
        order: unset;
    }

    .showcase-text {
        text-align: center;
    }

    .showcase-features li {
        justify-content: center;
    }

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

    .device-frame {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .device-frame.premium {
        transform: none;
    }

    .device-frame:hover,
    .device-frame.premium:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 600px) {
    .showcase-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 280px;
    }

    .showcase-text h3 {
        font-size: 1.5rem;
    }
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 206, 209, 0.1);
    color: var(--color-teal-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Solutions Section */
.solutions {
    background: var(--color-gray-100);
}

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

.solution-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-200);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-dark-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.solution-card.featured {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    border: none;
}

.solution-card.featured::before {
    background: linear-gradient(90deg, var(--color-teal), #D4A017);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 206, 209, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-teal);
}

.solution-card.featured .solution-icon {
    background: rgba(0, 206, 209, 0.2);
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark-blue);
}

.solution-card.featured h3 {
    color: var(--color-white);
}

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

.solution-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.solution-link {
    font-weight: 600;
    color: var(--color-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}

.solution-link:hover {
    gap: 8px;
}

/* Features Section */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-content .section-tag,
.features-content .section-title,
.features-content .section-subtitle {
    text-align: left;
}

.features-content .section-subtitle {
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-list li {
    display: flex;
    gap: 16px;
}

.feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.features-list li strong {
    display: block;
    color: var(--color-dark-blue);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.features-list li p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Feature Showcase Animation */
.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.isometric-city {
    width: 100%;
    max-width: 500px;
}

.isometric-city svg {
    width: 100%;
    height: auto;
}

/* Data point pulse animation */
.isometric-city .data-point {
    animation: pulse 2s ease-in-out infinite;
}

.isometric-city .pulse-1 { animation-delay: 0s; }
.isometric-city .pulse-2 { animation-delay: 0.5s; }
.isometric-city .pulse-3 { animation-delay: 1s; }

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

/* Connection lines animation */
.isometric-city .connection-lines line {
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -24; }
}

/* Simulation buildings - appear/disappear */
.isometric-city .sim-building {
    animation: simAppear 4s ease-in-out infinite;
}

.isometric-city .sim-a { animation-delay: 0s; }
.isometric-city .sim-b { animation-delay: 0.8s; }
.isometric-city .sim-c { animation-delay: 1.6s; }
.isometric-city .sim-d { animation-delay: 2.4s; }
.isometric-city .sim-e { animation-delay: 3.2s; }
.isometric-city .sim-f { animation-delay: 4s; }

@keyframes simAppear {
    0%, 10% { opacity: 0; transform: translateY(10px) scale(0.9); }
    20%, 80% { opacity: 1; transform: translateY(0) scale(1); }
    90%, 100% { opacity: 0; transform: translateY(-5px) scale(0.95); }
}

/* Labels appear with buildings */
.isometric-city .label-appear {
    animation: labelFade 4s ease-in-out infinite;
}

.isometric-city .label-1 { animation-delay: 0.3s; }
.isometric-city .label-2 { animation-delay: 1.1s; }
.isometric-city .label-3 { animation-delay: 1.9s; }
.isometric-city .label-4 { animation-delay: 2.7s; }
.isometric-city .label-5 { animation-delay: 3.5s; }
.isometric-city .label-6 { animation-delay: 4.3s; }

@keyframes labelFade {
    0%, 15% { opacity: 0; transform: translateY(5px); }
    25%, 75% { opacity: 1; transform: translateY(0); }
    85%, 100% { opacity: 0; transform: translateY(-3px); }
}

/* Simulation status label pulse */
.isometric-city .sim-label {
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Static buildings subtle hover */
.isometric-city .building-static {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.isometric-city:hover .building-static {
    filter: brightness(1.05);
}

/* Park feature animations */
.isometric-city .park-feature {
    animation: parkFeatureAppear 5s ease-in-out infinite;
}

.isometric-city .park-court { animation-delay: 0s; }
.isometric-city .park-hoop { animation-delay: 1s; }
.isometric-city .park-playground { animation-delay: 2s; }
.isometric-city .park-bench { animation-delay: 3s; }
.isometric-city .park-fountain { animation-delay: 4s; }
.isometric-city .park-dog { animation-delay: 5s; }

@keyframes parkFeatureAppear {
    0%, 8% { opacity: 0; transform: scale(0.8); }
    15%, 85% { opacity: 1; transform: scale(1); }
    92%, 100% { opacity: 0; transform: scale(0.9); }
}

.feature-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.showcase-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 206, 209, 0.2);
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 350px;
    height: 350px;
    animation: ringPulse 4s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation: ringPulse 4s ease-in-out infinite 1s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.showcase-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), var(--shadow-glow-teal);
    animation: centerPulse 3s ease-in-out infinite;
}

.showcase-center svg {
    width: 64px;
    height: 64px;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 206, 209, 0.3); }
    50% { box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 206, 209, 0.5); }
}

.showcase-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbitItemRotate 20s linear infinite;
}

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

.orbit-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-dark-blue);
}

.item-1 { top: -25px; left: 50%; transform: translateX(-50%); }
.item-2 { top: 50%; right: -25px; transform: translateY(-50%); }
.item-3 { bottom: -25px; left: 50%; transform: translateX(-50%); }
.item-4 { top: 50%; left: -25px; transform: translateY(-50%); }

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 100%);
    padding: 80px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.quote-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    color: var(--color-teal);
    opacity: 0.5;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-card blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 40px;
    font-style: italic;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal) 0%, #D4A017 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* About Section */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.value-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.value-icon.blue { background: var(--color-dark-blue); }
.value-icon.teal { background: var(--color-teal); }
.value-icon.red { background: #D4A017; }

.about-visual {
    display: flex;
    justify-content: center;
}

.about-video {
    width: 100%;
    max-width: 600px;
    min-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Municipal Building Graphic */
.municipal-building-graphic {
    width: 100%;
    max-width: 550px;
}

.municipal-building-graphic svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Data points pulse */
.municipal-building-graphic .mb-point {
    animation: mbPointPulse 3s ease-in-out infinite;
}

.municipal-building-graphic .mb-p1 { animation-delay: 0s; }
.municipal-building-graphic .mb-p2 { animation-delay: 0.3s; }
.municipal-building-graphic .mb-p3 { animation-delay: 0.6s; }
.municipal-building-graphic .mb-p4 { animation-delay: 0.9s; }
.municipal-building-graphic .mb-p5 { animation-delay: 1.2s; }
.municipal-building-graphic .mb-p6 { animation-delay: 1.5s; }
.municipal-building-graphic .mb-p7 { animation-delay: 1.8s; }
.municipal-building-graphic .mb-p8 { animation-delay: 2.1s; }
.municipal-building-graphic .mb-p9 { animation-delay: 2.4s; }

@keyframes mbPointPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

/* Data lines draw animation */
.municipal-building-graphic .mb-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: mbLineDraw 4s ease-in-out infinite;
}

.municipal-building-graphic .mb-l1 { animation-delay: 0s; }
.municipal-building-graphic .mb-l2 { animation-delay: 0.3s; }
.municipal-building-graphic .mb-l3 { animation-delay: 0.6s; }
.municipal-building-graphic .mb-l4 { animation-delay: 0.9s; }
.municipal-building-graphic .mb-l5 { animation-delay: 1.2s; }
.municipal-building-graphic .mb-l6 { animation-delay: 1.5s; }
.municipal-building-graphic .mb-l7 { animation-delay: 1.8s; }
.municipal-building-graphic .mb-l8 { animation-delay: 2.1s; }
.municipal-building-graphic .mb-l9 { animation-delay: 2.4s; }
.municipal-building-graphic .mb-l10 { animation-delay: 0.15s; }
.municipal-building-graphic .mb-l11 { animation-delay: 0.45s; }
.municipal-building-graphic .mb-l12 { animation-delay: 0.75s; }
.municipal-building-graphic .mb-l13 { animation-delay: 1.05s; }

@keyframes mbLineDraw {
    0% { stroke-dashoffset: 200; opacity: 0; }
    20% { opacity: 0.8; }
    50% { stroke-dashoffset: 0; opacity: 0.8; }
    80% { stroke-dashoffset: 0; opacity: 0.8; }
    100% { stroke-dashoffset: -200; opacity: 0; }
}

/* Labels fade in/out */
.municipal-building-graphic .mb-label {
    opacity: 0;
    animation: mbLabelShow 6s ease-in-out infinite;
}

.municipal-building-graphic .mb-lb1 { animation-delay: 0s; }
.municipal-building-graphic .mb-lb2 { animation-delay: 1s; }
.municipal-building-graphic .mb-lb3 { animation-delay: 2s; }
.municipal-building-graphic .mb-lb4 { animation-delay: 3s; }
.municipal-building-graphic .mb-lb5 { animation-delay: 4s; }
.municipal-building-graphic .mb-lb6 { animation-delay: 5s; }

@keyframes mbLabelShow {
    0%, 10% { opacity: 0; transform: translateY(5px); }
    20%, 70% { opacity: 1; transform: translateY(0); }
    80%, 100% { opacity: 0; transform: translateY(-3px); }
}

/* Pulsing rings */
.municipal-building-graphic .mb-pulse {
    opacity: 0;
    animation: mbPulseRing 4s ease-out infinite;
}

.municipal-building-graphic .mb-pulse1 { animation-delay: 0s; }
.municipal-building-graphic .mb-pulse2 { animation-delay: 1.3s; }
.municipal-building-graphic .mb-pulse3 { animation-delay: 2.6s; }

@keyframes mbPulseRing {
    0% { opacity: 0.8; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(1.2); }
}

/* Building windows glow */
.municipal-building-graphic .municipal-building rect[fill="#1a7f9e"] {
    animation: mbWindowGlow 2s ease-in-out infinite alternate;
}

@keyframes mbWindowGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

/* About Us Isometric Cityscape - Flyover Animation */
.about-cityscape {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-cityscape svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Flyover scene - continuous scrolling effect */
.about-cityscape.flyover .flyover-scene {
    animation: flyoverMove 20s linear infinite;
    transform-origin: center center;
}

@keyframes flyoverMove {
    0% { transform: translateY(-30px) translateX(20px) scale(1.05); }
    25% { transform: translateY(-15px) translateX(10px) scale(1.02); }
    50% { transform: translateY(0px) translateX(0px) scale(1); }
    75% { transform: translateY(15px) translateX(-10px) scale(0.98); }
    100% { transform: translateY(-30px) translateX(20px) scale(1.05); }
}

/* Layer parallax - different speeds for depth */
.about-cityscape.flyover .fly-layer-1 {
    animation: flyLayer1 20s linear infinite;
}

.about-cityscape.flyover .fly-layer-2 {
    animation: flyLayer2 20s linear infinite;
}

.about-cityscape.flyover .fly-layer-3 {
    animation: flyLayer3 20s linear infinite;
}

@keyframes flyLayer1 {
    0% { transform: translateY(-8px) translateX(5px); }
    25% { transform: translateY(-4px) translateX(2px); }
    50% { transform: translateY(0px) translateX(0px); }
    75% { transform: translateY(4px) translateX(-2px); }
    100% { transform: translateY(-8px) translateX(5px); }
}

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

@keyframes flyLayer3 {
    0% { transform: translateY(-25px) translateX(18px); }
    25% { transform: translateY(-12px) translateX(9px); }
    50% { transform: translateY(0px) translateX(0px); }
    75% { transform: translateY(12px) translateX(-9px); }
    100% { transform: translateY(-25px) translateX(18px); }
}

/* Simulation buildings pulse */
.about-cityscape.flyover .sim-fly {
    animation: simFlyPulse 4s ease-in-out infinite;
}

.about-cityscape.flyover .fly-layer-1 .sim-fly:nth-child(2) { animation-delay: 0s; }
.about-cityscape.flyover .fly-layer-1 .sim-fly:nth-child(5) { animation-delay: 0.8s; }
.about-cityscape.flyover .fly-layer-1 .sim-fly:nth-child(8) { animation-delay: 1.6s; }
.about-cityscape.flyover .fly-layer-2 .sim-fly:nth-child(2) { animation-delay: 2.4s; }
.about-cityscape.flyover .fly-layer-2 .sim-fly:nth-child(5) { animation-delay: 3.2s; }
.about-cityscape.flyover .fly-layer-3 .sim-fly:nth-child(2) { animation-delay: 0.4s; }
.about-cityscape.flyover .fly-layer-3 .sim-fly:nth-child(5) { animation-delay: 1.2s; }

@keyframes simFlyPulse {
    0%, 15% { opacity: 0.3; transform: scale(0.95); }
    30%, 70% { opacity: 1; transform: scale(1); }
    85%, 100% { opacity: 0.3; transform: scale(0.95); }
}

/* Data points - appear as you "fly over" */
.about-cityscape.flyover .fly-point {
    opacity: 0;
    animation: flyPointAppear 5s ease-in-out infinite;
}

.about-cityscape.flyover .fp-1 { animation-delay: 0s; }
.about-cityscape.flyover .fp-2 { animation-delay: 0.6s; }
.about-cityscape.flyover .fp-3 { animation-delay: 1.2s; }
.about-cityscape.flyover .fp-4 { animation-delay: 1.8s; }
.about-cityscape.flyover .fp-5 { animation-delay: 2.4s; }
.about-cityscape.flyover .fp-6 { animation-delay: 3s; }
.about-cityscape.flyover .fp-7 { animation-delay: 3.6s; }
.about-cityscape.flyover .fp-8 { animation-delay: 4.2s; }

@keyframes flyPointAppear {
    0%, 10% { opacity: 0; transform: scale(0); }
    20% { opacity: 1; transform: scale(1.3); }
    30%, 60% { opacity: 0.9; transform: scale(1); }
    70% { opacity: 1; transform: scale(1.2); }
    80%, 100% { opacity: 0; transform: scale(0.5); }
}

/* Data lines - draw connections */
.about-cityscape.flyover .fly-line {
    opacity: 0;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: flyLineDraw 6s ease-in-out infinite;
}

.about-cityscape.flyover .fl-1 { animation-delay: 0.3s; }
.about-cityscape.flyover .fl-2 { animation-delay: 0.9s; }
.about-cityscape.flyover .fl-3 { animation-delay: 1.5s; }
.about-cityscape.flyover .fl-4 { animation-delay: 2.1s; }
.about-cityscape.flyover .fl-5 { animation-delay: 2.7s; }

@keyframes flyLineDraw {
    0%, 10% { opacity: 0; stroke-dashoffset: 300; }
    20% { opacity: 0.7; }
    50% { stroke-dashoffset: 0; opacity: 0.7; }
    70% { stroke-dashoffset: 0; opacity: 0.5; }
    90%, 100% { opacity: 0; stroke-dashoffset: -300; }
}

/* Zone labels - fade in as you pass over */
.about-cityscape.flyover .fly-label {
    opacity: 0;
    animation: flyLabelShow 10s ease-in-out infinite;
}

.about-cityscape.flyover .flb-1 { animation-delay: 0s; }
.about-cityscape.flyover .flb-2 { animation-delay: 3.3s; }
.about-cityscape.flyover .flb-3 { animation-delay: 6.6s; }

@keyframes flyLabelShow {
    0%, 5% { opacity: 0; transform: translateY(8px); }
    12%, 25% { opacity: 1; transform: translateY(0); }
    32%, 100% { opacity: 0; transform: translateY(-5px); }
}

/* Park fountain effect */
.about-cityscape.flyover .fly-park ellipse:last-child {
    animation: parkFountainPulse 2.5s ease-in-out infinite;
}

@keyframes parkFountainPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.15); }
}

.about-image {
    width: 100%;
    max-width: 400px;
}

.image-placeholder {
    background: var(--color-gray-100);
    border-radius: 16px;
    padding: 40px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-dark-blue) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--color-white);
    top: -200px;
    right: -100px;
    animation: float1 15s ease-in-out infinite;
}

.cta-circle-2 {
    width: 400px;
    height: 400px;
    background: #D4A017;
    bottom: -150px;
    left: -100px;
    animation: float2 18s ease-in-out infinite;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 10px;
    background: #D4A017;
    border-radius: 4px 20px 4px 20px;
    transform: skewX(-5deg) rotate(-1deg);
    opacity: 0.9;
    z-index: -1;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* CTA Layout with Form */
.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-layout .cta-content {
    text-align: left;
    margin: 0;
}

.cta-layout .cta-buttons {
    justify-content: flex-start;
}

/* Contact Form Styles */
.contact-form-container {
    position: relative;
}

.airtable-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.airtable-form-wrapper iframe {
    border-radius: 12px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    color: var(--color-dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(10, 37, 64, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-white);
    color: var(--color-dark-blue);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(10, 37, 64, 0.4);
}

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

.btn-gold {
    background: linear-gradient(135deg, #B8860B 0%, #D4A017 100%);
    color: var(--color-white);
    border: none;
    font-weight: 600;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #D4A017 0%, #DEAA43 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

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

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.form-status.loading {
    display: block;
    background: rgba(184, 134, 11, 0.15);
    color: #B8860B;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

/* Responsive form layout */
@media (max-width: 900px) {
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-layout .cta-content {
        text-align: center;
    }

    .cta-layout .cta-buttons {
        justify-content: center;
    }
}

.cta-note {
    margin-top: 24px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--color-dark-blue);
    color: var(--color-white);
    padding: 80px 0 40px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.7;
}

.footer-brand .logo {
    color: var(--color-white);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .dashboard-preview {
        max-width: 400px;
    }

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

    .features-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-visual {
        order: -1;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

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

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .dashboard-graph {
        grid-column: span 1;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-showcase {
        width: 300px;
        height: 300px;
    }

    .showcase-orbit {
        width: 220px;
        height: 220px;
    }

    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 260px; height: 260px; }
    .ring-3 { width: 300px; height: 300px; }

    .testimonial-card blockquote {
        font-size: 1.2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .dashboard-preview {
        max-width: 100%;
    }

    .card-value {
        font-size: 1.2rem;
    }

    .solution-card {
        padding: 30px;
    }

    .about-values {
        flex-direction: column;
        gap: 16px;
    }
}
