/* ===========================
   OSEZ AGENCE - Global Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  /* Couleurs marque OSEZ */
  --rose:          rgb(253, 217, 253);   /* fond rose doux */
  --rose-light:    rgb(255, 234, 255);
  --rose-pale:     rgb(255, 248, 255);
  --orange:        rgb(249, 66, 27);     /* accent principal */
  --orange-hover:  rgb(210, 48, 10);
  --orange-light:  rgba(249, 66, 27, 0.18);
  --orange-pale:   rgba(249, 66, 27, 0.07);
  --dark:          #2c2c2c;
  --grey:          #6B6B6B;
  --light-grey:    #F9F6F9;
  --white:         #FFFFFF;
  --orange:         #d18a4c;
  /* Gradients */
  --gradient:      linear-gradient(135deg, rgb(249, 66, 27) 0%, rgb(255, 140, 70) 100%);
  --gradient-hover:linear-gradient(135deg, rgb(210, 48, 10) 0%, rgb(249, 66, 27) 100%);
  --gradient-soft: linear-gradient(135deg, rgb(253, 217, 253) 0%, rgb(255, 248, 255) 100%);
  --gradient-hero: linear-gradient(160deg, rgb(255, 248, 255) 0%, rgb(253, 217, 253) 55%, rgb(255, 234, 235) 100%);
  /* Ombres */
  --shadow:        0 8px 32px rgba(249, 66, 27, 0.10);
  --shadow-hover:  0 20px 56px rgba(249, 66, 27, 0.22);
  --shadow-card:   0 4px 20px rgba(0, 0, 0, 0.06);
  --radius:        18px;
  --radius-sm:     10px;
  --radius-xs:     6px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--grey); }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gradient-soft); }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(249, 66, 27, 0.2);
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--grey); max-width: 600px; margin: 0 auto 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .93rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  overflow: hidden;
}
/* Shimmer sur hover */
.btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,.22);
  transform: skewX(-20deg);
  transition: left .5s ease;
  pointer-events: none;
}
.btn:hover::after { left: 140%; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 22px rgba(249, 66, 27, .35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(249, 66, 27, .48);
  background: var(--gradient-hover);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(249, 66, 27, .3);
}
.btn-white {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
  transition: all .3s;
}
.navbar.scrolled {
  height: 60px;
  box-shadow: 0 4px 32px rgba(0,0,0,.1);
}
.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 90px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: var(--rose);
}
.nav-link .arrow { font-size: .65rem; transition: transform .2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: .88rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.dropdown a:hover {
  background: var(--rose);
  color: var(--orange);
  padding-left: 24px;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  padding: 16px 24px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav-item { border-bottom: 1px solid var(--rose); }
.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-weight: 500;
  color: var(--dark);
}
.mobile-submenu { display: none; padding: 0 0 12px 16px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: block;
  padding: 8px 0;
  color: var(--grey);
  font-size: .9rem;
}
.navbar-cta { margin-left: 16px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(20, 10, 30, 0.40) 0%, rgba(40, 10, 40, 0.40) 55%, rgba(30, 10, 20, 0.40) 100%), url('../img/escalier.jpg') center/cover no-repeat;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
/* Points déco */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: .13;
  pointer-events: none;
}
.hero-dot-1 { width: 14px; height: 14px; top: 22%; left: 12%; animation: floatDot 5s ease-in-out infinite; }
.hero-dot-2 { width: 8px;  height: 8px;  top: 68%; left: 30%; animation: floatDot 7s ease-in-out infinite 1s; }
.hero-dot-3 { width: 20px; height: 20px; top: 28%; right: 22%; animation: floatDot 6s ease-in-out infinite .5s; }
.hero-dot-4 { width: 10px; height: 10px; bottom: 26%; right: 10%; animation: floatDot 8s ease-in-out infinite 1.5s; }
.hero .container { width: 100%; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 72px;
  text-align: left;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;
  animation: fadeInDown .7s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.hero h1 { margin-bottom: 24px; animation: fadeInUp .7s ease .1s both; color: #fff; white-space: nowrap; }
.hero p { font-size: 1.08rem; max-width: none; margin-bottom: 42px; animation: fadeInUp .7s ease .2s both; color: rgba(255,255,255,.9); white-space: nowrap; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; animation: fadeInUp .7s ease .3s both; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 60px;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.25);
  animation: fadeInUp .7s ease .4s both;
}
.hero-badge { text-align: center; }
.hero-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-badge span { font-size: .82rem; color: rgba(255,255,255,.75); }

/* ===========================
   CARDS
   =========================== */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  border: 1px solid rgba(253, 217, 253, 0.9);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249,66,27,.15);
}
.card-body { padding: 28px; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(249,66,27,.3);
  transition: transform .3s ease;
}
.card:hover .card-icon { transform: scale(1.1) rotate(-3deg); }
.card-title { margin-bottom: 10px; font-size: 1.15rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ===========================
   PRICING
   =========================== */
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  border: 1px solid rgba(253, 217, 253, 0.9);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.pricing-card.featured {
  background: var(--gradient);
  color: #fff;
}
.pricing-card.featured p { color: rgba(255,255,255,.85); }
.pricing-card.featured .price-label { color: rgba(255,255,255,.7); }
.pricing-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--orange-hover);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(249,66,27,.4);
}
.price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--orange); }
.pricing-card.featured .price { color: #fff; }
.price sub { font-size: 1rem; font-weight: 400; }
.price-label { font-size: .82rem; color: var(--grey); margin-bottom: 24px; }
.price-features { margin: 24px 0; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.pricing-card.featured .price-features li { border-bottom-color: rgba(255,255,255,.15); }
.price-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card.featured .price-features li::before {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ===========================
   PORTFOLIO / GALLERY
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.portfolio-item:hover img,
.portfolio-item:hover video { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(249,66,27,.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay p { color: #fff; font-weight: 500; font-size: .9rem; white-space: nowrap; }

/* Bouton lecture vidéo */
.portfolio-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.portfolio-play-btn {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .2s, background .2s;
}
.portfolio-play-btn i { color: var(--orange); font-size: 1.3rem; margin-left: 4px; }
.portfolio-item:hover .portfolio-play-btn { transform: scale(1.12); background: #fff; }

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  display: block;
}
.lightbox-video-wrap {
  display: none;
  width: min(900px, 90vw);
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-video-wrap iframe,
.lightbox-video-wrap video { width: 100%; height: 100%; border: none; display: block; }
.lightbox-caption { color: rgba(255,255,255,.82); font-size: .9rem; text-align: center; }
.lightbox-close {
  position: fixed;
  top: 18px; right: 22px;
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  font-size: 1.3rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  font-size: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.3); }
@media (max-width: 600px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

/* ===========================
   CLIENT GALLERY MODAL
   =========================== */
.client-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  padding: 16px;
  box-sizing: border-box;
}
.client-modal.open { opacity: 1; visibility: visible; }
.client-modal-inner {
  background: #161616;
  border-radius: 18px;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 40px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.65);
}
.client-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(255,255,255,.1);
  border: none; color: #fff;
  font-size: 1.1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
  line-height: 1;
}
.client-modal-close:hover { background: rgba(255,255,255,.25); }
.client-modal-header { text-align: center; }
.client-modal-tag {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.client-modal-title {
  color: #fff;
  font-size: 1.55rem;
  font-family: 'Playfair Display', serif;
  margin: 0;
}
.client-modal-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.client-info-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  padding: 5px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.client-info-item i { font-size: .78rem; opacity: .7; }
.client-info-link:hover { background: rgba(225,48,108,.3); color: #fff; }
.client-modal-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-modal-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.client-modal-media img {
  max-width: 100%;
  max-height: 56vh;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}
.client-modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}
.client-modal-video video,
.client-modal-video iframe { width: 100%; height: 100%; border: none; display: block; }
.client-modal-prev,
.client-modal-next {
  background: rgba(255,255,255,.1);
  border: none; color: #fff;
  font-size: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.client-modal-prev:hover,
.client-modal-next:hover { background: rgba(255,255,255,.28); }
.client-modal-caption {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  margin: 0;
}
.client-modal-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.client-thumb {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  background: #2a2a2a;
  padding: 0;
  position: relative;
  transition: border-color .2s, transform .2s;
  flex-shrink: 0;
}
.client-thumb.active { border-color: var(--orange); transform: scale(1.07); }
.client-thumb:hover:not(.active) { border-color: rgba(255,255,255,.4); }
.client-thumb img,
.client-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.client-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.38);
}
.client-thumb-play i { color: #fff; font-size: .85rem; }
@media (max-width: 600px) {
  .client-modal-inner { padding: 28px 14px 20px; }
  .client-modal-title { font-size: 1.2rem; }
  .client-modal-prev,
  .client-modal-next { width: 34px; height: 34px; font-size: 1.5rem; }
  .client-thumb { width: 62px; height: 62px; }
}

/* ===========================
   PROCESS STEPS
   =========================== */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(249,66,27,.35);
}
.step-connector {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(249,66,27,.15));
  margin: 8px 0;
  min-height: 40px;
}
.step:last-child .step-connector { display: none; }
.step-content { padding-top: 10px; }
.step-content h4 { margin-bottom: 8px; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid rgba(253,217,253,.9);
  transition: all .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--rose);
  position: absolute;
  top: 8px; left: 24px;
}
.testimonial-text { font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--grey); }
.stars { color: var(--orange); font-size: .9rem; margin-bottom: 12px; }

/* ===========================
   CONTACT
   =========================== */
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(253,217,253,.9);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-control {
  padding: 13px 16px;
  border: 2px solid rgba(253, 217, 253, 1);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  transition: border-color .25s, background .25s;
  background: var(--rose-pale);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249,66,27,.08);
}
.form-control::placeholder { color: rgba(107,107,107,.5); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] { accent-color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: .83rem; color: var(--grey); }

/* ===========================
   MAP
   =========================== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: hue-rotate(-15deg) saturate(1.2);
}
.map-overlay-pin {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  font-size: .85rem;
}
.map-overlay-pin strong { display: block; color: var(--orange); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--rose);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(12, 1, 1, 0.08);
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 140px;
  width: auto;
  display: block;
}
.footer-desc { font-size: .88rem; line-height: 1.8; color: #f9421B; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.577);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9421B;
  font-size: .95rem;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.08);
}
.social-link:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f9421B;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: #f9421B;
  transition: color .2s;
}
.footer-links a:hover { color: var(--rose); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #f9421B;
  margin-bottom: 12px;
}
.footer-contact-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  color: #fff;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: #f9421B;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: #f9421B;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--rose); }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: var(--gradient);
  padding: 150px 0 100px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -220px; right: -100px;
  animation: floatShape 10s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -80px; left: -60px;
}
.page-hero h1 { color: #fff; animation: fadeInUp .6s ease both; }
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 580px; margin: 16px auto 0; }

/* ===========================
   ACCORDION (FAQ)
   =========================== */
.accordion-item {
  border: 1px solid rgba(253,217,253,.9);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.accordion-item:hover { box-shadow: var(--shadow-card); }
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background .2s;
}
.accordion-header:hover, .accordion-item.open .accordion-header { background: var(--rose-pale); }
.accordion-header .acc-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  flex-shrink: 0;
}
.accordion-item.open .accordion-header .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.accordion-body-inner { padding: 0 24px 20px; color: var(--grey); font-size: .9rem; }
.accordion-item.open .accordion-body { max-height: 500px; }

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -200px; left: -100px;
  animation: floatShape 12s ease-in-out infinite;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -80px; right: -60px;
  animation: floatShape 9s ease-in-out infinite reverse;
}
.cta-band h2 { position: relative; z-index: 1; }
.cta-band p  { position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 36px; }

/* ===========================
   MENTIONS LÉGALES
   =========================== */
.legal-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--dark); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--dark); }
.legal-content p, .legal-content li { font-size: .92rem; color: var(--grey); margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--orange); }
.legal-content a:hover { text-decoration: underline; }

/* ===========================
   LAYOUT UTILITY
   =========================== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 100px; }
  .hero h1 { white-space: normal; }
  .hero p { white-space: normal; }
  .hero-badges { gap: 16px; }
  .hero-bg-shape-3 { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 110px 0 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .step { gap: 16px; }
  .wave-divider svg { height: 70px; }
  .section { padding: 60px 0; }
  .team-grid { grid-template-columns: 1fr; gap: 28px; }
  .two-col-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px; }
  .cta-split-form { padding: 28px 20px; }
  .cta-band { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-dot { display: none; }
  .stats-bar-grid { grid-template-columns: 1fr; }
  .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .stats-bar-item:last-child { border-bottom: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 48px; }
  .ph-hero { padding: 100px 0 48px; }
  .section { padding: 48px 0; }
  .section-subtitle { margin-bottom: 28px; }
  .cta-split-stats { flex-direction: column; gap: 16px; }
  .ph-float-card { display: none; }
}

/* ===========================
   WAVE DIVIDERS
   =========================== */
.wave-divider {
  display: block;
  line-height: 0;
  margin-top: -4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; height: 110px; }
.wave-to-white svg { fill: #ffffff; }
.wave-to-rose svg  { fill: rgb(252, 215, 252); }
.wave-to-dark svg  { fill: rgb(215, 222, 252); }
.wave-divider path { transition: d .5s; }

/* ===========================
   TEAM CARDS
   =========================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 12px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(253, 217, 253, 0.9);
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249, 66, 27, .15);
}
.team-photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1);
}
.team-card:hover .team-photo { transform: scale(1.06); }
.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(249, 66, 27, .12) 100%);
  pointer-events: none;
}
.team-body { padding: 32px; }
.team-role {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(249, 66, 27, .15);
}
.team-name {
  font-size: 1.7rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.team-tagline {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
  font-size: .97rem;
  margin-bottom: 14px;
}
.team-desc {
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 26px;
}
.team-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.team-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .95rem;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
  border: 1px solid rgba(249, 66, 27, .12);
}
.team-social-link:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.18) translateY(-2px);
  box-shadow: 0 4px 18px rgba(249, 66, 27, .38);
}

/* ===========================
   SCROLL-REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transition: opacity .65s ease, transform .65s cubic-bezier(.34,1.18,.64,1);
}
.reveal.reveal-up    { transform: translateY(40px); }
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.reveal-scale { transform: scale(.88); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
.reveal.delay-1 { transition-delay: .10s; }
.reveal.delay-2 { transition-delay: .20s; }
.reveal.delay-3 { transition-delay: .30s; }
.reveal.delay-4 { transition-delay: .40s; }
.reveal.delay-5 { transition-delay: .50s; }

/* ===========================
   KEYFRAME ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
/* Shapes flottantes */
@keyframes floatShape {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  25%       { transform: translate(16px,-20px) rotate(3deg); }
  50%       { transform: translate(-10px,14px) rotate(-2deg); }
  75%       { transform: translate(12px,8px) rotate(2deg); }
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
/* Pulse icônes */
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(249,66,27,.35); }
  50%       { box-shadow: 0 4px 30px rgba(249,66,27,.65); }
}
.card:hover .card-icon { animation: iconPulse 1.5s ease-in-out infinite; }

.fade-in-up { animation: fadeInUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  box-shadow: 0 4px 22px rgba(249, 66, 27, .4);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(249, 66, 27, .55); }

/* ===========================
   HUMAN PHOTO STRIP
   =========================== */
.human-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  overflow: hidden;
}
.human-strip.reverse { direction: rtl; }
.human-strip.reverse > * { direction: ltr; }
.human-strip-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.human-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.human-strip-photo:hover img { transform: scale(1.04); }
.human-strip-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(253,217,253,.5) 0%, rgba(255,240,235,.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 3px dashed rgba(249,66,27,.2);
  color: var(--grey);
  font-size: .9rem;
  text-align: center;
  padding: 32px;
}
.human-strip-photo-placeholder i { font-size: 3rem; color: var(--rose); opacity: .6; }
.human-strip-photo-placeholder strong { font-size: 1rem; color: var(--dark); }
.human-strip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: #fff;
}
.human-strip.section-alt .human-strip-content {
  background: linear-gradient(135deg, rgba(253,217,253,.25) 0%, rgba(255,240,235,.2) 100%);
}
.human-strip-content .tag { margin-bottom: 16px; }
.human-strip-content h2 { margin-bottom: 16px; font-size: 2rem; }
.human-strip-content p { color: var(--grey); line-height: 1.8; margin-bottom: 0; }
.human-strip-quote {
  margin-top: 28px;
  padding: 22px 28px;
  background: var(--gradient-soft);
  border: none;
  border-radius: 40px 8px 40px 8px;
  font-style: italic;
  font-size: .95rem;
  color: var(--dark);
  position: relative;
}
.human-strip-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 18px;
  font-size: 4rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  color: var(--rose);
  opacity: .4;
}
.human-strip-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange);
}
@media (max-width: 768px) {
  .human-strip { grid-template-columns: 1fr; direction: ltr; }
  .human-strip.reverse > * { direction: ltr; }
  .human-strip-photo { min-height: 280px; }
  .human-strip-content { padding: 40px 24px; }
  .human-strip-content h2 { font-size: 1.6rem; }
}

/* ===========================
   NOTIFICATION BANNER
   =========================== */
.notification-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #4CAF50;
  color: #2E7D32;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: .9rem;
  font-weight: 500;
}

/* ===========================
   INNER PAGE HERO — FULL (ph-hero)
   =========================== */
.ph-hero {
  background: linear-gradient(135deg, #fff8ff 0%, rgba(253,217,253,.45) 50%, rgba(255,240,235,.7) 100%);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.ph-hero::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  top: -220px; right: -110px;
  animation: floatShape 11s ease-in-out infinite;
  pointer-events: none;
}
.ph-hero::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,66,27,.06) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: floatShape 9s ease-in-out infinite reverse;
  pointer-events: none;
}
.ph-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ph-hero-text .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .82rem;
  color: var(--grey);
  margin-bottom: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.ph-hero-text .breadcrumb a { color: var(--grey); }
.ph-hero-text .breadcrumb a:hover { color: var(--orange); }
.ph-hero-text .breadcrumb span.sep { color: rgba(107,107,107,.4); }
.ph-hero-text h1 { animation: fadeInUp .65s ease both; }
.ph-hero-text p { font-size: 1.06rem; max-width: 520px; margin-bottom: 36px; animation: fadeInUp .65s ease .12s both; }
.ph-hero-text .hero-actions { animation: fadeInUp .65s ease .22s both; }
.ph-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.ph-hero-image {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.ph-float-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  position: absolute;
  border: 1px solid rgba(253,217,253,1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  z-index: 2;
}
.ph-float-card:nth-child(2) { top: 2%; right: -10%; animation: floatDot 5s ease-in-out infinite; }
.ph-float-card:nth-child(3) { bottom: 6%; left: -8%; animation: floatDot 6s ease-in-out infinite 1s; }
.ph-float-card:nth-child(4) { bottom: 22%; right: -12%; animation: floatDot 7s ease-in-out infinite .5s; }
.ph-float-card .fc-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.ph-float-card .fc-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ph-float-card .fc-lbl { font-size: .72rem; color: var(--grey); font-weight: 500; }

/* ===========================
   STATS DARK BAR
   =========================== */
.stats-bar {
  background: #fdd9fd;
  padding: 44px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stats-bar-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(0,0,0,.1);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
  display: block;
}
.stats-bar-label {
  font-size: .78rem;
  color: rgba(0,0,0,.5);
  text-transform: uppercase;
  letter-spacing: .09em;
}

/* ===========================
   CTA SPLIT DARK SECTION
   =========================== */
.cta-split {
  background: #1e1e1e;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-split::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,66,27,.12) 0%, transparent 70%);
  top: -150px; left: -150px;
  pointer-events: none;
}
.cta-split::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,66,27,.08) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.cta-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-split-text h2 { color: #fff; margin-bottom: 16px; }
.cta-split-text p { color: rgba(255,255,255,.68); margin-bottom: 28px; }
.cta-split-checks { list-style: none; margin: 0 0 32px; padding: 0; }
.cta-split-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cta-split-checks li:last-child { border-bottom: none; }
.cta-split-checks li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-split-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(8px);
}
.cta-split-form h3 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.cta-split-form .form-control {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.cta-split-form .form-control::placeholder { color: rgba(255,255,255,.38); }
.cta-split-form .form-control:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(249,66,27,.14);
}
.cta-split-form .form-label { color: rgba(255,255,255,.68); }
.cta-split-form select.form-control option { background: #2c2c2c; color: #fff; }
.cta-split-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cta-split-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.cta-split-stat-lbl { font-size: .76rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }

/* ===========================
   RESPONSIVE — SHARED NEW
   =========================== */
@media (max-width: 900px) {
  .ph-hero-split { grid-template-columns: 1fr; gap: 0; }
  .ph-hero-visual { display: none; }
  .cta-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item:nth-child(2) { border-right: none; }
  .stats-bar-item:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.08); }
  .team-grid { grid-template-columns: 1fr; gap: 28px; }
}
