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

html {
    scroll-behavior: smooth;
    background-color: #0a0a0a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Global Header Underglow Effect */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-header h1,
.section-header h2,
.section-header h3,
.service-card h3,
.program-card h3,
.feature-preview h3,
.tech-info h4,
.stat-number,
.nav-logo h2 {
    text-shadow: 
        0 0 10px rgba(220, 38, 38, 0.3),
        0 2px 4px rgba(220, 38, 38, 0.2),
        0 4px 8px rgba(220, 38, 38, 0.15),
        0 0 20px rgba(220, 38, 38, 0.1);
}

/* Stronger glow for main hero titles */
.hero-title,
h1 {
    text-shadow: 
        0 0 15px rgba(220, 38, 38, 0.4),
        0 3px 6px rgba(220, 38, 38, 0.25),
        0 6px 12px rgba(220, 38, 38, 0.2),
        0 0 30px rgba(220, 38, 38, 0.15);
}

/* Medium glow for section headers */
h2, .section-header h2 {
    text-shadow: 
        0 0 12px rgba(220, 38, 38, 0.35),
        0 2px 5px rgba(220, 38, 38, 0.22),
        0 5px 10px rgba(220, 38, 38, 0.18),
        0 0 25px rgba(220, 38, 38, 0.12);
}

/* Subtle glow for smaller headers and stats */
h3, h4, h5, h6, .stat-number {
    text-shadow: 
        0 0 8px rgba(220, 38, 38, 0.25),
        0 1px 3px rgba(220, 38, 38, 0.18),
        0 3px 6px rgba(220, 38, 38, 0.12),
        0 0 15px rgba(220, 38, 38, 0.08);
}

/* Special glow for navigation logo */
.nav-logo h2 {
    text-shadow: 
        0 0 10px rgba(220, 38, 38, 0.4),
        0 2px 4px rgba(220, 38, 38, 0.3),
        0 0 20px rgba(220, 38, 38, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000 !important;
    background: #000000 !important;
    z-index: 1002;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    height: auto;
    min-height: 60px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 5px; /* Further reduced from 10px to 5px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px; /* Ensure consistent height */
}

.nav-logo {
    margin-left: -40px; /* Move the entire logo section to the left */
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

/* Text Flip Animation for Navigation Logo */
.flip-container {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    margin-left: 0; /* Remove left margin for tighter positioning */
}

.flip-text {
    position: relative;
    display: inline-block;
    height: 1.2em;
    overflow: visible; /* Changed from hidden to visible to prevent cutoff */
    vertical-align: top;
    min-width: 160px; /* Increased width to ensure no cutoff */
    margin-left: 8px; /* Slight spacing between static word and flip text */
}

.flip-word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Faster transition */
    white-space: nowrap;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    color: #dc2626; /* Make flipping words red */
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.4); /* Add red glow to flipping words */
}

.flip-word.static {
    position: static;
    opacity: 1;
    transform: translateY(0);
    margin-right: 12px; /* Increased spacing */
    color: #fff; /* Keep static word white */
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3); /* Maintain existing glow */
}

.flip-word.active {
    opacity: 1;
    transform: translateY(0);
    color: #dc2626; /* Ensure active word is red */
}

.flip-word.exit {
    opacity: 0;
    transform: translateY(-100%);
    color: #dc2626; /* Ensure exiting word is red */
}

.ai-accent {
    color: #dc2626;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    display: inline-block;
}

.nav-link:hover {
    color: #dc2626;
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

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

.nav-link.active {
    color: #dc2626 !important;
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #e0e0e0, #dc2626);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation Styles - Adjust gap on medium screens */
@media screen and (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1003;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.99) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 2px solid rgba(220, 38, 38, 0.3);
        backdrop-filter: blur(20px);
        z-index: 1001;
        padding: 2rem 0;
        gap: 1.5rem;
        min-height: calc(100vh - 60px);
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem;
        display: block;
        margin: 0.5rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(220, 38, 38, 0.1);
        transform: translateX(10px);
    }

    .cta-button {
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0.6rem 20px;
    }
    
    /* Responsive plans hero */
    .plans-hero {
        min-height: 35vh;
        padding: 1.5rem 0;
    }
    
    .plans-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .plans-hero p {
        font-size: 1rem;
        max-width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .nav-logo {
        margin-left: -10px; /* Minimal left positioning on small screens */
    }
    
    .nav-container {
        padding: 0.5rem 3px; /* Further reduced from 8px to 3px */
    }
    
    /* Extra small plans hero */
    .plans-hero {
        min-height: 30vh;
        padding: 1rem 0;
    }
    
    .plans-hero h1 {
        font-size: 1.75rem;
    }
    
    .plans-hero p {
        font-size: 0.9rem;
        max-width: 320px;
    }
}

/* Galaxy Container for Hero Background */
.galaxy-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    /* Add subtle red tinting overlay for powerlifting theme */
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.05) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(220, 38, 38, 0.03) 100%);
}

.galaxy-enabled {
    position: relative;
    overflow: hidden;
    /* Enhanced background with subtle patterns for depth */
    background: radial-gradient(ellipse at center, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
}

.galaxy-enabled .hero-container {
    position: relative;
    z-index: 10;
    /* Add subtle backdrop for better text readability */
    backdrop-filter: blur(0.5px);
}

.galaxy-enabled .hero-content {
    /* Subtle glow effect for text over galaxy background */
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(220, 38, 38, 0.2);
}

/* Fallback for browsers without WebGL support */
.galaxy-enabled.webgl-fallback {
    background: radial-gradient(ellipse at 40% 60%, 
        rgba(220, 38, 38, 0.15) 0%, 
        rgba(139, 69, 19, 0.1) 25%, 
        rgba(0, 0, 0, 0.9) 70%, 
        rgba(0, 0, 0, 1) 100%),
    linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(0, 0, 0, 1) 100%);
    animation: galaxyFallbackPulse 8s ease-in-out infinite alternate;
}

@keyframes galaxyFallbackPulse {
    0% { 
        background-position: 0% 0%, 0% 0%;
        filter: brightness(1); 
    }
    100% { 
        background-position: 100% 100%, 100% 100%;
        filter: brightness(1.1); 
    }
}

/* Performance optimization for galaxy effect */
.galaxy-container canvas {
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight {
    color: #dc2626 !important;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    background: #e0e0e0;
    color: #0a0a0a;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(220, 38, 38, 0.3);
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.hero-video {
    display: block;
    transform: scale(1.01);
    transform-origin: center center;
    object-position: center -10%;
}

/* Hero media placeholder (used until a demo reel / product shot is added) */
.hero-placeholder {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 15px;
    border: 2px solid rgba(220, 38, 38, 0.35);
    background:
        radial-gradient(120% 120% at 50% 0%, rgba(220, 38, 38, 0.18), transparent 60%),
        linear-gradient(160deg, #1a1a1a, #0d0d0d);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(220, 38, 38, 0.08);
    color: rgba(255, 255, 255, 0.55);
}
.hero-placeholder svg { color: rgba(220, 38, 38, 0.8); }
.hero-placeholder span {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #666;
    color: #b0b0b0;
    font-style: italic;
}

/* Page Hero Sections */
.plans-hero,
.contact-hero,
.coming-soon-hero {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Smaller Plans Hero Section */
.plans-hero {
    min-height: 40vh;
    padding: 2rem 0;
}

/* Animated Grid Background */
.animated-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.animated-grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.10) 0%, 
        rgba(185, 28, 28, 0.06) 25%, 
        rgba(153, 27, 27, 0.03) 50%, 
        rgba(127, 29, 29, 0.04) 75%, 
        rgba(220, 38, 38, 0.08) 100%);
    z-index: 1;
}

.grid-container {
    position: relative;
    width: 180%;
    height: 180%;
    transform: translate(5%, -25%) skewX(-48deg) skewY(14deg) scale(0.9) rotate(0deg) translateZ(0);
    z-index: 0;
}

.grid-row {
    display: flex;
    height: 32px;
    border-left: 1px solid rgba(71, 85, 105, 0.4);
    position: relative;
}

.grid-cell {
    width: 64px;
    height: 32px;
    border-top: 1px solid rgba(71, 85, 105, 0.4);
    border-right: 1px solid rgba(71, 85, 105, 0.4);
    position: relative;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.grid-cell:hover {
    background-color: rgba(220, 38, 38, 0.6);
    transition: background-color 0s;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.grid-cell.random-color-1 { background-color: rgba(220, 38, 38, 0.15); }   /* Main red */
.grid-cell.random-color-2 { background-color: rgba(185, 28, 28, 0.18); }   /* Darker red */
.grid-cell.random-color-3 { background-color: rgba(239, 68, 68, 0.15); }   /* Light red */
.grid-cell.random-color-4 { background-color: rgba(153, 27, 27, 0.20); }   /* Deep red */
.grid-cell.random-color-5 { background-color: rgba(248, 113, 113, 0.12); } /* Pink-red */
.grid-cell.random-color-6 { background-color: rgba(127, 29, 29, 0.22); }   /* Dark crimson */
.grid-cell.random-color-7 { background-color: rgba(252, 165, 165, 0.10); } /* Light pink */
.grid-cell.random-color-8 { background-color: rgba(190, 18, 60, 0.16); }   /* Crimson */

.grid-plus-icon {
    position: absolute;
    top: -14px;
    left: -22px;
    width: 40px;
    height: 24px;
    pointer-events: none;
    color: rgba(71, 85, 105, 0.5);
    stroke-width: 1;
}

.plans-hero .container {
    position: relative;
    z-index: 10;
}

/* Smaller text for plans hero */
.plans-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.plans-hero p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 500px;
    margin: 0 auto;
}

.contact-hero h1,
.coming-soon-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-hero p,
.coming-soon-hero p {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Coming Soon Hero Specific Styles */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    margin-bottom: 2rem;
}

/* Features Preview Section Header */
.features-preview .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-preview .section-header h2 {
    text-align: center;
}

.features-preview .section-header p {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 0;
}

/* Price Badge Animation */
.price {
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
}

.price.coming-soon {
    font-size: 1.5rem;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 2px dashed rgba(245, 158, 11, 0.5);
    display: inline-block;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    }
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #a1a1aa;
}

/* Contact Page Styles */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-main {
    background: linear-gradient(135deg, #111111, #0f0f0f);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: #a1a1aa;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-btn.active {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.quick-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.contact-form {
    display: none;
}

.contact-form.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #71717a;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.form-actions .btn:hover .btn-icon {
    transform: translateX(3px);
}

.form-note {
    color: #a1a1aa;
    font-size: 0.875rem;
    margin-top: 0.875rem;
    font-style: italic;
}

.trial-highlight,
.demo-highlight {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.trial-highlight h3,
.demo-highlight h3 {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trial-highlight p,
.demo-highlight p {
    color: #a1a1aa;
    margin: 0;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #111111, #0f0f0f);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-header {
    margin-bottom: 1.5rem;
}

.contact-card-header h3 {
    color: #dc2626;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

.method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 0.1rem; /* optical baseline alignment with text */
    text-align: center;
    line-height: 1;
    font-size: 1.25rem; /* emoji icon size */
}

.method-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.method-details {
    flex: 1;
    min-width: 0;
}

.method-details h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.method-details p {
    color: #a1a1aa;
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.response-time {
    color: #71717a;
    font-size: 0.8rem;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.online {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.uptime-stat {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Mobile Contact Adjustments */
@media screen and (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-main {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quick-btn {
        padding: 1rem;
    }
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1003;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.99) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 2px solid rgba(220, 38, 38, 0.3);
        backdrop-filter: blur(20px);
        z-index: 1001;
        padding: 2rem 0;
        gap: 1.5rem;
        min-height: calc(100vh - 60px);
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem;
        display: block;
        margin: 0.5rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(220, 38, 38, 0.1);
        transform: translateX(10px);
    }

    .cta-button {
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0.6rem 5px; /* Further reduced from 10px to 5px */
    }
}

@media screen and (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0.5rem 3px; /* Further reduced from 8px to 3px */
    }
}

.coming-soon-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.coming-soon-hero .hero-content {
    text-align: center;
}

.coming-soon-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.coming-soon-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-hero .release-timeline {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
}

.timeline-icon {
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.timeline-content .release-date {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin: 0;
}

/* Notification Signup Styles */
.notify-signup {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1);
}

/* Mobile App page header centering (uniform with other centered section headers) */
.features-preview h3,
.features-preview h4,
.store-badges h3,
.store-badges h4,
.early-access h2,
.early-access h3,
.faq-section h2,
.faq-section h3,
.faq-section h4 {
    text-align: center;
}

/* Center headings inside card headers where layout is split */
.expect-card-header,
.upcoming-card,
.store-badge-content,
.timeline-content {
    text-align: center;
}

.notify-signup h3 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.input-group {
    display: flex;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.input-group input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    border-radius: 25px;
}

.input-group input[type="email"]::placeholder {
    color: #a1a1aa;
    font-weight: 400;
}

.input-group .btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.input-group .btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.input-group .btn:active {
    transform: translateY(0);
}

.privacy-note {
    color: #a1a1aa;
    font-size: 0.875rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile adjustments for notification signup */
@media screen and (max-width: 768px) {
    .notify-signup {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .notify-signup h3 {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 16px;
    }
    
    .input-group input[type="email"] {
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .input-group .btn {
        padding: 1.25rem 2rem;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .coming-soon-hero .release-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item {
        min-width: auto;
        width: 100%;
    }
}

/* Phone Mockups Styles */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockups {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 0 0 8px rgba(0, 0, 0, 0.8),
        0 0 0 12px rgba(60, 60, 60, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.phone-mockup.android {
    transform: perspective(1000px) rotateY(5deg);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 
        0 0 0 8px rgba(0, 0, 0, 0.8),
        0 0 0 12px rgba(220, 38, 38, 0.3),
        0 30px 80px rgba(220, 38, 38, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-preview.ios {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.app-preview.android {
    background: linear-gradient(135deg, #0a0a0a, #1f1f1f);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-bar .time {
    font-weight: 700;
}

.status-bar .battery {
    font-size: 13px;
    color: #4ade80;
}

.app-header {
    padding: 20px 20px 15px;
    background: rgba(220, 38, 38, 0.05);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.app-header h4 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ai-indicator {
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(220, 38, 38, 0.2);
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(0.98);
    }
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
}

.workout-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Add subtle animated gradient overlay */
.workout-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(220, 38, 38, 0.3) 0%, 
        rgba(220, 38, 38, 0.1) 25%,
        rgba(220, 38, 38, 0.05) 50%,
        rgba(220, 38, 38, 0.1) 75%,
        rgba(220, 38, 38, 0.3) 100%);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.workout-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

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

.workout-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Add icon-style indicator for workout type */
.workout-card h5::before {
    content: '💪';
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.workout-card:hover h5::before {
    filter: grayscale(0);
    transform: scale(1.1);
}

.workout-card .exercise {
    font-size: 22px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 16px;
    text-shadow: 
        0 0 10px rgba(220, 38, 38, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    line-height: 1.3;
}

.workout-card .ai-feedback {
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.08));
    padding: 10px 16px;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(74, 222, 128, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(74, 222, 128, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    animation: feedbackGlow 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.workout-card:hover .ai-feedback {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(74, 222, 128, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

@keyframes feedbackGlow {
    0%, 100% { 
        box-shadow: 
            0 4px 15px rgba(74, 222, 128, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 6px 25px rgba(74, 222, 128, 0.4),
            0 0 20px rgba(74, 222, 128, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.15);
    }
}

/* Mobile Phone Mockups Adjustments */
@media screen and (max-width: 768px) {
    .phone-mockups {
        flex-direction: column;
        gap: 2rem;
        scale: 0.8;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        transform: none;
    }
    
    .phone-mockup.android {
        transform: none;
    }
    
    .phone-mockup:hover {
        transform: scale(1.02);
    }
}

@media screen and (max-width: 480px) {
    .phone-mockups {
        scale: 0.7;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

/* Technology Section (renamed from About) */
.technology {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.technology .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.technology .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 12px rgba(220, 38, 38, 0.35),
        0 2px 5px rgba(220, 38, 38, 0.22),
        0 5px 10px rgba(220, 38, 38, 0.18),
        0 0 25px rgba(220, 38, 38, 0.12);
}

.technology .section-header p {
    font-size: 1.125rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.technology-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-description h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 8px rgba(220, 38, 38, 0.25),
        0 1px 3px rgba(220, 38, 38, 0.18),
        0 3px 6px rgba(220, 38, 38, 0.12),
        0 0 15px rgba(220, 38, 38, 0.08);
}

.tech-description p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.technology-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(16, 16, 16, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
}

.tech-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.3) 100%);
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Custom icon styles using CSS */
.neural-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 30% 30%, #dc2626 0%, #dc2626 15%, transparent 15%, transparent 35%, #dc2626 35%, #dc2626 50%, transparent 50%, transparent 70%, #dc2626 70%, #dc2626 85%, transparent 85%);
    border: 2px solid #dc2626;
    border-radius: 50%;
    position: relative;
}

.neural-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        -8px -8px 0 -2px #dc2626,
        8px -8px 0 -2px #dc2626,
        -8px 8px 0 -2px #dc2626,
        8px 8px 0 -2px #dc2626;
}

.data-icon::before {
    content: '';
    width: 24px;
    height: 20px;
    background: linear-gradient(to top, #dc2626 0%, #dc2626 40%, transparent 40%, transparent 60%, #dc2626 60%, #dc2626 80%, transparent 80%);
    border: 2px solid #dc2626;
    border-radius: 2px;
}

.data-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #dc2626;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 0 #dc2626, 0 8px 0 #dc2626;
}

.target-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid #dc2626;
    border-radius: 50%;
    position: relative;
}

.target-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #dc2626;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 2px #1a1a1a, 0 0 0 2px #dc2626;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 1rem;
}

.scientist-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #dc2626;
    border-radius: 50% 50% 0 0;
    position: relative;
}

.scientist-icon::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 16px;
    background: linear-gradient(to bottom, transparent 0%, transparent 40%, #dc2626 40%, #dc2626 100%);
    border-radius: 0 0 16px 16px;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #dc2626;
    border-top: none;
}

.video-icon::before {
    content: '';
    width: 28px;
    height: 20px;
    background: #dc2626;
    border-radius: 4px;
    position: relative;
}

.video-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid #1a1a1a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.precision-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid #dc2626;
    border-radius: 50%;
    position: relative;
}

.precision-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px #1a1a1a, 0 0 0 6px #dc2626;
}

.lightning-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 4px solid transparent;
    border-top: 16px solid #dc2626;
    position: relative;
    transform: rotate(-10deg);
}

.lightning-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #dc2626;
    top: 12px;
    left: 8px;
    transform: rotate(-10deg);
}

.tech-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.tech-info p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.technology-stats {
    display: flex;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    width: 100%;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(16, 16, 16, 0.95) 100%);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(220, 38, 38, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

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

.technology .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 8px rgba(220, 38, 38, 0.25),
        0 1px 3px rgba(220, 38, 38, 0.18),
        0 3px 6px rgba(220, 38, 38, 0.12),
        0 0 15px rgba(220, 38, 38, 0.08);
}

.stat-label {
    font-size: 0.875rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.technology-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(16, 16, 16, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    z-index: 2;
}

.technology-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 8px rgba(220, 38, 38, 0.25),
        0 1px 3px rgba(220, 38, 38, 0.18),
        0 3px 6px rgba(220, 38, 38, 0.12),
        0 0 15px rgba(220, 38, 38, 0.08);
}

.technology-cta p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.technology-cta .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Technical Architecture Section */
.architecture-section {
    padding: 4rem 0;
    background: radial-gradient(circle at top, rgba(220, 38, 38, 0.12) 0, transparent 55%), #050505;
}

.architecture-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: stretch;
}

.architecture-diagram {
    border-radius: 18px;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(9, 9, 11, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.55);
}

.architecture-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.arch-step-badge {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f97316, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.arch-step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.arch-step-arrow {
    margin-left: auto;
    font-size: 0.9rem;
    color: #9ca3af;
}

.architecture-details {
    border-radius: 18px;
    padding: 1.75rem;
    background: radial-gradient(circle at top left, rgba(220, 38, 38, 0.18), transparent 60%), #020617;
    border: 1px solid rgba(31, 41, 55, 0.9);
}

.architecture-details h3 {
    margin-bottom: 1rem;
}

.architecture-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.architecture-pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
}

.architecture-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.architecture-list li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #d4d4d8;
}

.architecture-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Mobile responsiveness for technology section */
@media (max-width: 992px) {
    .technology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .technology .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .architecture-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .technology {
        padding: 4rem 0;
    }
    
    .technology .section-header {
        margin-bottom: 3rem;
    }
    
    .technology .section-header h2 {
        font-size: 1.75rem;
    }
    
    .tech-feature {
        padding: 1rem;
    }
    
    .tech-feature:hover {
        transform: translateX(5px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .technology-cta {
        padding: 2rem 1.5rem;
    }
    
    .technology-cta h3 {
        font-size: 1.5rem;
    }
}

/* ML intelligence Plans Program Cards */
.programs {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: linear-gradient(135deg, #111111, #0f0f0f);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card.featured {
    border-color: rgba(220, 38, 38, 0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

/* Hover effect is defined later in the file */

.program-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pixel-card {
    position: relative;
}

.pixel-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 15px;
    z-index: 1;
}

.program-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.program-header {
    position: relative;
    z-index: 5;
    margin-bottom: 1.5rem;
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.plan-tier-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a1a1aa;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
}

.price.coming-soon {
    font-size: 1.5rem;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 2px dashed rgba(245, 158, 11, 0.5);
    display: inline-block;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    }
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #a1a1aa;
}

.plan-description {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.program-features li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.program-card .btn {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* Features Comparison Table */
.features-comparison {
    padding: 4rem 0;
    background: #111111;
}

.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    color: #e0e0e0;
}

.comparison-table .check {
    color: #22c55e;
    font-weight: bold;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: bold;
}

/* Trial CTA */
.trial-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    text-align: center;
}

.trial-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.trial-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.trial-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trial-feature h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.trial-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

/* FAQ Styles */
.faq {
    padding: 4rem 0;
    background: #0a0a0a;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #dc2626;
}

.faq-item h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Support CTA */
.support-cta {
    padding: 4rem 0;
    background: #111111;
    text-align: center;
}

.support-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.support-cta p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.support-option {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.support-option h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.support-option p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0 4rem 0; /* Increased top padding from default 4rem to 6rem */
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.services .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services .section-header p {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

/* Reusable section header style (matches Home "Professional Services") */
.section-header.services-style {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.services-style h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header.services-style p {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header.services-style h2 {
        font-size: 1.75rem;
    }
}

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

.service-card {
    opacity: 1;
    z-index: 1;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes glowMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    margin: 0 auto 2rem auto;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: #dc2626;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.service-icon .icon-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(220, 38, 38, 0.1));
    border-color: rgba(220, 38, 38, 0.6);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(220, 38, 38, 0.2),
        0 0 40px rgba(220, 38, 38, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon svg {
    color: #ff4444;
    transform: scale(1.1);
}

.service-card:hover .service-icon .icon-label {
    color: #ff4444;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    transition: color 0.3s ease;
    text-align: center;
}

.service-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 1.75rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    text-align: center;
    font-size: 0.95rem;
}

.service-card:hover p {
    color: #d0d0d0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin-bottom: 2rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #d0d0d0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover li {
    color: #e0e0e0;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.service-card .btn {
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

/* Service Highlight Styling */
.service-highlight {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    border-left: 3px solid #dc2626;
    border-radius: 8px;
    text-align: left;
}

.service-highlight strong {
    color: #dc2626;
    font-weight: 600;
}

/* Services Additional Section */
.services-additional {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.services-additional .additional-content h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    min-height: 100%;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* What to Expect Cards Layout */
.expect-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expect-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.expect-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

.expect-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.expect-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.expect-icon svg {
    color: #dc2626;
}

.expect-header-content {
    flex: 1;
}

.expect-header-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.expect-description {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expect-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.expect-features li {
    padding: 0.75rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expect-features li:last-child {
    border-bottom: none;
}

.expect-features li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #dc2626;
    font-weight: bold;
}

.expect-card:hover .expect-features li {
    color: #d0d0d0;
}

/* Status badges in header */
.expect-header-content .status-badge {
    display: inline-block;
    margin-top: 0.25rem;
}

/* Responsive adjustments for expect cards */
@media (max-width: 768px) {
    .expect-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expect-card {
        padding: 1.5rem;
    }
    
    .expect-card h4 {
        font-size: 1.15rem;
    }
    
    .expect-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .expect-card {
        padding: 1.25rem;
    }
    
    .expect-icon {
        width: 40px;
        height: 40px;
    }
    
    .expect-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .expect-header-content h3 {
        font-size: 1.1rem;
    }
    
    .expect-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* Upcoming Features Cards Layout */
.upcoming-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.upcoming-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.upcoming-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

.upcoming-card-icon {
    margin-bottom: 1.5rem;
}

.upcoming-icon-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 8px;
    color: #dc2626;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.upcoming-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.upcoming-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.upcoming-card:hover .upcoming-icon-badge {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.6);
}

.upcoming-card:hover p {
    color: #d0d0d0;
}

/* Responsive adjustments for upcoming cards */
@media (max-width: 768px) {
    .upcoming-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .upcoming-card {
        padding: 1.5rem;
    }
    
    .upcoming-card h4 {
        font-size: 1.15rem;
    }
    
    .upcoming-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .upcoming-card {
        padding: 1.25rem;
    }
    
    .upcoming-icon-badge {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    .upcoming-card h4 {
        font-size: 1.05rem;
    }
    
    .upcoming-card p {
        font-size: 0.85rem;
    }
}

/* Store Badges Section - Card Layout */
.store-badges {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
}

.store-badges .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-badges .section-header h2 {
    text-align: center;
}

.store-badges .section-header p {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.store-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.store-badge-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.store-badge-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.25);
}

.store-badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.store-badge-icon svg {
    color: #dc2626;
}

.store-badge-card:hover .store-badge-icon {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.5);
}

.store-badge-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.store-platform {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.release-info {
    margin-top: 1rem;
}

.release-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 25px;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.store-badge-card:hover .release-badge {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.6);
}

/* Responsive adjustments for store badges */
@media (max-width: 768px) {
    .store-badges {
        padding: 4rem 0;
    }
    
    .store-badges-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .store-badge-card {
        padding: 2.5rem 2rem;
    }
    
    .store-badge-icon {
        width: 70px;
        height: 70px;
    }
    
    .store-badge-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .store-badge-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .store-badges {
        padding: 3rem 0;
    }
    
    .store-badges .section-header p {
        font-size: 1rem;
    }
    
    .store-badge-card {
        padding: 2rem 1.5rem;
    }
    
    .store-badge-icon {
        width: 60px;
        height: 60px;
    }
    
    .store-badge-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .store-badge-content h3 {
        font-size: 1.2rem;
    }
    
    .store-platform {
        font-size: 0.9rem;
    }
    
    .release-badge {
        padding: 0.4rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Footer (polished, consistent across pages) */
.footer {
    margin-top: 0;
    padding: 4.5rem 0 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(10, 10, 10, 0.98));
    border-top: 1px solid rgba(220, 38, 38, 0.22);
    box-shadow: 0 -20px 60px rgba(220, 38, 38, 0.05);
}

.footer .container {
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    letter-spacing: 0.2px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.footer-section p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-section li {
    color: #b0b0b0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-section a {
    color: #c7c7d1;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-section a:hover {
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.35);
    transform: translateY(-1px);
}

.footer-company .company-name {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #d4d4d8;
    font-weight: 600;
    font-size: 0.85rem;
}

.social-links {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #e0e0e0;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 38, 38, 0.45);
    background: rgba(220, 38, 38, 0.08);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.footer-demo-notice {
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c7c7d1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-links a:hover {
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.35);
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.25);
}

/* Footer variants (admin reports footer has stats + status blocks) */
.footer-stats {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 380px;
}

.footer-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.footer-stat .stat-number {
    font-size: 1.35rem;
    font-weight: 900;
    color: #dc2626;
    margin: 0;
}

.footer-stat .stat-label {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #a1a1aa;
    line-height: 1.3;
}

.footer .status-indicators {
    display: grid;
    gap: 0.65rem;
    margin: 0.25rem 0 0.75rem;
}

.footer .status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d4d4d8;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex-shrink: 0;
}

.footer .status-dot.success {
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
}

.footer .status-dot.warning {
    background: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}

.footer .last-updated {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1.6fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3.5rem 0 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* Home: Advanced Web Application Features (display cards) */
.services-additional .section-intro {
    color: #b0b0b0;
    text-align: center;
    max-width: 900px;
    margin: -2rem auto 2.25rem;
    line-height: 1.7;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.app-feature-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(220, 38, 38, 0.22);
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    height: 100%;
}

.app-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 18px 60px rgba(220, 38, 38, 0.12);
}

.app-feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.app-feature-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(220, 38, 38, 0.28);
    background: rgba(220, 38, 38, 0.10);
    color: #dc2626;
    flex-shrink: 0;
}

.app-feature-header h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
}

.app-feature-description {
    color: #c4c4cc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.app-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.app-feature-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    color: #b0b0b0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.app-feature-list li strong {
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 992px) {
    .app-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile App: Want Early Access? (professional + centered) */
.early-access {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(17, 17, 17, 0.98));
    position: relative;
    overflow: hidden;
}

.early-access::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(220, 38, 38, 0.10) 0%, transparent 55%);
    pointer-events: none;
}

.early-access-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.10), rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(220, 38, 38, 0.22);
    border-radius: 22px;
    padding: 3.25rem 2.5rem;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

.early-access-content h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    margin: 1rem 0 0.75rem;
    text-transform: none;
}

.early-access-content p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0.75rem auto 2rem;
}

.access-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid rgba(220, 38, 38, 0.30);
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}

.access-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.25rem;
}

.access-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d4d4d8;
    font-weight: 600;
}

.access-benefits .benefit-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.10);
    border: 1px solid rgba(220, 38, 38, 0.22);
    color: #dc2626;
    flex-shrink: 0;
}

.early-access-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}

@media (max-width: 992px) {
    .access-benefits {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .early-access {
        padding: 4.5rem 0;
    }

    .early-access-content {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
    }

    .early-access-content h2 {
        font-size: 2rem;
    }
}

/* Investor roadmap section */
.roadmap-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #080808 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.roadmap-section .container {
    position: relative;
    z-index: 1;
}

.roadmap-section .section-header {
    text-align: center;
}

.roadmap-section .section-header h2 {
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(220, 38, 38, 0.6);
}

.roadmap-section .section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.roadmap-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.roadmap-phase {
    background: linear-gradient(150deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(220, 38, 38, 0.22);
    border-radius: 18px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-phase::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(220, 38, 38, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.roadmap-phase:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 14px 38px rgba(220, 38, 38, 0.15);
}

.roadmap-phase:hover::after {
    opacity: 1;
}

.roadmap-phase.active-phase {
    border-color: rgba(220, 38, 38, 0.55);
    box-shadow: 0 16px 44px rgba(220, 38, 38, 0.2);
}

.phase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.phase-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(220, 38, 38, 0.5);
    background: rgba(220, 38, 38, 0.12);
    color: #ffb4b4;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.phase-window {
    color: #a1a1aa;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
}

.roadmap-phase h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.phase-summary {
    color: #c4c4cc;
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.phase-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.phase-list li {
    color: #b6b6be;
    font-size: 0.88rem;
    line-height: 1.55;
    padding-left: 1rem;
    position: relative;
}

.phase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.roadmap-moat-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.moat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.moat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(220, 38, 38, 0.35);
}

.moat-card h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.moat-card p {
    color: #a1a1aa;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 992px) {
    .roadmap-track,
    .roadmap-moat-grid {
        grid-template-columns: 1fr;
    }
}
