/* ============================================
   AUTO-ECOLE GRACIEUSE - NOUVEAU DESIGN 2024
   Design Moderne, Épuré et Premium
   Palette Verifplace Glassmorphism
   ============================================ */

/* === VARIABLES CSS === */
:root {
    /* Palette Verifplace */
    --color-red: #ce6a6b;
    --color-pink: #ebaca2;
    --color-sage: #bed3c3;
    --color-teal: #afa4ce;
    --color-navy: #212e53;

    /* Couleurs dérivées */
    --primary: #212e53;
    --primary-light: #3a4a7a;
    --primary-dark: #151d36;
    --accent: #ce6a6b;
    --accent-light: #ebaca2;
    --success: #bed3c3;
    --info: #afa4ce;

    /* Glassmorphism */
    --glass-bg-strong: rgba(255, 255, 255, 0.92);
    --glass-bg-medium: rgba(255, 255, 255, 0.75);
    --glass-bg-light: rgba(255, 255, 255, 0.5);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(33, 46, 83, 0.12);
    --glass-blur: blur(16px);
    --glass-radius: 20px;

    /* Dégradés */
    --gradient-primary: linear-gradient(135deg, var(--color-navy) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-pink) 0%, var(--color-red) 100%);
    --gradient-soft: linear-gradient(135deg, var(--color-sage) 0%, var(--color-teal) 100%);
    --gradient-hero: linear-gradient(160deg, #f8f9fc 0%, #eef1f8 50%, #e8f0f8 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(175, 164, 206, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(190, 211, 195, 0.15) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(235, 172, 162, 0.1) 0px, transparent 50%);

    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-tertiary: #eef1f8;
    --bg-dark: var(--color-navy);

    /* Textes */
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a7a;
    --text-muted: #8a8aa8;
    --text-light: #ffffff;

    /* Bordures et ombres */
    --border-color: rgba(33, 46, 83, 0.08);
    --border-light: rgba(255, 255, 255, 0.3);
    --shadow-xs: 0 1px 3px rgba(33, 46, 83, 0.04);
    --shadow-sm: 0 2px 8px rgba(33, 46, 83, 0.06);
    --shadow-md: 0 8px 24px rgba(33, 46, 83, 0.08);
    --shadow-lg: 0 16px 48px rgba(33, 46, 83, 0.1);
    --shadow-xl: 0 24px 64px rgba(33, 46, 83, 0.12);
    --shadow-glow: 0 0 60px rgba(206, 106, 107, 0.2);
    --shadow-accent: 0 8px 30px rgba(206, 106, 107, 0.25);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 0.15s var(--ease-smooth);
    --transition-normal: 0.3s var(--ease-smooth);
    --transition-slow: 0.5s var(--ease-smooth);

    /* Espacements */
    --section-padding: clamp(4rem, 8vw, 7rem);
    --container-padding: clamp(1rem, 4vw, 2rem);
}

/* === MODE SOMBRE === */
[data-theme="dark"] {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --text-primary: #f0f6fc;
    --text-secondary: rgba(240, 246, 252, 0.7);
    --text-muted: rgba(240, 246, 252, 0.5);
    --border-color: rgba(240, 246, 252, 0.1);
    --glass-bg-strong: rgba(22, 27, 34, 0.95);
    --glass-bg-medium: rgba(22, 27, 34, 0.8);
    --glass-bg-light: rgba(22, 27, 34, 0.6);
    --gradient-hero: linear-gradient(160deg, #0d1117 0%, #161b22 50%, #1a2233 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--color-navy);
    color: var(--text-light);
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.top-bar a:hover {
    color: var(--color-pink);
}

.top-bar i {
    font-size: 0.875rem;
}

/* ============================================
   NAVIGATION PRINCIPALE
   ============================================ */

.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.main-nav.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.main-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-navy);
}

.nav-logo i {
    color: var(--accent);
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.625rem 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 10px;
    position: relative;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(206, 106, 107, 0.06);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: #20bd5a;
    color: white;
    transform: translateY(-1px);
}

.nav-cta i {
    font-size: 1.1rem;
}

.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.nav-login:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-1px);
}

[data-theme="dark"] .nav-login {
    border-color: var(--accent-light);
    color: var(--accent-light);
}

[data-theme="dark"] .nav-login:hover {
    background: var(--accent-light);
    color: #0d1117;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION - DESIGN CENTRÉ SIMPLIFIÉ
   ============================================ */

.hero {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.hero .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(80px);
}

.hero-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-teal);
    top: -100px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-pink);
    bottom: -50px;
    left: -50px;
}

.hero-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-sage);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-wrapper {
    text-align: center;
}

.hero-main {
    max-width: 700px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(206, 106, 107, 0.12), rgba(235, 172, 162, 0.12));
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(206, 106, 107, 0.2);
}

.hero-tag i {
    font-size: 0.85rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.hero-title .gradient-text {
    display: inline;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

/* Hero Price Box */
.hero-price-box {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: inline-block;
}

.hero-price-box .price-main {
    margin-bottom: 1rem;
}

.hero-price-box .price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
}

.hero-price-box .price-amount sup {
    font-size: 1.25rem;
    vertical-align: super;
}

.hero-price-box .price-detail {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-price-box .price-includes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.hero-price-box .price-includes span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-price-box .price-includes i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.btn-whatsapp-large:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp-large i {
    font-size: 1.25rem;
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s var(--ease-smooth);
}

.btn-outline-large:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(206, 106, 107, 0.05);
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-box .stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
}

.stat-box .stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--accent);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.problem-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.problem-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-section .section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(206, 106, 107, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem-section .section-header h2 {
    margin-bottom: 1rem;
}

.problem-section .section-header p {
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-card {
    background: var(--bg-primary);
    border-radius: var(--glass-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.problem-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(206, 106, 107, 0.1), rgba(206, 106, 107, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.problem-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Solution Box */
.solution-box {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 3rem;
    color: var(--text-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.solution-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-content h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.solution-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.solution-content .btn {
    background: var(--text-light);
    color: var(--color-navy);
}

.solution-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.calendar-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.calendar-header {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.calendar-grid .day-name {
    font-size: 0.75rem;
    opacity: 0.7;
    padding-bottom: 0.5rem;
}

.calendar-grid .day {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    margin: 0 auto;
}

.calendar-grid .day.available {
    background: rgba(190, 211, 195, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-grid .day.available:hover {
    background: var(--color-sage);
    color: var(--color-navy);
}

.calendar-grid .day.today {
    background: var(--color-pink);
    color: var(--color-navy);
    font-weight: 700;
}

/* ============================================
   OFFER SECTION
   ============================================ */

.offer-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.offer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.offer-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offer-section .section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(175, 164, 206, 0.1);
    color: var(--info);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.offer-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.offer-item {
    background: var(--bg-secondary);
    border-radius: var(--glass-radius);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.offer-item:hover {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-color: rgba(206, 106, 107, 0.2);
}

.offer-item .icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.offer-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.offer-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Offer Price Card */
.offer-price-card {
    background: var(--bg-primary);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: sticky;
    top: 120px;
    border: 1px solid var(--border-color);
}

.offer-price-card .card-header {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.offer-price-card .card-header .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-price-card .card-header .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.offer-price-card .card-header .price sup {
    font-size: 1.25rem;
    top: -1.25rem;
}

.offer-price-card .card-header small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.offer-price-card .card-body {
    padding: 2rem;
}

.offer-price-card .features-list {
    margin-bottom: 1.5rem;
}

.offer-price-card .features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.offer-price-card .features-list li:last-child {
    border-bottom: none;
}

.offer-price-card .features-list li i {
    color: var(--success);
}

.offer-price-card .btn-block {
    width: 100%;
    margin-bottom: 1rem;
}

.offer-price-card .guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offer-price-card .guarantee i {
    color: var(--success);
}

.price-card-inner {
    height: 100%;
}

.price-card-header {
    background: var(--gradient-accent);
    color: white;
    padding: 2rem;
    text-align: center;
}

.price-card-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-card-amount {
    margin-bottom: 0.5rem;
}

.amount-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
}

.price-card-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-card-body {
    padding: 2rem;
}

.price-card-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(190, 211, 195, 0.15);
    color: #3d7a4a;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.price-card-payment {
    margin-bottom: 1.5rem;
}

.price-card-payment p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.payment-methods i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.price-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: all 0.3s var(--ease-smooth);
    margin-bottom: 0.75rem;
}

.price-card-cta:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: white;
}

.price-card-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.steps-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.steps-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-section .section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(190, 211, 195, 0.2);
    color: #3d7a4a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.steps-timeline {
    position: relative;
}

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step-connector {
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, var(--color-navy), var(--color-teal));
    z-index: 1;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-content {
    padding-top: 0.75rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   CONDITIONS SECTION
   ============================================ */

.conditions-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.conditions-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.conditions-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.conditions-section .section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(33, 46, 83, 0.1);
    color: var(--color-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.conditions-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

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

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.condition-item .icon {
    width: 44px;
    height: 44px;
    background: var(--bg-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.condition-item .text h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.condition-item .text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-section .section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.15);
    color: #d4a600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: var(--glass-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
}

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

.testimonial-card.featured {
    grid-row: span 2;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
}

.testimonial-card.featured .stars {
    color: #FFD700;
}

.testimonial-card.featured blockquote {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.testimonial-card.featured .author-name {
    color: var(--text-light);
}

.testimonial-card.featured .author-info {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1.1rem;
}

.testimonial-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.testimonial-card .author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-card .author-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(175, 164, 206, 0.15);
    color: var(--info);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item[open] {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-color: rgba(206, 106, 107, 0.2);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    transition: transform 0.3s var(--ease-smooth);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.cta-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: rotateSlow 30s linear infinite;
}

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

.cta-card h2 {
    color: var(--text-light);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta-card .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-card .btn-light {
    background: var(--text-light);
    color: var(--color-navy);
}

.cta-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-card .btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

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

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.btn-cta-primary:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-section .section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(190, 211, 195, 0.2);
    color: #3d7a4a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-item {
    background: var(--bg-secondary);
    border-radius: var(--glass-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.contact-card-item:hover {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-color: rgba(206, 106, 107, 0.2);
}

.contact-card-item .icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.contact-card-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-card-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-card-item a {
    color: var(--accent);
    font-weight: 500;
}

.contact-card-item a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.9);
    transition: filter 0.3s;
}

.contact-map:hover iframe {
    filter: saturate(1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-navy);
    color: var(--text-light);
    padding-top: 4rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0 1.5rem;
    max-width: 300px;
}

.footer-brand .social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-brand .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.footer-brand .social-links a:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
}

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

.footer-col h5 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--color-pink);
    transform: translateX(4px);
}

.footer-col ul li a i {
    font-size: 0.75rem;
    color: var(--color-pink);
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--color-pink);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.admin-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none !important;
}

.admin-login-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(33, 46, 83, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(33, 46, 83, 0.35);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    box-shadow: 0 12px 35px rgba(206, 106, 107, 0.35);
}

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

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-light {
    background: var(--text-light);
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   THEME TOGGLE
   ============================================ */

.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-normal);
    color: var(--accent);
    font-size: 1.1rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-accent);
    color: var(--text-light);
    border-color: transparent;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    animation: fadeIn 0.6s var(--ease-smooth);
}

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

.slide-up {
    animation: slideUp 0.5s var(--ease-smooth);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-grid {
        gap: 3rem;
    }

    .offer-layout {
        grid-template-columns: 1fr 360px;
    }
}

@media (max-width: 991px) {
    .top-bar-content {
        justify-content: center;
    }

    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-bg-strong);
        backdrop-filter: var(--glass-blur);
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta span,
    .nav-login span {
        display: none;
    }

    .nav-login {
        padding: 0.5rem;
        width: 38px;
        height: 38px;
        justify-content: center;
    }

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

    .hero-price-box {
        padding: 1.5rem;
    }

    .hero-price-box .price-amount {
        font-size: 2.75rem;
    }

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

    .btn-whatsapp-large,
    .btn-outline-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats-row {
        gap: 1rem;
    }

    .stat-box {
        padding: 0.5rem 1rem;
    }

    .stat-box .stat-number {
        font-size: 1.25rem;
    }

    .solution-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .calendar-widget {
        max-width: 350px;
        margin: 0 auto;
    }

    .offer-layout {
        grid-template-columns: 1fr;
    }

    .offer-price-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .testimonial-card.featured {
        grid-row: span 1;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 767px) {
    :root {
        --section-padding: clamp(3rem, 6vw, 5rem);
    }

    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 1rem;
    }

    .hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

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

    .main-card {
        padding: 2rem;
    }

    .main-card .price {
        font-size: 3rem;
    }

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

    .solution-box {
        padding: 2rem;
    }

    .offer-details {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-connector {
        left: 24px;
        top: 50px;
        height: calc(100% - 50px);
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-card .cta-buttons {
        flex-direction: column;
    }

    .cta-card .cta-buttons .btn {
        width: 100%;
    }

    .contact-map {
        height: 300px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul li a {
        justify-content: center;
    }

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

    .theme-toggle {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   PAGES VILLES (Istres, Martigues, Port-de-Bouc)
   STYLES CONSERVÉS
   ============================================ */

.hero-section-city {
    background: var(--gradient-soft);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-section-city::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(206, 106, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(33, 46, 83, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.location-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.distance-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.advantage-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pricing-card-city {
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.price-header-city {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.price-display {
    margin: 1.5rem 0;
}

.price-large {
    font-size: 4rem;
    font-weight: 800;
    display: block;
}

.price-info {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.price-body-city {
    padding: 2.5rem;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

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

.route-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.route-steps {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.route-steps li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.faq-simple .faq-item-old {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--glass-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-item-old h5 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item-old h5 i {
    color: var(--accent);
}

.faq-item-old p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.testimonial-mini {
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-mini::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.feature-list li i {
    color: var(--success);
}

.proximity-alert {
    background: linear-gradient(135deg, rgba(206, 106, 107, 0.1), rgba(235, 172, 162, 0.1));
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: var(--glass-radius);
}

.proximity-alert h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.proximity-alert p {
    margin-bottom: 0;
}

/* ============================================
   ADMIN PANEL STYLES (CONSERVÉS)
   ============================================ */

.admin-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.admin-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem 0;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.admin-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotateSlow 30s linear infinite;
}

.admin-header h1 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.admin-header .subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.admin-card {
    background: var(--bg-primary);
    border: none;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    margin-bottom: 2rem;
    overflow: hidden;
}

.admin-card:hover {
    box-shadow: var(--shadow-lg);
}

.admin-card .card-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 24px 24px 0 0 !important;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
}

.admin-card .card-body {
    padding: 2rem;
}

.stat-card-admin {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card-admin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

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

.stat-card-admin.primary::before { background: var(--gradient-primary); }
.stat-card-admin.success::before { background: linear-gradient(135deg, var(--color-sage), #45a049); }
.stat-card-admin.info::before { background: linear-gradient(135deg, var(--color-teal), var(--color-navy)); }
.stat-card-admin.warning::before { background: linear-gradient(135deg, #ffc107, #ff9800); }

.stat-card-admin .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-card-admin.primary .icon { color: var(--color-navy); }
.stat-card-admin.success .icon { color: var(--color-sage); }
.stat-card-admin.info .icon { color: var(--color-teal); }
.stat-card-admin.warning .icon { color: #ffc107; }

.stat-card-admin .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-card-admin .label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.back-to-site {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-site:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   NAVBAR BOOTSTRAP OVERRIDE (pour pages villes)
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: var(--glass-bg-strong);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-navy) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .main-nav, .top-bar, .theme-toggle, .footer, .back-to-site {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: white !important;
    }

    * {
        box-shadow: none !important;
    }
}
