/* =========================================
   1. VARIABLES GLOBALES & RESET
========================================= */
:root {
    --primary: #FF7A00;
    --primary-hover: #e66e00;
    --bg-dark: #0F1115;
    --surface-dark: #171A21;
    --border-dark: #2A303C;
    
    --text-white: #FFFFFF;
    --text-slate-100: #F1F5F9;
    --text-slate-300: #CBD5E1;
    --text-slate-400: #94A3B8;
    --text-slate-500: #64748B;
    --text-slate-600: #475569;

    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-slate-100);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

::selection { background-color: var(--primary); color: var(--text-white); }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Utilitaires */
.text-primary { color: var(--primary) !important; }
.text-white { color: var(--text-white); }
.text-center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.icon-small { font-size: 18px; margin-right: 8px; vertical-align: middle; }
.shadow-primary { box-shadow: 0 10px 15px -3px rgba(255, 122, 0, 0.2); }

/* Layout */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =========================================
   2. COMPOSANTS PARTAGÉS (Boutons, Header, Footer)
========================================= */

/* --- BOUTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    border-radius: 0.5rem; font-weight: 700; font-size: 0.875rem;
    transition: all 0.2s ease; padding: 0.5rem 1rem; height: 36px;
}
.btn-large { height: 48px; padding: 0 2rem; border-radius: 0.75rem; font-size: 1rem; }
.btn-xl { height: 56px; padding: 0 2.5rem; border-radius: 1rem; font-size: 1.125rem; }
.btn-full { width: 100%; }

.btn-primary { background-color: var(--primary); color: var(--bg-dark); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }

.btn-surface { background-color: var(--surface-dark); color: var(--text-white); border: 1px solid var(--border-dark); }
.btn-surface:hover { background-color: var(--border-dark); }

.btn-outline { background-color: transparent; border: 1px solid var(--border-dark); color: var(--text-white); }
.btn-outline:hover { background-color: var(--surface-dark); color: var(--primary); }

.btn-outline-light { background-color: rgba(255,255,255,0.05); color: var(--text-white); border: 1px solid rgba(255,255,255,0.1); }
.btn-outline-light:hover { background-color: rgba(255,255,255,0.1); }

.btn-dark { background-color: var(--bg-dark); color: var(--text-white); }
.btn-dark:hover { background-color: #1e293b; }

/* --- HEADER --- */
.site-header {
    position: sticky; top: 0; z-index: 50; width: 100%;
    border-bottom: 1px solid var(--border-dark);
    background-color: rgba(15, 17, 21, 0.8); backdrop-filter: blur(12px);
}
.header-content { display: flex; height: 80px; align-items: center; justify-content: space-between; }
.logo-container { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 4px; background-color: transparent; color: var(--primary); }
.logo-icon span { font-size: 28px; }
.logo-icon.small { width: 24px; height: 24px; }
.logo-icon.small span { font-size: 24px; }
.logo-text { font-size: 1.25rem; font-weight: 700; color: var(--text-white); letter-spacing: -0.025em; }

.main-nav { display: none; gap: 2rem; font-size: 0.875rem; font-weight: 500; height: 100%; align-items: center; }
.main-nav a { color: var(--text-slate-300); height: 100%; display: flex; align-items: center; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: var(--primary); }
.main-nav a.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
@media (min-width: 768px) { .main-nav { display: flex; } }

/* --- FOOTER --- */
.site-footer { border-top: 1px solid var(--border-dark); background-color: var(--surface-dark); padding: 5rem 0 2rem; color: var(--text-slate-400); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { margin-top: 1.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; line-height: 1.6; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background-color: var(--bg-dark); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-links a:hover { background-color: var(--primary); color: var(--text-white); }
.social-links.border-style a { border-radius: 0.5rem; border: 1px solid var(--border-dark); color: var(--text-slate-400); }
.social-links.border-style a:hover { color: var(--primary); border-color: var(--primary); }
.footer-links h4, .footer-contact h4 { color: var(--text-white); font-weight: 700; margin-bottom: 1.5rem; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.footer-links a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; font-size: 0.75rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.payment-methods { display: flex; gap: 1.5rem; }
.payment-methods img { height: 24px; opacity: 0.3; filter: grayscale(100%); transition: all 0.2s; }
.payment-methods img:hover { opacity: 1; filter: grayscale(0%); }

/* --- TITRES DE SECTIONS COMMUNES --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.25rem; font-weight: 700; color: var(--text-white); margin-bottom: 1rem; }
.section-header p { color: var(--text-slate-400); max-width: 700px; margin: 0 auto; font-size: 1.125rem; }

/* Cartes de Solutions / Services communes */
.solution-card { background-color: var(--surface-dark); padding: 2rem; border-radius: 1rem; border: 1px solid var(--border-dark); transition: all 0.3s ease; }
.solution-card:hover { border-color: rgba(255, 122, 0, 0.5); transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(255, 122, 0, 0.1); }
.solution-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 0.5rem; background-color: rgba(255, 122, 0, 0.1); color: var(--primary); margin-bottom: 1.5rem; font-size: 2.5rem; transition: all 0.3s ease; }
.solution-card:hover .solution-icon { background-color: var(--primary); color: var(--bg-dark); }
.solution-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-white); }
.solution-card p { color: var(--text-slate-400); margin-bottom: 1.5rem; font-size: 1rem; }
.solution-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 700; }
.solution-card:hover .solution-link { gap: 0.75rem; }


/* =========================================
   3. PAGE D'ACCUEIL (Home)
========================================= */
.hero { position: relative; overflow: hidden; padding: 4rem 0; }
.hero-bg { position: absolute; inset: 0; z-index: -10; background: radial-gradient(ellipse at top, rgba(255,122,0,0.1), var(--bg-dark), var(--bg-dark)); }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero { padding: 8rem 0; } .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.hero-content { display: flex; flex-direction: column; gap: 2rem; }
.hero-content h1 { font-size: 3rem; font-weight: 900; line-height: 1.1; color: var(--text-white); }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.125rem; color: var(--text-slate-400); max-width: 600px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--text-slate-500); }
.feature-item { display: flex; align-items: center; }

.hero-image-container { aspect-ratio: 1 / 1; width: 100%; max-width: 500px; margin: 0 auto; border-radius: 1rem; overflow: hidden; border: 1px solid var(--border-dark); background-color: rgba(23, 26, 33, 0.5); position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom right, var(--surface-dark), var(--bg-dark)); display: flex; align-items: center; justify-content: center; }
.hero-image { width: 100%; height: 100%; background-image: url('https://placeholder.pics/svg/600/171A21/2A303C-FF7A00/tech%20server%20rack%20abstract'); background-size: cover; background-position: center; opacity: 0.8; }

.services { padding: 5rem 0; background-color: rgba(23, 26, 33, 0.3); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card-home { background-color: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 0.75rem; padding: 1.5rem; transition: all 0.3s ease; }

.service-card-home:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow: 0 10px 15px -3px rgba(255, 122, 0, 0.1);
}
.service-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 0.5rem;
    background-color: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.service-card-home:hover .service-icon {
    background-color: var(--primary);
    color: var(--bg-dark);
}
.service-card-home h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.service-card-home p { font-size: 0.875rem; color: var(--text-slate-400); }





.pricing { padding: 5rem 0; background-color: var(--bg-dark); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1152px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.pricing-card-home { display: flex; flex-direction: column; background-color: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 1rem; padding: 2rem; }
.pricing-card-home.popular { border: 2px solid var(--primary); position: relative; z-index: 10; box-shadow: 0 25px 50px -12px rgba(255, 122, 0, 0.1); }
@media (min-width: 768px) { .pricing-card-home.popular { transform: scale(1.05); } }

.badge {
    position: absolute; top: -12px; left: 0; right: 0; margin: 0 auto;
    width: max-content;
    background-color: var(--primary); color: var(--bg-dark);
    padding: 0.25rem 1rem; border-radius: 9999px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-header { margin-bottom: 1rem; }
.pricing-header h3 { font-size: 1.125rem; font-weight: 500; color: var(--text-slate-300); }
.price { margin-top: 1rem; display: flex; align-items: baseline; color: var(--text-white); }
.price .amount { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.025em; }
.price .period { margin-left: 0.25rem; font-size: 1.25rem; font-weight: 500; color: var(--text-slate-400); }
.pricing-header p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--text-slate-400); }

.pricing-features { flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: var(--text-slate-300); }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; }





.features-list { padding: 5rem 0; background-color: rgba(23, 26, 33, 0.3); border-top: 1px solid var(--border-dark); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-block { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-icon { color: var(--primary); margin-bottom: 0.5rem; }
.feature-icon span { font-size: 2.25rem; }
.feature-block h3 { font-size: 1.125rem; font-weight: 700; color: var(--text-white); }
.feature-block p { font-size: 0.875rem; color: var(--text-slate-400); line-height: 1.6; }
.features-header { margin-bottom: 3rem; }
.features-header h2 { font-size: 2rem; font-weight: 700; color: var(--text-white); margin-bottom: 1rem; }
.features-header p { color: var(--text-slate-400); max-width: 700px; }


.cta-section { position: relative; padding: 5rem 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background-color: rgba(255, 122, 0, 0.05); }
.cta-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; }
.cta-content h2 { font-size: 2rem; font-weight: 700; color: var(--text-white); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-content h2 { font-size: 3rem; } }
.cta-content p { color: var(--text-slate-400); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 600px; }


/* =========================================
   4. PAGE SERVICES
========================================= */
.services-hero { position: relative; padding: 5rem 0; overflow: hidden; }
.services-hero-bg { position: absolute; inset: 0; z-index: -10; background: radial-gradient(circle at top left, rgba(255,122,0,0.1), transparent 50%); }
.services-hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .services-hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.services-hero-content h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; color: var(--text-white); }
.services-hero-content h1 span { color: var(--primary); }
.services-hero-content .subtitle { font-size: 1.25rem; color: var(--text-slate-300); margin-bottom: 1rem; }
.services-hero-content .description { font-size: 1.125rem; color: var(--text-slate-400); margin-bottom: 2rem; }

.services-hero-visual { position: relative; }
.image-wrapper { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border-dark); aspect-ratio: 16/9; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.uptime-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background-color: var(--primary); padding: 1.5rem; border-radius: 0.75rem; display: none; }
@media (min-width: 768px) { .uptime-badge { display: block; } }
.uptime-title { color: var(--text-white); font-weight: 700; font-size: 1.5rem; }
.uptime-subtitle { color: rgba(255,255,255,0.8); font-size: 0.875rem; }

.hosting-solutions { padding: 6rem 0; background-color: rgba(23, 26, 33, 0.2); }
.solutions-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(3, 1fr); } }

.website-solutions { padding: 6rem 0; }
.solutions-header-row { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .solutions-header-row { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.solutions-header-row h2 { font-size: 2.25rem; font-weight: 700; color: var(--text-white); margin-bottom: 1rem; }
.solutions-header-row p { color: var(--text-slate-400); max-width: 600px; }
.solutions-list { display: flex; flex-direction: column; gap: 2rem; }
.solution-row { display: flex; flex-direction: column; background-color: var(--surface-dark); border-radius: 1rem; border: 1px solid var(--border-dark); overflow: hidden; }
@media (min-width: 768px) { .solution-row { flex-direction: row; align-items: center; } .solution-row.reverse { flex-direction: row-reverse; } }
.solution-row-image { height: 250px; width: 100%; }
@media (min-width: 768px) { .solution-row-image { width: 33.333%; height: 300px; } }
.solution-row-image img { width: 100%; height: 100%; object-fit: cover; }
.solution-row-content { padding: 2rem; width: 100%; }
@media (min-width: 768px) { .solution-row-content { width: 66.666%; } }
.solution-row-content .tag { color: var(--primary); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.solution-row-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-white); margin: 0.5rem 0 1rem; }
.solution-row-content p { color: var(--text-slate-400); line-height: 1.6; }

.human-support { padding: 6rem 0; background-color: var(--primary); color: var(--text-white); }
.support-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .support-grid { grid-template-columns: 1fr 1fr; } }
.support-mockup { position: relative; }
.chat-container { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 1.5rem; padding: 2rem; position: relative; z-index: 10; }
.chat-message { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.chat-message.expert { justify-content: flex-end; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.client .chat-avatar { background-color: var(--text-white); color: var(--primary); }
.expert .chat-avatar { background-color: var(--bg-dark); color: var(--text-white); }
.chat-bubble { padding: 1rem; border-radius: 1rem; font-size: 0.875rem; max-width: 80%; }
.client .chat-bubble { background-color: rgba(255, 255, 255, 0.2); border-top-left-radius: 0; }
.expert .chat-bubble { background-color: var(--text-white); color: var(--bg-dark); border-top-right-radius: 0; }
.expert-name { font-weight: 700; margin-bottom: 0.25rem; }
.glow-effect { position: absolute; top: -2rem; right: -2rem; width: 8rem; height: 8rem; background-color: rgba(255, 234, 0, 0.3); border-radius: 50%; filter: blur(40px); z-index: 1; }
.support-content h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.support-content p { font-size: 1.125rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.support-features { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.support-features li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }

.why-choose-us { padding: 6rem 0; text-align: center; }
.why-grid { display: grid; gap: 2.5rem; }
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-icon { width: 64px; height: 64px; background-color: rgba(255, 122, 0, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.why-icon span { font-size: 32px; color: var(--primary); }
.why-item h4 { font-size: 1.125rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.why-item p { font-size: 0.875rem; color: var(--text-slate-400); }

.services-cta { padding: 5rem 1rem; }
.cta-box { max-width: 900px; margin: 0 auto; background-color: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 1.5rem; padding: 4rem 2rem; text-align: center; }
.cta-box h2 { font-size: 2.25rem; font-weight: 900; color: var(--text-white); margin-bottom: 1.5rem; }
.cta-box p { font-size: 1.25rem; color: var(--text-slate-300); margin-bottom: 2.5rem; max-width: 600px; margin-inline: auto; }


/* =========================================
   5. PAGE TARIFS (Pricing)
========================================= */
.pricing-page-wrapper {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 122, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 122, 0, 0.05) 0px, transparent 50%);
    min-height: 100vh;
}

.pricing-hero { padding: 5rem 0 4rem; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background-color: rgba(255, 122, 0, 0.1); border: 1px solid rgba(255, 122, 0, 0.2); color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.pricing-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; letter-spacing: -0.025em; color: var(--text-white); }
@media (min-width: 768px) { .pricing-hero h1 { font-size: 3.75rem; } }
.pricing-hero h1 span { color: var(--primary); }
.pricing-hero p { font-size: 1.125rem; color: var(--text-slate-400); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.6; }
.pricing-hero .hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }

.pricing-toggle { display: inline-flex; align-items: center; gap: 0.5rem; background-color: rgba(30, 41, 59, 0.5); padding: 0.375rem; border-radius: 0.75rem; border: 1px solid var(--border-dark); margin: 0 auto; }
.pricing-toggle button { padding: 0.5rem 1.5rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700; background: transparent; color: var(--text-slate-400); transition: all 0.2s; }
.pricing-toggle button.active { background-color: var(--surface-dark); color: var(--text-white); box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.pricing-toggle button:not(.active):hover { color: var(--text-slate-300); }

.pricing-cards-section { padding-bottom: 6rem; }
.pricing-cards-grid { display: grid; gap: 2rem; max-width: 1152px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card { background-color: var(--surface-dark); border: 1px solid var(--border-dark); padding: 2rem; border-radius: 1rem; display: flex; flex-direction: column; }
.plan-card.popular { border: 2px solid var(--primary); position: relative; box-shadow: 0 0 30px rgba(255, 123, 0, 0.15); }
.popular-badge { position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); background-color: var(--primary); color: var(--bg-dark); font-size: 0.625rem; font-weight: 900; text-transform: uppercase; padding: 0.375rem 1rem; border-radius: 9999px; letter-spacing: -0.025em; white-space: nowrap; }
.plan-header { margin-bottom: 2rem; }
.plan-name { font-size: 0.875rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-slate-400); margin-bottom: 0.5rem; }
.plan-card.popular .plan-name { color: var(--primary); }
.plan-price-wrap { display: flex; align-items: baseline; gap: 0.25rem; }
.plan-price { font-size: 2.25rem; font-weight: 900; color: var(--text-white); }
.plan-period { color: var(--text-slate-400); }

.plan-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; display: flex; flex-direction: column; gap: 1rem; }
.plan-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text-slate-300); }
.plan-features li .material-symbols-outlined { color: var(--primary); font-size: 1.25rem; }
.plan-features li.bold { font-weight: 700; color: var(--text-white); }
.plan-features li.medium { font-weight: 500; }
.plan-features li.disabled { color: var(--text-slate-500); }
.plan-features li.disabled .material-symbols-outlined { color: var(--text-slate-500); }

.btn-plan { width: 100%; padding: 1rem; border-radius: 0.75rem; font-weight: 700; text-align: center; transition: all 0.2s; font-family: inherit; font-size: 1rem; cursor: pointer; }
.btn-plan-outline { background: transparent; border: 2px solid var(--border-dark); color: var(--text-white); }
.btn-plan-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-plan-primary { background-color: var(--primary); color: var(--bg-dark); border: none; }
.btn-plan-primary:hover { opacity: 0.9; }
.btn-plan-secondary { background-color: rgba(255,255,255,0.05); color: var(--text-white); border: none; }
.btn-plan-secondary:hover { background-color: rgba(255,255,255,0.1); }

.comparison-section { padding: 6rem 0; background-color: rgba(15, 17, 21, 0.5); }
.comparison-section h2 { font-size: 1.875rem; font-weight: 900; text-align: center; margin-bottom: 4rem; color: var(--text-white); }
.table-responsive { overflow-x: auto; max-width: 1024px; margin: 0 auto; }
.comparison-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 600px; }
.comparison-table th { padding: 1rem; font-weight: 700; color: var(--text-slate-400); border-bottom: 1px solid var(--border-dark); }
.comparison-table th.highlight { color: var(--primary); }
.comparison-table td { padding: 1.25rem 1rem; font-size: 0.875rem; color: var(--text-slate-300); border-bottom: 1px solid rgba(42, 48, 60, 0.5); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td.medium { font-weight: 500; color: var(--text-white); }
.comparison-table td.highlight, .comparison-table td span.highlight { color: var(--primary); }
.comparison-table .material-symbols-outlined { font-size: 1.25rem; vertical-align: middle; }

.trust-section { padding: 6rem 0; }
.trust-header { text-align: center; margin-bottom: 4rem; }
.trust-header h2 { font-size: 1.875rem; font-weight: 900; color: var(--text-white); margin-bottom: 1rem; }
.trust-header p { color: var(--text-slate-400); }
.trust-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card { background-color: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 1rem; padding: 2rem; }
.trust-card .material-symbols-outlined { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.trust-card h4 { font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; font-size: 1.125rem; }
.trust-card p { font-size: 0.875rem; color: var(--text-slate-400); line-height: 1.5; }

.pricing-cta { padding: 5rem 0; }
.pricing-cta-box { background-color: var(--primary); border-radius: 1.5rem; padding: 3rem 2rem; position: relative; overflow: hidden; text-align: center; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-cta-box { padding: 4rem; } }
.pricing-cta-bg-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0.1; }
.pricing-cta-bg-icon span { font-size: 300px; color: var(--bg-dark); }
.pricing-cta-content { position: relative; z-index: 10; color: var(--bg-dark); }
.pricing-cta-content h2 { font-size: 1.875rem; font-weight: 900; margin-bottom: 1.5rem; color: var(--bg-dark); }
@media (min-width: 768px) { .pricing-cta-content h2 { font-size: 3rem; } }
.pricing-cta-content p { font-size: 1.125rem; font-weight: 500; opacity: 0.8; max-width: 600px; margin: 0 auto 2.5rem; }
.hover-scale { transition: transform 0.2s ease; }
.hover-scale:hover { transform: scale(1.05); }


/* =========================================
   6. PAGE CONTACT
========================================= */
.contact-hero { padding: 4rem 0 6rem; position: relative; overflow: hidden; }
.hero-glow { position: absolute; top: 0; right: 0; transform: translate(25%, -50%); width: 24rem; height: 24rem; background-color: rgba(255, 122, 0, 0.1); border-radius: 50%; filter: blur(120px); }
.contact-hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .contact-hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.support-badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 9999px; background-color: rgba(255, 122, 0, 0.1); border: 1px solid rgba(255, 122, 0, 0.2); color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.contact-hero-content h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; color: var(--text-white); }
@media (min-width: 1024px) { .contact-hero-content h1 { font-size: 4.5rem; } }
.contact-hero-content h1 span { color: var(--primary); }
.contact-hero-content p { font-size: 1.25rem; color: var(--text-slate-400); margin-bottom: 2rem; line-height: 1.6; max-width: 600px; }

.contact-hero-visual { position: relative; }
.visual-box { aspect-ratio: 1/1; background: linear-gradient(to bottom right, rgba(255,122,0,0.2), transparent); border-radius: 1.5rem; padding: 2rem; border: 1px solid rgba(255,255,255,0.05); }
.visual-inner { width: 100%; height: 100%; border-radius: 1rem; background-color: var(--surface-dark); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.visual-inner:hover::before { opacity: 1; }
.visual-inner::before { content: ''; position: absolute; inset: 0; background-color: rgba(255,122,0,0.05); opacity: 0; transition: opacity 0.3s; }
.huge-icon { font-size: 160px; color: rgba(255, 122, 0, 0.4); }

.live-indicator { position: absolute; bottom: 2rem; left: 2rem; padding: 1rem; background-color: rgba(15, 17, 21, 0.9); border-radius: 0.75rem; border: 1px solid rgba(255, 122, 0, 0.2); display: flex; align-items: center; gap: 0.75rem; }
.live-indicator span { font-size: 0.875rem; font-weight: 500; color: var(--text-white); }
.pulse-dot { width: 12px; height: 12px; background-color: #22c55e; border-radius: 50%; animation: pulse-green 2s infinite; }
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.contact-options-section { padding: 5rem 0; background-color: var(--bg-dark); }
.options-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .options-grid { grid-template-columns: repeat(3, 1fr); } }
.option-card { background-color: var(--surface-dark); border: 1px solid var(--border-dark); padding: 2rem; border-radius: 1rem; transition: border-color 0.3s; }
.option-card:hover { border-color: rgba(255, 122, 0, 0.5); }
.option-icon-wrapper { width: 56px; height: 56px; background-color: rgba(255, 122, 0, 0.1); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: transform 0.3s; }
.option-card:hover .option-icon-wrapper { transform: scale(1.1); }
.option-icon-wrapper span { font-size: 1.875rem; color: var(--primary); }
.option-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.75rem; }
.option-card p { color: var(--text-slate-400); margin-bottom: 1.5rem; line-height: 1.6; }
.option-card:hover .solution-link { gap: 0.75rem; }

.contact-form-section { padding: 6rem 0; }
.form-layout-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .form-layout-grid { grid-template-columns: 3fr 2fr; } }
.form-wrapper h2 { font-size: 1.875rem; font-weight: 700; color: var(--text-white); margin-bottom: 1rem; }
.form-subtitle { color: var(--text-slate-400); margin-bottom: 2.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-slate-300); margin-bottom: 0.5rem; }
.form-control { width: 100%; background-color: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 0.5rem; padding: 0.75rem 1rem; color: var(--text-white); font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s; }
.form-control:focus { border-color: var(--primary); }
textarea.form-control { resize: vertical; }
.submit-btn { margin-top: 1rem; }

.sticky-element { position: sticky; top: 7rem; }
.info-sidebar-card { background-color: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 1rem; padding: 2rem; }
.info-sidebar-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-white); margin-bottom: 1.5rem; }
.info-list { display: flex; flex-direction: column; gap: 2rem; }
.info-list-item { display: flex; gap: 1rem; }
.info-list-icon { flex-shrink: 0; width: 40px; height: 40px; background-color: rgba(255, 122, 0, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.info-list-icon span { font-size: 1.25rem; color: var(--primary); }
.info-list-content h4 { font-weight: 700; color: var(--text-white); margin-bottom: 0.25rem; }
.info-list-content p { font-size: 0.875rem; color: var(--text-slate-400); line-height: 1.5; }

.location-box { margin-top: 2.5rem; padding: 1rem; background-color: rgba(255, 122, 0, 0.05); border: 1px solid rgba(255, 122, 0, 0.1); border-radius: 0.75rem; }
.location-label { font-size: 0.75rem; font-weight: 700; color: var(--text-slate-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.map-wrapper { width: 100%; height: 8rem; border-radius: 0.5rem; overflow: hidden; position: relative; background-color: rgba(42, 48, 60, 0.5); }
.map-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.25); opacity: 0.5; }
.map-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.map-overlay span { font-size: 2rem; color: var(--primary); }

.business-info-section { padding: 5rem 0; background-color: rgba(23, 26, 33, 0.5); }
.business-info-section h2 { margin-bottom: 3rem; font-size: 1.875rem; color: var(--text-white); font-weight: 700; text-align: center; }
.business-grid { display: grid; gap: 2rem; }
@media (min-width: 600px) { .business-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .business-grid { grid-template-columns: repeat(3, 1fr); } }
.business-card { background-color: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 1rem; padding: 2rem; text-align: center; }
.business-card span { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.business-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.business-card p { color: var(--text-slate-400); }

.final-cta-section { padding: 5rem 0; }
.final-cta-box { position: relative; background-color: var(--primary); border-radius: 2rem; padding: 3rem; text-align: center; overflow: hidden; }
@media (min-width: 1024px) { .final-cta-box { padding: 5rem; } }
.final-cta-bg { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent); }
.final-cta-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; }
.final-cta-content h2 { font-size: 2.5rem; font-weight: 900; color: var(--bg-dark); margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .final-cta-content h2 { font-size: 3rem; } }
.final-cta-content p { font-size: 1.125rem; font-weight: 500; color: rgba(15, 17, 21, 0.8); margin-bottom: 2.5rem; }


/* =========================================
   7. FAQ (Composant partagé / Style Maquette)
========================================= */
.faq-section, .pricing-faq-section { 
    padding: 6rem 0; 
    background-color: var(--bg-dark); 
}

.faq-container { 
    max-width: 800px; 
    margin: 0 auto;
}

.faq-section h2, .pricing-faq-section h2 { 
    font-size: 2.25rem; 
    font-weight: 900; 
    color: var(--text-white); 
    margin-bottom: 3rem; 
    text-align: center;
}

.faq-list { 
    display: flex; 
    flex-direction: column; 
    gap: 1.25rem; 
}

.faq-item { 
    background-color: #121620; /* Bleu très sombre fidèle à la maquette */
    border: 1px solid var(--border-dark); 
    border-radius: 0.5rem; 
    overflow: hidden; 
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 1.5rem; 
    cursor: pointer; 
    user-select: none; 
    list-style: none; /* Enlève la petite flèche native du navigateur */
}

.faq-header::-webkit-details-marker { 
    display: none; /* Cache la flèche native sur Safari/Chrome */
}

.faq-title { 
    font-weight: 700; 
    color: var(--text-white); 
    font-size: 1rem;
}

/* Icône chevron (Grise) */
.faq-icon { 
    color: var(--text-slate-400); 
    transition: transform 0.3s ease; 
}

.faq-item[open] .faq-icon { 
    transform: rotate(180deg); 
}

.faq-content { 
    padding: 0 1.5rem 1.5rem; 
    color: var(--text-slate-400); 
    line-height: 1.6; 
    font-size: 0.875rem;
}