/* ===================================
   SimulatorBooking - Main Stylesheet
   =================================== */

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --brand-dark: #192548;
    --brand-dark-light: #0C1631;
    --brand-accent: #0043FA;
    --brand-accent-light: #376CFF;
    --brand-accent-lighter: #7499FF;
    --text-primary: #192548;
    --text-secondary: #5D6889;
    --text-light: #8B96B3;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --gradient-1: linear-gradient(135deg, #192548 0%, #0C1631 100%);
    --gradient-2: linear-gradient(135deg, #0043FA 0%, #376CFF 100%);
    --shadow-sm: 0 1px 2px rgba(25, 37, 72, 0.05);
    --shadow-md: 0 4px 12px rgba(25, 37, 72, 0.08);
    --shadow-lg: 0 8px 30px rgba(25, 37, 72, 0.12);
    --shadow-xl: 0 20px 50px rgba(25, 37, 72, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===================================
   Header Styles
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(25, 37, 72, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text span {
    color: var(--brand-accent);
}

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

.nav-link {
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--brand-dark);
    background: rgba(0, 67, 250, 0.05);
}

.nav-link.active {
    color: var(--brand-accent);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 67, 250, 0.05);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand-accent);
}

.dropdown-item-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.dropdown-item-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===================================
   Button Styles
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--brand-dark);
    border: 2px solid rgba(25, 37, 72, 0.15);
}

.btn-outline:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 67, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 67, 250, 0.4);
}

.btn-dark {
    background: var(--gradient-1);
    color: white;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   Mobile Menu
   =================================== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(25, 37, 72, 0.08);
}

.mobile-nav-submenu {
    padding-left: 20px;
    padding-bottom: 8px;
}

.mobile-nav-submenu a {
    display: block;
    padding: 12px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 67, 250, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 67, 250, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-accent);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(135deg, #192548 0%, #0C1631 100%);
    aspect-ratio: 4/3;
}

.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    max-width: 180px;
}

.hero-floating-card.card-1 {
    bottom: 20px;
    left: 10px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    top: 40px;
    right: 10px;
    animation-delay: 2s;
}

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

.floating-card-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.floating-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-accent);
}

.floating-card-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.floating-card-text {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===================================
   Page Hero (for subpages)
   =================================== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Page-specific hero backgrounds */
.page-hero.airlines-hero::before {
    background: url('images/airlines.jpg') center center/cover no-repeat;
    opacity: 0.3;
}

.page-hero.atos-hero::before {
    background: url('images/atos.jpg') center center/cover no-repeat;
    opacity: 0.3;
}

.page-hero.centers-hero::before {
    background: url('images/centers.jpg') center center/cover no-repeat;
    opacity: 0.3;
}

.page-hero.inhouse-hero::before {
    background: url('images/inhouse.jpg') center center/cover no-repeat;
    opacity: 0.3;
}

.page-hero.pilots-hero::before {
    background: url('images/pilots.jpg') center 30%/cover no-repeat;
    opacity: 0.35;
}

.page-hero.usecases-hero::before {
    background: url('images/usecases.jpg') center center/cover no-repeat;
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.page-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 67, 250, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.8rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Audience Section
   =================================== */
.audience {
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1280px) {
    .audience-grid {
        gap: 24px;
    }
}

.audience-card {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(25, 37, 72, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (min-width: 1280px) {
    .audience-card {
        padding: 32px 24px;
    }
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.audience-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 67, 250, 0.1) 0%, rgba(0, 67, 250, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}

@media (min-width: 1280px) {
    .audience-card-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }
}

.audience-card:hover .audience-card-icon {
    background: var(--gradient-2);
}

.audience-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--brand-accent);
    transition: all 0.4s ease;
}

.audience-card:hover .audience-card-icon svg {
    stroke: white;
}

.audience-card h3 {
    font-size: 1.05rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

@media (min-width: 1280px) {
    .audience-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (min-width: 1280px) {
    .audience-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.audience-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-accent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.audience-card:hover .audience-card-link {
    opacity: 1;
    transform: translateY(0);
}

.audience-card-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand-accent);
}

/* ===================================
   Problems Section
   =================================== */
.problems {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.problem-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(25, 37, 72, 0.08);
}

.problem-card-number {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--error);
    margin-bottom: 20px;
}

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

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Solutions Section
   =================================== */
.solutions {
    padding: 100px 0;
}

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

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

@media (min-width: 1280px) {
    .solutions-grid {
        gap: 32px;
    }
}

.solution-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

@media (min-width: 1280px) {
    .solution-card {
        padding: 36px;
        gap: 24px;
    }
}

.solution-card:hover {
    transform: translateX(8px);
}

.solution-card-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 1280px) {
    .solution-card-icon {
        width: 56px;
        height: 56px;
    }
}

.solution-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.solution-card-content h3 {
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

@media (min-width: 1280px) {
    .solution-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}

.solution-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (min-width: 1280px) {
    .solution-card-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.solutions-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.features .section-header {
    position: relative;
    z-index: 1;
}

.features .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.features .section-title {
    color: white;
}

.features .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

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

@media (min-width: 1280px) {
    .features-grid {
        gap: 32px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand-accent-lighter);
}

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

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    padding: 100px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-lighter) 100%);
    z-index: 0;
}

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

.step-number {
    width: 120px;
    height: 120px;
    background: white;
    border: 3px solid var(--brand-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.step-number-inner {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-inner svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #FFB800;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 100px 0;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(25, 37, 72, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 67, 250, 0.03);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.cta-inner {
    background: var(--gradient-1);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.cta h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===================================
   Service Page Content
   =================================== */
.service-section {
    padding: 80px 0;
}

.service-section:nth-child(even) {
    background: var(--bg-secondary);
}

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

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse > * {
    direction: ltr;
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.service-list li svg {
    width: 24px;
    height: 24px;
    stroke: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(25, 37, 72, 0.08);
    transition: all 0.3s ease;
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 67, 250, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand-accent);
}

.service-card h4 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(25, 37, 72, 0.08);
}

.use-case-card h3 {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.use-case-card h3 svg {
    width: 28px;
    height: 28px;
    stroke: var(--success);
}

.use-case-card .scenario {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.use-case-card .scenario h4 {
    font-size: 0.9rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.use-case-card .scenario p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.use-case-card .solution h4 {
    font-size: 0.9rem;
    color: var(--brand-accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.use-case-card .solution p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.benefit-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

/* ===================================
   Contact / Demo Form Styles
   =================================== */
.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

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

.form-header h2 {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-secondary);
}

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

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

.form-group label span {
    color: var(--error);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(25, 37, 72, 0.1);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(0, 67, 250, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235D6889' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--brand-accent);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-checkbox label a {
    color: var(--brand-accent);
    text-decoration: underline;
}

.form-submit {
    margin-top: 32px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--brand-dark);
    padding: 80px 0 32px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 24px;
}

.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;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

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

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

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--brand-accent);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
    stroke: white;
    stroke-width: 0;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Pricing Highlight (Pilots page)
   =================================== */
.pricing-highlight {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-box {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pricing-content {
    padding: 48px;
}

.pricing-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 67, 250, 0.1) 0%, rgba(55, 108, 255, 0.1) 100%);
    color: var(--brand-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--brand-dark);
}

.pricing-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.pricing-features li svg {
    width: 24px;
    height: 24px;
    stroke: var(--success);
    flex-shrink: 0;
}

.pricing-visual {
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.price-display {
    text-align: center;
    color: white;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    vertical-align: top;
}

.price-amount {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.price-period {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* ===================================
   Stats Section (Centers page)
   =================================== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.stat-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-accent);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav, .header-actions {
        display: none;
    }

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

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

    .pricing-visual {
        padding: 60px 48px;
    }

    .price-amount {
        font-size: 6rem;
    }

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

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

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

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

    .steps-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps-container::before {
        display: none;
    }

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

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

    .service-grid.reverse {
        direction: ltr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

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

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero-buttons {
        flex-direction: column;
    }

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

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

    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .pricing-content {
        padding: 32px;
    }

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

    .price-amount {
        font-size: 5rem;
    }

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

    .stat-card {
        padding: 24px 16px;
    }

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

    .cta-inner {
        padding: 48px 24px;
    }

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

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

    .form-container {
        padding: 32px 24px;
    }

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

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

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

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

    .hero {
        padding: 120px 0 60px;
    }

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

    .btn-lg {
        padding: 14px 24px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .service-section {
        padding: 60px 0;
    }

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

    .price-amount {
        font-size: 4rem;
    }
}

/* ===================================
   Use Cases Page Sections
   =================================== */
.use-cases-page-section {
    padding: 80px 0;
}

.use-cases-page-section.alt-bg {
    background: var(--bg-secondary);
}

.use-cases-page-section .section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===================================
   FAQ Spacing Fixes
   =================================== */
.faq-section {
    padding: 80px 0;
}

.faq-section .faq-categories {
    padding-top: 16px;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    font-size: 1.75rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-secondary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===================================
   Mobile Hero Stats Fix
   =================================== */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-stat {
        flex: 0 0 auto;
        min-width: 80px;
        text-align: center;
    }

    .hero-stat-value {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin: 32px auto 0;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        padding: 0;
    }

    .hero-stat {
        flex: 1;
        min-width: 0;
    }

    .hero-stat-value {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .hero-visual {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        max-width: none;
    }

    .hero-image-wrapper {
        border-radius: 0;
    }

    .hero-floating-card {
        display: none;
    }
}

/* ===================================
   Demo Page Styles
   =================================== */
.demo-hero {
    padding-bottom: 60px;
}

.hero-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge-light svg {
    width: 18px;
    height: 18px;
}

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

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.demo-intro h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--brand-dark);
}

.demo-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

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

.demo-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 67, 250, 0.1) 0%, rgba(55, 108, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand-accent);
}

.demo-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.demo-feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.demo-testimonial {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote svg {
    width: 32px;
    height: 32px;
    fill: var(--brand-accent);
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--brand-dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.demo-form-container {
    position: sticky;
    top: 100px;
}

.demo-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(25, 37, 72, 0.08);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid rgba(25, 37, 72, 0.1);
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: white;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(0, 67, 250, 0.1);
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
    color: var(--text-light);
}

.demo-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235D6889' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

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

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

.demo-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-note svg {
    stroke: var(--success);
}

.demo-trust-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.demo-trust-content {
    text-align: center;
}

.demo-trust-content h2 {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.demo-trust-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.demo-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.demo-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.demo-trust-stat .stat-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.demo-trust-stat .stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand-accent);
}

.demo-trust-stat .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.demo-trust-stat .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.demo-faq-section {
    padding: 80px 0;
}

.demo-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.demo-faq-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
}

.demo-faq-item h4 {
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.demo-faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.demo-faq-cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.demo-faq-cta p {
    color: var(--text-secondary);
}

/* ===================================
   About Page Styles
   =================================== */
.about-hero {
    padding-bottom: 60px;
}

.about-mission {
    padding: 80px 0;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-mission-content h2 {
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.about-mission-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.mission-stat {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.mission-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 67, 250, 0.1) 0%, rgba(55, 108, 255, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.mission-stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand-accent);
}

.mission-stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.mission-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-story {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.about-story-content h2 {
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 48px;
    text-align: center;
}

.story-timeline {
    position: relative;
    padding-left: 48px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-accent) 0%, rgba(0, 67, 250, 0.2) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -48px;
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid var(--brand-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-accent);
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-values {
    padding: 80px 0;
}

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

.value-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 67, 250, 0.1) 0%, rgba(55, 108, 255, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand-accent);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-global {
    padding: 80px 0;
    background: var(--gradient-1);
}

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

.global-text {
    color: white;
}

.global-text .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.global-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.global-text > p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}

.global-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.global-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.9;
}

.global-highlight svg {
    width: 20px;
    height: 20px;
    stroke: white;
    flex-shrink: 0;
}

.global-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-map {
    width: 100%;
    max-width: 400px;
}

/* Responsive for Demo and About pages */
@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .demo-form-container {
        position: static;
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .global-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .global-highlights {
        align-items: center;
    }
}

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

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

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

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

    .story-timeline {
        padding-left: 40px;
    }

    .timeline-icon {
        left: -40px;
        width: 32px;
        height: 32px;
    }

    .about-mission-content h2,
    .about-story-content h2,
    .global-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .demo-form {
        padding: 24px;
    }

    .demo-trust-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .demo-trust-stat .stat-number {
        font-size: 2rem;
    }
}

/* Founding Partners Page - Ensure proper centering */
.founding-partners .page-hero-content,
.founding-partners .hero-content,
.founding-partners .hero-inner {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.founding-partners .page-hero-buttons,
.founding-partners .hero-buttons {
    justify-content: center !important;
    display: flex !important;
}

.founding-partners .cta-content,
.founding-partners .cta-inner .cta-content {
    text-align: center !important;
    margin: 0 auto !important;
}

.founding-partners .section-header {
    text-align: center !important;
}

.founding-partners .section-title,
.founding-partners .section-subtitle,
.founding-partners .section-tag {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure all solutions grid items are centered */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

/* Audience grid centering */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.audience-card {
    text-align: center;
}

/* Steps container centering */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.step {
    text-align: center;
}

/* ================================
   LEGAL PAGES - ELEGANT DESIGN
   ================================ */

.legal-page {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    min-height: 100vh;
}

.legal-hero {
    background: linear-gradient(135deg, #0043FA 0%, #376CFF 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.legal-hero-date {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-note {
    background: linear-gradient(135deg, #F0F4FF 0%, #E6EEFF 100%);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #0043FA;
    margin-bottom: 48px;
    box-shadow: 0 4px 16px rgba(0, 67, 250, 0.08);
}

.legal-note p {
    margin: 0;
    font-size: 1rem;
    color: #1E293B;
    line-height: 1.7;
}

.legal-note strong {
    color: #0043FA;
    font-weight: 600;
}

.legal-content {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0F172A;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2E8F0;
    letter-spacing: -0.01em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E293B;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #0043FA;
    font-weight: 700;
    font-size: 1.4rem;
}

.legal-content strong {
    color: #0F172A;
    font-weight: 600;
}

.legal-content a {
    color: #0043FA;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.legal-content a:hover {
    border-bottom-color: #0043FA;
}

.legal-highlight {
    background: #FEF3C7;
    padding: 24px 28px;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
    margin: 32px 0;
}

.legal-highlight p {
    margin: 0;
    color: #78350F;
    font-weight: 500;
}

.legal-highlight strong {
    color: #92400E;
}

.legal-footer-note {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 2px solid #E2E8F0;
    text-align: center;
}

.legal-footer-note p {
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.legal-footer-note strong {
    color: #1E293B;
    display: block;
    margin-top: 12px;
    font-size: 1rem;
}

.legal-toc {
    background: #F8FAFC;
    padding: 28px 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    margin-bottom: 40px;
}

.legal-toc h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 16px 0;
}

.legal-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-toc ul li {
    padding: 8px 0;
    padding-left: 0;
}

.legal-toc ul li::before {
    display: none;
}

.legal-toc a {
    color: #0043FA;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.legal-toc a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 32px 24px;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}


/* ================================
   FAQ - ELEGANT DESIGN
   ================================ */

.faq-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #0043FA;
    letter-spacing: -0.01em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0043FA;
    box-shadow: 0 4px 20px rgba(0, 67, 250, 0.08);
}

.faq-item.active {
    border-color: #0043FA;
    box-shadow: 0 8px 24px rgba(0, 67, 250, 0.12);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0F172A;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0043FA;
}

.faq-item.active .faq-question {
    color: #0043FA;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 28px 28px 28px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #0043FA;
    font-weight: 700;
    font-size: 1.4rem;
}

.faq-answer strong {
    color: #0F172A;
    font-weight: 600;
}

.faq-answer a {
    color: #0043FA;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.faq-answer a:hover {
    border-bottom-color: #0043FA;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-category h2 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

