/* =====================================================
   GRÉGOIRE CASSAGNEAU — Services Web Toulouse
   style.css — Landing Page Services
   ===================================================== */

/* ─── 1. RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── 2. DESIGN TOKENS ─────────────────────────────── */
:root {
  --navy:       #0C2172;
  --navy-dk:    #091A5E;
  --navy-md:    #1E317C;
  --navy-lt:    #2A3E8F;
  --gold:       #BF8E00;
  --gold-lt:    #D4A200;
  --gold-pale:  #FBF5DF;
  --white:      #FFFFFF;
  --light:      #F4F6FB;
  --gray-100:   #F0F2F7;
  --gray-200:   #E4E8F0;
  --gray-400:   #9CA3B5;
  --gray-600:   #6B7280;
  --gray-800:   #2D3342;
  --green:      #16A34A;

  --f-head: 'Prata', Georgia, serif;
  --f-body: 'Montserrat', -apple-system, sans-serif;

  --sh-xs:   0 1px 6px rgba(12,33,114,.06);
  --sh-sm:   0 2px 14px rgba(12,33,114,.09);
  --sh-md:   0 8px 32px rgba(12,33,114,.13);
  --sh-lg:   0 24px 64px rgba(12,33,114,.18);
  --sh-gold: 0 10px 40px rgba(191,142,0,.30);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  --ease:  cubic-bezier(.4, 0, .2, 1);

  --max-w: 1180px;
  --pad-s: clamp(70px, 9vw, 110px);
  --pad-x: clamp(20px, 5vw, 60px);
}

/* ─── 3. BASE TYPOGRAPHY ────────────────────────────── */
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
}

h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.12; font-weight: 400; }

/* ─── 4. LAYOUT HELPERS ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--pad-s) var(--pad-x);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(50px, 6vw, 72px);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--f-body);
}
.eyebrow--light { color: rgba(255,255,255,.55); }

.section__title {
  font-size: clamp(28px, 3.8vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title--white { color: var(--white); }

.section__lead {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--gray-600);
  line-height: 1.8;
}
.section__lead--white { color: rgba(255,255,255,.72); }

.divider {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px auto;
}

/* ─── 5. BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 34px;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  border: 2px solid transparent;
  transition: all .28s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(191,142,0,.42);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--sh-md);
}
.btn--navy:hover {
  background: var(--navy-md);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(12,33,114,.28);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--sm   { padding: 12px 24px; font-size: 13px; }

/* ─── 6. BADGES ──────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-body);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge--gold    { background: var(--gold); color: var(--white); }
.badge--popular { background: var(--gold); color: var(--white); }
.badge--eco     { background: #DCFCE7; color: #15803D; font-size: 11px; margin-left: 8px; }
.badge--tag     { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(191,142,0,.2); }

/* ─── 7. NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px var(--pad-x);
  background: rgba(9,26,94,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 28px rgba(0,0,0,.22);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}

.nav.scrolled {
  padding: 12px var(--pad-x);
  box-shadow: 0 4px 32px rgba(0,0,0,.32);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity .22s;
}
.nav__logo img:hover { opacity: .85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 500;
  transition: color .22s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
  transition: all .22s var(--ease) !important;
}
.nav__cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}

/* ─── 8. HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--navy-dk) 0%, var(--navy) 55%, var(--navy-md) 100%);
  display: flex;
  align-items: center;
  padding: 130px var(--pad-x) 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(191,142,0,.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { display: flex; flex-direction: column; gap: 26px; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  width: fit-content;
}

.hero__pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(191,142,0,.55); }
  50%       { box-shadow: 0 0 0 8px rgba(191,142,0,0); }
}

.hero__title {
  font-size: clamp(36px, 4.4vw, 58px);
  color: var(--white);
  line-height: 1.08;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero__desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,.75);
  line-height: 1.82;
  max-width: 480px;
}
.hero__desc strong { color: var(--white); font-weight: 700; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

/* ── Capacity indicator ─────────────────────────────── */
.hero__avail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.hero__avail-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.hero__avail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.3);
}

.hero__avail-dot--on {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 6px rgba(191,142,0,.5);
}

.hero__avail-text {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

.hero__avail-text strong {
  color: var(--white);
  font-weight: 700;
}

/* ─────────────────────────────────────────────────── */
.hero__trust {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}

.hero__trust-item { display: flex; flex-direction: column; gap: 3px; }

.hero__trust-num {
  font-family: var(--f-head);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}

.hero__google-badge {
  position: absolute;
  top: 22px;
  right: -22px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 150px;
}

.hero__google-stars {
  display: flex;
  gap: 3px;
}

.hero__google-stars i {
  color: var(--gold);
  font-size: 15px;
}

.hero__google-label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.hero__trust-label {
  font-size: 11px;
  color: rgba(255,255,255,.48);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__frame {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.hero__frame::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 100%; height: 94%;
  border: 2px solid rgba(191,142,0,.38);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 0;
}

.hero__frame::after {
  content: '';
  position: absolute;
  bottom: -18px; left: -18px;
  width: 55%; height: 45%;
  background: rgba(191,142,0,.1);
  border-radius: var(--r-md);
  pointer-events: none;
  z-index: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.hero__badge {
  position: absolute;
  bottom: 28px;
  left: -48px;
  z-index: 2;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  background: transparent;
}

.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── 9. PAIN SECTION ────────────────────────────────── */
.pain { background: var(--white); }

.pain__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pain__card {
  background: var(--light);
  border-radius: var(--r-md);
  padding: 36px 30px;
  border-left: 4px solid var(--gold);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}

.pain__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.pain__quote {
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: .65;
  color: var(--gold);
  opacity: .22;
  display: block;
  margin-bottom: 10px;
  user-select: none;
}

.pain__text {
  font-family: var(--f-head);
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--navy);
  line-height: 1.42;
  font-style: italic;
  margin-bottom: 16px;
}

.pain__sub {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pain__sub::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ─── 10. STATS BAR ──────────────────────────────────── */
.stats {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 60px var(--pad-x);
  position: relative;
  overflow: hidden;
}

.stats::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 350px;
  background: radial-gradient(ellipse, rgba(191,142,0,.07) 0%, transparent 70%);
  pointer-events: none;
}

.stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.stats__item {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.1);
}

.stats__num {
  font-family: var(--f-head);
  font-size: clamp(48px, 6vw, 68px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.58);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stats__note {
  text-align: center;
  color: rgba(255,255,255,.38);
  font-size: 13px;
  font-style: italic;
  max-width: 420px;
  margin: 32px auto 0;
  line-height: 1.7;
}

/* ─── 11. ABOUT ──────────────────────────────────────── */
.about { background: var(--light); }

.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual { position: relative; }

.about__photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  position: relative;
  z-index: 1;
}

.about__deco-a {
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border: 3px solid rgba(191,142,0,.4);
  border-radius: var(--r-md);
  z-index: 0;
}

.about__macaron {
  position: absolute;
  bottom: -20px;
  right: -30px;
  z-index: 2;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
}

.about__macaron img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__deco-b {
  position: absolute;
  bottom: 24px; right: -24px;
  width: 45%;
  height: 45%;
  background: var(--navy);
  border-radius: var(--r-md);
  z-index: 0;
  opacity: .06;
}

.about__content { display: flex; flex-direction: column; gap: 22px; }
.about__content .section__title { text-align: left; }

.about__text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
}
.about__text strong { color: var(--gray-800); }

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-xs);
  transition: box-shadow .25s;
}

.pillar:hover { box-shadow: var(--sh-md); }

.pillar__icon {
  width: 38px; height: 38px;
  background: var(--gold-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.pillar__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
  font-family: var(--f-body);
}

.pillar__sub {
  font-size: 12px;
  color: var(--gray-400);
}

/* ─── 12. SERVICES (CRÉATION) ────────────────────────── */
.services {
  background: var(--white);
  padding: var(--pad-s) var(--pad-x);
}

/* CSS-only pricing toggle */
.sub-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.pricing-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.pricing-switch__opt {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-400);
  transition: color .25s;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pricing-switch__track {
  position: relative;
  width: 54px; height: 28px;
  background: var(--gray-200);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s var(--ease);
}

.pricing-switch__track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.22);
  transition: transform .3s var(--ease);
}

/* Toggle active states via sibling selector */
.sub-toggle-input:checked ~ .pricing-switch .pricing-switch__track { background: var(--gold); }
.sub-toggle-input:checked ~ .pricing-switch .pricing-switch__track::after { transform: translateX(26px); }
.sub-toggle-input:checked ~ .pricing-switch .pricing-switch__opt:last-child { color: var(--navy); }
.sub-toggle-input:checked ~ .pricing-switch .pricing-switch__opt:first-child { color: var(--gray-200); }

/* Show/hide prices */
.price-sub { display: none; }
.sub-toggle-input:checked ~ .offer-grid .price-std { display: none; }
.sub-toggle-input:checked ~ .offer-grid .price-sub { display: block; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.offer-card--pop {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-10px);
}

.offer-card--pop:hover { transform: translateY(-16px); }

.offer-card__pop-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
}

.offer-card__icon {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 21px;
  margin-bottom: 18px;
}

.offer-card--pop .offer-card__icon { background: rgba(191,142,0,.14); }

.offer-card__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-400);
  font-family: var(--f-body);
  margin-bottom: 6px;
}

.offer-card--pop .offer-card__tag { color: rgba(255,255,255,.45); }

.offer-card__title {
  font-family: var(--f-head);
  font-size: 19px;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 20px;
}

.offer-card--pop .offer-card__title { color: var(--white); }

.offer-card__price-area {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
  margin-bottom: 20px;
}

.offer-card--pop .offer-card__price-area { border-color: rgba(255,255,255,.1); }

.offer-card__amount {
  font-family: var(--f-head);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.offer-card__amount sup {
  font-size: 18px;
  vertical-align: super;
  font-family: var(--f-body);
  font-weight: 700;
}

.offer-card__from {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.price-sub .offer-card__from-orig {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}

.offer-card--pop .price-sub .offer-card__from-orig { color: rgba(255,255,255,.35); }

.price-sub .offer-card__saving {
  font-size: 12px;
  color: #15803D;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.offer-card__delay {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-card--pop .offer-card__delay { color: rgba(255,255,255,.4); }

.offer-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.offer-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.offer-card--pop .offer-card__feature { color: rgba(255,255,255,.72); }

.offer-card__feature i.fa-check { color: var(--green); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.offer-card--pop .offer-card__feature i.fa-check { color: var(--gold); }

/* ─── 13. MAINTENANCE PLANS ──────────────────────────── */
.maintenance { background: var(--light); }

.maintenance__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.plan-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.plan-card--pop {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-12px);
}

.plan-card--pop:hover { transform: translateY(-18px); }

.plan-card__head {
  padding: 30px 28px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.plan-card--pop .plan-card__head { border-color: rgba(255,255,255,.1); }

.plan-card__name {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.plan-card--pop .plan-card__name { color: rgba(255,255,255,.5); }

.plan-card__price {
  font-family: var(--f-head);
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-card__price sup { font-size: 20px; vertical-align: super; font-family: var(--f-body); font-weight: 700; }
.plan-card__price sub { font-size: 16px; font-family: var(--f-body); font-weight: 500; color: var(--gray-400); }
.plan-card--pop .plan-card__price sub { color: rgba(255,255,255,.45); }

.plan-card__engage {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}

.plan-card--pop .plan-card__engage { color: rgba(255,255,255,.4); }

.plan-card__discount {
  margin-top: 14px;
  background: var(--gold-pale);
  border: 1px solid rgba(191,142,0,.22);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.plan-card--pop .plan-card__discount {
  background: rgba(191,142,0,.15);
  border-color: rgba(191,142,0,.3);
}

.plan-card__body { padding: 24px 28px; }

.plan-card__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }

.plan-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: var(--gray-600);
}

.plan-card--pop .plan-feature { color: rgba(255,255,255,.72); }

.plan-feature i.fa-check { color: var(--green); font-size: 13px; flex-shrink: 0; }
.plan-feature i.fa-times  { color: var(--gray-200); font-size: 13px; flex-shrink: 0; }
.plan-card--pop .plan-feature i.fa-check { color: var(--gold); }
.plan-card--pop .plan-feature i.fa-times  { color: rgba(255,255,255,.18); }

.plan-feature--strong { font-weight: 600; }

/* ─── 14. PROCESS ─────────────────────────────────────── */
.process {
  background: linear-gradient(140deg, var(--navy-dk) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(191,142,0,.1) 0%, transparent 65%);
  pointer-events: none;
}

.process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 44px; left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,142,0,.35), transparent);
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.process__num-wrap {
  width: 68px; height: 68px;
  background: rgba(191,142,0,.12);
  border: 2px solid rgba(191,142,0,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process__num {
  font-family: var(--f-head);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

.process__cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.process__cta-label {
  color: rgba(255,255,255,.7);
  font-size: 15px;
}

.process__title {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.process__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.68;
}

/* ─── 15. TESTIMONIALS ───────────────────────────────── */
.testimonials { background: var(--white); }

.testimonials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── REVIEWS SCORE ──────────────────────────────────── */
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
  background: var(--light);
  border-radius: var(--r-md);
  padding: 22px 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--sh-xs);
}

.reviews-score__num {
  font-family: var(--f-head);
  font-size: 56px;
  color: var(--navy);
  line-height: 1;
}

.reviews-score__right {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reviews-score__stars {
  display: flex;
  gap: 4px;
}

.reviews-score__stars i { color: var(--gold); font-size: 20px; }

.reviews-score__label {
  font-size: 13px;
  color: var(--gray-600);
}

.reviews-score__logo {
  height: 22px;
  width: auto;
  margin-top: 2px;
}

/* ─── REVIEWS CAROUSEL ───────────────────────────────── */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 8px 0 16px;
}

.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ─── REVIEW CARD ────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 26px 24px;
  flex: 0 0 calc(33.333% - 15px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--sh-xs);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

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

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
}

.review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--f-body);
  line-height: 1.2;
}

.review-card__date {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

.review-card__platform {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: .75;
}

.review-card__stars {
  display: flex;
  gap: 3px;
}

.review-card__stars i { color: var(--gold); font-size: 13px; }

.review-card__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.72;
  font-style: italic;
  position: relative;
  padding-left: 16px;
}

.review-card__text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
}

/* ─── CAROUSEL CONTROLS ──────────────────────────────── */
.reviews-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
  z-index: 2;
  transition: all .22s var(--ease);
}

.reviews-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--sh-md);
}

.reviews-btn--prev { left: 8px; }
.reviews-btn--next { right: 8px; }

.reviews-btn:disabled {
  opacity: .35;
  pointer-events: none;
}

/* ─── DOTS ───────────────────────────────────────────── */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .25s var(--ease);
}

.reviews-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 11px); }
  .reviews-btn--prev { left: 6px; }
  .reviews-btn--next { right: 6px; }
  .reviews-score { padding: 18px 22px; }
  .reviews-score__num { font-size: 44px; }
}

@media (max-width: 580px) {
  .review-card { flex: 0 0 calc(100% - 0px); }
}

/* ─── 16. PORTFOLIO CAROUSEL ─────────────────────────── */
.portfolio {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy-md) 100%);
  padding: clamp(60px, 8vw, 96px) 0;
  overflow: hidden;
}

.portfolio__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pf-carousel {
  position: relative;
  overflow: hidden;
  padding: 8px clamp(16px, 3vw, 40px) 16px;
}

.pf-track {
  display: flex;
  gap: 22px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.pf-card {
  flex: 0 0 calc(33.333% - 15px);
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  display: flex;
  flex-direction: column;
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(0,0,0,.38);
}

.pf-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}

.pf-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}

.pf-card:hover .pf-card__img img {
  transform: scale(1.05);
}

.pf-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 26, 94, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.pf-card:hover .pf-card__overlay { opacity: 1; }

.pf-card__visit {
  background: var(--gold);
  color: var(--white);
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background .2s;
}

.pf-card__visit:hover { background: var(--gold-lt); }

.pf-card__body {
  padding: 18px 20px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pf-card__tag {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.pf-card__title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.pf-card__desc {
  font-size: .76rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-top: 2px;
}

.pf-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .22s var(--ease), border-color .22s var(--ease);
}

.pf-btn:hover { background: var(--gold); border-color: var(--gold); }
.pf-btn:disabled { opacity: .25; pointer-events: none; }
.pf-btn--prev { left: 8px; }
.pf-btn--next { right: 8px; }

.pf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 var(--pad-x);
}

.pf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .25s var(--ease);
}

.pf-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.portfolio__cta {
  text-align: center;
  margin-top: 44px;
  padding: 0 var(--pad-x);
}

@media (max-width: 900px) {
  .pf-card { flex: 0 0 calc(50% - 11px); }
  .pf-btn--prev { left: 4px; }
  .pf-btn--next { right: 4px; }
}

@media (max-width: 580px) {
  .pf-card { flex: 0 0 100%; }
}

/* ─── 17. FAQ ─────────────────────────────────────────── */
.faq { background: var(--light); }

.faq__inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .25s;
}

.faq__item:hover { box-shadow: var(--sh-sm); }

.faq__item[open] {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(191,142,0,.12);
}

.faq__question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  user-select: none;
  transition: color .22s;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .28s var(--ease);
}

.faq__item[open] .faq__question::after { transform: rotate(180deg); }

.faq__answer {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.78;
  border-top: 1px solid var(--gray-100);
  overflow: hidden;
  /* height animée via JS */
  transition: height .36s cubic-bezier(.4,0,.2,1), opacity .3s ease, padding .36s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  height: 0;
  padding: 0 24px;
}

.faq__answer.is-open {
  opacity: 1;
  padding: 16px 24px 20px;
}

/* ─── 18. FINAL CTA ──────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  padding: var(--pad-s) var(--pad-x);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  line-height: 1.12;
}

.cta-final__sub {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  max-width: 500px;
}

.cta-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-final__reassure {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-final__reassure span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-final__reassure i { font-size: 12px; opacity: .8; }

/* ─── 19. FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--navy-dk);
  padding: 40px var(--pad-x);
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  font-family: var(--f-head);
  font-size: 17px;
  color: var(--white);
}

.footer__logo span { color: var(--gold); }

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255,255,255,.45);
  transition: color .22s;
  font-size: 13px;
}

.footer__links a:hover { color: var(--gold); }

/* ─── 20. RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-card--pop { transform: none; }
  .offer-card--pop:hover { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { display: none; }
  .hero__desc { max-width: 100%; }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { display: none; }

  .pain__grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card--pop { transform: none; }
  .plan-card--pop:hover { transform: translateY(-5px); }

  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }

  .stats__inner { grid-template-columns: repeat(3, 1fr); }
  .nav__links { display: none; }
}

@media (max-width: 680px) {
  .offer-grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; gap: 28px; }
  .stats__item:not(:last-child)::after { display: none; }
  .process__steps { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .hero__trust { gap: 20px; }
  .cta-final__ctas { flex-direction: column; align-items: center; }
}

/* ─── 21. ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content > * {
  animation: fadeUp .65s var(--ease) both;
}

.hero__content > *:nth-child(1) { animation-delay: .1s; }
.hero__content > *:nth-child(2) { animation-delay: .2s; }
.hero__content > *:nth-child(3) { animation-delay: .3s; }
.hero__content > *:nth-child(4) { animation-delay: .38s; }
.hero__content > *:nth-child(5) { animation-delay: .45s; }

.hero__frame {
  animation: fadeUp .7s var(--ease) .25s both;
}
