/* ============================================
   LEADER CLEAN | Clean & Moderne
   Refonte visuelle : épuré, chaleureux, pro
   Palette :
     Bleu marque  : #2e6ac4
     Jaune marque : #F5C518
     Fond chaud   : #f7f6f3
     Texte        : #4a4740
     Titres       : #1c1b18
   ============================================ */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #2e6ac4;
  --blue-dark: #2358a3;
  --blue-light: #4a85d6;
  --yellow: #F5C518;
  --yellow-dark: #d4a90e;
  --bg: #f7f6f3;
  --surface: #ffffff;
  --border: #edeae4;
  --text: #4a4740;
  --heading: #1c1b18;
  --text-light: #7a7770;
  --dark-bg: #1c1b18;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
  --shadow: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, .1);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --max-width: 1140px;
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  color: var(--heading);
  line-height: 1.25;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section--alt {
  background: var(--surface);
}

.section--dark {
  background: var(--dark-bg);
  color: #ffffff;
}

.section--dark .section-title {
  color: #ffffff;
}

.section--blue {
  background: var(--blue);
  color: #ffffff;
}

.section--blue .section-title {
  color: #ffffff;
}

.section--blue .section-label {
  color: var(--yellow);
  background: rgba(255, 255, 255, .1);
}

.section--blue .section-subtitle {
  color: rgba(255, 255, 255, .7);
}

/* --- Section headers --- */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(46, 106, 196, .08);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.section--dark .section-label {
  color: var(--yellow);
  background: rgba(255, 255, 255, .08);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(46, 106, 196, .25);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--heading);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn--yellow:hover {
  background: var(--yellow-dark);
  box-shadow: 0 6px 20px rgba(245, 197, 24, .3);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: #ffffff;
}

.btn--white {
  background: #ffffff;
  color: var(--blue);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, .3);
}

.btn--ghost:hover {
  background: #ffffff;
  color: var(--blue);
  border-color: #ffffff;
}

.btn--dark {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, .3);
}

.btn--dark:hover {
  background: #ffffff;
  color: var(--heading);
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  background: var(--blue-dark);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.logo span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  transition: var(--transition);
}

/* Animated underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active {
  font-weight: 600;
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 4px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 140px 0 0;
  background: var(--blue);
  overflow: hidden;
  color: #ffffff;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-content {
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero h1 .text-accent {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  max-width: 480px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.hero-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-info__dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, #dbe8f8 0%, #c4d8f0 50%, #b0c9e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius);
}

.hero .img-placeholder {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .3);
}

/* --- Ticker --- */
.ticker {
  background: var(--blue);
  color: #ffffff;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.ticker-bullet {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Split content --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.split__left .section-title {
  margin-bottom: 0;
}

.split__right {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

.split__right p + p {
  margin-top: 16px;
}

/* --- Service Cards (accueil bento) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.bento-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #dbe8f8 0%, #c4d8f0 50%, #b0c9e8 100%);
  overflow: hidden;
}

.bento-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.bento-card:hover .bento-card__image img {
  transform: scale(1.03);
}

.bento-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bento-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.bento-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.bento-card__text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bento-card__list {
  margin-bottom: 20px;
}

.bento-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: .92rem;
  color: var(--text);
}

.bento-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.bento-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  transition: var(--transition);
}

.bento-card:hover .bento-card__link {
  gap: 10px;
}

/* --- Boutique Cards --- */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.boutique-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.boutique-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.boutique-card__number {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--transition);
}

.boutique-card:hover .boutique-card__number {
  color: var(--blue);
}

.boutique-card__city {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.boutique-card__address {
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
}

.boutique-card__phone {
  margin-bottom: 14px;
}

.boutique-card__phone a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.boutique-card__phone a:hover {
  color: var(--blue-dark);
}

.boutique-card__map {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 12px;
  transition: var(--transition);
}

.boutique-card__map:hover {
  color: var(--blue-dark);
  gap: 8px;
}

.boutique-card__hours {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* --- Engagements (dark section) --- */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.engagement-item {
  padding: 8px 0;
}

.engagement-item__number {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 12px;
  line-height: 1;
}

.engagement-item__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.engagement-item__text {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}

/* --- Promotions --- */
.promos {
  padding: 72px 0;
  position: relative;
  background: url('../images/chemises.webp') center/cover no-repeat;
  color: #ffffff;
}

.promos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}

.promos .container {
  position: relative;
  z-index: 1;
}

.promos .section-label {
  color: var(--yellow);
  background: rgba(255, 255, 255, .1);
}

.promos .section-title {
  color: #ffffff;
}

.promos .section-header {
  margin-bottom: 32px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.promo-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-left: 4px solid var(--yellow);
  position: relative;
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.promo-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading);
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.promo-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.promo-card__pricing {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.promo-card__price {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.promo-card__old-price {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: line-through;
}

.promos-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CTA Section --- */
.cta-section {
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1rem;
}

/* CTA blue variant */
.cta-section--blue {
  background: var(--blue);
  border: none;
}

.cta-section--blue h2 {
  color: #ffffff;
}

.cta-section--blue p {
  color: rgba(255, 255, 255, .8);
}

/* --- Service Detail Pages --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__content {
  padding: 16px 0;
}

.service-detail__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--blue);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.service-detail__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 14px;
  color: var(--heading);
  position: relative;
}

.service-detail__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 12px;
}

.service-detail__text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail__list {
  margin-bottom: 16px;
}

.service-detail__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: .95rem;
  color: var(--text);
}

.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.service-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dbe8f8 0%, #c4d8f0 50%, #b0c9e8 100%);
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 140px 0 56px;
  background: var(--blue);
  color: #ffffff;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.page-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 16px;
}

.page-hero > .container > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  max-width: 600px;
  line-height: 1.8;
}

.page-hero .breadcrumb {
  margin-bottom: 16px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: #ffffff;
}

/* --- About page --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-value {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  transition: var(--transition);
}

.about-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.about-value__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46, 106, 196, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: var(--transition);
}

.about-value:hover .about-value__icon {
  background: var(--blue);
}

.about-value:hover .about-value__icon svg {
  stroke: #ffffff;
}

.about-value__title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--heading);
}

/* --- Two cols layout --- */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-cols__text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
}

.two-cols__text p + p {
  margin-top: 14px;
}

.two-cols__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dbe8f8 0%, #c4d8f0 50%, #b0c9e8 100%);
}

.two-cols__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Mission banner --- */
.mission-banner {
  background: var(--blue);
  color: #ffffff;
  padding: 72px 0;
  text-align: center;
}

.mission-banner .section-label {
  color: var(--yellow);
  background: rgba(255, 255, 255, .1);
}

.mission-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.mission-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .6);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Advantages (used on inner pages with dark bg) --- */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: var(--transition);
}

.advantage-item:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
}

.advantage-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 197, 24, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--yellow);
  transition: var(--transition);
}

.advantage-item__title {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

/* --- Legal pages --- */
.legal-content {
  padding: 140px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal-content .container {
  max-width: 720px;
}

.legal-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-content p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-bottom: 16px;
}

.legal-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: .95rem;
  color: var(--text);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.legal-content .placeholder {
  color: #e74c3c;
  font-weight: 600;
  background: rgba(231, 76, 60, .06);
  padding: 2px 8px;
  border-radius: 4px;
}

/* --- Footer --- */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-brand .logo span {
  color: var(--yellow);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .4);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.footer-col p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col .phone {
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
}

.footer-col .phone a:hover {
  transform: none;
}

.footer-tagline {
  text-align: center;
  padding: 18px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .25);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .25);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .25);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-credit {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .2);
}

.footer-credit a {
  color: rgba(255, 255, 255, .3);
  transition: var(--transition);
}

.footer-credit a:hover {
  color: var(--yellow);
}

/* --- Scroll animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

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

/* Stagger delay for grid children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }

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

/* Legacy class support */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Bubbles decoration --- */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bubbles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(2px);
  animation: bubble-float ease-in-out infinite;
}

/* Individual bubble sizes, positions, durations */
.bubbles span:nth-child(1) {
  width: 80px; height: 80px;
  left: 5%; bottom: -80px;
  animation-duration: 12s;
  animation-delay: 0s;
}

.bubbles span:nth-child(2) {
  width: 40px; height: 40px;
  left: 15%; bottom: -40px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}

.bubbles span:nth-child(3) {
  width: 60px; height: 60px;
  left: 30%; bottom: -60px;
  animation-duration: 14s;
  animation-delay: 3s;
}

.bubbles span:nth-child(4) {
  width: 30px; height: 30px;
  left: 45%; bottom: -30px;
  animation-duration: 10s;
  animation-delay: 0.5s;
}

.bubbles span:nth-child(5) {
  width: 100px; height: 100px;
  left: 60%; bottom: -100px;
  animation-duration: 16s;
  animation-delay: 2s;
}

.bubbles span:nth-child(6) {
  width: 50px; height: 50px;
  left: 72%; bottom: -50px;
  animation-duration: 11s;
  animation-delay: 4s;
}

.bubbles span:nth-child(7) {
  width: 70px; height: 70px;
  left: 85%; bottom: -70px;
  animation-duration: 13s;
  animation-delay: 1s;
}

.bubbles span:nth-child(8) {
  width: 35px; height: 35px;
  left: 92%; bottom: -35px;
  animation-duration: 8s;
  animation-delay: 5s;
}

@keyframes bubble-float {
  0% {
    transform: translateY(0) translateX(0) scale(0.4);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(-200px) translateX(15px) scale(1);
    opacity: 1;
  }
  85% {
    opacity: .6;
  }
  100% {
    transform: translateY(-400px) translateX(-10px) scale(0.7);
    opacity: 0;
  }
}

/* --- Counter animation --- */
.counter {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-info {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }

  .engagements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  .two-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--blue-dark);
    flex-direction: column;
    padding: 20px;
    gap: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, .8);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
  }

  .nav-links a::after {
    display: none;
  }

  .burger {
    display: flex;
  }

  .cards-grid--2,
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

  .advantages {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .engagements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  .hero {
    padding: 110px 0 56px;
  }

  .page-hero {
    padding: 110px 0 40px;
  }

  .ticker-item {
    font-size: .88rem;
    gap: 16px;
    padding: 0 16px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .mission-banner {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .boutique-card__number {
    font-size: 2rem;
  }
}
