:root {
  --bg: #FCFCFD;
  --bg-alt: #FCFCFD;
  --bg-dark: #1e2433;
  --panel-dark: #262d3d;
  --border: rgba(15, 23, 42, 0.06);
  --border-dark: rgba(255, 255, 255, 0.06);
  --text: #1E293B;
  --text-muted: #64748B;
  --text-dark: #F8FAFC;
  --text-dark-muted: #94A3B8;
  --brand: #FF1A33;
  --brand-hover: #E6001A;
  --brand-glow: rgba(255, 26, 51, 0.25);
  --accent: #55d39b;
  --accent-glow: rgba(85, 211, 155, 0.15);
  --max-w: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --header-h: 75px;
  --h1: clamp(34px, 5vw, 54px);
  --h2: clamp(26px, 4vw, 40px);
  --h3: clamp(18px, 2vw, 22px);
}

*,
*::before,
*::after {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

p {
  line-height: 1.75;
  letter-spacing: -0.01em
}

a {
  text-decoration: none;
  color: inherit;
  transition: .3s
}

ul {
  padding: 0;
  margin: 0;
  list-style: none
}

img {
  max-width: 100%;
  display: block
}

section {
  padding: 100px 0
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

.text-center {
  text-align: center
}

.text-brand {
  color: var(--brand)
}

.text-green {
  color: #4ade80;
}
.text-red {
  color: #ff5d70;
}
.text-blue {
  color: #93c5fd;
}

/* Utility visibility classes used in About cards */
.desktop-only {
  display: revert;
}

.mobile-only {
  display: none;
}

@media(max-width:768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 16px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  letter-spacing: -.3px
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #FF4D5A);
  color: #fff;
  box-shadow: 0 10px 25px -5px var(--brand-glow), inset 0 0 0 1px rgba(255, 255, 255, .1)
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(255, 26, 51, .4), inset 0 0 0 1px rgba(255, 255, 255, .1)
}

.btn-full {
  width: 100%
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%
}

.header-logo {
  display: flex;
  align-items: center
}

.header-logo img {
  height: 119px;
  width: auto;
  display: block
}

@media(max-width:900px) {
  .header {
    height: 55px;
    position: relative;
    background: transparent;
    backdrop-filter: none;
    border: none;
    justify-content: center
  }

  .header .header-inner {
    justify-content: center
  }

  .header-logo img {
    height: 100px
  }

  .header .header-inner .btn,
  .header .header-inner nav {
    display: none
  }
}

/* --- HERO --- */
.hero {
  position: relative;
  padding: 70px 0 120px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 0%, rgba(30, 36, 51, .04), transparent 40%), radial-gradient(circle at 85% 80%, rgba(15, 23, 42, .03), transparent 40%)
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(15,23,42,0.04)"/></svg>');
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

h1 {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: var(--h1);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -1.6px;
  font-weight: 800;
  text-wrap: balance
}

h2 {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: var(--h2);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1px;
  text-wrap: balance
}

h3,
h4,
h5,
h6 {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.45px
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7
}

.hero-check-list {
  display: grid;
  gap: 14px;
  margin-bottom: 40px
}

.hero-check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.05rem;
  color: var(--text)
}

.hero-bullet-mobile {
  display: inline
}

.hero-bullet-desktop {
  display: none
}

.hero-check-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(85, 211, 155, .25);
  color: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px
}

/* Hero image */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, .12);
  transform: rotate(-1deg);
  transition: transform .5s ease;
  margin-top: 30px
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.01)
}

.hero-image-wrapper img {
  border-radius: 24px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%
}

/* Hero form */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, .08);
  overflow: hidden;
  border-top: 4px solid var(--brand)
}

.form-header {
  background: var(--bg-alt);
  padding: 24px 32px;
  border-bottom: 1px solid var(--border)
}

.form-header h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 800
}

.form-header p {
  margin: 0;
  font-size: .9rem;
  color: var(--text-muted)
}

.form-body {
  padding: 32px
}

.input-group {
  margin-bottom: 18px
}

.input-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  transition: .2s;
  font-family: inherit
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow)
}

/* --- Animations --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.hero-left {
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.16, 1, .3, 1) .1s forwards
}

.form-card {
  opacity: 0;
  animation: heroFadeIn .8s cubic-bezier(.16, 1, .3, 1) .4s forwards
}

@media(max-width:960px) {
  .form-card {
    animation: heroFadeUp .7s cubic-bezier(.16, 1, .3, 1) .3s forwards
  }
}

@media(min-width:769px) {
  .hero-bullet-mobile {
    display: none
  }

  .hero-bullet-desktop {
    display: inline
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0)
}

/* --- LOGO WALL --- */
.logo-wall {
  padding: 35px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
}

.logo-wall .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-wall-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 24px 0;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
}

@media(min-width: 769px) {
  .logo-grid {
    gap: 96px;
  }
}

.logo-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-grid-item img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.logo-grid-item img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}


@media(max-width: 768px) {
  .problem-card:hover {
    transform: translateX(0);
    box-shadow: 0 12px 35px -8px rgba(15, 23, 42, .12);
  }

  :root {
    --h2: 1.9rem;
  }

  h2 {
    font-size: var(--h2);
    line-height: 1.15;
  }

  .btn-primary {
    padding: 18px 28px !important;
    font-size: 1rem !important;
    min-height: 58px;
  }

  .logo-wall {
    padding: 24px 0;
  }
  .logo-wall-text {
    font-size: 0.65rem;
    margin-bottom: 18px;
  }
  .logo-grid {
    gap: 30px;
  }
  .logo-grid-item {
    padding: 0;
  }
  .logo-grid-item img {
    height: 32px;
    max-width: 110px;
  }
}

/* --- SPLIT LAYOUT (Problem Section) --- */
.problem-section {
  background: var(--bg-alt);
  padding: 120px 0;
  position: relative;
  overflow: hidden
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 36, 51, .03), transparent 70%);
  pointer-events: none
}

.problem-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 36, 51, .03), transparent 70%);
  pointer-events: none
}

.split-layout {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 80px;
  align-items: start
}

.sticky-header {
  position: sticky;
  top: 120px
}

.sticky-header h2 {
  font-size: var(--h2);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px
}

.sticky-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0
}

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.problem-card {
  background: linear-gradient(145deg, #ffffff 0%, rgba(255, 26, 51, 0.02) 100%);
  border: 1px solid rgba(255, 26, 51, 0.1);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px -8px rgba(15, 23, 42, .12);
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand);
  opacity: 0.15;
  transition: .3s
}

.problem-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 26, 51, .03);
  border-color: rgba(255, 26, 51, .3);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, .06)
}

.problem-card:hover::before {
  opacity: 1
}

.problem-card:hover h3 {
  color: var(--brand)
}

.problem-card h3 {
  font-size: 1.3rem;
  margin: 0 0 12px;
  font-weight: 700;
  transition: .3s
}

.problem-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6
}

/* --- BENTO GRID (Benefits - Dark) --- */
.benefits-section {
  background: var(--bg-dark);
  color: var(--text-dark);
  padding: 120px 24px;
  position: relative;
  overflow: hidden
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, .03), transparent 70%);
  pointer-events: none
}

.benefits-section h2 {
  font-size: var(--h2);
  margin-bottom: 70px;
  text-align: center;
  letter-spacing: -1px;
  font-weight: 800;
  position: relative
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.bento-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94), box-shadow .4s cubic-bezier(.25, .46, .45, .94), border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.bento-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 26, 51, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.bento-large {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 40px;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.bento-large .bento-icon {
  margin-bottom: 0;
  width: 80px;
  height: 80px;
  border-radius: 22px;
}

.editorial-overline {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.bento-item h3 {
  font-size: 1.45rem;
  margin: 0 0 12px;
  font-weight: 700
}

.bento-item p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 1.05rem;
  line-height: 1.6
}

/* --- TIMELINE (Process) --- */
.process-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  padding: 100px 0
}

.timeline-container {
  max-width: 800px;
  margin: 70px auto 0;
  position: relative;
  padding-left: 30px
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--accent));
  opacity: .3
}

.timeline-item {
  position: relative;
  margin-bottom: 50px
}

.timeline-dot {
  position: absolute;
  left: -39px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--bg-alt);
  border: 2px solid var(--brand);
  border-radius: 50%;
  z-index: 2;
  transition: .3s
}

.method-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 5px 15px -5px rgba(15, 23, 42, .05)
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px -10px rgba(15, 23, 42, .1)
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand-glow)
}

.step-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(15, 23, 42, .06);
  line-height: 1
}

.step-badge {
  font-size: .7rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(255, 26, 51, .08);
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .5px
}

/* --- TESTIMONIALS (Marquee) --- */
.testimonials-section {
  padding: 104px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden
}

.testimonials-head {
  margin-bottom: 52px !important
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.testimonials-google-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.testimonials-eyebrow-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  position: relative;
  top: 1px;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  color: #eabf62;
  letter-spacing: 0.6px;
  font-size: 0.86rem;
  line-height: 1;
}

.testimonials-title {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: var(--h2);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1px;
}

.testimonials-subtitle {
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 520px;
}

.testimonials-cta {
  text-align: center;
  padding: 36px 20px 0;
  margin-top: 28px;
}

.testimonials-cta-text {
  color: var(--text-muted);
  font-size: .97rem;
  margin: 0 0 20px;
  line-height: 1.5;
}

.testimonials-cta-btn {
  width: 100%;
  max-width: 340px;
  justify-content: center;
}

@media(max-width:768px) {
  .testimonials-cta {
    display: none;
  }
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 26, 51, .05), transparent 70%);
  pointer-events: none
}

.marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
  mask-image: linear-gradient(to right, transparent, black 16%, black 84%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 16%, black 84%, transparent)
}

.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 14px 0 8px;
  animation: marqueeScroll var(--marquee-duration, 56s) linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform
}

.marquee-container:hover .marquee-track,
.marquee-container:active .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translate3d(0, 0, 0)
  }

  100% {
    transform: translate3d(calc(var(--marquee-distance, 50%) * -1), 0, 0)
  }
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px;
  width: 356px;
  min-height: 314px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: .3s;
  box-shadow: 0 4px 20px -6px rgba(15, 23, 42, .08)
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 26, 51, .3);
  box-shadow: 0 15px 30px -10px rgba(15, 23, 42, .12)
}

.reviewer-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0
}

.reviewer-meta {
  display: grid;
  gap: 4px;
  min-width: 0
}

.reviewer-name {
  font-weight: 600;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.2
}

.reviewer-level {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.3
}

.reviewer-avatar {
  width: 52px;
  min-width: 52px;
  max-width: 52px;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  overflow: hidden;
  display: block;
  font-weight: 600;
  color: var(--text-muted);
  font-size: .85rem;
  flex-shrink: 0
}

.reviewer-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.1);
  transform-origin: center;
}

.reviewer-avatar-img--aurelie {
  object-position: center 36%;
  transform: scale(1.4);
}

.reviewer-avatar-img--leo {
  object-position: center 5%;
  transform: scale(1.16);
}

.reviewer-avatar-img--jack {
  object-position: center 23%;
  transform: scale(1.2);
}

.stars {
  color: #fbbf24;
  display: flex;
  gap: 3px;
  font-size: .86rem;
  margin-bottom: 0;
  letter-spacing: .08em
}

.parent-tag {
  font-size: .66rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand);
  border: 1px solid transparent;
  padding: 5px 24px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-left: auto;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 77, 90, .2)
}

.parent-tag--champion {
  background: #f59e0b;
  border-color: #d97706;
  box-shadow: 0 4px 12px rgba(245, 158, 11, .25)
}

.review-text {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.64;
  margin: 0;
  opacity: .9
}

.review-text strong {
  color: var(--text);
  font-weight: 600;
}

/* --- COACH SECTION --- */
.about-section {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden
}

.about-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 26, 51, .055), transparent 70%);
  pointer-events: none
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 0 60px;
  grid-template-areas: "title photo" "text photo" "piliers photo";
  align-items: start
}

.area-title {
  grid-area: title;
  margin-bottom: 20px
}

.area-text {
  grid-area: text;
  margin-bottom: 40px
}

.area-photo {
  grid-area: photo;
  position: relative
}

.area-piliers {
  grid-area: piliers
}

.coach-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08)
}

.coach-photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 35%
}

.coach-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(248, 250, 252, .9), transparent)
}

.valeur-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: .3s
}

.valeur-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 26, 51, .03);
  border-color: rgba(255, 26, 51, .3);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, .06)
}

.valeur-card:hover h4 {
  color: var(--brand) !important
}

.valeur-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  transition: .3s
}

.valeur-card p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4
}

/* --- FAQ --- */
.faq-section {
  background: var(--bg);
  padding: 104px 0;
  position: relative;
}

.faq-wrap {
  max-width: 980px;
}

.faq-head {
  margin-bottom: 40px;
}

.faq-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}

.faq-head h2 {
  margin: 0;
  font-size: var(--h2);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px -18px rgba(15, 23, 42, 0.24);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 26, 51, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px -22px rgba(15, 23, 42, 0.28);
}

.faq-item.active {
  border-color: rgba(255, 26, 51, 0.35);
  box-shadow: 0 20px 44px -26px rgba(255, 26, 51, 0.22);
}

.faq-item .faq-summary {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  list-style: none;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding: 22px 58px 22px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.faq-item .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-summary::before,
.faq-item .faq-summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--brand);
  transform: translateY(-50%);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.faq-item .faq-summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.active .faq-summary::after {
  opacity: 0;
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  margin: 0;
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 1rem;
}

/* --- CTA FINAL --- */
.cta-final {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  text-align: center;
  padding: 120px 24px;
  color: var(--text);
  position: relative;
  overflow: hidden
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 26, 51, .06), transparent 70%);
  pointer-events: none
}

.cta-title-final {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em
}

.cta-title-highlight {
  color: var(--brand);
  font-weight: 700
}

.cta-subtitle-final {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 34px;
  line-height: 1.6
}

.cta-card-final {
  background: #fff;
  border: 1px solid rgba(255, 26, 51, .15);
  border-radius: 24px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto 34px;
  box-shadow: 0 20px 60px -10px rgba(255, 26, 51, .12);
  transition: .4s;
  text-align: left
}

.cta-card-final:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px -10px rgba(255, 26, 51, .16);
  border-color: rgba(255, 26, 51, .3)
}

.cta-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px
}

.cta-check-item span {
  display: block;
  line-height: 1.55;
  font-weight: 520
}

.cta-check-item strong {
  color: var(--text);
  font-weight: 700
}

.cta-check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-top: 2px
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0)
  }

  40% {
    transform: translateY(-10px)
  }

  60% {
    transform: translateY(-5px)
  }
}

.arrow-down {
  display: block;
  margin: 0 auto 30px;
  color: var(--brand);
  animation: bounce 2s infinite
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .9rem
}

footer a {
  color: var(--text-muted);
  margin: 0 10px
}

footer a:hover {
  color: var(--text);
}

/* --- STICKY BAR MOBILE --- */
.sticky-bar {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 400px;
  background: rgba(15, 18, 25, .92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 10px 10px 22px;
  border-radius: 60px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, .15),
    0 20px 50px -12px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .4s cubic-bezier(.22, .68, 0, 1.1), opacity .35s ease
}

.sticky-bar.hidden {
  transform: translate(-50%, 130%);
  opacity: 0;
  pointer-events: none
}

.sticky-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 1px;
  min-width: 0
}

.sticky-info b {
  font-size: .88rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -.01em
}

.sticky-info span {
  font-size: .72rem;
  color: rgba(148, 163, 184, .85);
  letter-spacing: .01em
}

.sticky-btn {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: 11px 22px;
  border-radius: 60px;
  border: none;
  text-decoration: none;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255, 26, 51, .35);
  transition: background .2s, transform .15s, box-shadow .2s
}

.sticky-btn:hover {
  background: #e0001f;
  box-shadow: 0 4px 18px rgba(255, 26, 51, .45)
}

.sticky-btn:active {
  transform: scale(.96)
}

@media(min-width:769px) {
  .sticky-bar {
    display: none
  }
}

/* --- RESPONSIVE --- */
@media(max-width:960px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 50px
  }

  .form-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto
  }

  .split-layout {
    grid-template-columns: 1fr
  }

  .cards-stack {
    gap: 24px;
  }

  .sticky-header {
    position: static;
    margin-bottom: 24px;
    text-align: left
  }

  .sticky-header h2 {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .sticky-header p {
    font-size: 1.05rem;
    color: var(--text-dark-muted);
    margin-bottom: 0;
  }

  .recognize-box {
    display: none !important;
  }

  .split-layout {
    gap: 32px;
  }

  .problem-section {
    padding: 72px 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 30px;
  }

  .bento-large {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .bento-item {
    position: relative;
    padding: 40px 24px 32px !important;
    overflow: visible !important;
  }

  .bento-item .bento-icon {
    position: absolute !important;
    top: -24px !important;
    left: 24px !important;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
    background: var(--bg-alt) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    z-index: 2;
  }

  .bento-item .bento-icon svg {
    width: 32px;
    height: 32px;
  }

  .bento-text {
    margin-top: 16px;
  }

  .bento-item h3 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .timeline-container {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px
  }

  .timeline-container::before {
    display: none
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 0
  }

  .timeline-item:not(:last-child)::after {
    content: '';
    display: block;
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, var(--brand), var(--accent));
    opacity: .35;
    margin: 0 auto
  }

  .timeline-dot {
    display: none
  }

  .method-card {
    text-align: center
  }

  .step-meta {
    justify-content: center;
    gap: 12px
  }

  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 30px
  }

  .area-title {
    order: 1;
    text-align: center;
    margin-bottom: 0
  }

  .area-photo {
    order: 2;
    max-width: 350px;
    margin: 0 auto
  }

  .area-text {
    order: 3;
    text-align: left;
    margin-bottom: 10px
  }

  .area-piliers {
    order: 4
  }

  .faq-section {
    padding: 72px 0;
  }

  .faq-head {
    margin-bottom: 30px;
  }

  

  .faq-item .faq-summary {
    font-size: 1rem;
    padding: 20px 52px 20px 18px;
  }

  .faq-item .faq-summary::before,
  .faq-item .faq-summary::after {
    right: 18px;
  }

  .faq-answer p {
    padding: 16px 18px 20px;
  }

  .cta-final {
    padding: 72px 0
  }

  .cta-final .wrap {
    padding: 0 14px
  }

  .cta-title-final {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 16px
  }

  .cta-subtitle-final {
    font-size: 1.02rem;
    margin: 0 auto 24px;
    max-width: 560px
  }

  .cta-card-final {
    padding: 28px 22px;
    border-radius: 18px;
    margin-bottom: 26px
  }

  .cta-check-item {
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 20px
  }

  .cta-check-item span {
    line-height: 1.5
  }
}

@media(max-width:600px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-head {
    margin-bottom: 24px;
  }

  

  .faq-item {
    border-radius: 14px;
  }

  .faq-item .faq-summary {
    font-size: .97rem;
    line-height: 1.45;
    padding: 18px 46px 18px 16px;
  }

  .faq-item .faq-summary::before,
  .faq-item .faq-summary::after {
    right: 16px;
    width: 12px;
  }

  .faq-answer p {
    padding: 14px 16px 18px;
    font-size: .95rem;
    line-height: 1.66;
  }

  .cta-final .wrap {
    padding: 0 10px
  }

  .review-card {
    width: 286px;
    min-height: auto;
    padding: 20px;
    border-radius: 16px
  }

  .parent-tag {
    padding: 4px 12px;
    font-size: .6rem;
    letter-spacing: .01em;
  }

  h1 {
    font-size: 2.2rem !important
  }

  .input-row {
    grid-template-columns: 1fr !important
  }

  .btn-primary {
    width: 100%
  }

  /* --- BENTO ICONS ANIMATIONS --- */
}

/* ============ BENTO ICON ANIMATIONS ============ */

/* --- ICON 1: Flow Wave (Gestion des émotions) --- */
.icon-flow {
  overflow: visible;
}

.flow-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: flowDraw 4s ease-in-out infinite;
}

.flow-wave {
  animation: flowSlide 8s linear infinite;
}

@keyframes flowDraw {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}

@keyframes flowSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-40px);
  }
}

/* --- ICON 2: Mountain Summit + Rising Star (Confiance Durable) --- */
.icon-mountain {
  overflow: visible;
}

.mountain-path-line {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: drawMountainPath 4s ease-in-out infinite;
}

.mountain-star {
  animation: starRise 4s ease-in-out infinite;
  transform-origin: 28px 14px;
}

.mountain-glow {
  animation: mountainGlow 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes drawMountainPath {
  0% {
    stroke-dashoffset: 70;
  }

  55% {
    stroke-dashoffset: 0;
  }

  90% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes starRise {

  0%,
  40% {
    opacity: 0;
    transform: scale(0) translateY(4px);
  }

  60% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 5px rgba(255, 26, 51, 0.8));
  }

  85% {
    opacity: 1;
    transform: scale(1.1) translateY(-1px);
    filter: drop-shadow(0 0 10px rgba(255, 26, 51, 1));
  }

  100% {
    opacity: 0;
    transform: scale(0.8) translateY(0);
  }
}

@keyframes mountainGlow {
  60% {
    opacity: 0.15;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
  }
}

/* --- ICON 3: Polaris Sparkle (Plaisir et Sérénité) --- */
.icon-polaris {
  overflow: visible;
}

.polaris-star {
  transform-origin: 20px 20px;
  animation: polarisPulse 4s ease-in-out infinite;
}

.polaris-glow {
  transform-origin: 20px 20px;
  animation: polarisGlowRotate 8s linear infinite;
  opacity: 0.4;
}

.polaris-scintilla {
  animation: polarisFlicker 2s ease-in-out infinite;
}

@keyframes polarisPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 26, 51, 0.2));
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(255, 26, 51, 0.6));
  }
}

@keyframes polarisGlowRotate {
  from {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }

  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes polarisFlicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}