:root {
    --primary-color: #3b82f6;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary-color: #1e3a8a;
    --accent-color: #0ea5e9;
    --navy: #0f172a;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    --gradient-3: linear-gradient(135deg, #0ea5e9 0%, #1e40af 100%);
    --gradient-navy: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 35px rgba(14, 165, 233, 0.5); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
    overflow: hidden;
}

.header::before,
.header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.header::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0.3) 30%, rgba(59, 130, 246, 0.15) 60%, transparent 80%);
    top: -100px;
    left: 5%;
    animation: bubble-float 15s ease-in-out infinite;
    mix-blend-mode: multiply;
}

.header::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, rgba(14, 165, 233, 0.3) 30%, rgba(14, 165, 233, 0.15) 60%, transparent 80%);
    top: -80px;
    right: 10%;
    animation: bubble-float 12s ease-in-out infinite reverse;
    mix-blend-mode: multiply;
}

@keyframes bubble-float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) translateX(15px) scale(1.05);
        opacity: 0.65;
    }
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: 1rem;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image {
    height: 2.25rem;
    width: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.logo:hover .logo-text {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-2);
    background-size: 200% 200%;
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, #eff6ff 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

/* Particules flottantes */
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 5s linear forwards;
    box-shadow: 0 0 10px var(--primary-light);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Bulles d'aquarium sans logos */
.aquarium-bubble {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.15) 40%, transparent 70%);
    mix-blend-mode: multiply;
    animation: bubbleRise linear forwards;
    will-change: transform, opacity;
}

.hero .aquarium-bubble {
    position: absolute;
    z-index: 0;
    bottom: -100px;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0;
    }
    3% {
        opacity: 0.7;
    }
    97% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-200vh) translateX(var(--bubble-drift, 0px)) scale(1.2);
        opacity: 0;
    }
}

.aquarium-bubble::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.15) 40%, transparent 70%);
    z-index: -1;
}

/* Assurer que le contenu du hero est au-dessus des bulles */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slide-up 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    animation: scale-in 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-bar-fill {
    height: 100%;
    background: var(--gradient-2);
    width: 0;
    animation: fillBar 2s ease-out forwards;
    animation-delay: 0.5s;
}

.stat-bar-full {
    animation: fillBar 2s ease-out forwards, pulseBar 2s ease-in-out infinite;
    animation-delay: 0.5s, 2.5s;
}

@keyframes fillBar {
    to { width: 100%; }
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Features Section */
.features {
    padding: 6rem 0 3rem 0;
    background-color: var(--bg-white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.feature-card {
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(59, 130, 246, 0.3) 30%, rgba(59, 130, 246, 0.15) 60%, transparent 80%);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    animation: card-bubble 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

@keyframes card-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(-20px, 20px) scale(1.2);
        opacity: 0.7;
    }
    66% {
        transform: translate(20px, -10px) scale(0.8);
        opacity: 0.55;
    }
}

@keyframes card-bubble-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(25px, -15px) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes card-bubble-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(-15px, -25px) scale(0.9);
        opacity: 0.65;
    }
    75% {
        transform: translate(15px, 25px) scale(1.1);
        opacity: 0.7;
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: var(--primary-light);
}

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

.feature-card > * {
    position: relative;
    z-index: 1;
}

.highlight-card {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
                var(--gradient-2) border-box;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.highlight-card .feature-title {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon-pro {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 1rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon-pro {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* How it Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--gradient-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.how-it-works .section-title,
.how-it-works .section-description {
    color: white;
}

.how-it-works .step {
    background: white;
}

.how-it-works .step-title {
    color: var(--text-dark);
}

.how-it-works .step-description {
    color: var(--text-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0.25) 30%, rgba(59, 130, 246, 0.12) 60%, transparent 80%);
    border-radius: 50%;
    top: -40px;
    left: -40px;
    animation: step-bubble 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

@keyframes step-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, 20px) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes step-bubble-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-25px, 15px) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes step-bubble-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    40% {
        transform: translate(30px, -10px) scale(0.9);
        opacity: 0.65;
    }
    80% {
        transform: translate(-30px, 10px) scale(1.3);
        opacity: 0.7;
    }
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: var(--primary-light);
}

.step > * {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.5);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    animation: float 2s ease-in-out infinite;
}

/* Pricing Section */
.pricing {
    padding: 3rem 0 6rem 0;
    background: var(--bg-light);
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card-highlight,
.pricing-card-oneshot {
    padding: 3rem;
    padding-top: 4rem;
    background: var(--bg-white);
    border: 3px solid transparent;
    border-radius: 1.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    margin-top: 1.5rem;
}

.pricing-card-highlight::before,
.pricing-card-oneshot::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(59, 130, 246, 0.3) 30%, rgba(59, 130, 246, 0.15) 60%, transparent 80%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: pricing-bubble 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.pricing-card-highlight::after,
.pricing-card-oneshot::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.45) 0%, rgba(14, 165, 233, 0.3) 30%, rgba(14, 165, 233, 0.15) 60%, transparent 80%);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    animation: pricing-bubble 7s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

@keyframes pricing-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -30px) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes pricing-bubble-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-25px, 25px) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes pricing-bubble-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(20px, 20px) scale(0.95);
        opacity: 0.65;
    }
    66% {
        transform: translate(-20px, -20px) scale(1.25);
        opacity: 0.7;
    }
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card-highlight {
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
                var(--gradient-2) border-box;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.pricing-card-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.25);
}

.pricing-card-oneshot {
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
                var(--gradient-3) border-box;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

.pricing-card-oneshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(14, 165, 233, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    background-size: 200% 200%;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
    animation: gradient-shift 5s ease infinite;
    z-index: 10;
}

.pricing-badge-alt {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-3);
    background-size: 200% 200%;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.3);
    animation: gradient-shift 5s ease infinite;
}

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

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.check-icon {
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.subscription-fee {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 1rem;
    border: 2px solid var(--primary-color);
    margin: 1.5rem 0;
}

.pricing-highlight svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-highlight strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-highlight p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-bonus {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 0.75rem;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.pricing-bonus strong {
    color: var(--primary-dark);
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-promo {
    max-width: 500px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 1rem;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-promo svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-promo > div {
    flex: 1;
    text-align: center;
}

.pricing-promo strong {
    color: var(--primary-dark);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-promo p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.pricing-promo-code {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.pricing-promo-code strong {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
    display: block;
}

.promo-code-highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.promo-code-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: normal;
}

.promo-total {
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 0.75rem;
    border: 2px solid var(--primary-color);
}

.promo-total-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.promo-total-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.promo-breakdown {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.promo-breakdown p {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.hero-promo-code {
    margin-top: 2rem;
    text-align: center;
}

.promo-code-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.promo-code-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.promo-code-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.promo-code-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-alert {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(251, 146, 60, 0.1);
    border-left: 3px solid #fb923c;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.pricing-alert svg {
    color: #fb923c;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-alert span {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.price-range {
    margin: 1rem 0;
}

.price-from {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.pricing-tiers {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 1rem;
    border: 2px solid var(--border-color);
}

.pricing-tiers h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-white);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.2);
}

.tier-item.highlight-tier {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, var(--bg-white) 100%);
}

.tier-item.best-tier {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, var(--bg-white) 100%);
    position: relative;
}

.tier-item.best-tier::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
}

.tier-range {
    font-weight: 500;
    color: var(--text-dark);
}

.tier-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tier-item:hover .tier-price {
    color: var(--primary-dark);
}

.best-tier .tier-price {
    font-size: 1.25rem;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--gradient-2);
    background-size: 200% 200%;
    color: white;
    position: relative;
    overflow: hidden;
    animation: gradient-shift 10s ease infinite;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.stats-content {
    text-align: center;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.stat-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-box-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-box-icon {
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
}

/* Animated Chart */
.stats-chart-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.chart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.chart-header p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.animated-chart {
    position: relative;
}

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

#growthLine {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-out forwards;
}

#growthArea {
    opacity: 0;
    animation: fadeInArea 2s ease-out forwards 1s;
}

.chart-dot {
    opacity: 0;
    animation: popDot 0.5s ease-out forwards;
}

.chart-dot:nth-child(6) { animation-delay: 0.5s; }
.chart-dot:nth-child(7) { animation-delay: 0.8s; }
.chart-dot:nth-child(8) { animation-delay: 1.1s; }
.chart-dot:nth-child(9) { animation-delay: 1.4s; }
.chart-dot:nth-child(10) { animation-delay: 1.7s; }
.chart-dot:nth-child(11) { animation-delay: 2s; }
.chart-dot:nth-child(12) { animation-delay: 2.3s; }
.chart-dot:nth-child(13) { animation-delay: 2.6s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 0.3;
    }
}

@keyframes popDot {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 50px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Progress Rings */
.progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: 0;
}

.progress-ring-circle {
    transition: stroke-dashoffset 2s ease-out;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.stat-box.animated .progress-ring-circle {
    stroke-dashoffset: 0;
}

/* Pulse Indicator */
.pulse-indicator {
    width: 12px;
    height: 12px;
    background: #60a5fa;
    border-radius: 50%;
    margin: 1rem auto 0;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(96, 165, 250, 0);
    }
}

.stat-box-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Excel Animation Section */
.excel-animation-section {
    padding: 3rem 0 6rem 0;
    background: var(--bg-white);
}

.excel-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.excel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid var(--border-color);
}

.excel-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 0;
}

.excel-filename {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.excel-title svg {
    color: var(--primary-color);
}

.excel-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.loading-indicator {
    display: flex;
    gap: 0.25rem;
}

.loading-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: loadingBounce 1.4s infinite ease-in-out both;
}

.loading-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loadingBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.excel-count {
    font-weight: 600;
    color: var(--primary-color);
}

.excel-table-wrapper {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
}

.excel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.excel-table thead {
    position: sticky;
    top: 0;
    background: var(--primary-color);
    color: white;
    z-index: 10;
}

.excel-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.excel-table th:first-child {
    width: 50px;
    text-align: center;
}

.excel-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    animation: slideInRow 0.5s ease-out forwards;
}

.excel-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.excel-table td {
    padding: 0.75rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.excel-table td:first-child {
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

@keyframes slideInRow {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Type badges */
.type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.type-agent {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.type-agence {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-color);
}

.type-mandataire {
    background: rgba(30, 58, 138, 0.1);
    color: var(--secondary-color);
}

.excel-footer {
    padding: 1.5rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.excel-progress {
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.excel-progress-bar {
    height: 100%;
    background: var(--gradient-2);
    width: 0;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.excel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.excel-info span:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

.excel-status {
    color: var(--text-light);
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 3rem 0 3rem 0;
    background: var(--bg-light);
}

.preview-main {
    margin-bottom: 4rem;
}

.preview-image-large {
    background: var(--bg-light);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.preview-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-caption {
    padding: 2rem;
    background: var(--bg-white);
    text-align: center;
}

.preview-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.preview-caption p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.preview-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.preview-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.preview-item.reverse {
    direction: rtl;
}

.preview-item.reverse > * {
    direction: ltr;
}

.preview-image {
    background: var(--bg-light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.preview-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.preview-content strong {
    color: var(--primary-color);
}

.preview-features {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border-color);
}

.preview-features h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.preview-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.preview-feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.preview-feature-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.preview-feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

/* Quality Section */
.quality-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.quality-title,
.quality-description {
    color: white;
}

.quality-card {
    background: white;
}

.quality-card h3 {
    color: var(--text-dark);
}

.quality-card p {
    color: var(--text-light);
}

.quality-content {
    max-width: 1100px;
    margin: 0 auto;
}

.quality-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.quality-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 1rem;
}

.quality-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.quality-card {
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quality-card::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -35px;
    right: -35px;
    animation: quality-bubble 11s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.quality-card::after {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    animation: quality-bubble 8s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes quality-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-25px, 25px) scale(1.25);
        opacity: 0.7;
    }
}

@keyframes quality-bubble-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -20px) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes quality-bubble-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    40% {
        transform: translate(-20px, -30px) scale(0.9);
        opacity: 0.65;
    }
    80% {
        transform: translate(20px, 30px) scale(1.3);
        opacity: 0.7;
    }
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
    border-color: var(--primary-light);
    background: white;
}

.quality-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 1.25rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(59, 130, 246, 0.3);
}

.quality-card:hover .quality-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.5);
}

.quality-card > * {
    position: relative;
    z-index: 1;
}

.quality-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quality-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Control Section */
.control-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.control-content {
    max-width: 900px;
    margin: 0 auto;
}

.control-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.control-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.control-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.control-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 0.75rem;
    color: white;
}

.control-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.control-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-title,
.contact-description {
    color: white;
}

.contact-method {
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(59, 130, 246, 0.3) 30%, rgba(59, 130, 246, 0.15) 60%, transparent 80%);
    border-radius: 50%;
    top: -40px;
    left: -40px;
    animation: contact-bubble 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.contact-method::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.45) 0%, rgba(14, 165, 233, 0.3) 30%, rgba(14, 165, 233, 0.15) 60%, transparent 80%);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    animation: contact-bubble 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

@keyframes contact-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(25px, -25px) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes contact-bubble-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes contact-bubble-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    30% {
        transform: translate(15px, 30px) scale(0.85);
        opacity: 0.65;
    }
    70% {
        transform: translate(-15px, -30px) scale(1.35);
        opacity: 0.7;
    }
}

.contact-method h3 {
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.contact-link {
    color: var(--primary-color);
}

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-method {
    flex: 0 1 300px;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-width: 280px;
    max-width: 320px;
}

.contact-method:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
    background: white;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 50%;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(14, 165, 233, 0.5);
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-offer {
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 1rem;
    border: 2px solid var(--accent-color);
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.contact-offer strong {
    color: var(--primary-dark);
    font-size: 1.25rem;
}

/* Legal Pages */
.legal-section {
    padding: 10rem 0 4rem;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.legal-back {
    margin-top: 4rem;
    text-align: center;
}

.footer-company {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-text {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-image {
        height: 1.75rem;
        width: 1.75rem;
        flex-shrink: 0;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 0.6rem 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .step-arrow {
        display: none;
    }

    .step {
        padding: 1.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .control-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .control-icon {
        margin: 0 auto;
    }

    .control-item h3 {
        font-size: 1.25rem;
    }

    .control-item p {
        font-size: 0.95rem;
    }

    .preview-item,
    .preview-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
    }

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

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quality-card {
        padding: 2rem;
    }

    .nav-links {
        display: none;
    }

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

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

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

    .pricing-card-highlight,
    .pricing-card-oneshot {
        padding: 2rem;
    }

    .features {
        padding: 4rem 0;
    }

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

    .control-section {
        padding: 4rem 0;
    }

    .quality-section {
        padding: 4rem 0;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .pricing {
        padding: 4rem 0;
    }

    .excel-animation-section {
        padding: 4rem 0;
    }

    .dashboard-preview {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 0;
    }

    .navbar {
        padding: 0.75rem 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .logo {
        gap: 0.5rem;
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 140px);
    }

    .logo-text {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-image {
        height: 1.5rem;
        width: 1.5rem;
        flex-shrink: 0;
    }

    .btn-primary {
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .step {
        padding: 1.25rem;
    }

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

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .control-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .control-item {
        padding: 1.25rem;
    }

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

    .control-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .contact-method {
        flex: 1 1 100%;
        min-width: auto;
        max-width: 100%;
        padding: 1.5rem;
    }

    .pricing-card-highlight,
    .pricing-card-oneshot {
        padding: 1.5rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-features {
        font-size: 0.9rem;
    }

    .pricing-features li {
        margin-bottom: 0.75rem;
    }

    .quality-card {
        padding: 1.5rem;
    }

    .quality-card h3 {
        font-size: 1.25rem;
    }

    .quality-card p {
        font-size: 0.9rem;
    }

    .excel-container {
        margin-top: 2rem;
    }

    .excel-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .excel-title {
        flex: 1;
        min-width: 0;
    }

    .excel-filename {
        font-size: 0.85rem;
    }

    .excel-stats {
        font-size: 0.8rem;
    }

    .excel-table {
        font-size: 0.85rem;
    }

    .excel-table th,
    .excel-table td {
        padding: 0.5rem;
    }

    .preview-image-large {
        margin-bottom: 2rem;
    }

    .preview-caption h3 {
        font-size: 1.25rem;
    }

    .preview-caption p {
        font-size: 0.9rem;
    }

    .preview-content h3 {
        font-size: 1.25rem;
    }

    .preview-content p {
        font-size: 0.9rem;
    }

    .features {
        padding: 3rem 0;
    }

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

    .control-section {
        padding: 3rem 0;
    }

    .quality-section {
        padding: 3rem 0;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .pricing {
        padding: 3rem 0;
    }

    .excel-animation-section {
        padding: 3rem 0;
    }

    .dashboard-preview {
        padding: 3rem 0;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

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

/* Logos Section */
.logos-section {
    padding: 3rem 0;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.logos-section::before,
.logos-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.logos-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.logos-slider {
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 25s linear infinite;
    will-change: transform;
    width: fit-content;
}

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

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 200px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    max-height: 70px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-item img[src*="iad.svg"] {
    max-height: 110px;
    max-width: 260px;
    transform: scale(1.6);
}

@media (max-width: 968px) {
    .logos-section {
        padding: 2rem 0;
    }

    .logos-track {
        gap: 3rem;
        animation: scroll-logos 20s linear infinite;
    }

    .logo-item {
        height: 70px;
        width: 160px;
    }

    .logo-item img {
        max-height: 60px;
        max-width: 150px;
    }

    .logo-item img[src*="iad.svg"] {
        max-height: 90px;
        max-width: 220px;
        transform: scale(1.6);
    }
}

@media (max-width: 640px) {
    .logos-section {
        padding: 1.5rem 0;
    }

    .logos-track {
        gap: 2rem;
        animation: scroll-logos 18s linear infinite;
    }

    .logo-item {
        height: 60px;
        width: 140px;
    }

    .logo-item img {
        max-height: 50px;
        max-width: 130px;
    }

    .logo-item img[src*="iad.svg"] {
        max-height: 80px;
        max-width: 200px;
        transform: scale(1.6);
    }
}

