/* ==========================================================================
   Ora Media Buying Agency — Premium Design System
   Modern Pop-Tech & Startup aesthetic (Violet, Electric Blue, Neon details)
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    /* Color Palette */
    --purple: #7c3aed;
    --purple-hover: #6d28d9;
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --orange: #f97316;
    --green: #10b981;
    --green-glow: #22c55e;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    --grad-purple: linear-gradient(135deg, #a78bfa 0%, var(--purple) 100%);
    --grad-blue: linear-gradient(135deg, #60a5fa 0%, var(--blue) 100%);
    --grad-orange: linear-gradient(135deg, #fb923c 0%, var(--orange) 100%);
    --grad-green: linear-gradient(135deg, #34d399 0%, var(--green) 100%);
    
    /* Neutrals */
    --bg-light: #fafbfe;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --text-main: #0f172a;
    --text-muted: #475569;
    --white: #ffffff;
    --border-color: rgba(15, 23, 42, 0.06);
    --border-hover: rgba(124, 58, 237, 0.2);
    
    /* Spacing & Borders */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 20px 45px -15px rgba(124, 58, 237, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Titles font styling */
h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- Background Grid & Glows --- */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.glow-orb {
    position: fixed;
    border-radius: var(--radius-full);
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: multiply;
}

.glow-orb-purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float-orb 18s ease-in-out infinite alternate;
}

.glow-orb-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float-orb 24s ease-in-out infinite alternate-reverse;
}

@keyframes float-orb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.15); }
    100% { transform: translate(-30px, 30px) scale(0.9); }
}

/* --- Reusable Elements / Helpers --- */
.gradient-text {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-green {
    color: var(--green) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    gap: 8px;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 8px 24px -6px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -4px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, var(--purple-hover) 0%, var(--blue-hover) 100%);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.icon-right {
    transition: transform var(--transition-fast);
}

.btn:hover .icon-right {
    transform: translateX(4px);
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--purple);
    border-radius: 50%;
    position: relative;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--purple);
    animation: badge-ring 1.5s infinite ease-in-out;
}

@keyframes badge-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-pretitle {
    font-size: 13px;
    font-weight: 800;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 3.2vw, 42px);
    color: var(--text-main);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* --- Reveal Scroll Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

#main-header.scrolled {
    background: rgba(250, 251, 254, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.logo-circle-anim {
    transform-origin: center;
    animation: rotate-logo 12s linear infinite;
}

@keyframes rotate-logo {
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-main), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.mobile-menu-toggle {
    display: none;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-main);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--bg-light);
    border-color: var(--purple);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

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

.hero-title {
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.1;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.65;
}

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

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--orange);
}

.proof-text {
    font-size: 14px;
    color: var(--text-muted);
}

.proof-text strong {
    color: var(--text-main);
}

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

.hero-card-wrapper {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover), var(--shadow-glow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

/* Platform select tabs style */
.platform-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.platform-tab {
    background: transparent;
    border: none;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.platform-tab:hover {
    color: var(--text-main);
}

.platform-tab.active {
    background: var(--white);
    color: var(--purple);
    box-shadow: var(--shadow-soft);
}

/* Dashboard Mockup Card */
.ads-mockup-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 20px;
    position: relative;
}

.mockup-header-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.stat-header-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-header-box .stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-header-box .stat-value {
    font-size: clamp(16px, 1.8vw, 22px);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--text-main);
    transition: color var(--transition-fast);
}

/* Chart SVG Styles */
.chart-container {
    width: 100%;
    margin-top: 12px;
}

.performance-chart {
    width: 100%;
    overflow: visible;
}

.chart-grid-line {
    stroke: var(--border-color);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

#chart-line-path {
    stroke: var(--purple);
    transition: d 0.6s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.4s ease;
}

#chart-area-path {
    fill: url(#chart-glow);
    transition: d 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-dot {
    transition: cx 0.6s cubic-bezier(0.4, 0, 0.2, 1), cy 0.6s cubic-bezier(0.4, 0, 0.2, 1), fill 0.4s ease;
}

.pulse-dot {
    animation: chart-glow-pulse 2s infinite ease-in-out;
}

@keyframes chart-glow-pulse {
    0% { r: 6; stroke: rgba(124, 58, 237, 0.3); stroke-width: 0; }
    50% { r: 8; stroke: rgba(124, 58, 237, 0.5); stroke-width: 6; }
    100% { r: 6; stroke: rgba(124, 58, 237, 0.3); stroke-width: 0; }
}

.svg-tooltip-bg {
    fill: var(--text-main);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.svg-tooltip-txt {
    font-family: 'Inter', sans-serif;
}

/* Mockup Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
    animation: float-badge 6s ease-in-out infinite;
}

.badge-cpa {
    top: 40%;
    left: -40px;
}

.badge-leads {
    bottom: -20px;
    right: -25px;
    animation-delay: 2s;
}

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

.floating-badge .badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.badge-cpa .badge-icon {
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue);
}

.floating-badge .badge-details {
    display: flex;
    flex-direction: column;
}

.floating-badge .badge-details span {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge .badge-details strong {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 800;
}

/* ==========================================================================
   SECTION POURQUOI ORA
   ========================================================================== */
.why-section {
    padding: 100px 0;
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 24px;
}

.gradient-purple { background: var(--grad-purple); }
.gradient-blue { background: var(--grad-blue); }
.gradient-orange { background: var(--grad-orange); }
.gradient-green { background: var(--grad-green); }

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION OFFRES / PRICING
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Highlighted plan style */
.pricing-card.recommended {
    border: 2px solid var(--purple);
    background: var(--white);
    transform: scale(1.02);
}

.pricing-card.recommended:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.18);
}

/* Badges for recommended */
.card-badges {
    position: absolute;
    top: -15px;
    left: 40px;
    display: flex;
    gap: 8px;
}

.badge-recommended {
    background: var(--purple);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.badge-tagline {
    background: var(--text-main);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.pricing-card-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pricing-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.setup-fee {
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    background: rgba(124, 58, 237, 0.06);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.pricing-card-body {
    flex-grow: 1;
    margin-bottom: 32px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li strong {
    color: var(--text-main);
}

.check-icon {
    color: var(--green);
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.learn-more-btn {
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
}

.learn-more-btn:hover {
    color: var(--text-main);
}

.learn-more-btn.text-purple {
    color: var(--purple);
}

.learn-more-btn.text-purple:hover {
    color: var(--purple-hover);
}

/* ==========================================================================
   SECTION PROCESS / COMMENT CA MARCHE
   ========================================================================== */
.process-section {
    padding: 100px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 40px;
}

/* Horizonal connector line on desktop */
.process-timeline::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    position: relative;
    transition: all var(--transition-base);
}

.process-step:hover .step-number-box {
    border-color: var(--purple);
    color: var(--purple);
    transform: scale(1.05);
}

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--purple);
    opacity: 0;
    top: -1px;
    left: -1px;
    transition: all 0.4s ease;
}

.process-step:hover .step-pulse {
    animation: step-pulse-anim 1.5s infinite;
}

@keyframes step-pulse-anim {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.step-num {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 12px;
}

/* ==========================================================================
   SECTION CONTACT
   ========================================================================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 56px;
    box-shadow: var(--shadow-hover);
}

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

.contact-pretitle {
    font-size: 13px;
    font-weight: 800;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info h2 {
    font-size: clamp(28px, 3vw, 38px);
    color: var(--text-main);
}

.contact-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.08);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.detail-text strong {
    font-size: 14px;
    color: var(--text-main);
}

.email-link {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.email-link:hover {
    color: var(--purple);
}

/* Copy email action badge */
.copy-email-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    width: fit-content;
    margin-top: 16px;
    position: relative;
    user-select: none;
}

.copy-email-badge:hover {
    background: var(--white);
    border-color: var(--purple);
    color: var(--purple);
}

.copy-email-badge .copied-indicator {
    display: none;
    color: var(--green);
}

.copy-email-badge.copied .copy-text {
    display: none;
}

.copy-email-badge.copied .copied-indicator {
    display: inline-block;
}

/* Contact Form UI */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px 12px 42px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-main);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.contact-form textarea {
    padding-left: 16px; /* textareas don't need left icon padding */
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.submit-form-btn {
    margin-top: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 64px 0;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    width: fit-content;
}

.footer-links a:hover {
    color: var(--purple);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-email-link {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-email-link:hover {
    color: var(--purple);
}

.copyright {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}

/* ==========================================================================
   MODALES "EN SAVOIR PLUS"
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-box.recommended-border {
    border: 2px solid var(--purple);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-main);
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--white);
    color: var(--purple);
    border-color: var(--purple);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-main);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.modal-badge.recommended-bg {
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple);
}

.modal-header h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    color: var(--text-main);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.modal-section h3 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 12px;
    border-left: 3px solid var(--purple);
    padding-left: 10px;
}

.modal-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Modals step timeline */
.modal-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.m-step {
    border-left: 2px solid var(--border-color);
    padding-left: 20px;
    position: relative;
}

.m-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--white);
    border: 2px solid var(--purple);
    border-radius: 50%;
}

.m-step strong {
    font-size: 14px;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.m-step p {
    font-size: 13px;
    color: var(--text-muted);
}

.modal-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-bullets li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-bullets li i {
    color: var(--green);
    font-size: 12px;
}

/* Differences cards within recommended modal */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.diff-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.diff-icon {
    font-size: 18px;
    color: var(--purple);
    margin-top: 2px;
}

.diff-card h4 {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 4px;
}

.diff-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.modal-footer {
    margin-top: 36px;
    display: flex;
    justify-content: flex-end;
}

/* Confirmation Success Modal styling */
.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center !important;
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.success-details {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.success-details p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.success-details strong {
    color: var(--text-main);
}


/* ==========================================================================
   RESPONSIVE DESIGN (Mobile-First tweaks)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-social-proof {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 36px;
    }
}

@media (max-width: 768px) {
    /* Navigation burger interaction */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none; /* Controlled by JS toggle */
    }
    
    /* Pricing grid goes vertical */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 450px;
    }
    
    .pricing-card.recommended {
        transform: scale(1);
    }
    .pricing-card.recommended:hover {
        transform: translateY(-4px);
    }
    
    .card-badges {
        left: 20px;
    }
    
    /* Comment ça marche Timeline turns vertical */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-timeline::after {
        display: none; /* Hide horizontal line */
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }
    
    .step-number-box {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .process-step p {
        padding: 0;
    }
    
    /* Footer elements go vertical */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links a,
    .footer-email-link {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 110px 0 60px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        padding: 24px 16px;
    }
    
    .contact-form-wrapper {
        padding: 20px 16px;
    }
    
    .modal-box {
        padding: 24px 16px;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on very small phones to reduce clutter */
    }
}
