:root {
    --color-deep-blue: #1a2744;
    --color-slate: #243352;
    --color-slate-light: #2d4066;
    --color-coral: #e8806a;
    --color-coral-light: #f09680;
    --color-coral-dark: #d66b55;
    --color-gold: #d4a853;
    --color-gold-light: #e8c06a;
    --color-emerald: #10b981;
    --color-violet: #7c6fb0;
    --color-white: #ffffff;
    --color-gray-50: #f8f9fa;
    --color-gray-100: #f1f3f5;
    --color-gray-200: #e2e6ea;
    --color-gray-300: #cbd1d8;
    --color-gray-400: #94a0ad;
    --color-gray-500: #64717f;
    --color-gray-600: #475562;
    
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px rgba(232, 128, 106, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--color-gray-50);
    color: var(--color-deep-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

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

.section { padding: 100px 0; }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-gold));
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-deep-blue);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-gray-500);
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(232, 128, 106, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 128, 106, 0.5);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-deep-blue);
    border: 2px solid var(--color-gray-200);
}

.btn-secondary:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
}

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation - FIXED VERSION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

/* État scrolled - fond blanc solide */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

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

.logo-img {
    height: 44px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

/* Texte foncé quand scrolled */
.navbar.scrolled .nav-links a { 
    color: var(--color-gray-600) !important; 
}

.nav-links a:hover { color: var(--color-white); }
.navbar.scrolled .nav-links a:hover { color: var(--color-coral) !important; }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

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

/* Bouton CTA navbar - style différent quand scrolled */
.navbar.scrolled .nav-cta .btn-primary {
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar.scrolled .mobile-menu-btn { color: var(--color-deep-blue) !important; }
.mobile-menu-btn .close-icon { display: none; }
.mobile-menu-btn.active .menu-icon { display: none; }
.mobile-menu-btn.active .close-icon { display: block; }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-deep-blue);
    z-index: 999;
    padding: 100px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links a {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-white);
    text-decoration: none;
    padding: 16px;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover { color: var(--color-coral); }

.mobile-menu-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.mobile-menu-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-slate) 50%, #1a365d 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 128, 106, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 168, 83, 0.1), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--color-gray-300);
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--color-coral-light), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-glow);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
}

.hero-card-badge {
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-emerald);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.hero-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hero-module {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.hero-module:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-module-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-module-icon.coral { background: rgba(232, 128, 106, 0.2); color: var(--color-coral-light); }
.hero-module-icon.gold { background: rgba(212, 168, 83, 0.2); color: var(--color-gold-light); }
.hero-module-icon.emerald { background: rgba(16, 185, 129, 0.2); color: var(--color-emerald); }
.hero-module-icon.violet { background: rgba(124, 111, 176, 0.2); color: var(--color-violet); }

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

.hero-module-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
}

.hero-module-desc {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

/* Trusted */
.trusted {
    padding: 40px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
    overflow: hidden;
}

.trusted-header {
    text-align: center;
    margin-bottom: 28px;
}

.trusted-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── Infinite marquee ── */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

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

.marquee-set {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee-item:hover {
    background: var(--color-white);
    border-color: var(--color-gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.marquee-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.marquee-logo svg {
    width: 100%;
    height: 100%;
}

/* ── Pour remplacer les SVG placeholder par de vrais logos ──
   Ajouter un <img> dans .marquee-logo au lieu du <svg> :
   <img src="logos/rsumb.png" alt="RSUMB" class="marquee-logo-img">
*/
.marquee-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

.marquee-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.marquee-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-600);
    line-height: 1.2;
}

.marquee-city {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-deep-blue);
    line-height: 1.2;
}

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

/* Video Section */
.video-section {
    background: linear-gradient(180deg, var(--color-white), var(--color-gray-50));
}

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

.video-text .section-subtitle { margin-bottom: 28px; }

.video-highlights { list-style: none; }

.video-highlights li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.video-highlights li:last-child { border-bottom: none; }

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(232, 128, 106, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
}

.highlight-icon svg { width: 18px; height: 18px; }

.video-wrapper { position: relative; }

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--color-deep-blue);
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-slate));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-placeholder-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.play-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin: 0 auto 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(232, 128, 106, 0.4);
}

.play-button:hover { transform: scale(1.1); }
.play-button svg { width: 28px; height: 28px; margin-left: 4px; }

.video-placeholder-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(232, 128, 106, 0.15), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 168, 83, 0.1), transparent 50%);
}

/* Module Carousel Section */
.modules-carousel {
    background: var(--color-white);
    overflow: hidden;
}

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

.modules-carousel-header .section-label { justify-content: center; }

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

.module-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--color-gray-100);
    position: relative;
    overflow: hidden;
}

.module-detail::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 128, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.module-detail-content {
    position: relative;
    z-index: 2;
}

.module-detail-content h3 {
    font-size: 2rem;
    color: var(--color-deep-blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.module-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.module-detail-icon svg { width: 26px; height: 26px; }

.module-detail-icon.coral { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light)); }
.module-detail-icon.gold { background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light)); }
.module-detail-icon.emerald { background: linear-gradient(135deg, var(--color-emerald), #34d399); }
.module-detail-icon.violet { background: linear-gradient(135deg, var(--color-violet), #a78bfa); }
.module-detail-icon.rose { background: linear-gradient(135deg, var(--color-coral-dark), var(--color-coral)); }
.module-detail-icon.slate { background: linear-gradient(135deg, var(--color-gray-500), var(--color-gray-400)); }

.module-detail-content > p {
    font-size: 1.0625rem;
    color: var(--color-gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.module-features-list {
    list-style: none;
}

.module-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

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

.module-features-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-emerald);
    flex-shrink: 0;
    margin-top: 2px;
}

.module-detail-visual {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.module-illustration {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-50), var(--color-white));
    border-radius: 12px;
    position: relative;
}

.module-illustration svg {
    width: 100%;
    height: 100%;
    max-width: 400px;
}

/* Effet de brillance sur le carrousel */
.module-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(232, 128, 106, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Animation fluide du carrousel */
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Amélioration des dots */
.carousel-dots {
    display: flex;
    gap: 10px;
    padding: 8px 16px;
    background: var(--color-gray-100);
    border-radius: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-dot:hover::after {
    border-color: var(--color-coral-light);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(232, 128, 106, 0.4);
}

/* Boutons de navigation améliorés */
.carousel-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--color-white);
    color: var(--color-deep-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 128, 106, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg { width: 22px; height: 22px; }

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}

/* Features Banner */
.features-banner {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-slate));
    padding: 32px 0;
    overflow: hidden;
}

.features-banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.features-banner-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    white-space: nowrap;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.features-banner-items {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.features-banner-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.features-banner-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-coral-light);
}

@media (max-width: 1024px) {
    .features-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .features-banner-label {
        padding-right: 0;
        border-right: none;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .features-banner-items {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .features-banner {
        padding: 28px 0;
    }

    .features-banner-items {
        gap: 20px 28px;
    }

    .features-banner-item {
        font-size: 0.875rem;
    }

    .features-banner-item svg {
        width: 18px;
        height: 18px;
    }
}

/* Features Section */
.features {
    background: linear-gradient(180deg, var(--color-gray-50), var(--color-white));
}

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

.features-header .section-label { justify-content: center; }

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

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    color: var(--color-white);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
    font-size: 1.125rem;
    color: var(--color-deep-blue);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: var(--color-white);
}

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

.faq-header .section-label { justify-content: center; }

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

.faq-item {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-coral);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-deep-blue);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-coral);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-coral);
    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: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

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

.faq-cta p {
    color: var(--color-gray-500);
    margin-bottom: 16px;
}

/* Pricing Section - New Table Design */
.pricing { background: var(--color-gray-50); }

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

.pricing-header .section-label { justify-content: center; }

/* Pricing Table */
.pricing-table-wrapper {
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing-table {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
}

.pricing-table-header {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-slate));
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-table-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-table-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.pricing-table-header h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.pricing-table-header p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin: 0;
}

.pricing-table-body {
    padding: 8px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.pricing-row:hover {
    background: var(--color-gray-50);
}

.pricing-row.popular {
    background: linear-gradient(135deg, rgba(232, 128, 106, 0.08), rgba(212, 168, 83, 0.05));
    border: 2px solid var(--color-coral);
}

.pricing-row.popular:hover {
    background: linear-gradient(135deg, rgba(232, 128, 106, 0.12), rgba(212, 168, 83, 0.08));
}

.pricing-row-tag {
    position: absolute;
    top: -10px;
    left: 24px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-row-users {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--color-gray-600);
}

.pricing-row-users strong {
    color: var(--color-deep-blue);
    font-weight: 700;
}

.pricing-row-badge {
    width: 36px;
    height: 36px;
    background: var(--color-gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-gray-500);
}

.pricing-row.popular .pricing-row-badge {
    background: var(--color-coral);
    color: var(--color-white);
}

.pricing-row-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-deep-blue);
    line-height: 1;
}

.price-currency {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-deep-blue);
}

.price-period {
    font-size: 0.8125rem;
    color: var(--color-gray-400);
    margin-left: 4px;
}

.pricing-table-footer {
    background: var(--color-gray-50);
    padding: 24px 32px;
    border-top: 1px solid var(--color-gray-100);
}

.pricing-included-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    display: block;
    margin-bottom: 16px;
}

.pricing-included-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.pricing-included-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.pricing-included-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-emerald);
}

/* Pricing Extras */
.pricing-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing-extra-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-100);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.pricing-extra-card:hover {
    border-color: var(--color-coral);
    box-shadow: var(--shadow-md);
}

.pricing-extra-card.installation {
    border-style: solid;
}

.pricing-extra-card.addon {
    border-style: dashed;
}

.pricing-extra-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-extra-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.pricing-extra-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-deep-blue);
    margin-bottom: 4px;
}

.pricing-extra-content p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin: 0;
}

.pricing-extra-price {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-100);
}

.extra-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-deep-blue);
}

.extra-amount small {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--color-gray-400);
}

.extra-note {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-top: 2px;
}

/* Pricing CTA */
.pricing-cta-section {
    text-align: center;
}

.pricing-cta-section p {
    font-size: 1rem;
    color: var(--color-gray-500);
    margin-bottom: 16px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-slate));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 20% 100%, rgba(232, 128, 106, 0.2), transparent),
        radial-gradient(ellipse 50% 80% at 80% 0%, rgba(212, 168, 83, 0.15), transparent);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.0625rem;
    color: var(--color-gray-400);
    margin-bottom: 36px;
}

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

/* Contact */
.contact { background: var(--color-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}

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

.contact-info > p {
    font-size: 1rem;
    color: var(--color-gray-500);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    box-shadow: var(--shadow-sm);
}

.contact-method-icon svg { width: 18px; height: 18px; }

.contact-method-text {
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-form {
    background: var(--color-gray-50);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-deep-blue);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-coral);
    box-shadow: 0 0 0 4px rgba(232, 128, 106, 0.1);
}

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

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

.form-submit svg { width: 18px; height: 18px; }

.form-note {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-top: 12px;
    text-align: center;
}

.form-note a { color: var(--color-coral); }

/* Form Validation */
.field-error {
    display: block;
    color: #dc3545;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.3;
    animation: fieldErrorIn 0.25s ease;
}

@keyframes fieldErrorIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-input.valid,
.form-textarea.valid,
.form-select.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-error-banner {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.25);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fieldErrorIn 0.3s ease;
}

.form-error-banner svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    display: none;
}

.cookie-banner.show { display: block; }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 300px; }
.cookie-text p { font-size: 0.875rem; color: var(--color-gray-600); margin: 0; }
.cookie-text a { color: var(--color-coral); text-decoration: none; }

.cookie-actions { display: flex; gap: 12px; }

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--color-coral);
    color: var(--color-white);
    border: none;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-gray-600);
    border: 1px solid var(--color-gray-300);
}

/* Chat Widget Button (before Tawk loads) */
.chat-widget-placeholder {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-light));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(232, 128, 106, 0.4);
    z-index: 9997;
    transition: all 0.3s ease;
}

.chat-widget-placeholder:hover {
    transform: scale(1.1);
}

.chat-widget-placeholder svg {
    width: 28px;
    height: 28px;
}

/* Footer */
.footer {
    background: var(--color-deep-blue);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-img { height: 40px; }

.footer-brand p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--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-copyright {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-coral);
    color: var(--color-white);
}

.footer-social a svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 1280px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-text { text-align: center; }
    .video-text .section-label { justify-content: center; }
    .video-text .section-subtitle { margin-left: auto; margin-right: auto; }
    .video-highlights { max-width: 400px; margin: 0 auto; }

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

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

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

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

    .hero-description { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }

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

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

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

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

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

    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-menu { display: block; }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content { padding-top: 0; }
    .hero h1 { font-size: 2rem; }
    .hero-description { font-size: 1rem; }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-visual { display: none; }

    .marquee-set { gap: 16px; padding-right: 16px; }
    .marquee-item { padding: 10px 16px; gap: 10px; }
    .marquee-logo { width: 36px; height: 36px; }
    .marquee-name { font-size: 0.75rem; }
    .marquee-city { font-size: 0.9375rem; }

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

    .module-detail {
        padding: 32px 24px;
    }

    .module-detail-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Pricing responsive */
    .pricing-table-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .pricing-row.popular {
        padding-top: 28px;
    }

    .pricing-row-tag {
        left: 20px;
    }

    .pricing-row-price {
        align-self: flex-end;
    }

    .pricing-table-footer {
        padding: 20px;
    }

    .pricing-included-items {
        flex-direction: column;
        gap: 12px;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .chat-widget-placeholder {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
}