/* ===== CSS Variables ===== */
:root {
    --primary-blue: #0F456E;
    --secondary-blue: #018ABE;
    --primary-dark: #0a3050;
    --secondary-light: #02a5e4;
    
    /* Neutral colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Accent colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d5f 50%, var(--secondary-blue) 100%);
    
    /* Typography */
    --font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-blue);
}

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

ul {
    list-style: none;
}

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

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

.btn-icon {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

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

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

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

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

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

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gray-900);
    padding: 16px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: var(--gray-900);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

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

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

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

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    padding: 140px 0 120px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 138, 190, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(1, 138, 190, 0.2) 0%, transparent 50%),
        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;
}

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

.hero-content {
    color: var(--white);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
    color: var(--secondary-light);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.stat-icon {
    font-size: 1.2rem;
}

.hero-visual {
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.hero-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(1, 138, 190, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.hero-image-container:hover .hero-image-glow {
    opacity: 1;
}

.problem-image-placeholder,
.collab-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.problem-image-placeholder {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    min-height: 150px;
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.problem-image-placeholder .placeholder-content {
    color: var(--gray-400);
}

.collab-image-placeholder .placeholder-content {
    color: rgba(255, 255, 255, 0.7);
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.placeholder-content span {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.placeholder-content small {
    opacity: 0.6;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding) 0;
}

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

.solution-logo-container {
    margin: 24px 0;
}

.solution-logo {
    height: 80px;
    width: auto;
    display: inline-block;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(1, 138, 190, 0.1);
    color: var(--secondary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(1, 138, 190, 0.2);
    backdrop-filter: blur(10px);
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
}

/* ===== Countdown Section ===== */
.countdown-section {
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.countdown-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.countdown-content {
    flex: 1;
    min-width: 300px;
}

.countdown-content h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.countdown-content p {
    margin: 0;
    color: var(--gray-600);
}

/* ===== Problems Section ===== */
.problems-section {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 138, 190, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(1, 138, 190, 0.2) 0%, transparent 50%),
        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;
    z-index: 0;
}

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

.problems-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.problems-section .section-header h2 {
    color: var(--white);
}

.problems-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

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

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-blue);
    color: var(--gray-700);
}

.problem-card h3 {
    color: var(--gray-900);
}

.problem-list li span {
    color: var(--gray-700);
}

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

.problem-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.problem-header h3 {
    margin: 0;
}

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

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px;
    position: relative;
}

.problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.problem-image-placeholder {
    margin-top: 24px;
    min-height: 150px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ===== Solution Section ===== */
.solution-section {
    background: var(--white);
}

.solution-intro {
    text-align: center;
    margin-bottom: 60px;
}

.solution-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gray-50);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.solution-badge span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.solution-badge strong {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.solution-badge small {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.subsection-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

/* Steps */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--gradient-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    flex: 1 1 0;
    width: 0;
    max-width: 280px;
    min-width: 240px;
    position: relative;
    transition: var(--transition);
    color: var(--white);
}

.step-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 0 4px var(--secondary-light), var(--shadow-md);
    border: 2px solid var(--secondary-light);
}

.step-card h4 {
    margin-bottom: 8px;
    color: var(--white);
}

.step-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.steps-note {
    text-align: center;
    background: var(--gray-50);
    padding: 16px 24px;
    border-radius: var(--radius);
    color: var(--gray-600);
    margin-bottom: 60px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.feature-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--gray-500);
    font-weight: 400;
}

.feature-card h4 {
    margin-bottom: 6px;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.3;
}

/* ===== Collaborative Section ===== */
.collab-section {
    background: var(--gradient-primary);
    color: var(--white);
}

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

.collab-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.collab-text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.collab-intro {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.collab-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.collab-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.collab-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.collab-feature h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.collab-feature p {
    opacity: 0.85;
    margin: 0;
}

.collab-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    min-height: 350px;
}

/* ===== Win-Win Section ===== */
.winwin-section {
    background: var(--gray-900);
    padding: 80px 0;
}

.winwin-content {
    text-align: center;
    color: var(--white);
}

.winwin-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.winwin-content h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.winwin-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.winwin-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    max-width: 400px;
}

.winwin-card h4 {
    color: var(--secondary-light);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.winwin-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.winwin-separator {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    font-weight: 700;
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 138, 190, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(1, 138, 190, 0.2) 0%, transparent 50%),
        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;
    z-index: 0;
}

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

.benefits-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefits-section .section-header h2 {
    color: var(--white);
}

.benefits-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

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

.benefits-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    color: var(--gray-700);
}

.benefits-card h3 {
    color: var(--gray-900);
}

.benefits-list li span {
    color: var(--gray-700);
}

.benefits-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.benefits-header h3 {
    margin: 0;
}

.benefits-medecins {
    border-top: 4px solid var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(1, 138, 190, 0.1), var(--shadow);
}

.benefits-assureurs {
    border-top: 4px solid var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(1, 138, 190, 0.1), var(--shadow);
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ===== Deployment Section ===== */
.deployment-section {
    background: var(--white);
}

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

.deployment-card {
    text-align: center;
    padding: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.deployment-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--white);
}

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

.deployment-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.3;
}

.deployment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.deployment-tags span {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--white);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-contact {
    margin-top: 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0 !important;
    font-weight: 600;
}

.cta-contact #contact-email {
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.cta-contact #contact-email:hover {
    opacity: 0.8;
}

/* ===== Video Modal ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 69, 110, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    max-width: 90%;
    max-height: 90%;
    width: 1200px;
    animation: slideUp 0.4s ease;
}

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

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    background: #000;
}

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

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

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

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-info {
    text-align: right;
}

.neema5-logo {
    height: 60px;
    width: auto;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
}

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        margin-top: 40px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collab-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .collab-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .deployment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .countdown-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .winwin-grid {
        flex-direction: column;
    }
    
    .winwin-separator {
        transform: rotate(90deg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 100px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .problem-card,
    .benefits-card {
        padding: 24px;
    }
    
    .step-card {
        padding: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

/* ===== Scroll Reveal Animation Classes ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

