/* ============================================
   INDEPENDANCE DAY 3 — Design System & Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-deep: hsl(0, 0%, 4%);
  --foreground: hsl(0, 0%, 100%);
  --card: hsl(0, 0%, 7.8%);
  --section-alt: hsl(0, 0%, 7.8%);
  --section-alt2: hsl(0, 0%, 8.6%);
  --primary: hsl(60, 79%, 44%);
  --primary-foreground: hsl(0, 0%, 4%);
  --accent: hsl(199, 89%, 48%);
  --accent-foreground: hsl(0, 0%, 100%);
  --muted-foreground: hsl(0, 0%, 90%);
  --border: hsl(0, 0%, 16%);
  --secondary: hsl(0, 0%, 10%);
  --radius: 0.5rem;
  --container-max: 1400px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:100px; scrollbar-width:thin; scrollbar-color:var(--primary) var(--bg-deep); }
@media(min-width:768px){html{scroll-padding-top:120px;}}
body { font-family:'DM Sans',sans-serif; background:var(--bg-deep); color:var(--foreground); line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
#scroll-progress { position:fixed; top:0; left:0; height:3px; width:0%; background:var(--primary); z-index:9999; transition:width 0.05s linear; }
@media(min-width:769px){ body.custom-cursor-active{cursor:none;} body.custom-cursor-active a,body.custom-cursor-active button,body.custom-cursor-active input{cursor:none;} }
.cursor-dot{position:fixed;width:12px;height:12px;background:var(--primary);border-radius:50%;pointer-events:none;z-index:10000;transform:translate(-50%,-50%);display:none;}
.cursor-ring{position:fixed;width:40px;height:40px;border:1.5px solid var(--primary);border-radius:50%;pointer-events:none;z-index:10000;transform:translate(-50%,-50%);display:none;}
@media(min-width:769px){.cursor-dot,.cursor-ring{display:block;}}
.container{max-width:var(--container-max);margin:0 auto;padding:0 1.25rem;}
@media(min-width:768px){.container{padding:0 2rem;}}
.font-display{font-family:'Anton',sans-serif;text-transform:uppercase;letter-spacing:0.04em;}
.text-lime{color:var(--primary);}.text-blue{color:var(--accent);}.text-gray{color:hsl(0,0%,60%);}.text-white{color:var(--foreground);}
.section{padding:2.5rem 0;position:relative;}.section-deep{background:var(--bg-deep);}.section-alt-bg{background:var(--section-alt);}
@media(min-width:768px){.section{padding:3.5rem 0;}}
.section-title{font-family:'Anton',sans-serif;text-transform:uppercase;letter-spacing:0.04em;font-size:clamp(1.4rem,5vw,3rem);text-align:center;margin-bottom:2rem;}
@media(min-width:768px){.section-title{margin-bottom:3rem;}}
.clipped{clip-path:none;padding:2.5rem 0;}
@media(min-width:768px){.clipped{clip-path:polygon(0 0,100% 3%,100% 97%,0 100%);padding:5rem 0;}}
.fade-in-up{opacity:0;transform:translateY(30px);transition:opacity 0.6s ease-out,transform 0.6s ease-out;}
.fade-in-up.visible{opacity:1;transform:translateY(0);}
.urgency-bar{position:fixed;top:0;left:0;right:0;z-index:50;background:var(--accent);color:var(--foreground);text-align:center;padding:0.55rem 1rem;font-weight:400;text-decoration:underline;text-transform:uppercase;letter-spacing:0.15em;font-size:0.65rem;}
@media(min-width:768px){.urgency-bar{font-size:0.8rem;}}
.navbar{position:fixed;top:34px;left:0;right:0;z-index:40;background:hsla(0,0%,4%,0.8);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--border);transition:top 0.3s ease;}
@media(min-width:768px){.navbar{top:40px;}}
.navbar-inner{max-width:var(--container-max);margin:0 auto;padding:0 1.25rem;display:flex;align-items:center;justify-content:space-between;height:56px;}
@media(min-width:768px){.navbar-inner{padding:0 2rem;height:64px;}}
.navbar-logo{font-family:'Anton',sans-serif;font-size:1.5rem;letter-spacing:0.04em;color:var(--foreground);text-decoration:none;}.navbar-logo span{color:var(--primary);}
.navbar-links{display:none;align-items:center;gap:2rem;}.navbar-links a{color:var(--muted-foreground);text-decoration:none;font-size:0.875rem;font-weight:500;transition:color 0.2s;}.navbar-links a:hover{color:var(--foreground);}
.navbar-cta{display:none;}

/* LANG SWITCHER */
.navbar-cta{display:none;align-items:center;gap:1rem;}
.lang-switcher{display:inline-flex;align-items:center;gap:0.35rem;font-size:0.8rem;font-weight:600;letter-spacing:0.05em;}
.lang-switcher .lang-btn{color:var(--muted-foreground);text-decoration:none;padding:0.25rem 0.35rem;transition:color 0.2s;}
.lang-switcher .lang-btn:hover{color:var(--foreground);}
.lang-switcher .lang-btn.active{color:var(--primary);}
.lang-switcher .lang-sep{color:var(--muted-foreground);opacity:0.5;}
.lang-switcher-mobile{justify-content:center;margin-top:1.5rem;font-size:1rem;}
.btn-nav-cta{background:var(--accent);color:var(--foreground);padding:0.6rem 1.5rem;border:none;border-radius:var(--radius);font-weight:700;font-size:0.8rem;text-transform:uppercase;letter-spacing:0.05em;text-decoration:none;min-height:48px;display:flex;align-items:center;transition:background 0.2s;}.btn-nav-cta:hover{background:hsl(199,89%,40%);}
@media(min-width:768px){.navbar-links{display:flex;}.navbar-cta{display:block;}}
.hamburger{display:flex;flex-direction:column;justify-content:center;align-items:center;background:none;border:none;color:var(--foreground);width:40px;height:40px;cursor:pointer;}.hamburger svg{width:24px;height:24px;}
@media(min-width:768px){.hamburger{display:none;}}
.mobile-menu-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:45;background:hsla(0,0%,4%,0.97);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2rem;opacity:0;pointer-events:none;transition:opacity 0.3s ease;}
.mobile-menu-overlay.open{opacity:1;pointer-events:auto;}
.mobile-menu-overlay a{color:var(--foreground);text-decoration:none;font-family:'Anton',sans-serif;font-size:1.8rem;letter-spacing:0.04em;text-transform:uppercase;}
.mobile-menu-close{position:absolute;top:55px;right:2rem;background:none;border:none;color:var(--foreground);width:40px;height:40px;cursor:pointer;}.mobile-menu-close svg{width:24px;height:24px;}
.hero{background:var(--bg-deep);padding-top:110px;padding-bottom:2rem;text-align:center;min-height:100vh;min-height:100dvh;display:flex;align-items:center;}
@media(min-width:768px){.hero{padding-top:160px;padding-bottom:4rem;}}
.hero-micro{color:var(--muted-foreground);font-size:0.7rem;letter-spacing:0.3em;text-transform:uppercase;margin-bottom:1.5rem;}
@media(min-width:768px){.hero-micro{font-size:0.85rem;}}
.hero h1{font-family:'Anton',sans-serif;text-transform:uppercase;letter-spacing:0.04em;font-size:clamp(2rem,8vw,6rem);line-height:1.05;margin-bottom:0.75rem;}
.hero h1 em{color:var(--primary);font-style:italic;}
.hero-subtitle{font-style:italic;font-size:1.125rem;margin-bottom:1.5rem;color:var(--muted-foreground);}
@media(min-width:768px){.hero-subtitle{font-size:1.25rem;}}
.hero-tags{color:var(--muted-foreground);font-size:0.875rem;margin-bottom:1.5rem;}
.hero-date{color:var(--accent);font-weight:700;font-size:1.125rem;margin-bottom:2rem;}
@media(min-width:768px){.hero-date{font-size:1.25rem;}}
.seat-counter{max-width:400px;margin:0 auto 2rem;}.seat-counter-text{font-size:0.95rem;margin-bottom:0.5rem;}.seat-counter-text strong{color:var(--primary);font-weight:400;text-decoration:underline;}
.progress-bar-track{background:var(--secondary);border-radius:100px;height:8px;overflow:hidden;margin-bottom:0.35rem;}.progress-bar-fill{height:100%;background:var(--accent);border-radius:100px;transition:width 1s ease;}
.seat-counter-sub{font-size:0.75rem;color:var(--muted-foreground);}
.hero-ctas{display:flex;flex-direction:column;gap:0.75rem;justify-content:center;margin-bottom:1.5rem;padding:0 1rem;}
@media(min-width:480px){.hero-ctas{flex-direction:row;padding:0;gap:1rem;margin-bottom:2rem;}}
.btn-primary{background:var(--accent);color:var(--foreground);padding:0.85rem 2rem;border:none;border-radius:var(--radius);font-weight:700;font-size:0.875rem;text-transform:uppercase;letter-spacing:0.05em;text-decoration:none;min-height:48px;display:inline-flex;align-items:center;justify-content:center;transition:background 0.2s,transform 0.15s;font-family:'DM Sans',sans-serif;cursor:pointer;}
.btn-primary:hover{background:hsl(199,89%,40%);transform:translateY(-1px);}
.btn-outline{background:transparent;color:var(--foreground);padding:0.85rem 2rem;border:1.5px solid var(--foreground);border-radius:var(--radius);font-weight:700;font-size:0.875rem;text-transform:uppercase;letter-spacing:0.05em;text-decoration:none;min-height:48px;display:inline-flex;align-items:center;justify-content:center;transition:background 0.2s,transform 0.15s;}
.btn-outline:hover{background:hsla(0,0%,100%,0.06);transform:translateY(-1px);}
.hero-microcopy{display:flex;flex-direction:column;gap:0.6rem;align-items:center;margin-bottom:1.5rem;}
@media(min-width:480px){.hero-microcopy{flex-direction:row;flex-wrap:wrap;gap:1.5rem;justify-content:center;margin-bottom:2rem;}}
.hero-microcopy-item{display:flex;align-items:center;gap:0.4rem;color:var(--muted-foreground);font-size:0.75rem;}.hero-microcopy-item svg{width:14px;height:14px;stroke:var(--muted-foreground);}
.hero-social-proof{font-style:italic;font-weight:400;text-decoration:underline;font-size:0.95rem;color:var(--muted-foreground);}
.stats-bar{background:var(--primary);color:var(--primary-foreground);padding:1.25rem 0;}
@media(min-width:768px){.stats-bar{padding:2rem 0;}}
.stats-bar-inner{display:flex;justify-content:center;align-items:center;gap:0.75rem;flex-wrap:wrap;}
@media(min-width:768px){.stats-bar-inner{gap:1rem;}}
.stat-item{text-align:center;font-family:'Anton',sans-serif;font-size:1.1rem;letter-spacing:0.04em;}
@media(min-width:768px){.stat-item{font-size:2.25rem;}}
.stat-divider{font-family:'Anton',sans-serif;font-size:2.25rem;opacity:0.4;display:none;}
@media(min-width:768px){.stat-divider{display:block;}}
.benefits-section{background:hsla(0,0%,7.8%,0.9);position:relative;overflow:hidden;}
.video-bg{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;opacity:0.6;z-index:0;pointer-events:none;}
.video-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:hsla(0,0%,4%,0.55);z-index:1;}
.benefits-section .container,.programme-section .container{position:relative;z-index:2;}
.benefits-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;}
@media(min-width:640px){.benefits-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.benefits-grid{grid-template-columns:repeat(3,1fr);}}
.benefit-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;transition:transform 0.3s ease,border-color 0.3s ease;}
@media(min-width:768px){.benefit-card{padding:2rem;}}
.benefit-card:hover{transform:translateY(-4px);border-color:var(--primary);}
.benefit-icon{font-size:2rem;margin-bottom:1rem;color:var(--primary);}.benefit-icon svg{width:32px;height:32px;stroke:var(--primary);}
.benefit-card h3{font-family:'Anton',sans-serif;font-size:1.15rem;text-transform:uppercase;letter-spacing:0.04em;margin-bottom:0.5rem;font-weight:400;text-decoration:underline;}
.benefit-card p{color:#fff;font-size:0.9rem;line-height:1.5;}
/* Gallery Carousel */
.gallery-section{padding:1rem 0 0.5rem;}
@media(min-width:768px){.gallery-section{padding:1.5rem 0 1rem;}}
.gallery-section .section-title{margin-bottom:1rem;}
.gallery-scroll{display:flex;gap:1rem;overflow-x:scroll;padding-bottom:0.5rem;-ms-overflow-style:none;scrollbar-width:none;}
.gallery-scroll::-webkit-scrollbar{display:none;}
.gallery-item{width:260px;min-width:260px;height:195px;flex-shrink:0;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);background:linear-gradient(135deg,hsl(0,0%,10%),hsl(0,0%,16%));}
@media(min-width:768px){.gallery-item{width:300px;min-width:300px;height:225px;}}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.3s ease;}
.gallery-item:hover img{transform:scale(1.05);}
.speakers-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;max-width:800px;margin:0 auto;}
@media(min-width:768px){.speakers-grid{grid-template-columns:repeat(3,1fr);}}
/* Centrage du 7ème intervenant sur sa ligne (desktop uniquement, grille 3 colonnes) */
@media(min-width:768px){.speakers-grid .speaker-card:nth-child(7){grid-column:2;}}
.speaker-card{text-align:center;}
.speaker-link{position:relative;display:inline-block;text-decoration:none;transition:transform 0.25s ease;}
.speaker-link:hover{transform:translateY(-3px);}
.speaker-link:hover .speaker-photo{border-color:var(--primary);}
.speaker-linkedin-icon{position:absolute;bottom:0.5rem;right:0;width:26px;height:26px;padding:4px;background:#0A66C2;color:#fff;border-radius:50%;box-shadow:0 2px 8px rgba(0,0,0,0.3);opacity:0;transform:scale(0.85);transition:opacity 0.25s ease, transform 0.25s ease;}
.speaker-link:hover .speaker-linkedin-icon{opacity:1;transform:scale(1);}
@media(max-width:768px){.speaker-linkedin-icon{opacity:1;transform:scale(1);width:22px;height:22px;}}
.speaker-photo{width:96px;height:96px;border-radius:50%;object-fit:cover;margin:0 auto 1rem;border:2px solid var(--border);display:block;transition:border-color 0.25s ease;}
@media(min-width:768px){.speaker-photo{width:128px;height:128px;}}
.speaker-placeholder{width:96px;height:96px;border-radius:50%;background:linear-gradient(135deg,hsl(0,0%,15%),hsl(0,0%,22%));display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-family:'Anton',sans-serif;font-size:2rem;color:hsl(0,0%,60%);border:2px solid var(--border);}
@media(min-width:768px){.speaker-placeholder{width:128px;height:128px;font-size:2.5rem;}}
.speaker-card h3{font-family:'Anton',sans-serif;font-size:1rem;text-transform:uppercase;letter-spacing:0.04em;margin-bottom:0.25rem;font-weight:400;text-decoration:underline;}
.speaker-card p{color:var(--muted-foreground);font-size:0.8rem;}
.speakers-note{text-align:center;margin-top:2.5rem;color:var(--muted-foreground);font-style:italic;font-size:0.9rem;}
.programme-section{background:var(--bg-deep);position:relative;overflow:hidden;}
/* Conference themes */
.conf-themes{max-width:750px;margin:0 auto 2.5rem;display:grid;grid-template-columns:1fr;gap:1rem;}
@media(min-width:768px){.conf-themes{grid-template-columns:1fr 1fr;gap:1.25rem;}}
/* Centrage du 7ème thème (impair) sur sa ligne en grille 2 colonnes */
@media(min-width:768px){.conf-themes .conf-theme:nth-child(7){grid-column:1 / -1;max-width:calc(50% - 0.625rem);justify-self:center;}}
.conf-theme{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:var(--radius);padding:1.25rem 1.5rem;box-shadow:0 2px 8px rgba(0,0,0,0.12);}
.conf-theme-tag{display:inline-block;padding:0.15rem 0.6rem;border-radius:100px;font-size:0.7rem;font-weight:600;text-decoration:none;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.5rem;}
.conf-theme-text{color:#111;font-size:0.875rem;line-height:1.5;}
/* Crossed-out programme */
.programme-coming-soon{max-width:750px;margin:0 auto;text-align:center;}
.programme-crossed{position:relative;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1.5rem;margin-bottom:1.25rem;overflow:hidden;}
.programme-mini-timeline{display:flex;flex-wrap:wrap;justify-content:center;gap:0.75rem 1.5rem;opacity:0.9;font-size:0.85rem;color:#fff;font-weight:500;}
.programme-soon-text{color:#fff;font-size:0.95rem;font-style:italic;}
.timeline{max-width:700px;margin:0 auto;position:relative;padding-left:2.5rem;}
@media(min-width:768px){.timeline{padding-left:3rem;}}
.timeline::before{content:'';position:absolute;left:8px;top:0;bottom:0;width:1px;background:var(--border);}
@media(min-width:768px){.timeline::before{left:12px;}}
.timeline-item{position:relative;margin-bottom:2rem;padding-bottom:0.5rem;}
.timeline-dot{position:absolute;left:-2.5rem;top:0;width:22px;height:22px;background:var(--card);border:1.5px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.65rem;z-index:2;}
@media(min-width:768px){.timeline-dot{left:-3rem;width:26px;height:26px;font-size:0.75rem;}}
.timeline-time{font-family:'Anton',sans-serif;font-size:1.1rem;color:var(--primary);letter-spacing:0.04em;margin-bottom:0.25rem;}
.timeline-title{font-weight:700;font-size:1.05rem;margin-bottom:0.35rem;}
.timeline-tag{display:inline-block;padding:0.15rem 0.6rem;border-radius:100px;font-size:0.7rem;font-weight:400;text-decoration:underline;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.5rem;}
.tag-blue{background:hsla(199,89%,48%,0.18);color:hsl(199,89%,35%);}.tag-lime{background:hsla(60,79%,44%,0.22);color:hsl(60,79%,28%);}
.timeline-desc{color:var(--muted-foreground);font-size:0.875rem;line-height:1.5;}
.format-section{background:var(--section-alt);}
.format-grid{display:grid;grid-template-columns:1fr;gap:1rem;max-width:800px;margin:0 auto 2rem;}
@media(min-width:640px){.format-grid{grid-template-columns:1fr 1fr;}}
.format-item{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1.5rem;display:flex;align-items:flex-start;gap:1rem;}
.format-item-icon{flex-shrink:0;}
.format-item-icon svg{width:28px;height:28px;stroke:var(--primary);}
.format-item p{color:var(--muted-foreground);font-size:0.9rem;line-height:1.5;}
.format-bottom{text-align:center;max-width:700px;margin:0 auto;font-size:0.95rem;font-style:italic;color:var(--muted-foreground);line-height:1.6;}
.testimonials-subtitle{text-align:center;color:var(--primary);font-weight:400;text-decoration:underline;margin-bottom:2rem;font-size:0.95rem;}
.testimonials-scroll{display:grid;grid-template-columns:1fr;gap:1.5rem;padding-bottom:1rem;}
@media(min-width:640px){.testimonials-scroll{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.testimonials-scroll{grid-template-columns:repeat(4,1fr);}}
.testimonial-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;}
@media(min-width:768px){.testimonial-card{padding:1.5rem;}}
.testimonial-header{display:flex;align-items:center;gap:0.75rem;margin-bottom:1rem;}
.testimonial-avatar{width:40px;height:40px;border-radius:50%;background:var(--secondary);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.9rem;color:var(--primary);flex-shrink:0;}
.testimonial-photo{width:40px;height:40px;border-radius:50%;object-fit:cover;flex-shrink:0;}
.testimonial-name{font-weight:400;text-decoration:underline;font-size:0.9rem;}.testimonial-role{color:var(--muted-foreground);font-size:0.75rem;}
.testimonial-quote{font-style:italic;color:var(--muted-foreground);font-size:0.875rem;line-height:1.5;}
.video-testimonials-label{text-align:center;color:var(--muted-foreground);font-weight:400;text-decoration:underline;margin:3rem 0 1.5rem;font-size:0.9rem;}
.video-testimonials-scroll{display:flex;gap:1.5rem;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:1rem;-ms-overflow-style:none;scrollbar-width:none;}
.video-testimonials-scroll::-webkit-scrollbar{display:none;}
@media(min-width:1024px){.video-testimonials-scroll{display:grid;grid-template-columns:repeat(4,1fr);overflow-x:visible;}}
.video-testimonial-slot{min-width:220px;scroll-snap-align:start;background:var(--section-alt2);background-size:cover;background-position:center;background-repeat:no-repeat;border:1px solid var(--border);border-radius:var(--radius);aspect-ratio:16/9;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.5rem;flex-shrink:0;transition:border-color 0.2s, transform 0.25s;cursor:pointer;overflow:hidden;position:relative;}
@media(min-width:768px){.video-testimonial-slot{min-width:260px;gap:0.75rem;}}
.video-testimonial-slot:hover{border-color:var(--primary);transform:translateY(-2px);}
@media(min-width:1024px){.video-testimonial-slot{min-width:auto;}}
/* Overlay sombre pour faire ressortir le bouton play sur la miniature */
.video-testimonial-slot::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.45) 100%);z-index:1;transition:opacity 0.2s;}
.video-testimonial-slot:hover::before{background:linear-gradient(180deg,rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.55) 100%);}
.video-testimonial-slot.playing::before{display:none;}
.video-testimonial-slot video{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;border-radius:var(--radius);z-index:3;}
.video-testimonial-slot.playing .video-play-circle,
.video-testimonial-slot.playing .video-title{display:none;}
.video-play-circle{width:56px;height:56px;border-radius:50%;border:2px solid #fff;background:rgba(0,0,0,0.35);display:flex;align-items:center;justify-content:center;z-index:2;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);transition:transform 0.25s, background 0.25s;}
.video-testimonial-slot:hover .video-play-circle{transform:scale(1.1);background:rgba(0,0,0,0.55);}
.video-play-circle svg{width:22px;height:22px;stroke:#fff;margin-left:2px;}
.video-testimonial-slot .video-title{font-size:0.8rem;font-weight:500;color:#fff;z-index:2;text-shadow:0 1px 3px rgba(0,0,0,0.5);text-decoration:none;}
.video-testimonial-slot .video-subtitle{font-size:0.7rem;color:rgba(255,255,255,0.85);z-index:2;}
.faq-list{max-width:800px;margin:0 auto;}.faq-item{border-bottom:1px solid var(--border);}
.faq-question{width:100%;background:none;border:none;color:var(--foreground);padding:1rem 0;text-align:left;font-size:0.9rem;font-weight:600;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;font-family:'DM Sans',sans-serif;min-height:48px;}
@media(min-width:768px){.faq-question{padding:1.25rem 0;font-size:1rem;}}
.faq-question svg{width:20px;height:20px;stroke:var(--primary);flex-shrink:0;transition:transform 0.3s ease;}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.4s ease;padding:0;}
.faq-answer.open{max-height:300px;padding-bottom:1.25rem;}
.faq-answer p{color:var(--muted-foreground);font-size:0.9rem;line-height:1.6;}
.pricing-section{background:var(--section-alt);}
.countdown{display:flex;justify-content:center;gap:0.6rem;margin-bottom:2rem;}
@media(min-width:768px){.countdown{gap:1rem;margin-bottom:3rem;}}
.countdown-block{background:var(--card);border-radius:var(--radius);padding:0.75rem 0.9rem;text-align:center;min-width:60px;}
@media(min-width:768px){.countdown-block{padding:1rem 1.2rem;min-width:70px;}}
.countdown-value{font-family:'Anton',sans-serif;font-size:1.5rem;color:var(--primary);letter-spacing:0.04em;line-height:1;}
@media(min-width:768px){.countdown-value{font-size:2rem;}}
.countdown-label{font-size:0.65rem;color:var(--muted-foreground);text-transform:uppercase;letter-spacing:0.1em;margin-top:0.25rem;}
.pricing-cards{display:grid;grid-template-columns:1fr;gap:1.5rem;max-width:900px;margin:0 auto;}
@media(min-width:768px){.pricing-cards{grid-template-columns:repeat(2,1fr);gap:2rem;}}
.pricing-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.5rem;position:relative;}
@media(min-width:768px){.pricing-card{padding:2.5rem 2rem;}}
.pricing-card.premium{border:2px solid var(--primary);transform:none;}
@media(min-width:768px){.pricing-card.premium{transform:rotate(-1deg);}}.pricing-card.premium:hover{transform:rotate(0deg);}
.pricing-badge-reco{position:absolute;top:-12px;right:16px;background:var(--primary);color:var(--primary-foreground);padding:0.3rem 1rem;border-radius:var(--radius);font-size:0.7rem;font-weight:400;text-decoration:underline;text-transform:uppercase;letter-spacing:0.05em;}
.pricing-card h3{font-family:'Anton',sans-serif;font-size:1.5rem;text-transform:uppercase;letter-spacing:0.04em;margin-bottom:1rem;}
.pricing-price-old{color:hsl(0,0%,55%);text-decoration:line-through;font-size:1.1rem;margin-bottom:0.25rem;}
.pricing-price{font-family:'Anton',sans-serif;font-size:2.5rem;letter-spacing:0.02em;line-height:1;margin-bottom:0.5rem;}
@media(min-width:768px){.pricing-price{font-size:3rem;}}
.pricing-discount{display:inline-block;background:hsla(60,79%,44%,0.15);color:var(--primary);padding:0.2rem 0.6rem;border-radius:100px;font-size:0.75rem;font-weight:400;text-decoration:underline;margin-bottom:1.5rem;}
.pricing-features{list-style:none;margin-bottom:2rem;}
.pricing-features li{display:flex;align-items:center;gap:0.6rem;padding:0.4rem 0;font-size:0.9rem;}
.pricing-features li svg{width:18px;height:18px;flex-shrink:0;}
.pricing-features li.included svg{stroke:var(--primary);}
.pricing-features li.excluded{color:hsl(0,0%,50%);opacity:0.7;}.pricing-features li.excluded svg{stroke:hsl(0,0%,50%);}
.pricing-card .btn-primary{width:100%;justify-content:center;}
.pricing-guarantee{text-align:center;margin-top:2.5rem;display:flex;align-items:center;justify-content:center;gap:0.6rem;color:var(--muted-foreground);font-size:0.85rem;}.pricing-guarantee svg{width:22px;height:22px;stroke:var(--accent);}
.email-form{display:flex;flex-direction:column;gap:0.75rem;max-width:500px;margin:0 auto;}
@media(min-width:768px){.email-form{flex-direction:row;}}
.email-form input{flex:1;padding:0.85rem 1.2rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--card);color:var(--foreground);font-size:0.9rem;min-height:48px;outline:none;transition:border-color 0.2s;font-family:'DM Sans',sans-serif;}
.email-form input::placeholder{color:var(--muted-foreground);}.email-form input:focus{border-color:var(--accent);}
.email-confirmation{text-align:center;color:var(--primary);font-weight:700;font-size:1rem;margin-top:1rem;display:none;}.email-confirmation.show{display:block;}
.email-note{text-align:center;color:var(--muted-foreground);font-size:0.75rem;margin-top:0.75rem;}
.partners-section{background:hsl(0,0%,97%);padding:2.5rem 0;}
.partners-section .section-title{color:hsl(0,0%,15%);font-size:1rem;margin-bottom:2rem;}
.partners-grid{display:flex;justify-content:center;align-items:center;gap:3rem;flex-wrap:wrap;}
@media(min-width:768px){.partners-grid{gap:4rem;}}
.partner-item{transition:opacity 0.3s ease;opacity:0.85;}.partner-item:hover{opacity:1;}
.partner-logo{height:60px;width:auto;display:block;}
@media(min-width:768px){.partner-logo{height:80px;}}
.cta-banner{background:var(--primary);padding:2.5rem 0;text-align:center;}
@media(min-width:768px){.cta-banner{padding:3.5rem 0;}}
.cta-banner h2{font-family:'Anton',sans-serif;font-size:clamp(1.2rem,4vw,2.5rem);color:var(--primary-foreground);text-transform:uppercase;letter-spacing:0.04em;margin-bottom:1.25rem;}
@media(min-width:768px){.cta-banner h2{margin-bottom:1.5rem;}}
.btn-dark{background:var(--bg-deep);color:var(--foreground);padding:0.85rem 2rem;border:none;border-radius:var(--radius);font-weight:700;font-size:0.875rem;text-transform:uppercase;letter-spacing:0.05em;text-decoration:none;min-height:48px;display:inline-flex;align-items:center;justify-content:center;transition:background 0.2s,transform 0.15s;}.btn-dark:hover{background:hsl(0,0%,10%);transform:translateY(-1px);}
.footer{background:var(--bg-deep);border-top:1px solid var(--border);padding:3rem 0 2rem;text-align:center;}
.footer-logo{font-family:'Anton',sans-serif;font-size:1.5rem;letter-spacing:0.04em;margin-bottom:0.5rem;}.footer-logo span{color:var(--primary);}
.footer-info{color:var(--muted-foreground);font-size:0.85rem;margin-bottom:1.25rem;}
.footer-contact-title{color:var(--foreground);font-size:0.9rem;line-height:1.5;}
.footer-contact-line{color:var(--muted-foreground);font-size:0.85rem;margin-top:0.5rem;}
.footer-email{color:var(--accent);text-decoration:none;font-size:0.85rem;transition:text-decoration 0.2s;}.footer-email:hover{text-decoration:underline;}
.footer-copy{color:var(--muted-foreground);font-size:0.75rem;margin-top:1.5rem;}
.mobile-cta-bar{position:fixed;bottom:0;left:0;right:0;z-index:50;background:var(--accent);padding:0.85rem 2rem;padding-bottom:calc(0.85rem + env(safe-area-inset-bottom));text-align:center;display:none;transform:translateY(100%);transition:transform 0.3s ease;}
.mobile-cta-bar.visible{transform:translateY(0);}
.mobile-cta-bar a{color:var(--foreground);text-decoration:none;font-weight:700;font-size:0.9rem;text-transform:uppercase;letter-spacing:0.05em;}
@media(max-width:767px){.mobile-cta-bar{display:block;} .footer{padding-bottom:4rem;}}
/* Contact Inline (inside pricing) */
.contact-inline{max-width:900px;margin:2rem auto 0;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1.25rem;box-sizing:border-box;}
@media(min-width:768px){.contact-inline{margin-top:2.5rem;padding:1.5rem 2rem;}}
.contact-inline-top{text-align:center;margin-bottom:1rem;}
.contact-inline-title{font-size:1rem;line-height:1.2;margin-bottom:0.25rem;color:var(--foreground);font-weight:400;text-decoration:underline;}
.contact-inline-sub{color:var(--muted-foreground);font-size:0.8rem;}
.contact-inline-form{display:grid;grid-template-columns:1fr;gap:0.6rem;}
@media(min-width:768px){.contact-inline-form{grid-template-columns:1fr 1fr 1fr auto;}}
.contact-inline-form .contact-input-wrap{flex:1;}
.contact-input-wrap{display:flex;align-items:center;gap:0.75rem;background:var(--secondary);border:1px solid var(--border);border-radius:var(--radius);padding:0 1rem;transition:border-color 0.2s;}
.contact-input-wrap:focus-within{border-color:var(--accent);}
.contact-input-wrap svg{width:18px;height:18px;stroke:var(--muted-foreground);flex-shrink:0;}
.contact-input-wrap input{flex:1;background:none;border:none;color:var(--foreground);font-size:0.85rem;padding:0.85rem 0;outline:none;font-family:'DM Sans',sans-serif;min-width:0;}
.contact-input-wrap input::placeholder{color:var(--muted-foreground);}
.contact-inline-btn{white-space:nowrap;padding:0.85rem 1.5rem;font-size:0.8rem;}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0;}

/* Performance */
img,video{content-visibility:auto;}
.section{content-visibility:auto;contain-intrinsic-size:auto 500px;}
.hero{content-visibility:visible;}
.gallery-scroll{will-change:scroll-position;}
@media(prefers-reduced-motion:reduce){
  .fade-in-up{transition:none;opacity:1;transform:none;}
  .gallery-scroll{scroll-behavior:auto;}
  html{scroll-behavior:auto;}
}
/* Style pour mention "translated from French" sur version EN */
.testimonial-translated {
  opacity: 0.55;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  margin-top: 0.35rem;
}
