@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,sans-serif;color:#1a1a1a;line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.fade-in{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
@keyframes fadeSlide{0%{opacity:0;transform:translateY(10px)}100%{opacity:1;transform:translateY(0)}}

/* NAV */
.nav{position:fixed;top:0;left:0;right:0;z-index:1000;display:flex;align-items:center;justify-content:space-between;padding:0 48px;height:68px;background:transparent;transition:background 0.3s,box-shadow 0.3s}
.nav.scrolled{background:#fff;box-shadow:0 1px 12px rgba(0,0,0,0.08)}
.nav-logo img{height:40px;width:auto;filter:brightness(10);transition:filter 0.3s}
.nav.scrolled .nav-logo img{filter:none}
.nav-links{display:flex;gap:32px;font-size:14px;color:rgba(255,255,255,0.85)}
.nav.scrolled .nav-links{color:#4a5568}
.nav-links a:hover{color:#fff}
.nav.scrolled .nav-links a:hover{color:#1A3A6B}
.nav-cta{background:#fff;color:#1A3A6B;padding:9px 22px;border-radius:8px;font-size:13px;font-weight:600;transition:all 0.2s}
.nav.scrolled .nav-cta{background:#1A3A6B;color:#fff}
.nav-cta:hover{opacity:0.9}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.nav-hamburger span{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:background 0.3s}
.nav.scrolled .nav-hamburger span{background:#1A3A6B}
.nav-mobile{display:none;position:fixed;top:68px;left:0;right:0;background:#fff;padding:20px 24px;box-shadow:0 4px 20px rgba(0,0,0,0.1);flex-direction:column;gap:0;z-index:999}
.nav-mobile.open{display:flex}
.nav-mobile a{font-size:15px;color:#1A3A6B;font-weight:500;padding:12px 0;border-bottom:1px solid #f0f4f8}
.nav-mobile a:last-child{border-bottom:none;color:#2D6CB8;font-weight:700}

/* HERO */
.hero{background:#1A3A6B;padding:140px 48px 100px;text-align:center;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(45,108,184,0.25) 0%,transparent 70%);pointer-events:none}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);border-radius:24px;padding:6px 16px;font-size:13px;color:#B5D4F4;margin-bottom:32px}
.hero-badge-dot{width:8px;height:8px;border-radius:50%;background:#4ADE80;animation:pulse 2s infinite}
.hero h1{font-size:52px;font-weight:700;color:#fff;line-height:1.12;margin-bottom:20px;max-width:700px;margin-left:auto;margin-right:auto}
.hero h1 em{color:#7DD3FC;font-style:normal}
.typewriter-wrap{display:block;height:1.15em;overflow:hidden;position:relative}
.typewriter-text{display:inline-block;color:#7DD3FC;animation:fadeSlide 0.4s ease}
.hero-sub{font-size:18px;color:#94B8D4;line-height:1.7;max-width:540px;margin:0 auto 40px}
.hero-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:72px}
.btn-primary{background:#fff;color:#1A3A6B;padding:14px 30px;border-radius:8px;font-size:15px;font-weight:600;transition:opacity 0.2s}
.btn-primary:hover{opacity:0.92}
.btn-secondary{border:1.5px solid rgba(255,255,255,0.45);color:#fff;padding:14px 30px;border-radius:8px;font-size:15px;font-weight:500;transition:background 0.2s}
.btn-secondary:hover{background:rgba(255,255,255,0.08)}
.hero-stats{display:flex;justify-content:center;border-top:1px solid rgba(255,255,255,0.12);padding-top:48px;max-width:700px;margin:0 auto}
.hero-stat{flex:1;text-align:center;padding:0 24px;border-right:1px solid rgba(255,255,255,0.12)}
.hero-stat:last-child{border-right:none}
.hero-stat-val{font-size:30px;font-weight:700;color:#fff;line-height:1;margin-bottom:6px}
.hero-stat-label{font-size:12px;color:#94B8D4;line-height:1.4}

/* TRUST BAR */
.trust-bar{background:#0F2347;padding:18px 48px;display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,0.55);font-size:13px}
.trust-item svg{opacity:0.5}
.trust-divider{width:1px;height:24px;background:rgba(255,255,255,0.15)}

/* SECTIONS */
.section{padding:80px 48px}
.section-inner{max-width:1040px;margin:0 auto}
.section-center{text-align:center;max-width:620px;margin:0 auto 52px}
.section-tag{font-size:11px;font-weight:700;color:#2D6CB8;text-transform:uppercase;letter-spacing:0.1em;margin-bottom:12px}
.section-title{font-size:34px;font-weight:700;color:#0F2347;line-height:1.2;margin-bottom:14px}
.section-sub{font-size:16px;color:#64748b;line-height:1.7}

/* CONSTAT */
.constat-bg{background:#fff}
.constat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:960px;margin:0 auto}
.constat-card{background:#fff;border:1px solid #E0E6ED;border-radius:12px;padding:28px 24px}
.constat-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.constat-icon.red{background:#FEE2E2}
.constat-icon.amber{background:#FEF3C7}
.constat-icon.green{background:#DCFCE7}
.constat-card h3{font-size:16px;font-weight:600;color:#0F2347;margin-bottom:10px}
.constat-card p{font-size:14px;color:#64748b;line-height:1.65}

/* PROCESS */
.process-bg{background:#F5F7FA}
.process-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:0;max-width:860px;margin:0 auto;position:relative}
.process-steps::before{content:'';position:absolute;top:36px;left:calc(16.66% + 20px);right:calc(16.66% + 20px);height:2px;background:linear-gradient(90deg,#2D6CB8,#7DD3FC);z-index:0}
.process-step{text-align:center;padding:0 20px;position:relative;z-index:1}
.process-num{width:72px;height:72px;border-radius:50%;background:#1A3A6B;color:#fff;font-size:24px;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;border:4px solid #F5F7FA;position:relative;z-index:2}
.process-step h3{font-size:16px;font-weight:600;color:#0F2347;margin-bottom:10px}
.process-step p{font-size:14px;color:#64748b;line-height:1.65}
.process-detail{display:inline-block;font-size:12px;font-weight:600;color:#2D6CB8;background:#EEF4FB;padding:4px 12px;border-radius:10px;margin-top:10px}

/* SERVICES */
.services-bg{background:#fff}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:1000px;margin:0 auto}
.service-card{background:#fff;border:1px solid #E0E6ED;border-radius:12px;padding:26px 22px;transition:border-color 0.2s,transform 0.2s}
.service-card:hover{border-color:#2D6CB8;transform:translateY(-3px)}
.service-icon{width:44px;height:44px;border-radius:10px;background:#EEF4FB;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.service-card h3{font-size:15px;font-weight:600;color:#0F2347;margin-bottom:8px}
.service-card p{font-size:13px;color:#64748b;line-height:1.6}
.service-price{font-size:13px;color:#2D6CB8;font-weight:600;margin-top:14px}

/* CTA */
.cta-banner{background:#2D6CB8;padding:52px 48px;text-align:center}
.cta-banner h2{font-size:26px;font-weight:700;color:#fff;margin-bottom:8px}
.cta-banner p{font-size:16px;color:rgba(255,255,255,0.8);margin-bottom:28px}
.btn-cta{display:inline-block;background:#fff;color:#2D6CB8;padding:14px 32px;border-radius:8px;font-size:15px;font-weight:600;transition:opacity 0.2s}
.btn-cta:hover{opacity:0.92}

/* SIMULATEUR */
.simulator-bg{background:#F5F7FA}
.simulator-wrap{max-width:780px;margin:0 auto;background:#fff;border:1px solid #E0E6ED;border-radius:16px;overflow:hidden}
.simulator-top{padding:28px 32px;border-bottom:1px solid #F0F4F8}
.sim-label{font-size:13px;font-weight:500;color:#374151;margin-bottom:10px}
.strate-btns{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:24px}
.strate-btn{padding:8px 18px;border-radius:8px;border:1.5px solid #E0E6ED;background:#fff;font-size:13px;font-weight:500;color:#374151;cursor:pointer;transition:all 0.2s;font-family:inherit}
.strate-btn.active{background:#1A3A6B;color:#fff;border-color:#1A3A6B}
.services-checks{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}
.check-item{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:8px;border:1.5px solid #E0E6ED;cursor:pointer;transition:all 0.2s;background:#fff}
.check-item:hover{border-color:#2D6CB8;background:#F8FBFF}
.check-item.checked{border-color:#2D6CB8;background:#EEF4FB}
.check-item input{accent-color:#1A3A6B;width:16px;height:16px;cursor:pointer}
.check-item label{font-size:13px;color:#374151;cursor:pointer;flex:1}
.check-item .check-price{font-size:12px;color:#2D6CB8;font-weight:600}
.simulator-bottom{padding:24px 32px;background:#F8FBFF;display:flex;align-items:center;justify-content:space-between;gap:20px}
.sim-result-label{font-size:14px;color:#64748b}
.sim-result-price{font-size:36px;font-weight:700;color:#1A3A6B;line-height:1}
.sim-result-sub{font-size:12px;color:#94a3b8;margin-top:3px}
.sim-discount{font-size:12px;color:#16A34A;font-weight:500;margin-top:4px}
.btn-sim-contact{background:#1A3A6B;color:#fff;padding:12px 24px;border-radius:8px;font-size:14px;font-weight:600;border:none;cursor:pointer;font-family:inherit;transition:background 0.2s;white-space:nowrap}
.btn-sim-contact:hover{background:#2D6CB8}

/* TARIFS */
.tarifs-bg{background:#fff}
.tarifs-table-wrap{max-width:780px;margin:0 auto 48px;border-radius:12px;overflow:hidden;border:1px solid #E0E6ED}
.tarifs-table{width:100%;border-collapse:collapse;font-size:14px}
.tarifs-table th{background:#1A3A6B;color:#fff;padding:14px 18px;text-align:center;font-weight:500;font-size:13px}
.tarifs-table th:first-child{text-align:left}
.tarifs-table td{padding:12px 18px;border-bottom:1px solid #F0F4F8;text-align:center;color:#374151}
.tarifs-table td:first-child{text-align:left;font-weight:500;color:#0F2347}
.tarifs-table tr:last-child td{border-bottom:none}
.tarifs-table tr:nth-child(even) td{background:#FAFBFC}
.packs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:900px;margin:0 auto 20px}
.pack-card{background:#fff;border:1px solid #E0E6ED;border-radius:12px;padding:26px 22px;position:relative}
.pack-card.featured{border:2px solid #2D6CB8}
.pack-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#2D6CB8;color:#fff;font-size:11px;font-weight:700;padding:3px 16px;border-radius:12px;white-space:nowrap}
.pack-name{font-size:16px;font-weight:700;color:#0F2347;margin-bottom:6px}
.pack-price{font-size:28px;font-weight:700;color:#1A3A6B;margin:12px 0 6px}
.pack-price span{font-size:14px;font-weight:400;color:#64748b}
.pack-desc{font-size:13px;color:#64748b;padding-bottom:14px;margin-bottom:14px;border-bottom:1px solid #F0F4F8}
.pack-item{font-size:13px;color:#374151;padding:4px 0;display:flex;gap:8px;align-items:flex-start}
.pack-check{color:#2D6CB8;font-weight:700;flex-shrink:0}
.tarifs-note{text-align:center;font-size:13px;color:#94a3b8}
.tarifs-justify{max-width:780px;margin:24px auto 0;background:#EEF4FB;border-radius:10px;padding:14px 18px;font-size:13px;color:#1A3A6B;line-height:1.7}
.tarifs-justify strong{font-weight:600}

/* GARANTIES */
.garanties-bg{background:#F5F7FA}
.garanties-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;max-width:1040px;margin:0 auto}
.garantie-card{background:#fff;border:1px solid #E0E6ED;border-radius:12px;padding:24px 20px}
.garantie-icon{width:44px;height:44px;border-radius:10px;background:#EEF4FB;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.garantie-card h3{font-size:14px;font-weight:600;color:#0F2347;margin-bottom:8px}
.garantie-card p{font-size:13px;color:#64748b;line-height:1.6}

/* FAQ */
.faq-bg{background:#fff}
.faq-list{max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:8px}
.faq-item{border:1px solid #E0E6ED;border-radius:10px;overflow:hidden}
.faq-question{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;cursor:pointer;background:#fff;transition:background 0.15s;user-select:none}
.faq-question:hover{background:#FAFBFC}
.faq-question h3{font-size:15px;font-weight:600;color:#0F2347}
.faq-arrow{width:20px;height:20px;color:#2D6CB8;transition:transform 0.25s;flex-shrink:0}
.faq-item.open .faq-arrow{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.35s ease}
.faq-item.open .faq-answer{max-height:300px}
.faq-answer p{padding:0 22px 18px;font-size:14px;color:#64748b;line-height:1.7}

/* À PROPOS */
.about-bg{background:#1A3A6B}
.about-inner{max-width:960px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.about-tag{font-size:11px;font-weight:700;color:#7DD3FC;text-transform:uppercase;letter-spacing:0.1em;margin-bottom:14px}
.about-title{font-size:30px;font-weight:700;color:#fff;line-height:1.25;margin-bottom:20px}
.about-text{font-size:15px;color:#94B8D4;line-height:1.8;margin-bottom:32px}
.about-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.about-stat{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:16px 12px;text-align:center}
.about-stat-val{font-size:26px;font-weight:700;color:#fff}
.about-stat-label{font-size:11px;color:#7DD3FC;margin-top:4px;line-height:1.4}
.about-card{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);border-radius:16px;padding:32px 28px;text-align:center}
.about-photo{width:120px;height:120px;border-radius:50%;object-fit:cover;object-position:center top;border:3px solid rgba(255,255,255,0.25);margin:0 auto 18px}
.about-name{font-size:18px;font-weight:700;color:#fff;margin-bottom:4px}
.about-role{font-size:13px;color:#94B8D4;margin-bottom:24px}
.about-exp{text-align:left}
.exp-item{display:flex;gap:10px;align-items:flex-start;margin-bottom:12px}
.exp-dot{width:8px;height:8px;border-radius:50%;background:#7DD3FC;margin-top:5px;flex-shrink:0}
.exp-text{font-size:13px;color:#B5D4F4;line-height:1.5}

/* CONTACT */
.contact-bg{background:#F5F7FA}
.contact-inner{max-width:960px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:start}
.contact-form-card{background:#fff;border:1px solid #E0E6ED;border-radius:14px;padding:32px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;font-weight:500;color:#374151;margin-bottom:6px}
.form-group input,.form-group textarea{width:100%;border:1px solid #E0E6ED;border-radius:8px;padding:11px 14px;font-size:14px;color:#1a1a1a;background:#FAFBFC;font-family:inherit;transition:border-color 0.2s}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:#2D6CB8;background:#fff}
.form-group textarea{resize:vertical;min-height:100px}
.btn-submit{width:100%;background:#1A3A6B;color:#fff;border:none;padding:14px;border-radius:8px;font-size:15px;font-weight:600;cursor:pointer;font-family:inherit;transition:background 0.2s}
.btn-submit:hover{background:#2D6CB8}
.form-success{display:none;background:#DCFCE7;border:1px solid #BBF7D0;border-radius:8px;padding:16px;text-align:center;color:#166534;font-size:14px;margin-top:16px}
.contact-info h3{font-size:22px;font-weight:700;color:#0F2347;margin-bottom:10px}
.contact-info>p{font-size:14px;color:#64748b;line-height:1.7;margin-bottom:28px}
.contact-item{display:flex;gap:14px;align-items:flex-start;margin-bottom:20px}
.contact-icon{width:40px;height:40px;border-radius:10px;background:#EEF4FB;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-label{font-size:12px;color:#94a3b8;margin-bottom:2px}
.contact-val{font-size:15px;font-weight:500;color:#0F2347}
.contact-guarantee{background:#F0FDF4;border:1px solid #BBF7D0;border-radius:10px;padding:16px 18px;margin-top:28px;display:flex;gap:12px;align-items:flex-start}
.guarantee-check{color:#16A34A;font-size:18px;flex-shrink:0;margin-top:1px}
.contact-guarantee p{font-size:13px;color:#166534;line-height:1.6}

/* FOOTER */
.footer{background:#0F2347;padding:40px 48px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo img{height:36px;width:auto;filter:brightness(10) saturate(0);opacity:0.9}
.footer-links{display:flex;gap:28px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:#64748b;transition:color 0.2s}
.footer-links a:hover{color:#fff}
.footer-right{font-size:12px;color:#475569;text-align:right;line-height:1.7}

/* RESPONSIVE */
@media(max-width:900px){
  .nav-links,.nav-cta{display:none}
  .nav-hamburger{display:flex}
  .nav{padding:0 24px}
  .hero{padding:120px 24px 80px}
  .hero h1{font-size:36px}
  .hero-sub{font-size:16px}
  .hero-stats{flex-wrap:wrap}
  .hero-stat{min-width:50%;border-right:none;border-bottom:1px solid rgba(255,255,255,0.12);padding:16px}
  .hero-stat:nth-child(odd){border-right:1px solid rgba(255,255,255,0.12)}
  .section{padding:60px 24px}
  .constat-grid,.services-grid,.garanties-grid{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr;gap:32px}
  .process-steps::before{display:none}
  .packs-grid{grid-template-columns:1fr;max-width:400px}
  .about-inner,.contact-inner{grid-template-columns:1fr;gap:40px}
  .footer{flex-direction:column;text-align:center;padding:32px 24px}
  .footer-right{text-align:center}
  .trust-bar{gap:20px;padding:16px 24px}
  .trust-divider{display:none}
  .services-checks{grid-template-columns:1fr}
  .simulator-bottom{flex-direction:column;align-items:flex-start}
}
@media(max-width:560px){
  .hero h1{font-size:30px}
  .section-title{font-size:26px}
  .strate-btns{flex-direction:column}
}

/* Prix journalier packs */
.pack-price-day {
  font-size: 12px;
  color: #16A34A;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: -8px;
}
