/*
Theme Name: Paroliamo
Theme URI: https://paroliamo.com
Author: Paroliamo — SASU
Author URI: https://paroliamo.com
Description: Thème élégant pour Paroliamo, école en ligne de formation professionnelle en langues. Compatible Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: Propriétaire
License URI: https://paroliamo.com
Text Domain: paroliamo
Tags: elementor, education, multilingual, one-page, full-width-template
*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: #1A1A2E;
  background: #FAF8F5;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
  --green:    #1A6B72;
  --red:      #D97706;
  --gold:     #C89B3C;
  --dark:     #1A1A2E;
  --warm:     #FAF8F5;
  --white:    #FFFFFF;
  --green-light: #e5f4f5;
  --gold-light:  #fdf6e3;
  --shadow:   0 4px 24px rgba(26,26,46,0.10);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.16);
  --radius:   12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Dancing+Script:wght@500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

.cursive {
  font-family: 'Dancing Script', cursive;
  color: var(--gold);
}

/* === LAYOUT HELPERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

.section {
  padding: 96px 0;
}
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: #005530;
  border-color: #005530;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,109,59,0.3);
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #a87d2c;
  border-color: #a87d2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,155,60,0.3);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

/* === BADGES === */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge--green  { background: var(--green-light); color: var(--green); }
.badge--gold   { background: var(--gold-light); color: #8a6d22; }
.badge--red    { background: #fde8ea; color: var(--red); }

/* === SECTION HEADERS === */
.section-header {
  margin-bottom: 56px;
}
.section-header .pre-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header .subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}
.section-divider--left { margin-left: 0; }

/* === ACCENT STRIPE (multi-langues) === */
.flag-stripe {
  display: flex;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--dark));
}

/* === HEADER === */
#site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: all var(--transition);
}
#site-header.scrolled {
  box-shadow: var(--shadow);
}
/* Accent stripe — now inside <header> so it sticks with it */
.header-flag-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--dark));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1300px;
  margin: 0 auto;
  gap: 24px;
}

.site-logo img {
  height: 52px;
  width: auto;
}
.site-logo .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}
.site-logo .logo-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 0.85rem;
  color: var(--gold);
  display: block;
  margin-top: -4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--green);
  background: var(--green-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn:hover {
  border-color: var(--green);
  color: var(--green);
}
.lang-btn.active {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green);
}
.lang-flag { font-size: 1.1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--green-light); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 100px 32px 32px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green); }

/* Push content below fixed header */
body { padding-top: 80px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1A1A2E 50%, #0d2318 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,107,114,0.55) 0%, rgba(26,26,46,0.88) 50%, rgba(200,155,60,0.2) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s infinite ease-in-out;
}
.hero-particle:nth-child(1) { width: 300px; height: 300px; background: var(--gold); top: -100px; right: -80px; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 200px; height: 200px; background: var(--green); bottom: 100px; left: -60px; animation-delay: 2s; }
.hero-particle:nth-child(3) { width: 150px; height: 150px; background: var(--red); top: 50%; right: 20%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}
.hero-text {}
.hero-pre-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.2s;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.4s;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.5s;
  letter-spacing: 0.5px;
}
.hero-description {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.6s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.8s;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 1s;
}
.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 8px;
  backdrop-filter: blur(8px);
}
.hero-stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-image {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s forwards 0.6s;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--green), var(--gold));
  z-index: -1;
}
.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge .icon { font-size: 2rem; }
.hero-image-badge .text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--dark);
}
.hero-image-badge .text span {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 700;
}
.hero-flags {
  position: absolute;
  top: -16px;
  right: -16px;
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === ABOUT === */
.about {
  background: var(--white);
}
.about-text .pre-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: #555; margin-bottom: 16px; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 16px;
}
.highlight-item .icon { font-size: 1.5rem; }
.highlight-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.highlight-item span {
  font-size: 0.82rem;
  color: #555;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  top: 16px;
  left: 16px;
  z-index: -1;
}
.cert-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cert-badge {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7a5c1e;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === WHY ITALIAN === */
.why-italian {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2040 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-italian::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,114,0.15), transparent);
  top: -200px;
  right: -200px;
}
.why-italian .section-header .pre-title { color: var(--gold); }
.why-italian .section-header h2 { color: var(--white); }
.why-italian .section-header .subtitle { color: rgba(255,255,255,0.7); }
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.why-card .stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}
.why-reasons h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.6rem;
}
.why-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.why-reason {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: all var(--transition);
}
.why-reason:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.why-reason .check { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.why-reason p { color: rgba(255,255,255,0.82); font-size: 0.93rem; margin: 0; }

/* === OFFER === */
.offer { background: var(--warm); }
.offer-list { margin-top: 0; }
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 16px;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}
.offer-item:hover {
  border-left-color: var(--green);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.offer-item .icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-item h4 { margin-bottom: 4px; color: var(--dark); }
.offer-item p  { margin: 0; font-size: 0.9rem; color: #666; }
.offer-cta { text-align: center; margin-top: 48px; }
.offer-cta .pre-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* === PARTNERS === */
.partners { background: var(--white); }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  filter: grayscale(0.4);
  transition: all var(--transition);
  background: var(--warm);
  border: 1px solid #eee;
}
.partner-logo:hover {
  filter: grayscale(0);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.partner-logo img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
}

/* === FAQ === */
.faq { background: var(--warm); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-question h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
  flex: 1;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

/* === PRICING (Cours page) === */
.pricing-section { background: var(--warm); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}
.pricing-header {
  background: linear-gradient(135deg, var(--dark), #2a2a4e);
  color: var(--white);
  padding: 28px 24px 20px;
}
.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, var(--green), #004d2a);
}
.pricing-header .plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-header .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pricing-header .price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Lato', sans-serif;
}
.pricing-header .price-total {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.pricing-body {
  padding: 24px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.9rem;
  color: #555;
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .check { color: var(--green); font-weight: 700; }
.pricing-cta { padding: 0 24px 24px; }

/* === GROUP COURSES === */
.group-courses { background: var(--white); }
.group-card {
  background: linear-gradient(135deg, var(--dark), #1a2840);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,155,60,0.3);
}
.group-card-icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  background: rgba(200,155,60,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.group-card h3 { color: var(--white); margin-bottom: 8px; }
.group-card p { color: rgba(255,255,255,0.75); margin-bottom: 4px; font-size: 0.95rem; }
.group-card .level {
  display: inline-block;
  background: rgba(200,155,60,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.group-card .time-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 4px;
}
.group-card .time-icon { color: var(--gold); }

/* === SOLUTIONS / FINANCING === */
.financing-section { background: var(--warm); }
.financing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 32px;
  transition: all var(--transition);
}
.financing-card:hover { box-shadow: var(--shadow-lg); }
.financing-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--green), #004d2a);
  color: var(--white);
}
.financing-card-header .logo-slot {
  background: var(--white);
  border-radius: 10px;
  padding: 8px 16px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.financing-card-header .logo-slot img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
}
.financing-card-header h3 { color: var(--white); font-size: 1.4rem; }
.financing-card-header p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.financing-card-body { padding: 28px 32px; }
.financing-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.financing-detail {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.financing-detail .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
}
.financing-detail .label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.financing-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* Pricing table */
.opco-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.92rem;
}
.opco-table th {
  background: var(--dark);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.opco-table th:first-child { border-radius: 8px 0 0 0; }
.opco-table th:last-child  { border-radius: 0 8px 0 0; }
.opco-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
}
.opco-table tr:last-child td { border-bottom: none; }
.opco-table tr:hover td { background: var(--green-light); }
.opco-table .price-cell {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--warm); }
.testimonials-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  border: 2px dashed #ddd;
}
.testimonials-placeholder .icon { font-size: 4rem; margin-bottom: 16px; }
.testimonials-placeholder h3 { color: #aaa; font-size: 1.6rem; }
.testimonials-placeholder p { color: #bbb; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.testimonial-author .name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.8rem; color: #888; }

/* === CONTACT === */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: #555; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--dark); font-weight: 700; font-size: 0.9rem; }
.contact-item a, .contact-item span { color: #555; font-size: 0.95rem; }
.contact-item a:hover { color: var(--green); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.contact-form {
  background: var(--warm);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
}

/* === RECRUITMENT === */
.recruitment { background: var(--warm); }
.recruitment-content {
  background: linear-gradient(135deg, var(--dark), #1a2840);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.recruitment-content h2 { color: var(--white); margin-bottom: 16px; }
.recruitment-content p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, #004d2a 60%, #003d20 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .pre-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 12px;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-band .btn--outline-white:hover { color: var(--green); }

/* === FOOTER === */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .site-logo .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-brand .footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.footer-partner-logo {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-partner-logo:hover { background: rgba(255,255,255,0.12); }
.footer-partner-logo img {
  max-height: 32px;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.6);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .legal-links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom .legal-links a:hover { color: var(--gold); }

/* === PAGE BANNER === */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2840 100%);
  color: var(--white);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.page-banner .breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.page-banner .breadcrumb a:hover { color: var(--gold); }
.page-banner .breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-banner h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.page-banner .subtitle {
  color: rgba(255,255,255,0.7);
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
}

/* === SCROLL TO TOP === */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,109,59,0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 99;
  border: none;
  font-size: 1.1rem;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top:hover {
  background: #005530;
  transform: translateY(-2px);
}

/* === ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* === DECORATIVE ELEMENTS === */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 2px;
  margin: 20px 0;
}
.gold-divider--center { margin: 20px auto; }

.italy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #009246 33%, #fff 33% 66%, #ce2b37 66%);
  color: var(--dark);
  padding: 4px 12px 4px 4px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image { display: none; }
  .hero-stats { max-width: 400px; margin: 48px auto 0; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
  body { padding-top: 72px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .recruitment-content { grid-template-columns: 1fr; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .group-card { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
  .contact-form { padding: 24px; }
  .financing-card-body { padding: 20px; }
  .financing-card-header { padding: 20px; flex-direction: column; }
  .lang-switcher { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-band .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CLASSES ADDITIONNELLES — alignement avec la maquette index.html
   ═══════════════════════════════════════════════════════════════════════ */

/* --- Financing cards (alias des classes mockup) --- */
.financing-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--green), #004d2a);
  color: #fff;
}
.financing-header h3 { color: #fff; font-size: 1.25rem; }
.financing-header p  { color: rgba(255,255,255,.75); font-size: .84rem; margin: 0; }
.financing-logo {
  background: #fff;
  border-radius: 8px;
  padding: 6px 13px;
  font-weight: 700;
  font-size: .82rem;
  color: var(--green);
  flex-shrink: 0;
}
.financing-body { padding: 22px 26px; }
.financing-body > p { color: #555; margin-bottom: 14px; font-size: .9rem; }
.financing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.fin-links { display: flex; gap: 9px; flex-wrap: wrap; }

/* fd = financing detail tile */
.fd { background: var(--warm); border-radius: var(--radius); padding: 13px; text-align: center; }
.fd .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
}
.fd .lbl {
  font-size: .72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px;
}

/* --- Testimonial aliases (test-* matches mockup) --- */
.test-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
  transition: all var(--transition);
  position: relative;
}
.test-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}
.test-stars { color: #fbbf24; font-size: .9rem; margin-bottom: 9px; }
.test-text  { color: #555; line-height: 1.75; margin-bottom: 16px; font-style: italic; font-size: .9rem; }
.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
  padding-top: 13px;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.test-author .name  { font-weight: 700; color: var(--dark); font-size: .9rem; }
.test-author .role  { font-size: .75rem; color: #888; }

/* --- Offer cards (offer-card = card version used in mockup) --- */
.offer-card {
  background: var(--warm);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid #eee;
  transition: all var(--transition);
}
.offer-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green); }
.offer-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card h4 { margin-bottom: 7px; font-family: 'Lato', sans-serif; font-size: .97rem; color: var(--dark); }
.offer-card p  { font-size: .86rem; color: #666; margin: 0; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* --- Language card grid --- */
.lang-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.lang-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: default;
  background: #fff;
}
.lang-card:not(.coming-soon):hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.lang-card.coming-soon { opacity: .7; }
.lang-card-top { padding: 28px 20px 20px; text-align: center; }
.lang-card-top .flag { font-size: 3rem; margin-bottom: 10px; display: block; }
.lang-card-top h3  { font-size: 1.2rem; margin-bottom: 4px; }
.lang-card-top .native { font-family: 'Dancing Script', cursive; font-size: .95rem; color: var(--gold); margin-bottom: 0; }
.lang-card-body { padding: 16px 20px 20px; background: var(--warm); border-top: 1px solid #f0f0f0; }
.lang-card-body p { font-size: .83rem; color: #666; margin-bottom: 10px; line-height: 1.6; }
.lang-levels { display: flex; gap: 5px; flex-wrap: wrap; }
.lang-level { padding: 3px 10px; border-radius: 50px; font-size: .7rem; font-weight: 700; background: var(--green-light); color: var(--green); }
.coming-badge {
  display: inline-block;
  background: var(--gold-light);
  color: #8a6d22;
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 8px;
}
.lang-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  background: var(--green-light);
  color: var(--green);
}

/* --- Course card (generic) --- */
.course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green); }

/* --- hl-item (about highlights shorthand) --- */
.hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
}
.hl-item .icon  { font-size: 1.3rem; }
.hl-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--green); line-height: 1; }
.hl-item span   { font-size: .77rem; color: #666; }

/* --- Contact info aliases --- */
.contact-info .pre-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* --- Page banner extras --- */
.page-banner .breadcrumb a:hover { color: var(--gold); }

/* --- Pricing extras --- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ph {
  padding: 24px 20px 16px;
  background: linear-gradient(135deg, var(--dark), #2a2a4e);
  color: #fff;
}
.pricing-card.featured .ph { background: linear-gradient(135deg, var(--green), #004d2a); }
.ph .plan-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; }
.ph .plan-price { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ph .plan-price sup { font-size: 1.1rem; }
.ph .plan-period { font-size: .82rem; color: rgba(255,255,255,.55); font-family: 'Lato', sans-serif; }
.ph .plan-total  { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.pb { padding: 18px 20px; }
.pf {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: .84rem;
  color: #555;
}
.pf:last-child { border-bottom: none; }
.pf .ck { color: var(--green); font-weight: 700; }
.pc { padding: 0 20px 20px; }

/* --- Group cards grid --- */
.group-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Testimonials grid (3-col mockup) --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* --- CTA actions row --- */
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- btn--outline-dark variant --- */
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover { background: var(--dark); color: #fff; }

/* --- Hero lang pills --- */
.hero-langs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.hero-lang-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.hero-lang-pill:hover { background: rgba(255,255,255,.16); border-color: var(--gold); }
.hero-lang-pill .flag { font-size: 1.1rem; }
.hero-lang-pill .name { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.85); }
.hero-lang-pill.coming { opacity: .6; }

/* --- Section divider left variant --- */
.section-divider--left { margin-left: 0; }

/* --- Partners (warm bg version) --- */
.partners { background: var(--warm); }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* --- About image wrapper (matching mockup) --- */
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #e8f5ee, #f0f0f0);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  top: 14px;
  left: 14px;
  z-index: -1;
}

/* --- Scroll indicator (mockup .scroll-ind) --- */
.scroll-ind {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
  z-index: 2;
}

/* --- Responsive extras --- */
@media (max-width: 1100px) {
  .lang-cards { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .lang-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .lang-cards { grid-template-columns: 1fr 1fr; }
  .group-cards-grid { grid-template-columns: 1fr; }
  .financing-stats { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .lang-cards { grid-template-columns: 1fr; }
  .hero-langs { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* --- .anim scroll animation (alias pour le mockup) --- */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim.visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* --- .pre-title standalone (cursive gold label used in many sections) --- */
.pre-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/* --- financing-stats alias for financing-details 4-col grid --- */
.financing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

/* --- grid-3, grid-4 standalone grid helpers --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- contact-info standalone block --- */
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: #555; margin-bottom: 24px; }

/* --- page-banner breadcrumb standalone --- */
.page-banner .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .8rem; color: rgba(255,255,255,.48); margin-bottom: 12px; }
.page-banner .breadcrumb a { color: rgba(255,255,255,.48); }
.page-banner .breadcrumb .sep { color: rgba(255,255,255,.28); }

/* --- cta-band actions row --- */
.cta-band .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════
   ELEMENTOR FULL-WIDTH INTEGRATION
   Removes Elementor's default column/widget padding so our inline-styled
   HTML sections render edge-to-edge as intended.
   ═══════════════════════════════════════════════════════════════════════ */

/* Remove default column padding so full-width HTML widgets touch the edges */
.elementor-column > .elementor-widget-wrap,
.elementor-col-100 > .elementor-widget-wrap {
  padding: 0 !important;
}

/* Remove any top margin/padding on the Elementor root wrapper */
#main-content > .elementor,
#main-content > .elementor-section-wrap {
  margin: 0;
  padding: 0;
}

/* Ensure the Elementor widget container itself has no extra spacing */
.elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Full-width section: make container truly 100% wide */
.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove default top gap between header and first Elementor section */
#main-content {
  margin: 0;
  padding: 0;
}
.elementor-top-section:first-child,
.elementor > .elementor-inner > .elementor-section-wrap > .elementor-section:first-child {
  margin-top: 0 !important;
}
