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

:root {
    /* 🎨 COULEURS - Thème Coral (Coraia) */
    --coral: #FF6B6B;
    --coral-light: #FF8E8E;
    --coral-dark: #E55555;

    /* Couleurs de fond */
    --dark-bg: #0A0A0A;
    --dark-secondary: #1A1A1A;

    /* Couleurs de texte */
    --text-light: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #94A3B8;
    /* Keep for compatibility */

    /* Effets glassmorphism */
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Gradients */
    --gradient-1: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    --gradient-text: linear-gradient(to right, #FF6B6B, #FF8E8E, #E55555);

    /* Variables from original file kept for compatibility if needed, mapped to new theme */
    --primary-color: var(--coral);
    --secondary-color: var(--coral-light);
    --primary-glow: rgba(255, 107, 107, 0.5);
    --darker-bg: var(--dark-bg);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Header */
/* Header style updated to match Navbar Pill */
/* Header style updated to match Navbar Pill */
/* Header style updated to match Navbar Pill exactly */
header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    /* Removed min-width to hug content tightly like the image */
    background: rgba(40, 40, 45, 0.6);
    /* Slightly lighter/brownish tint as per image */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 6px 8px 6px 20px;
    /* Asymmetric padding: more on left for logo, less on right for button */
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    header {
        top: 20px;
        width: 92%;
        /* Slightly wider max width */
        max-width: 400px;
        padding: 5px 5px 5px 15px;
        /* Compact padding */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        background: rgba(40, 40, 45, 0.9);
    }

    .header-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .nav-links {
        display: none;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
        margin-left: 0;
    }

    .logo {
        margin-right: 0;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    /* Fix hero badges spacing on mobile */
    .hero-badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        /* Tighter gap */
        margin-bottom: 2rem;
    }

    .hero-badge {
        margin-bottom: 0;
        /* Remove default bottom margin in flex container */
        width: fit-content;
    }

    /* Center hero buttons */
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
}

.header-content {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-right: 0.5rem;
    padding: 0;
    background: transparent;
}

.logo-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.85rem;
    /* Reduced from 0.95rem */
    letter-spacing: 0.01em;
}

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

.btn-primary {
    background: var(--coral);
    color: white;
    padding: 8px 20px;
    /* Slightly smaller padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
    display: inline-block;
    margin-left: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: var(--coral-dark);
}

/* Hero Section - Adapted */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

/* Grille animée en arrière-plan global */
/* Grille animée en arrière-plan global */
/* Grille animée en arrière-plan global */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Significantly more visible grid lines */
    background-image:
        linear-gradient(rgba(255, 107, 107, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 107, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.8;
    /* High opacity for visibility */
    pointer-events: none;
    z-index: -1;
    /* Gradient mask: Bright center, fading to black edges */
    mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Cercle lumineux animé */
.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(80px);
    /* Reduced blur for sharper feel */
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.hero-content {
    max-width: 1000px;
    /* Reduced max-width for tighter layout */
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Badge avec effet glassmorphism */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    /* Smaller padding */
    background: rgba(255, 107, 107, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge-icon {
    font-size: 0.9rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-badge span {
    color: var(--coral-light);
    font-size: 0.8rem;
    /* Smaller badge text */
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

/* Titre avec effet de dégradé */
.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Changed to match Coraia */
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Reduced max size from 4.5rem to 4rem */
    /* Bold but not heavy */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    /* Tighter letter spacing */
    color: var(--text-light);
    background: linear-gradient(to bottom right, #ffffff 40%, #ffcfcf 100%);
    /* Subtle gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    /* Reduced from 1.125rem */
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 550px;
    /* Narrower width */
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Boutons hero */
.hero-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-version {
    margin-top: 2rem;
    font-size: 0.75rem;
    /* Smaller version text */
    color: var(--text-muted);
    justify-content: center;
    display: flex;
    gap: 10px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Nexus Orb Indicator (Blue Theme from Reference) */
.nexus-orb {
    width: 24px;
    /* Larger size to show detail */
    height: 24px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    /* More space */
}

/* Core: The Blue Sphere */
.nexus-core {
    position: absolute;
    inset: 4px;
    /* Centered, 16px size */
    border-radius: 50%;
    /* Gradient from orbe-exemples.html Blue Theme */
    background: radial-gradient(55% 55% at 40% 38%, #78b6ff 0%, #56a6ff 55%, #4a94e6 100%);
    box-shadow: 0 0 8px rgba(86, 166, 255, 0.5) inset, 0 0 10px rgba(86, 166, 255, 0.4);
    z-index: 2;
}

/* Ring 1: The Inner Fast Ring */
.nexus-ring-1 {
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 1px solid rgba(86, 166, 255, 0.6);
    border-left-color: transparent;
    border-right-color: transparent;
    animation: nexusSpin 3s linear infinite;
    z-index: 1;
}

/* Ring 2: The Outer/Offset Ring with Glow */
.nexus-ring-2 {
    position: absolute;
    inset: -2px;
    /* Slightly larger */
    border-radius: 50%;
    border: 1px solid rgba(86, 166, 255, 0.3);
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: nexusSpin 5s linear infinite reverse;
    box-shadow: 0 0 15px rgba(86, 166, 255, 0.2);
    z-index: 1;
}

/* Pulse Animation for Core */
.nexus-orb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 166, 255, 0.3) 0%, transparent 70%);
    animation: nexusPulse 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes nexusSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes nexusPulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* Stats intégrées dans le hero */
.hero-stats {
    display: flex;
    gap: 3rem;
    /* Reduced gap */
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Added divider */
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 1.75rem;
    /* Reduced from 2rem */
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    /* Reduced from 0.85rem */
    color: var(--text-muted);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Orb Animation Removed/Replaced by new Hero ::before/::after */
.orb-container {
    display: none;
}

/* Features Section */
/* Features Section */
.features {
    padding: 6rem 2rem;
    /* Standardized Padding */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* Removed background gradient */
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom,
            var(--dark-bg) 0%,
            rgba(20, 27, 45, 0.8) 50%,
            var(--dark-card) 100%);
    z-index: 0;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Updated font */
    font-size: clamp(1.8rem, 3.5vw, 2.25rem);
    /* Reduced from 2.5rem */
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible;
    opacity: 1;
}

@supports not (-webkit-background-clip: text) {
    .section-title {
        color: #667eea;
        -webkit-text-fill-color: #667eea;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Mobile Refinements */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
        /* Reduced top/side padding */
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-stats {
        gap: 1.5rem;
        /* Tighter stats */
    }

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

    .section-title {
        font-size: 1.75rem;
        /* Smaller section titles */
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 25px;
        /* Compact cards */
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns as requested */
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }

    .hero h1 {
        font-size: 2.25rem;
        /* Enforce smaller H1 on very small screens */
    }
}

.testimonial-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.feature-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
}

.feature-card::before {
    display: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
    /* Slightly lighter on hover */
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.2);
    /* Colored shadow on hover */
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    /* Softer icon background */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: transparent;
    margin: 0;
    position: relative;
}

.stats::after {
    display: none;
}


.stats-container {
    max-width: 1200px;
    /* Compact focused width */
    margin: 0 auto;
    display: flex;
    /* Switch to Flexbox for reliable side-by-side */
    flex-direction: row;
    align-items: center;
    /* Vertically center */
    justify-content: center;
    /* Horizontally center */
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
        gap: 1rem;
    }

    .stat-item {
        flex: none;
        width: 100%;
        min-width: 0;
        padding: 1.5rem;
    }

    .stat-featured {
        transform: none;
    }
}

.stat-item {
    padding: 2rem;
    flex: 1 1 0;
    /* Distribute space evenly */
    min-width: 0;
    width: 100%;
    min-height: 160px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    /* Standardized Radius 24px */
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.05);
    /* Softer shadow for standard items */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    box-sizing: border-box;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(30, 41, 59, 0.6);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
    min-height: 1.2em;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    min-height: 1.5em;
    line-height: 1.5;
    word-wrap: break-word;
}

.stat-featured {
    /* Inherits base styles from .stat-item structure, but can add specific overrides if needed */
    /* Currently identical to standard card but with highlighted content inside */
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
    /* Slightly stronger shadow */
    border: 1px solid rgba(99, 102, 241, 0.5);
    /* Stronger border */
}

.stat-featured .stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #818cf8;
    background: none;
    -webkit-text-fill-color: #818cf8;
    animation: pulse 2s ease-in-out infinite;
    text-align: center;
    min-height: 1.2em;
    line-height: 1.2;
}

.feature-highlight {
    border: 2px solid rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
}

.feature-highlight::before {
    height: 6px;
    background: var(--gradient-1);
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Removed ugly gradient block */
.pricing::before {
    display: none;
}

.pricing-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.toggle-label[data-period="monthly"] {
    opacity: 1;
}

.toggle-label[data-period="yearly"] {
    opacity: 0.6;
}

.discount-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.pricing-toggle input:checked+.slider {
    background: var(--primary-color);
}

.pricing-toggle input:checked+.slider:before {
    transform: translateX(28px);
}

.pricing-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0.9) 100%);
    /* Darker, clearly defined */
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
}

.pricing-card-featured {
    border: 2px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.pricing-plan-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}


.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    /* White text for price */
    background: none;
    -webkit-text-fill-color: #FFFFFF;
}

.price-period {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.pricing-annual {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.annual-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-light);
}

.annual-label {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.discounted-price {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-save {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: var(--text-muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

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

.btn-pricing {
    background: rgba(79, 70, 229, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    display: block;
    width: 100%;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    background: rgba(79, 70, 229, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-pricing-featured {
    background: var(--gradient-1);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-pricing-featured:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* How it Works Section */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

@media (max-width: 768px) {
    .steps-container {
        width: 100%;
        padding: 0 1rem;
    }
}

.step-item {
    background: transparent;
    /* Removed Background */
    padding: 2rem;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Slightly brighter border for visibility */
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -1px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.95));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    display: block;
    visibility: visible;
    opacity: 1;
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.testimonials-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.testimonial-card {
    background-color: var(--glass-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

/* FAQ Section */
.faq .section-title,
.faq .section-subtitle {
    text-align: center;
    /* Explicit center alignment */
}

.faq {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #1e293b;
    width: calc(100% - 4rem);
    box-sizing: border-box;
}

.faq-container {
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    max-width: 800px;
    /* Constrain width for centered look */
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    position: relative;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    transition: transform 0.3s;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
/* Contact Section */
.contact {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
}

.contact-item {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    pointer-events: auto;
}

.contact-item button,
.contact-item .btn-contact-cal {
    position: relative;
    z-index: 1000;
    pointer-events: auto !important;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.contact-item:hover button,
.contact-item:hover .btn-contact-cal {
    pointer-events: auto !important;
    z-index: 1001 !important;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--text-light);
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-contact-cal {
    background: rgba(79, 70, 229, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 100 !important;
    -webkit-tap-highlight-color: rgba(79, 70, 229, 0.3);
}

.btn-contact-cal:hover {
    background: rgba(79, 70, 229, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-contact-cal:active {
    transform: translateY(0);
}

/* Cal.com Floating Button Customization */
.cal-floating-button,
[data-cal-namespace="call-coraia"] button,
button[data-cal-link] {
    background: rgba(79, 70, 229, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    color: white !important;
}

.cal-floating-button:hover,
[data-cal-namespace="call-coraia"] button:hover,
button[data-cal-link]:hover {
    background: rgba(79, 70, 229, 0.3) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.cal-floating-button svg,
.cal-floating-button path,
[data-cal-namespace="call-coraia"] button svg,
[data-cal-namespace="call-coraia"] button path {
    fill: var(--text-light) !important;
}

.contact-form {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cta {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.cta::before {
    display: none;
}

.cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
    background: transparent;
    -webkit-text-fill-color: var(--text-light);
    position: relative;
    z-index: 2;
    /* Fallback pour les navigateurs qui ne supportent pas background-clip */
}

.cta p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

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

.cta>p:last-of-type {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    padding: 3rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns layout */
    gap: 3rem;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 0 1.5rem;
    }

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

    .pricing-container {
        max-width: 100%;
    }

    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

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

@media screen and (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .nav-links {
        display: none !important;
        /* Force hide on mobile */
    }

    .logo {
        font-size: 1.3rem;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-badges {
        margin-bottom: 1.75rem;
        gap: 0.625rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 0.9375rem;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 4.5vw, 2.25rem);
        margin-bottom: 1.125rem;
        line-height: 1.25;
        letter-spacing: -0.015em;
    }

    .hero>.hero-content>p {
        font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
        margin-bottom: 2rem;
        line-height: 1.65;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn-primary {
        padding: 0.8125rem 2rem;
        font-size: 0.9375rem;
        min-width: 200px;
    }

    .hero-version {
        font-size: 0.65rem;
        padding: 0 0.5rem;
    }

    /* Old status-indicator override removed */
}

.orb-1,
.orb-2,
.orb-3 {
    width: 150px;
    height: 150px;
}

.features {
    padding: 4rem 1rem;
}



.feature-card {
    padding: 2rem;
}

.section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    line-height: 1.6;
}

.stats {
    padding: 4rem 1rem;
    margin: 0;
}

.stat-number {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.stat-label {
    font-size: 0.85rem;
}

.contact {
    padding: 4rem 1rem;
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 3rem 0.75rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .contact-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
}

.contact-form {
    padding: 2rem;
}

.pricing {
    padding: 4rem 1rem;
}

.pricing-toggle-container {
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 1rem;
}

.discount-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    margin-left: 0.3rem;
}

.pricing-card {
    padding: 2rem;
}

.price-amount {
    font-size: clamp(2rem, 5vw, 2.5rem);
}

.price-period {
    font-size: 1rem;
}

.pricing-original {
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-save {
    font-size: 0.85rem;
}

.cta {
    padding: 4rem 1rem;
}

.cta h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.how-it-works {
    padding: 4rem 1rem;
}

.steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonials {
    padding: 4rem 1rem;
    margin: 0 auto;
    background-color: #1e293b;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    position: relative;
    z-index: 2;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.testimonials-grid {
    -webkit-grid-template-columns: 1fr;
    grid-template-columns: 1fr;
    display: -webkit-box;
    display: -webkit-flex;
    display: grid;
}

.faq {
    padding: 4rem 1rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    border-radius: 24px;
    margin: 0 auto !important;
    width: calc(100% - 2rem);
    max-width: 1200px;
    box-sizing: border-box;
}

.faq .section-title,
.faq .section-subtitle {
    color: #FFFFFF !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    text-align: center !important;
    /* Centered alignment */
}

.faq-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.faq-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-question {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-question h3 {
    color: #FFFFFF !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-item {
    margin-bottom: 0.75rem;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
}

.faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
}

.faq-answer {
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-text {
    font-size: 1rem;
}

footer {
    padding: 2rem 1rem;
}

.footer-content {
    gap: 2rem;
    /* Keep 3 columns even on smaller screens, will stack naturally on mobile */
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
}


@media (max-width: 480px) {
    .header-content {
        padding: 0 1rem;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.125rem;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .btn-primary {
        padding: 0.5625rem 1rem;
        font-size: 0.8125rem;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .hero {
        padding: 6rem 1rem 2.5rem;
        min-height: auto;
    }

    .hero-content {
        padding: 1rem 0;
    }

    .hero-badges {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
        width: auto;
        display: inline-flex;
    }

    .hero h1 {
        font-size: clamp(1.375rem, 6vw, 1.875rem);
        margin-bottom: 1rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
        padding: 0 0.25rem;
    }

    .hero>.hero-content>p {
        font-size: clamp(0.875rem, 2.25vw, 0.9375rem);
        margin-bottom: 1.75rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        margin-bottom: 1.25rem;
        width: 100%;
        padding: 0 0.5rem;
    }

    .hero-buttons .btn-primary {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-version {
        font-size: 0.6rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    /* Old status-indicator override removed */

    .features {
        padding: 3rem 0.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .stats {
        padding: 2rem 0.75rem;
        margin: 1rem 0;
    }

    .stats-container {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
        gap: 0.875rem;
    }

    .stat-item {
        padding: 1.25rem;
        flex: none;
        width: 100%;
        min-width: 0;
    }

    .stat-featured {
        transform: none;
    }

    .stat-number {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .pricing {
        padding: 3rem 0.75rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .cta {
        padding: 3rem 0.75rem;
    }

    .btn-pricing {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .how-it-works {
        padding: 3rem 0.75rem;
    }

    .steps-container {
        gap: 1.5rem;
    }

    .step-item {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .step-item h3 {
        font-size: 1.2rem;
    }

    .step-item p {
        font-size: 0.9rem;
    }

    .testimonials {
        padding: 6rem 2rem;
        background-color: #1e293b;
        /* Dark background block */
        position: relative;
        margin-top: 4rem;
    }

    .testimonials .section-title,
    .testimonials .section-subtitle {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .testimonial-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: var(--glass-bg) !important;
        /* Ensure glass background */
        backdrop-filter: blur(12px) !important;
    }

    .testimonial-text {
        color: #FFFFFF !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-text::before {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }

    .author-info strong {
        font-size: 0.9rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .faq {
        padding: 3rem 0.75rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        margin: 2rem auto !important;
        width: calc(100% - 1.5rem);
        max-width: 1200px;
        box-sizing: border-box;
    }

    .faq .section-title,
    .faq .section-subtitle {
        color: #FFFFFF !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .faq-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .faq-item {
        background-color: var(--glass-bg) !important;
        backdrop-filter: blur(12px) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .faq-question h3 {
        color: #FFFFFF !important;
    }

    .faq-answer p {
        color: var(--text-muted) !important;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-toggle {
        font-size: 1.2rem;
        width: 25px;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .contact {
        padding: 2.5rem 0.5rem;
    }

    .contact-container {
        padding: 0 0.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .contact-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .contact-item h3 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* FORCED MOBILE OVERRIDES (Must be at end) */
@media (max-width: 900px) {

    /* Navbar: Force Horizontal Layout & Hide Links */
    header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 5px 5px 5px 15px !important;
        width: 92% !important;
        max-width: 400px !important;
        gap: 0 !important;
    }

    .nav-links {
        display: none !important;
    }

    .header-content {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 0 !important;
    }

    .btn-primary {
        margin-left: 0 !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    /* Badges: Force Tight Vertical Stack */
    .hero-badges {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-badge {
        margin-bottom: 0 !important;
    }

    /* Buttons: Force Centering */
    .hero-buttons {
        justify-content: center !important;
        width: 100% !important;
    }

    /* Raise Hero Content: Remove centering and reduce top padding */
    .hero {
        align-items: flex-start !important;
        /* Start from top instead of center */
        padding-top: 6rem !important;
        /* Clear the header but stay high */
        padding-bottom: 2rem !important;
        min-height: 80vh !important;
        /* Allow it to be shorter if needed */
    }
}