:root {
  --bg: #fdfbf8;
  --surface: #ffffff;
  --surface-2: #f5efe8;
  --primary: #d7a36c;
  --accent: #f0d4b5;
  --text: #1e1b18;
  --muted: #60574f;
  --line: rgba(28, 26, 24, 0.08);
  --radius: 14px;
}

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(110% 80% at 80% 20%, rgba(215, 163, 108, 0.08), transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Header Pro */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.4s ease;
}

.topbar.scrolled .nav {
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  border: none;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1);
}

.topbar.scrolled .brand__logo {
  height: 60px;
  filter: brightness(1);
}

.brand__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--primary);
  font-weight: 600;
  opacity: 0.9;
}

.brand__name {
  margin: 2px 0 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu a {
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  padding: 12px 20px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(215, 163, 108, 0.1);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu a.btn--ghost {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  padding: 12px 28px;
  margin-left: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.menu a.btn--ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c4935d;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 50px;
}

.menu a.btn--ghost:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.menu a.btn--ghost:hover {
  color: #fff;
  border-color: #c4935d;
  box-shadow: 0 10px 30px rgba(215, 163, 108, 0.3);
}

/* Menu burger mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: rgba(215, 163, 108, 0.1);
  border: 1px solid rgba(215, 163, 108, 0.2);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  transition: all 0.3s ease;
}

.topbar.scrolled .menu-toggle {
  background: rgba(215, 163, 108, 0.1);
  border-color: var(--line);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.topbar.scrolled .menu-toggle:hover {
  background: rgba(215, 163, 108, 0.15);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  margin-bottom: 5px;
}

.menu-toggle span:nth-child(2) {
  margin-bottom: 5px;
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* Spacer pour compenser le header fixed */
.header-spacer {
  height: 120px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 340px;
    max-width: 85vw;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 30px 40px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu a {
    padding: 18px 24px;
    font-size: 16px;
    border-radius: 14px;
    color: var(--text) !important;
  }

  .menu a::before {
    display: none;
  }

  .menu a:hover {
    background: rgba(215, 163, 108, 0.15);
    color: var(--primary) !important;
  }

  .menu a.btn--ghost {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .header-spacer {
    height: 90px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, #eac8a4, #d7a36c);
  color: #231b13;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(215, 163, 108, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.section {
  padding: 96px 0;
}

.section--tinted {
  background: rgba(255, 255, 255, 0.02);
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Manrope", serif;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

h3 {
  font-size: 22px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 20px;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.small {
  font-size: 13px;
}

/* Hero Pro */
.hero-pro {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -120px;
  padding-top: 0;
}

@media (max-width: 920px) {
  .hero-pro {
    margin-top: -80px;
    padding-top: 0;
  }
}

.hero-pro__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-pro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-pro__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 27, 24, 0.85) 0%, rgba(30, 27, 24, 0.6) 50%, rgba(215, 163, 108, 0.3) 100%);
}

.hero-pro__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-pro__main {
  max-width: 800px;
  margin: 0 auto;
}

.hero-pro__tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-pro__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 10vw, 90px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-pro__subtitle {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 30px;
}

.hero-pro__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-pro__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.btn--large:hover {
  background: #c4935d;
  border-color: #c4935d;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(215, 163, 108, 0.4);
}

.btn--large svg {
  transition: transform 0.3s ease;
}

.btn--large:hover svg {
  transform: translateX(5px);
}

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-pro__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-pro__stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-pro__stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.hero-pro__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-pro__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Animations d'entrée */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.6s; }

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

@media (max-width: 768px) {
  .hero-pro__content {
    padding: 100px 20px 60px;
  }

  .hero-pro__stats {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .hero-pro__stat-number {
    font-size: 36px;
  }

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

  .btn--large,
  .btn--outline-light {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-pro__scroll {
    display: none;
  }
}

/* Legacy hero styles */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(120deg, rgba(215, 163, 108, 0.16), transparent 45%), rgba(255, 255, 255, 0.7);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 36px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 24px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 163, 108, 0.14);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__visual {
  position: relative;
}

.hero__card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}

.hero__card img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.hero__card-overlay {
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  margin-top: -90px;
  color: #fff;
}

.hero__card-overlay .muted {
  color: #e8e8e8;
}

.floating-card {
  position: absolute;
  bottom: -26px;
  right: 16px;
  width: 260px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.floating-card__title {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--primary);
}

.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

@media (max-width: 1000px) {
  .cards-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .cards-grid--three {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 163, 108, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card img {
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 18px;
}

.card--light {
  background: var(--surface-2);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.highlight {
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(215, 163, 108, 0.08), rgba(215, 163, 108, 0));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.highlight__cta {
  text-align: right;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.side-visual {
  position: relative;
}

.side-visual__main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.side-visual__badge {
  position: absolute;
  bottom: -12px;
  left: 12px;
  padding: 12px 14px;
  background: rgba(15, 15, 16, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  width: min(260px, 80%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.quote {
  font-size: 16px;
  margin: 0 0 12px;
  color: #1f1c1a;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1000px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery img {
    height: 240px;
  }
}

.contact-infos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.form {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(233, 196, 163, 0.6);
  box-shadow: 0 0 0 3px rgba(233, 196, 163, 0.18);
}

/* ========================================
   FOOTER PRO - UX DESIGN
   ======================================== */

.footer {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
  color: #ffffff;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(233, 196, 163, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(233, 196, 163, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer__wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  color: #1a1a1a;
}

.footer__wave svg {
  width: 100%;
  height: 60px;
}

.footer__main {
  position: relative;
  padding: 60px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer__col--brand {
  padding-right: 20px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__logo img {
  height: 80px;
  width: auto;
  filter: brightness(1.1);
}

.footer__logo:hover {
  transform: scale(1.05);
}

.footer__logo:hover img {
  filter: brightness(1.2);
}

.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 196, 163, 0.35);
}

.footer__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer__list a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer__list a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer__list a:hover::before {
  width: 100%;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer__contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer__contact-item p:first-child {
  color: #ffffff;
  font-weight: 500;
}

.footer__bottom {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin: 0;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--accent);
}

.footer__separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
  
  .footer__col--brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-right: 0;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer__col:not(.footer__col--brand) .footer__title::after {
    left: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .footer__main {
    padding: 40px 0 30px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  
  .footer__col:not(.footer__col--brand) .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer__list a:hover {
    padding-left: 0;
  }
  
  .footer__contact {
    align-items: center;
  }
  
  .footer__contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer__wave svg {
    height: 40px;
  }
  
  .footer__logo img {
    height: 60px;
  }
  
  .footer__tagline {
    font-size: 1.1rem;
  }
}

.hero--compact {
  padding: 64px 0;
}

/* ========================================
   SERVICES SECTION PRO - UX DESIGN
   ======================================== */

.services-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg) 0%, #f8f5f0 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(215, 163, 108, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(215, 163, 108, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Services Header */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  position: relative;
}

.services-header__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.services-header__line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-header__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.services-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--text);
}

.services-header__title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary) 0%, #b8956d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

/* Service Card */
.service-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(215, 163, 108, 0.1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 10px 25px rgba(215, 163, 108, 0.12);
  border-color: rgba(215, 163, 108, 0.25);
}

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card__overlay {
  opacity: 0.8;
}

.service-card__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.service-card:hover .service-card__icon {
  background: var(--primary);
  transform: rotate(10deg) scale(1.1);
}

.service-card:hover .service-card__icon svg {
  color: white;
}

.service-card__content {
  padding: 24px 24px 28px;
}

.service-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(215, 163, 108, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.service-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: var(--primary);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.service-card__detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface-2);
  padding: 6px 12px;
  border-radius: 20px;
}

.service-card__detail svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.service-card__link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__link:hover::after {
  width: calc(100% - 28px);
}

.service-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-card__link:hover svg {
  transform: translateX(5px);
}

/* Featured Card */
.service-card--featured {
  grid-column: span 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: none;
}

.service-card--featured .service-card__content {
  color: white;
}

.service-card--featured .service-card__category {
  background: rgba(215, 163, 108, 0.2);
  color: var(--accent);
}

.service-card--featured .service-card__title {
  color: white;
}

.service-card--featured:hover .service-card__title {
  color: var(--accent);
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--featured .service-card__detail {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.service-card--featured .service-card__detail svg {
  color: var(--accent);
}

.service-card--featured .service-card__link {
  color: var(--accent);
}

.service-card--featured .service-card__link::after {
  background: var(--accent);
}

/* Services CTA */
.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 
    0 8px 30px rgba(215, 163, 108, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.services-cta__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.services-cta__btn:hover::before {
  left: 100%;
}

.services-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(215, 163, 108, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-cta__btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.services-cta__btn:hover svg {
  transform: translateX(5px);
}

/* Services Grid Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .services-section {
    padding: 80px 0 100px;
  }
  
  .services-header {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-section {
    padding: 60px 0 80px;
  }
  
  .services-header__title {
    font-size: 2rem;
  }
  
  .service-card__image {
    height: 200px;
  }
  
  .services-cta__btn {
    padding: 16px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-header__badge {
    gap: 10px;
  }
  
  .services-header__line {
    width: 30px;
  }
  
  .services-header__label {
    font-size: 0.75rem;
  }
  
  .service-card__content {
    padding: 20px;
  }
  
  .service-card__title {
    font-size: 1.25rem;
  }
}

/* ========================================
   FORMATIONS PRO SECTION - UX DESIGN
   ======================================== */

.formations-pro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.formations-pro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.formations-pro__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 40%, #1a1a1a 100%);
}

.formations-pro__pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(215, 163, 108, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(215, 163, 108, 0.1) 0%, transparent 50%);
  opacity: 0.8;
}

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

/* Formations Header */
.formations-pro__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.formations-pro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 163, 108, 0.15);
  border: 1px solid rgba(215, 163, 108, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.formations-pro__badge svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.formations-pro__badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.formations-pro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 24px;
}

.formations-pro__title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.formations-pro__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Stats Bar */
.formations-pro__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 50px;
  margin-bottom: 60px;
}

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

.formations-pro__stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.formations-pro__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.formations-pro__stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

/* Formation Cards Grid */
.formations-pro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Formation Card */
.formation-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.formation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.formation-card:hover::before {
  opacity: 1;
}

.formation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.formation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.formation-card__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.15) 0%, rgba(215, 163, 108, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.formation-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.formation-card:hover .formation-card__icon {
  background: var(--primary);
  transform: rotate(-5deg);
}

.formation-card:hover .formation-card__icon svg {
  color: white;
}

.formation-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(215, 163, 108, 0.15);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
}

.formation-card__badge--gold {
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  color: white;
}

.formation-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}

.formation-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.formation-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.formation-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--surface-2);
  padding: 6px 12px;
  border-radius: 20px;
}

.formation-card__meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.formation-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.formation-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.formation-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.formation-card__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.formation-card__btn:hover {
  color: var(--text);
}

.formation-card__btn:hover svg {
  transform: translateX(4px);
}

/* Dark Card Variant */
.formation-card--dark {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.formation-card--dark .formation-card__icon {
  background: rgba(215, 163, 108, 0.2);
}

.formation-card--dark .formation-card__title {
  color: #ffffff;
}

.formation-card--dark .formation-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

.formation-card--dark .formation-card__meta-item {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.formation-card--dark .formation-card__footer {
  border-color: rgba(255, 255, 255, 0.1);
}

.formation-card--dark .formation-card__price {
  color: var(--accent);
}

.formation-card--dark .formation-card__btn {
  color: var(--accent);
}

.formation-card--dark .formation-card__btn:hover {
  color: #ffffff;
}

/* CTA Section */
.formations-pro__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 40px;
  margin-bottom: 50px;
}

.formations-pro__cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.formations-pro__cta-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.formations-pro__cta-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.formations-pro__cta-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}

.formations-pro__cta-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.formations-pro__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(215, 163, 108, 0.3);
  white-space: nowrap;
}

.formations-pro__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(215, 163, 108, 0.4);
}

.formations-pro__cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.formations-pro__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Trust Banner */
.formations-pro__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.formations-pro__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.formations-pro__trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

/* Formations Responsive */
@media (max-width: 1200px) {
  .formations-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .formations-pro {
    padding: 80px 0;
  }
  
  .formations-pro__stats {
    flex-wrap: wrap;
    gap: 25px 40px;
    padding: 25px 30px;
  }
  
  .formations-pro__stat-divider {
    display: none;
  }
  
  .formations-pro__cta {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .formations-pro__cta-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .formations-pro__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .formations-pro__title {
    font-size: 2.2rem;
  }
  
  .formations-pro__stats {
    gap: 20px;
  }
  
  .formations-pro__stat-number {
    font-size: 2rem;
  }
  
  .formations-pro__trust {
    gap: 20px 30px;
  }
  
  .formations-pro__trust-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .formations-pro {
    padding: 60px 0;
  }
  
  .formations-pro__badge {
    padding: 8px 16px;
  }
  
  .formations-pro__badge span {
    font-size: 0.75rem;
  }
  
  .formation-card {
    padding: 22px;
  }
  
  .formation-card__title {
    font-size: 1.2rem;
  }
  
  .formations-pro__cta {
    padding: 25px 20px;
  }
  
  .formations-pro__cta-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

/* ========================================
   ABOUT PRO SECTION - UX DESIGN
   ======================================== */

.about-pro {
  padding: 120px 0;
  background: linear-gradient(180deg, #fdfbf8 0%, #f8f5f0 50%, #fdfbf8 100%);
  position: relative;
  overflow: hidden;
}

.about-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 0% 50%, rgba(215, 163, 108, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(215, 163, 108, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-pro__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* Visual Side */
.about-pro__visual {
  position: relative;
}

.about-pro__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-pro__image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-pro__image-wrapper:hover .about-pro__image {
  transform: scale(1.03);
}

.about-pro__image-border {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(215, 163, 108, 0.3);
  border-radius: 30px;
  pointer-events: none;
}

.about-pro__experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  color: white;
  padding: 28px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(215, 163, 108, 0.4);
  z-index: 2;
}

.about-pro__experience-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about-pro__experience-text {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.about-pro__float {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

.about-pro__float svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.about-pro__float--1 {
  top: 30px;
  left: -20px;
  animation-delay: 0s;
}

.about-pro__float--2 {
  top: 50%;
  right: -25px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Content Side */
.about-pro__content {
  position: relative;
}

.about-pro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 163, 108, 0.1);
  border: 1px solid rgba(215, 163, 108, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.about-pro__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.about-pro__badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-pro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 20px;
}

.about-pro__title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary) 0%, #b8956d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-pro__desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 35px;
}

/* Features */
.about-pro__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.about-pro__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-pro__feature:hover {
  transform: translateX(8px);
  border-color: rgba(215, 163, 108, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-pro__feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.15) 0%, rgba(215, 163, 108, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-pro__feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.about-pro__feature:hover .about-pro__feature-icon {
  background: var(--primary);
}

.about-pro__feature:hover .about-pro__feature-icon svg {
  color: white;
}

.about-pro__feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.about-pro__feature-text p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Values */
.about-pro__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.about-pro__value {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-pro__value:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 163, 108, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-pro__value-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.3s ease;
}

.about-pro__value:hover .about-pro__value-icon {
  transform: rotate(-10deg) scale(1.1);
}

.about-pro__value-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.about-pro__value h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}

.about-pro__value p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* CTA Button */
.about-pro__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--text) 0%, #2a2a2a 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-pro__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
}

.about-pro__cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.about-pro__cta:hover svg {
  transform: translateX(5px);
}

/* About Pro Responsive */
@media (max-width: 1024px) {
  .about-pro {
    padding: 80px 0;
  }
  
  .about-pro__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-pro__visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-pro__image {
    height: 450px;
  }
  
  .about-pro__experience {
    bottom: -20px;
    right: -15px;
    padding: 22px 26px;
  }
  
  .about-pro__experience-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-pro__values {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-pro__value {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 18px 20px;
  }
  
  .about-pro__value-icon {
    margin: 0;
    flex-shrink: 0;
  }
  
  .about-pro__image {
    height: 380px;
  }
  
  .about-pro__float {
    display: none;
  }
  
  .about-pro__image-border {
    inset: -8px;
  }
}

@media (max-width: 480px) {
  .about-pro {
    padding: 60px 0;
  }
  
  .about-pro__title {
    font-size: 1.9rem;
  }
  
  .about-pro__image {
    height: 320px;
  }
  
  .about-pro__experience {
    bottom: -15px;
    right: -10px;
    padding: 18px 22px;
  }
  
  .about-pro__experience-number {
    font-size: 2rem;
  }
  
  .about-pro__feature {
    padding: 14px 16px;
  }
  
  .about-pro__feature-icon {
    width: 42px;
    height: 42px;
  }
  
  .about-pro__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
}

/* ========================================
   TESTIMONIALS PRO SECTION - UX DESIGN
   ======================================== */

.testimonials-pro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-pro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-pro__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8f5f0 0%, #fdfbf8 50%, #f5efe8 100%);
}

.testimonials-pro__quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 40rem;
  font-weight: 700;
  color: rgba(215, 163, 108, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

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

/* Header */
.testimonials-pro__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.testimonials-pro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.testimonials-pro__badge svg {
  width: 18px;
  height: 18px;
  color: white;
}

.testimonials-pro__badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

.testimonials-pro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 18px;
}

.testimonials-pro__title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary) 0%, #b8956d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-pro__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Rating Summary */
.testimonials-pro__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.testimonials-pro__stars {
  display: flex;
  gap: 4px;
}

.testimonials-pro__stars svg {
  width: 24px;
  height: 24px;
  color: #f59e0b;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.testimonials-pro__rating-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Testimonials Grid */
.testimonials-pro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  border: 1px solid rgba(215, 163, 108, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(215, 163, 108, 0.25);
}

.testimonial-card__quote-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.15) 0%, rgba(215, 163, 108, 0.05) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.testimonial-card__quote-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 18px;
  flex-grow: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-card__service {
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonial-card__verified {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.testimonial-card__verified svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

.testimonial-card__verified span {
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 500;
}

/* Featured Card */
.testimonial-card--featured {
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  border: none;
}

.testimonial-card--featured .testimonial-card__quote-icon {
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-card--featured .testimonial-card__quote-icon svg {
  color: white;
}

.testimonial-card--featured .testimonial-card__text {
  color: white;
}

.testimonial-card--featured .testimonial-card__stars svg {
  color: white;
}

.testimonial-card--featured .testimonial-card__avatar {
  background: white;
  color: var(--primary);
}

.testimonial-card--featured .testimonial-card__name {
  color: white;
}

.testimonial-card--featured .testimonial-card__service {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-card--featured .testimonial-card__verified {
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card--featured .testimonial-card__verified svg {
  color: white;
}

.testimonial-card--featured .testimonial-card__verified span {
  color: rgba(255, 255, 255, 0.9);
}

/* Dark Card */
.testimonial-card--dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card--dark .testimonial-card__quote-icon {
  background: rgba(215, 163, 108, 0.2);
}

.testimonial-card--dark .testimonial-card__text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card--dark .testimonial-card__name {
  color: white;
}

.testimonial-card--dark .testimonial-card__service {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card--dark .testimonial-card__verified {
  border-color: rgba(255, 255, 255, 0.1);
}

/* CTA */
.testimonials-pro__cta {
  display: flex;
  justify-content: center;
}

.testimonials-pro__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--line);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonials-pro__cta-btn svg {
  width: 20px;
  height: 20px;
}

.testimonials-pro__cta-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(215, 163, 108, 0.2);
  transform: translateY(-2px);
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
  .testimonials-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-pro {
    padding: 80px 0;
  }
  
  .testimonials-pro__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonials-pro__quote-bg {
    font-size: 20rem;
  }
  
  .testimonials-pro__rating {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .testimonials-pro {
    padding: 60px 0;
  }
  
  .testimonials-pro__title {
    font-size: 1.9rem;
  }
  
  .testimonial-card {
    padding: 22px;
  }
  
  .testimonials-pro__cta-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

/* ========================================
   GALLERY PRO SECTION - UX DESIGN
   ======================================== */

.gallery-pro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.gallery-pro__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.gallery-pro__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(215, 163, 108, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(215, 163, 108, 0.08) 0%, transparent 50%);
}

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

/* Header */
.gallery-pro__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
}

.gallery-pro__header-content {
  max-width: 550px;
}

.gallery-pro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 163, 108, 0.15);
  border: 1px solid rgba(215, 163, 108, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.gallery-pro__badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.gallery-pro__badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-pro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px;
}

.gallery-pro__title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-pro__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.gallery-pro__instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
  white-space: nowrap;
}

.gallery-pro__instagram svg {
  width: 20px;
  height: 20px;
}

.gallery-pro__instagram:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(131, 58, 180, 0.4);
}

/* Gallery Grid - Masonry Style */
.gallery-pro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-bottom: 50px;
}

.gallery-pro__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-pro__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-pro__item:hover img {
  transform: scale(1.1);
}

.gallery-pro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-pro__item:hover .gallery-pro__overlay {
  opacity: 1;
}

.gallery-pro__overlay-content {
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-pro__item:hover .gallery-pro__overlay-content {
  transform: translateY(0);
}

.gallery-pro__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.gallery-pro__overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

/* Grid Item Sizes */
.gallery-pro__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-pro__item--tall {
  grid-row: span 2;
}

.gallery-pro__item--wide {
  grid-column: span 2;
}

/* Gallery CTA */
.gallery-pro__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 32px;
}

.gallery-pro__cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.gallery-pro__cta-content svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.gallery-pro__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
  white-space: nowrap;
}

.gallery-pro__cta-btn svg {
  width: 18px;
  height: 18px;
}

.gallery-pro__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(131, 58, 180, 0.4);
}

/* Gallery Responsive */
@media (max-width: 1024px) {
  .gallery-pro__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  
  .gallery-pro__item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .gallery-pro__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .gallery-pro {
    padding: 80px 0;
  }
  
  .gallery-pro__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
  }
  
  .gallery-pro__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-pro__item--tall {
    grid-row: span 1;
  }
  
  .gallery-pro__item--wide {
    grid-column: span 2;
  }
  
  .gallery-pro__cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .gallery-pro__cta-content {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-pro {
    padding: 60px 0;
  }
  
  .gallery-pro__title {
    font-size: 1.9rem;
  }
  
  .gallery-pro__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  
  .gallery-pro__item--large,
  .gallery-pro__item--tall,
  .gallery-pro__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery-pro__instagram,
  .gallery-pro__cta-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .gallery-pro__cta {
    padding: 20px;
  }
}

/* ========================================
   CONTACT PRO SECTION - UX DESIGN
   ======================================== */

.contact-pro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.contact-pro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-pro__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8f5f0 0%, #fdfbf8 50%, #f5efe8 100%);
}

.contact-pro__pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(215, 163, 108, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(215, 163, 108, 0.08) 0%, transparent 50%);
}

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

.contact-pro__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side: Info */
.contact-pro__info {
  padding-right: 20px;
}

.contact-pro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 163, 108, 0.1);
  border: 1px solid rgba(215, 163, 108, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.contact-pro__badge svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.contact-pro__badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-pro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 18px;
}

.contact-pro__title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary) 0%, #b8956d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-pro__desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 35px;
}

/* Contact Cards */
.contact-pro__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.contact-pro__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-pro__card:hover {
  transform: translateX(8px);
  border-color: rgba(215, 163, 108, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-pro__card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.15) 0%, rgba(215, 163, 108, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-pro__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-pro__card:hover .contact-pro__card-icon {
  background: var(--primary);
}

.contact-pro__card:hover .contact-pro__card-icon svg {
  color: white;
}

.contact-pro__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contact-pro__card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-pro__card-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.contact-pro__card-arrow {
  width: 20px;
  height: 20px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact-pro__card:hover .contact-pro__card-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}

/* Social Links */
.contact-pro__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.contact-pro__social-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-pro__social-links {
  display: flex;
  gap: 10px;
}

.contact-pro__social-link {
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.contact-pro__social-link svg {
  width: 20px;
  height: 20px;
}

.contact-pro__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Hours */
.contact-pro__hours {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
}

.contact-pro__hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-pro__hours-header svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-pro__hours-header span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.contact-pro__hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-pro__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.contact-pro__hours-row span:first-child {
  color: var(--muted);
}

.contact-pro__hours-row span:last-child {
  font-weight: 600;
  color: var(--text);
}

.contact-pro__hours-row--closed span:last-child {
  color: #ef4444;
}

/* Form Wrapper */
.contact-pro__form-wrapper {
  background: white;
  border-radius: 24px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.contact-pro__form {
  padding: 40px;
}

.contact-pro__form-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-pro__form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}

.contact-pro__form-header p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.contact-pro__form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.contact-pro__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-pro__field--full {
  grid-column: span 2;
}

.contact-pro__field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.contact-pro__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-pro__input-wrapper svg {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.3s ease;
}

.contact-pro__input-wrapper input,
.contact-pro__input-wrapper select {
  width: 100%;
  padding: 14px 16px 14px 48px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-pro__input-wrapper input::placeholder {
  color: var(--muted);
}

.contact-pro__input-wrapper input:focus,
.contact-pro__input-wrapper select:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(215, 163, 108, 0.1);
}

.contact-pro__input-wrapper input:focus + svg,
.contact-pro__input-wrapper:focus-within svg {
  color: var(--primary);
}

.contact-pro__input-wrapper--select select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.contact-pro__input-wrapper--select::after {
  content: '';
  position: absolute;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-50%);
  top: 45%;
  pointer-events: none;
}

.contact-pro__input-wrapper--textarea {
  align-items: flex-start;
}

.contact-pro__input-wrapper--textarea textarea {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}

.contact-pro__input-wrapper--textarea textarea::placeholder {
  color: var(--muted);
}

.contact-pro__input-wrapper--textarea textarea:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(215, 163, 108, 0.1);
}

.contact-pro__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  padding: 18px 32px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(215, 163, 108, 0.35);
  margin-top: 10px;
}

.contact-pro__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(215, 163, 108, 0.45);
}

.contact-pro__submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.contact-pro__submit:hover svg {
  transform: translateX(5px);
}

.contact-pro__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-pro__notice svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-pro__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-pro__info {
    padding-right: 0;
    text-align: center;
  }
  
  .contact-pro__cards {
    max-width: 500px;
    margin: 0 auto 30px;
  }
  
  .contact-pro__social {
    justify-content: center;
  }
  
  .contact-pro__hours {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-pro {
    padding: 80px 0;
  }
  
  .contact-pro__form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-pro__field--full {
    grid-column: span 1;
  }
  
  .contact-pro__form {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .contact-pro {
    padding: 60px 0;
  }
  
  .contact-pro__title {
    font-size: 1.9rem;
  }
  
  .contact-pro__card {
    padding: 14px 16px;
  }
  
  .contact-pro__card-icon {
    width: 44px;
    height: 44px;
  }
  
  .contact-pro__form {
    padding: 24px 18px;
  }
  
  .contact-pro__submit {
    padding: 16px 24px;
  }
}

/* ========================================
   HERO SPLIT - FORMATIONS PAGE
   ======================================== */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--bg);
}

/* Left Content */
.hero-split__content {
  display: flex;
  align-items: center;
  padding: 120px 60px 80px 0;
  padding-left: calc((100vw - 1200px) / 2 + 24px);
}

.hero-split__inner {
  max-width: 550px;
}

.hero-split__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 163, 108, 0.1);
  border: 1px solid rgba(215, 163, 108, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeIn 0.6s ease forwards;
}

.hero-split__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-split__badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-split__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 24px;
  animation: fadeIn 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-split__highlight {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary) 0%, #b8956d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-split__desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 35px;
  animation: fadeIn 0.6s ease 0.2s forwards;
  opacity: 0;
}

/* Features */
.hero-split__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
  animation: fadeIn 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-split__feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-split__feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-split__feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.hero-split__feature div {
  display: flex;
  flex-direction: column;
}

.hero-split__feature strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.hero-split__feature span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Actions */
.hero-split__actions {
  display: flex;
  gap: 16px;
  animation: fadeIn 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-split__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #c4915a 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(215, 163, 108, 0.35);
}

.hero-split__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(215, 163, 108, 0.45);
}

.hero-split__btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-split__btn-primary:hover svg {
  transform: translateX(5px);
}

.hero-split__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 28px;
  border-radius: 14px;
  border: 2px solid var(--line);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-split__btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Right Visual */
.hero-split__visual {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-split__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(215, 163, 108, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(215, 163, 108, 0.15) 0%, transparent 50%);
}

.hero-split__image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.hero-split__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.hero-split__image:hover {
  transform: scale(1.05);
  z-index: 2;
}

.hero-split__image:hover img {
  transform: scale(1.1);
}

.hero-split__image--1 { animation: fadeInScale 0.6s ease 0.2s forwards; opacity: 0; }
.hero-split__image--2 { animation: fadeInScale 0.6s ease 0.3s forwards; opacity: 0; }
.hero-split__image--3 { animation: fadeInScale 0.6s ease 0.4s forwards; opacity: 0; }
.hero-split__image--4 { animation: fadeInScale 0.6s ease 0.5s forwards; opacity: 0; }

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-split__image-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.hero-split__image:hover .hero-split__image-label {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Stats */
.hero-split__floating {
  position: absolute;
  background: white;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 10;
  animation: floatBounce 3s ease-in-out infinite;
}

.hero-split__floating--1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-split__floating--2 {
  bottom: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-split__floating-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-split__floating-text {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Split Responsive */
@media (max-width: 1200px) {
  .hero-split__content {
    padding-left: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-split__content {
    padding: 120px 40px 60px;
    justify-content: center;
  }
  
  .hero-split__inner {
    max-width: 600px;
    text-align: center;
  }
  
  .hero-split__features {
    align-items: center;
  }
  
  .hero-split__actions {
    justify-content: center;
  }
  
  .hero-split__visual {
    padding: 60px 40px;
    min-height: 500px;
  }
  
  .hero-split__floating--1 {
    top: 10%;
    left: 5%;
  }
  
  .hero-split__floating--2 {
    bottom: 10%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-split__content {
    padding: 100px 24px 50px;
  }
  
  .hero-split__title {
    font-size: 2.2rem;
  }
  
  .hero-split__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-split__btn-primary,
  .hero-split__btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-split__image-grid {
    max-width: 350px;
  }
  
  .hero-split__floating {
    padding: 14px 18px;
  }
  
  .hero-split__floating-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-split__title {
    font-size: 1.9rem;
  }
  
  .hero-split__feature-icon {
    width: 42px;
    height: 42px;
  }
  
  .hero-split__visual {
    min-height: 400px;
    padding: 40px 20px;
  }
  
  .hero-split__image-grid {
    max-width: 280px;
    gap: 12px;
  }
  
  .hero-split__floating {
    display: none;
  }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.price-card h3 {
  margin: 0 0 12px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 720px) {
  .price-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}

.btn--small {
  font-size: 13px;
  padding: 8px 16px;
  margin-top: 16px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal--open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  padding: 40px;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal__close:hover {
  color: var(--text);
}

.modal__content h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-family: "Playfair Display", serif;
}

.modal__content .muted {
  margin-bottom: 24px;
}

.modal__body {
  margin-top: 24px;
}

.modal__body h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text);
}

.modal__body h4:first-child {
  margin-top: 0;
}

.modal__body .list {
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .modal__content {
    padding: 24px;
    max-height: 95vh;
  }

  .modal__content h2 {
    font-size: 22px;
    padding-right: 40px;
  }

  .modal__close {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 720px) {
  .hero__card img {
    height: 320px;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }
}

/* ===========================================
   PEDAGOGY PRO SECTION
   =========================================== */

.pedagogy-pro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.pedagogy-pro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pedagogy-pro__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fdfbf8 0%, #f8f4ef 50%, #fdfbf8 100%);
}

.pedagogy-pro__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(215, 163, 108, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

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

/* Header */
.pedagogy-pro__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.pedagogy-pro__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.15), rgba(215, 163, 108, 0.05));
  border: 1px solid rgba(215, 163, 108, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 24px;
  animation: pedagogy-badge-glow 3s ease-in-out infinite;
}

@keyframes pedagogy-badge-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(215, 163, 108, 0.1); }
  50% { box-shadow: 0 0 30px rgba(215, 163, 108, 0.25); }
}

.pedagogy-pro__badge svg {
  animation: pedagogy-icon-spin 8s linear infinite;
}

@keyframes pedagogy-icon-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pedagogy-pro__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

.pedagogy-pro__title .text-gradient {
  background: linear-gradient(135deg, var(--primary), #c4935d, var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pedagogy-gradient-shift 4s ease infinite;
}

@keyframes pedagogy-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Grid */
.pedagogy-pro__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

/* Cards */
.pedagogy-pro__card {
  position: relative;
  background: var(--surface);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pedagogy-pro__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(215, 163, 108, 0.3);
}

.pedagogy-pro__card--method {
  background: linear-gradient(180deg, #fff 0%, #fdfbf8 100%);
}

.pedagogy-pro__card--follow {
  background: linear-gradient(180deg, #1a1714 0%, #252119 100%);
  border-color: rgba(215, 163, 108, 0.2);
}

.pedagogy-pro__card--follow .pedagogy-pro__card-title,
.pedagogy-pro__card--follow .pedagogy-pro__card-subtitle,
.pedagogy-pro__card--follow .pedagogy-pro__feature-title,
.pedagogy-pro__card--follow .pedagogy-pro__feature-desc {
  color: #fff;
}

.pedagogy-pro__card--follow .pedagogy-pro__feature-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* Card Header */
.pedagogy-pro__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pedagogy-pro__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.pedagogy-pro__card:hover .pedagogy-pro__icon {
  transform: scale(1.1) rotate(5deg);
}

.pedagogy-pro__icon--primary {
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.15), rgba(215, 163, 108, 0.05));
  color: var(--primary);
}

.pedagogy-pro__icon--gold {
  background: linear-gradient(135deg, var(--primary), #c4935d);
  color: #fff;
  box-shadow: 0 8px 24px rgba(215, 163, 108, 0.4);
}

.pedagogy-pro__card-badge {
  padding: 6px 14px;
  background: rgba(215, 163, 108, 0.1);
  border: 1px solid rgba(215, 163, 108, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.pedagogy-pro__card-badge--gold {
  background: linear-gradient(135deg, var(--primary), #c4935d);
  border: none;
  color: #fff;
}

/* Card Content */
.pedagogy-pro__card-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

.pedagogy-pro__card-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 32px;
}

/* Features */
.pedagogy-pro__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pedagogy-pro__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(215, 163, 108, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pedagogy-pro__card--follow .pedagogy-pro__feature {
  background: rgba(255, 255, 255, 0.05);
}

.pedagogy-pro__feature:hover {
  background: rgba(215, 163, 108, 0.08);
  transform: translateX(4px);
}

.pedagogy-pro__card--follow .pedagogy-pro__feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pedagogy-pro__feature--highlight {
  background: rgba(215, 163, 108, 0.1);
  border: 1px solid rgba(215, 163, 108, 0.2);
}

.pedagogy-pro__card--follow .pedagogy-pro__feature--highlight {
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.15), rgba(215, 163, 108, 0.05));
  border: 1px solid rgba(215, 163, 108, 0.3);
}

.pedagogy-pro__feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(215, 163, 108, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pedagogy-pro__card--follow .pedagogy-pro__feature-icon {
  background: rgba(215, 163, 108, 0.2);
}

.pedagogy-pro__feature:hover .pedagogy-pro__feature-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(5deg);
}

.pedagogy-pro__feature-icon--gold {
  background: linear-gradient(135deg, var(--primary), #c4935d);
  color: #fff;
}

.pedagogy-pro__feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pedagogy-pro__feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.pedagogy-pro__feature-desc {
  font-size: 13px;
  color: var(--muted);
}

.pedagogy-pro__feature-badge {
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--primary), #c4935d);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  align-self: center;
}

/* CTA Box */
.pedagogy-pro__cta-box {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(215, 163, 108, 0.1), rgba(215, 163, 108, 0.05));
  border: 1px solid rgba(215, 163, 108, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pedagogy-pro__cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--primary);
}

.pedagogy-pro__cta-content svg {
  min-width: 24px;
}

.pedagogy-pro__cta-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.pedagogy-pro__cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.pedagogy-pro__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), #c4935d);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pedagogy-pro__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(215, 163, 108, 0.4);
}

.pedagogy-pro__cta-btn svg {
  transition: transform 0.3s ease;
}

.pedagogy-pro__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Card Decoration */
.pedagogy-pro__card-deco {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(215, 163, 108, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pedagogy-pro__card-deco--gold {
  background: radial-gradient(circle, rgba(215, 163, 108, 0.2) 0%, transparent 70%);
}

/* Stats */
.pedagogy-pro__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 48px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.pedagogy-pro__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.pedagogy-pro__stat-number {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), #c4935d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pedagogy-pro__stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.pedagogy-pro__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* Responsive */
@media (max-width: 1024px) {
  .pedagogy-pro__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pedagogy-pro__stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }

  .pedagogy-pro__stat-divider {
    display: none;
  }

  .pedagogy-pro__stat {
    flex: 1 1 calc(50% - 12px);
    min-width: 120px;
  }
}

@media (max-width: 720px) {
  .pedagogy-pro {
    padding: 80px 0;
  }

  .pedagogy-pro__header {
    margin-bottom: 48px;
  }

  .pedagogy-pro__card {
    padding: 28px;
  }

  .pedagogy-pro__card-title {
    font-size: 24px;
  }

  .pedagogy-pro__feature {
    padding: 12px;
  }

  .pedagogy-pro__cta-box {
    flex-direction: column;
    text-align: center;
  }

  .pedagogy-pro__cta-content {
    flex-direction: column;
    text-align: center;
  }

  .pedagogy-pro__stats {
    gap: 16px;
  }

  .pedagogy-pro__stat-number {
    font-size: 24px;
  }
}

/* ========================================
   OPTIMISATIONS SPÉCIFIQUES IPHONE
   ======================================== */

/* Support pour safe-area (iPhone avec encoche) */
@supports (padding: max(0px)) {
  .topbar {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* iPhone SE (320px) et petits écrans */
@media (max-width: 375px) {
  .container {
    width: min(1200px, 95vw);
    padding: 0 12px;
  }
  
  .hero-pro__content {
    padding: 80px 12px 50px;
  }
  
  .hero-pro__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .hero-pro__subtitle {
    font-size: 1rem;
  }
  
  .hero-pro__desc {
    font-size: 0.9rem;
  }
  
  .btn,
  .btn--large,
  .btn--outline-light {
    min-height: 44px;
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  
  .brand__logo {
    height: 50px;
  }
  
  .topbar.scrolled .brand__logo {
    height: 45px;
  }
  
  .services-header__title {
    font-size: 1.6rem;
  }
  
  .service-card__content {
    padding: 16px;
  }
  
  .contact-pro__form {
    padding: 20px 16px;
  }
  
  .contact-pro__field input,
  .contact-pro__field textarea,
  .contact-pro__field select {
    min-height: 44px;
    font-size: 16px; /* Évite le zoom automatique sur iOS */
  }
  
  .footer__main {
    padding: 30px 0 20px;
  }
}

/* iPhone 6/7/8, iPhone X/XS/11 Pro (375px) */
@media (max-width: 375px) and (min-width: 320px) {
  .hero-pro__actions {
    gap: 12px;
  }
  
  .btn--large,
  .btn--outline-light {
    width: 100%;
    max-width: 100%;
  }
}

/* iPhone 12/13/14 (390px) */
@media (max-width: 390px) and (min-width: 376px) {
  .hero-pro__content {
    padding: 90px 16px 60px;
  }
}

/* iPhone 6/7/8 Plus, iPhone XR/11 (414px) */
@media (max-width: 414px) and (min-width: 391px) {
  .hero-pro__content {
    padding: 100px 20px 70px;
  }
}

/* iPhone 12/13/14 Pro Max (428px) */
@media (max-width: 428px) and (min-width: 415px) {
  .hero-pro__content {
    padding: 110px 20px 80px;
  }
}

/* Amélioration du touch pour iOS */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .menu a,
  .menu-toggle,
  a {
    -webkit-tap-highlight-color: rgba(215, 163, 108, 0.2);
    touch-action: manipulation;
  }
  
  .btn:active,
  .menu a:active {
    transform: scale(0.98);
  }
  
  /* Taille minimale pour les éléments tactiles (Apple recommande 44x44px) */
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  
  .btn {
    min-height: 44px;
  }
  
  .menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Correction du zoom automatique sur iOS pour les inputs */
@media screen and (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* Optimisation pour l'orientation paysage sur iPhone */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-pro {
    min-height: auto;
    padding: 60px 0;
  }
  
  .hero-pro__content {
    padding: 60px 20px 40px;
  }
  
  .topbar {
    padding: 8px 0;
  }
  
  .topbar.scrolled .nav {
    padding: 8px 0;
  }
}