/*
Theme Name: JC Studio
Theme URI: https://jcstudio.be
Author: Jérémy — JC Studio
Description: Landing page moderne pour JC Studio – Personal Training à Bruxelles. Coaching personnalisé, préparation physique, résultats durables.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jc-studio
Tags: landing-page, fitness, dark, one-page
*/

/* ================================================================
   TOKENS & RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #003366;
  --navy-2:   #002455;
  --navy-3:   #004080;
  --teal:     #2BCBBA;
  --teal-2:   #1FA99A;
  --teal-3:   #158F85;
  --coral:    #FF6F61;
  --white:    #F4F4F4;
  --muted:    rgba(244,244,244,.52);
  --soft:     rgba(244,244,244,.82);
  --card:     rgba(255,255,255,.05);
  --card-h:   rgba(255,255,255,.1);
  --border:   rgba(255,255,255,.1);
  --border-t: rgba(43,203,186,.28);
  --font:      'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --pad: clamp(60px, 8vw, 104px);
  --container: 1120px;
  --r: 20px;
  --r-sm: 12px;
}

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

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s, padding .3s, backdrop-filter .35s, border-color .3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(0,51,102,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 0;
  border-color: var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-logo .teal { color: var(--teal); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: .25px;
  transition: color .2s;
}
.navbar-links a:hover { color: var(--teal); }

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  box-shadow: 0 4px 14px rgba(255,111,97,.3);
}
.navbar-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255,111,97,.45);
  color: #ffffff;
}

.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.navbar-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-burger.open span:nth-child(2) { opacity: 0; }
.navbar-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overscroll-behavior: contain; /* empêche le scroll de la page en dessous */
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .3px;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .mobile-cta {
  background: var(--teal);
  color: var(--navy);
  padding: 14px 40px;
  border-radius: 99px;
  font-size: 16px;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  min-width: 44px; min-height: 44px; /* touch target minimum */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   HERO
   ================================================================ */
.section-hero {
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari: évite que la barre du navigateur coupe le hero */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 48%, rgba(43,203,186,.07) 0%, transparent 68%),
    linear-gradient(160deg, var(--navy) 0%, #002255 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 60%; height: 130%;
  background: linear-gradient(135deg, rgba(43,203,186,.055) 0%, rgba(255,111,97,.03) 100%);
  border-radius: 50% 30% 40% 20%;
  filter: blur(70px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 5%; left: 8%;
  width: 280px; height: 280px;
  background: rgba(255,111,97,.035);
  border-radius: 50%;
  filter: blur(90px);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,203,186,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,203,186,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
  padding: clamp(60px, 10vh, 100px) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,203,186,.09);
  border: 1px solid rgba(43,203,186,.22);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  letter-spacing: .9px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--teal);
  display: block;
  position: relative;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .3px;
  box-shadow: 0 6px 20px rgba(255,111,97,.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255,111,97,.5);
  color: #ffffff;
}
.btn-primary svg {
  width: 16px; height: 16px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.btn-primary:hover svg { transform: translateX(5px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 99px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .18s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-cond);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.hero-stat-num .teal { color: var(--teal); }
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}
.stat-divider {
  width: 1px; height: 38px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 42px 18px 42px 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-3) 0%, rgba(43,203,186,.1) 100%);
  border: 1px solid rgba(43,203,186,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 40px;
}
.hero-photo-placeholder svg {
  width: 72px; height: 72px;
  stroke: rgba(43,203,186,.22);
  fill: none;
  stroke-width: .8;
}
.hero-photo-placeholder p {
  font-size: 12px;
  color: rgba(255,255,255,.18);
  line-height: 1.6;
}

.hero-deco-square {
  position: absolute;
  top: -22px; right: -22px;
  width: 90px; height: 90px;
  border: 2px solid rgba(43,203,186,.12);
  border-radius: 22px;
  transform: rotate(14deg);
}
.hero-float-card {
  position: absolute;
  bottom: 44px; left: -36px;
  background: var(--navy-2);
  border: 1px solid rgba(43,203,186,.18);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  min-width: 168px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.hfc-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
}
.hfc-value {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 800;
}
.hfc-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ================================================================
   SECTION BASE
   ================================================================ */
.section { padding: var(--pad) 0; }
.section-alt { background: var(--navy-2); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title .accent { color: var(--teal); }

.section-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.section-header { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header.center .section-tag { justify-content: center; }

/* ================================================================
   ABOUT
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.about-photo-wrap { position: relative; }
.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 400px;
  border-radius: 32px 12px 32px 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
}
.about-photo-placeholder svg {
  width: 56px; height: 56px;
  stroke: rgba(43,203,186,.2);
  fill: none;
  stroke-width: .9;
}
.about-photo-placeholder p {
  font-size: 12px;
  color: rgba(255,255,255,.18);
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--teal);
  color: var(--navy);
  border-radius: var(--r);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 16px 44px rgba(43,203,186,.38);
}
.about-badge .num {
  font-family: var(--font-cond);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-top: 3px;
  opacity: .8;
}

.about-list {
  list-style: none;
  margin: 26px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--soft);
  line-height: 1.55;
}
.check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(43,203,186,.1);
  border: 1.5px solid rgba(43,203,186,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-icon svg {
  width: 10px; height: 10px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 3;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px 28px;
  transition: border-color .22s, transform .22s, background .22s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity .22s;
}
.service-card:hover {
  border-color: rgba(43,203,186,.28);
  transform: translateY(-5px);
  background: var(--card-h);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(43,203,186,.08);
  border: 1px solid rgba(43,203,186,.14);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
  transition: gap .15s;
}
.service-link:hover { gap: 10px; }
.service-link svg {
  width: 14px; height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}

/* ================================================================
   RESULTS (POURQUOI JC STUDIO)
   ================================================================ */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.results-visual {
  position: relative;
}
.results-photo-frame {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-3) 0%, rgba(43,203,186,.07) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.results-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.results-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
}
.results-photo-placeholder svg {
  width: 60px; height: 60px;
  stroke: rgba(43,203,186,.2);
  fill: none;
  stroke-width: .9;
}
.results-photo-placeholder p {
  font-size: 12px;
  color: rgba(255,255,255,.18);
}

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.results-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .2s, background .2s;
}
.results-item:hover {
  border-color: rgba(43,203,186,.18);
  background: var(--card-h);
}
.result-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(43,203,186,.08);
  border: 1px solid rgba(43,203,186,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.result-icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.result-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.result-text span {
  font-size: 13px;
  color: var(--muted);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: rgba(43,203,186,.18);
  transform: translateY(-4px);
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.t-stars svg {
  width: 15px; height: 15px;
  fill: #fbbf24;
}

.t-text {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-2), var(--navy-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: 700;
}
.t-role {
  font-size: 12px;
  color: var(--muted);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.section-cta-banner { padding: clamp(48px, 7vw, 80px) 0; }
.cta-banner-box {
  background: linear-gradient(135deg, rgba(43,203,186,.11) 0%, rgba(43,203,186,.04) 100%);
  border: 1px solid rgba(43,203,186,.18);
  border-radius: 28px;
  padding: clamp(44px, 6vw, 76px) clamp(32px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-box::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(ellipse, rgba(43,203,186,.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.02;
  margin-bottom: 14px;
}
.cta-banner-title .accent { color: var(--teal); }
.cta-banner-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 64px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.c-icon {
  width: 44px; height: 44px;
  background: rgba(43,203,186,.08);
  border: 1px solid rgba(43,203,186,.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.c-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 3px;
}
.c-value {
  font-size: 15px;
  font-weight: 600;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.contact-social a {
  width: 44px; height: 44px; /* touch target minimum 44×44px */
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.contact-social a:hover {
  border-color: var(--teal);
  background: rgba(43,203,186,.07);
}
.contact-social a svg {
  width: 18px; height: 18px;
  stroke: var(--soft);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s;
}
.contact-social a:hover svg { stroke: var(--teal); }

/* Contact form native / CF7 */
.contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .55px;
}
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: rgba(255,255,255,.042);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--teal);
  background: rgba(43,203,186,.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--navy-2); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-success {
  background: rgba(43,203,186,.1);
  border: 1px solid rgba(43,203,186,.3);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  display: none;
}
.form-success.show { display: block; }

.wpcf7-form input[type="submit"] {
  width: auto;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  padding: 15px 34px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  letter-spacing: .1px;
}
.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(43,203,186,.4);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #001333;
  border-top: 1px solid var(--border);
  padding: 52px 0 26px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.footer-logo .teal { color: var(--teal); }
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 290px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--soft);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--teal); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-subtitle { margin: 0 auto 38px; }
  /* Badge : wrap autorisé + centré si trop long sur tablette */
  .hero-badge { flex-wrap: wrap; justify-content: center; max-width: 100%; white-space: normal; text-align: center; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { max-width: 380px; margin: 0 auto; }

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

  .results-grid { grid-template-columns: 1fr; }
  .results-visual { display: none; }

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

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

  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-burger { display: flex; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* About badge : évite le débordement hors conteneur sur mobile */
  .about-badge { right: 0; bottom: -14px; }
  .about-photo-wrap { padding-bottom: 20px; }

  /* Stat dividers : masqués si les stats passent à la ligne */
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .hero-stats { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-banner-box { border-radius: 18px; }
}

/* ================================================================
   DYNAMIC — Animations, blur, glassmorphism
   ================================================================ */

/* ── Hero animated gradient background ── */
@keyframes heroGlow {
  0%   { opacity: .7; transform: scale(1) translate(0, 0); }
  33%  { opacity: 1;  transform: scale(1.08) translate(-2%, 1%); }
  66%  { opacity: .85; transform: scale(1.04) translate(2%, -1%); }
  100% { opacity: .7; transform: scale(1) translate(0, 0); }
}
@keyframes heroPulse {
  0%, 100% { opacity: .035; }
  50%       { opacity: .065; }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,203,186,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(43,203,186,.18); }
}
@keyframes rotateSlow {
  from { transform: rotate(14deg); }
  to   { transform: rotate(374deg); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hero BG glow animation */
.hero-bg::before { animation: heroGlow 8s ease-in-out infinite; }
.hero-bg::after  { animation: heroGlow 11s ease-in-out infinite reverse; }
.hero-grid-overlay { animation: heroPulse 6s ease-in-out infinite; }

/* Float card bounce */
.hero-float-card {
  animation: floatCard 4s ease-in-out infinite;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0,36,85,.85) !important;
}

/* Hero deco slow rotation */
.hero-deco-square { animation: rotateSlow 20s linear infinite; }

/* Hero text entrance */
.hero-badge   { animation: fadeInUp .6s .1s both ease-out; }
.hero-title   { animation: fadeInUp .7s .2s both ease-out; }
.hero-subtitle { animation: fadeInUp .7s .35s both ease-out; }
.hero-actions  { animation: fadeInUp .7s .5s both ease-out; }
.hero-stats    { animation: fadeInUp .6s .65s both ease-out; }
.hero-visual   { animation: scaleIn .8s .3s both ease-out; }

/* ── Glassmorphism cards ── */
.service-card {
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(0,51,102,.45) !important;
  border: 1px solid rgba(43,203,186,.12) !important;
  transition: border-color .3s, transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .3s, background .3s !important;
}
.service-card:hover {
  background: rgba(0,64,128,.55) !important;
  border-color: rgba(43,203,186,.35) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(43,203,186,.08) !important;
  transform: translateY(-8px) !important;
}

.testimonial-card {
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  background: rgba(0,51,102,.4) !important;
  border: 1px solid rgba(43,203,186,.1) !important;
  transition: border-color .3s, transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .3s !important;
}
.testimonial-card:hover {
  background: rgba(0,64,128,.5) !important;
  border-color: rgba(43,203,186,.25) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
  transform: translateY(-6px) !important;
}

.results-item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,51,102,.35) !important;
  transition: border-color .25s, transform .25s cubic-bezier(.34,1.2,.64,1), background .25s !important;
}
.results-item:hover {
  transform: translateX(6px) !important;
  border-color: rgba(43,203,186,.25) !important;
  background: rgba(0,64,128,.45) !important;
}

/* ── Navbar glass ── */
.navbar.scrolled {
  backdrop-filter: blur(20px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
  background: rgba(0,36,85,.88) !important;
}

/* ── Section tag animated line ── */
.section-tag::before {
  background: linear-gradient(90deg, var(--teal), var(--coral)) !important;
  animation: shimmer 2.5s linear infinite;
  background-size: 200% auto;
}

/* ── Hero title shimmer effect ── */
.hero-title .accent {
  background: linear-gradient(90deg, #2BCBBA, #4de8d9, #2BCBBA);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
/* Override the ::after underline for shimmered text */
.hero-title .accent::after {
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--teal)) !important;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* ── CTA Banner pulsing glow ── */
.cta-banner-box {
  animation: borderGlow 4s ease-in-out infinite;
  transition: transform .3s !important;
}
.cta-banner-box:hover { transform: scale(1.005); }

/* ── About badge pulse ── */
.about-badge {
  animation: borderGlow 3.5s ease-in-out infinite;
  background: linear-gradient(135deg, var(--teal), var(--teal-2)) !important;
  box-shadow: 0 16px 44px rgba(43,203,186,.4), 0 0 0 0 rgba(43,203,186,0) !important;
}

/* ── Service link coral hover ── */
.service-link { color: var(--coral) !important; }
.service-link svg { stroke: var(--coral) !important; }
.service-link:hover { gap: 12px !important; }

/* ── Contact form focus enhancement ── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal) !important;
  background: rgba(43,203,186,.06) !important;
  box-shadow: 0 0 0 3px rgba(43,203,186,.12) !important;
}

/* ── Section separators ── */
.section-alt::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,203,186,.25), rgba(255,111,97,.15), transparent);
}

/* ── Photo frames with glow ── */
.hero-photo-frame,
.about-photo-frame,
.results-photo-frame {
  transition: box-shadow .4s, transform .4s cubic-bezier(.34,1.2,.64,1) !important;
}
.hero-photo-frame:hover,
.about-photo-frame:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(43,203,186,.1) !important;
  transform: scale(1.01) !important;
}

/* ── Stats count pop animation ── */
.hero-stat-num {
  display: inline-block;
  animation: countUp .6s both ease-out;
}
.hero-stat:nth-child(1) .hero-stat-num { animation-delay: .7s; }
.hero-stat:nth-child(3) .hero-stat-num { animation-delay: .85s; }
.hero-stat:nth-child(5) .hero-stat-num { animation-delay: 1s; }

/* ================================================================
   FOCUS VISIBLE — navigation clavier accessible
   ================================================================ */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.navbar-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(43,203,186,.18);
}

/* ================================================================
   ACCESSIBILITY — prefers-reduced-motion
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── CF7 form button matches primary ── */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  background: var(--coral) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(255,111,97,.3) !important;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s !important;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 16px 40px rgba(255,111,97,.5) !important;
}

/* ── Mobile menu coral CTA ── */
.mobile-menu .mobile-cta {
  background: var(--coral) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(255,111,97,.35) !important;
}

/* ── Footer brand gradient ── */
.footer-logo .teal, .navbar-logo .teal {
  background: linear-gradient(90deg, var(--teal), #4de8d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

