/* =============================================
   Gestion BL — Premium Stylesheet v2
   Modern, professional, trustworthy
   ============================================= */

:root {
  /* Palette — deep navy + gold accent + clean whites */
  --navy: #0b1f3a;
  --navy-2: #122b4f;
  --navy-3: #1a3a66;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-soft: #dbeafe;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-soft: #fef3c7;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-warm: #fdfdfd;
  --text: #1e293b;
  --text-2: #475569;
  --text-3: #94a3b8;
  --text-inv: #f1f5f9;
  --text-inv-2: #cbd5e1;
  --border: #e2e8f0;
  --border-2: #cbd5e1;
  --green: #059669;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.06), 0 1px 2px rgba(11, 31, 58, 0.04);
  --shadow: 0 4px 16px rgba(11, 31, 58, 0.08), 0 1px 4px rgba(11, 31, 58, 0.04);
  --shadow-md: 0 12px 40px rgba(11, 31, 58, 0.1), 0 4px 12px rgba(11, 31, 58, 0.06);
  --shadow-lg: 0 24px 70px rgba(11, 31, 58, 0.14), 0 8px 24px rgba(11, 31, 58, 0.08);
  --shadow-gold: 0 4px 20px rgba(212, 160, 23, 0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1240px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--gold-soft); color: var(--navy); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--blue-light); }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ==================== TOPBAR ==================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.topbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.logo__text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--navy); }
.nav a.active { color: var(--navy); font-weight: 600; }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn--sm { padding: 10px 22px; font-size: 0.825rem; }
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 160, 23, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--text-inv);
}
/* Bouton ghost sur fond sombre (hero, cta-box) */
.hero .btn--ghost,
.cta-box .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.hero .btn--ghost:hover,
.cta-box .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.btn--inverse {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--inverse:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: #fff;
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--light:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero__content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__content p {
  font-size: 1.15rem;
  color: var(--text-inv-2);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero__content p strong { color: var(--gold-light); font-weight: 600; }
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-inv-2);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.badge__star {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.hero__image {
  position: relative;
}
.hero__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2;
  object-fit: cover;
}
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 50%, rgba(11, 31, 58, 0.1) 100%);
  pointer-events: none;
}

/* ==================== SECTIONS ==================== */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--navy);
  color: var(--text-inv);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section__header p {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.6;
}
.section__header--light h2 { color: #fff; }
.section__header--light p { color: var(--text-inv-2); }

/* ==================== CARDS ==================== */
.cards-grid {
  display: grid;
  gap: 28px;
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-soft);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  font-size: 2.25rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-alt);
  color: var(--navy);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--text-2);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.card__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}
.card__link:hover { color: var(--blue-light); }

.feature {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature__icon {
  font-size: 2.25rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--navy);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.9rem;
  color: var(--text-2);
}

/* ==================== REVIEWS ==================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-2px);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 600;
  color: var(--text-inv);
  font-size: 0.875rem;
}
.review-card__date {
  font-size: 0.75rem;
  color: var(--text-3);
}
.review-card__stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.review-card__text {
  color: var(--text-inv-2);
  font-size: 0.825rem;
  line-height: 1.6;
}
/* ─── Carousel ─── */
/* Override .reviews-grid quand le carrousel est actif */
#google-reviews:has(.reviews-carousel) {
  display: block;
  gap: 0;
  margin-bottom: 0;
}
.reviews-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}
.reviews-carousel__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-carousel__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px;
  flex: 1;
  /* Snap pour aligner les cards */
  scroll-snap-type: x mandatory;
}
.reviews-carousel__track::-webkit-scrollbar { display: none; }
.reviews-carousel__track .review-card {
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.reviews-carousel__arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.reviews-carousel__arrow:hover {
  background: rgba(212, 160, 23, 0.2);
  border-color: rgba(212, 160, 23, 0.4);
}
.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.reviews-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.reviews-carousel__dot--active {
  background: var(--gold-light, #f0c040);
  width: 20px;
  border-radius: 4px;
}
/* CTA sous les avis */
.reviews-cta-bottom {
  text-align: center;
  margin-top: 20px;
}
.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--text-3);
}
.reviews__cta { text-align: center; position: relative; }

/* ==================== CTA BOX ==================== */
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box__text { position: relative; }
.cta-box__text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-box__text p { color: var(--text-inv-2); max-width: 520px; font-size: 1.0625rem; }
.cta-box__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy);
  color: var(--text-inv-2);
  padding: 72px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.footer__tagline {
  font-size: 0.9375rem;
  max-width: 320px;
  line-height: 1.7;
  color: var(--text-inv-2);
}
.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.footer__col ul { list-style: none; }
.footer__col li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer__col a { color: var(--text-inv-2); transition: color var(--transition-fast); }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-inv-2);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 100px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  letter-spacing: -0.02em;
}
.page-header p {
  font-size: 1.15rem;
  color: var(--text-inv-2);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  line-height: 1.6;
}

/* ==================== CONTENT BLOCKS ==================== */
.content-section { padding: 90px 0; }
.content-section--alt { background: var(--bg-alt); }

.content-block {
  max-width: 820px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  margin-top: 56px;
  letter-spacing: -0.01em;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  margin-top: 36px;
}
.content-block p {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.85;
}
.content-block ul, .content-block ol {
  margin-bottom: 22px;
  padding-left: 24px;
}
.content-block li {
  margin-bottom: 12px;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.content-block strong { color: var(--navy); font-weight: 600; }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ==================== TEAM ==================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.team-card__body { padding: 32px; }
.team-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.team-card__role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}
.team-card__bio {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.7;
}
.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  background: var(--blue-soft);
  transition: all var(--transition-fast);
}
.team-card__linkedin:hover {
  background: var(--blue);
  color: #fff;
}

/* ==================== FORM ==================== */
.form-wrap {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-group label .req { color: #ef4444; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--bg-alt);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #059669;
  color: #064e3b;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 0.9375rem;
}
.form-success.show { display: block; }

/* ==================== RESERVATION ==================== */
.calendar-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  width: 100%;
}
.calendar-wrap iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  /* Empêche le scroll interne — Google Calendar gère son propre scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.calendar-wrap iframe::-webkit-scrollbar { display: none; }

/* ==================== STRATEGY DETAIL ==================== */
.strategy-detail {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.strategy-detail:first-child { padding-top: 0; }
.strategy-detail:last-child { border-bottom: none; }
.strategy-detail__icon {
  font-size: 2.75rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-alt);
  color: var(--navy);
}
.strategy-detail__icon svg { width: 32px; height: 32px; }
.strategy-detail h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.strategy-detail h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
  margin-top: 32px;
}
.strategy-detail p {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.85;
}
.strategy-detail ul, .strategy-detail ol {
  margin-bottom: 22px;
  padding-left: 24px;
}
.strategy-detail li {
  margin-bottom: 10px;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.strategy-detail strong { color: var(--navy); font-weight: 600; }

/* ==================== CONTACT INFO ==================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-info__icon {
  font-size: 1.375rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.contact-info__label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-info__value {
  font-size: 1.0625rem;
  color: var(--text);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  .hero { padding: 72px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__image { order: -1; }
  .hero__content h1 { font-size: 2.4rem; }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-carousel__track .review-card { min-width: 260px; max-width: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .section__header h2, .content-block h2, .strategy-detail h2 { font-size: 2rem; }
  .calendar-wrap { max-width: 100%; }
  .calendar-wrap iframe { height: 680px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 20px;
    border-top: 1px solid var(--border);
  }
  .nav.nav-open { display: flex; }
  .nav-toggle { display: flex; }
  .topbar__inner { padding: 12px 20px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .content-section { padding: 64px 0; }
  .hero { padding: 56px 0; }
  .hero__content h1 { font-size: 2rem; }
  .section__header h2 { font-size: 1.75rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header { padding: 72px 0 56px; }
  .cards-grid--3, .cards-grid--4, .cards-grid--2 { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-box__actions { width: 100%; flex-direction: column; }
  .cta-box__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .strategy-detail { padding: 48px 0; }
  .form-wrap { padding: 28px; }
  .contact-info { gap: 18px; }
  .reviews-carousel__track .review-card { min-width: 220px; max-width: 240px; }
  .reviews-carousel__arrow { width: 32px; height: 32px; font-size: 1.1rem; }
  .calendar-wrap iframe { height: 720px; }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 1.75rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__badges { flex-direction: column; gap: 10px; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .logo__text { font-size: 1rem; }
  .logo__img { width: 40px; height: 40px; }
  .section__header h2, .content-block h2, .strategy-detail h2 { font-size: 1.625rem; }
  .page-header h1 { font-size: 1.625rem; }
  .reviews-carousel__track .review-card { min-width: 180px; max-width: 200px; padding: 14px 16px; }
  .reviews-carousel__arrow { width: 28px; height: 28px; font-size: 1rem; }
  .reviews-carousel__track { gap: 10px; }
  .review-card__avatar, .review-card__avatar-img { width: 30px !important; height: 30px !important; font-size: 0.75rem !important; }
  .review-card__text { font-size: 0.75rem; line-height: 1.5; }
  .review-card__name { font-size: 0.8rem; }
  .review-card__stars { font-size: 0.8rem; }
  .calendar-wrap iframe { height: 780px; }
}
