/* style.css — Ma Trousse Scolaire — Harmonisé 60/30/10 */

/*
  PALETTE :
  60% → Blanc / surfaces neutres     → #ffffff, #f7fafb, #f2f7f8
  30% → Bleu-vert profond (primary)  → #155767, #0f4050
  10% → Or (accent)                  → #b8860b, #8f6708
*/

/* =========================
   VARIABLES
========================= */

:root {
  /* 60% — Fond neutre */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7fafb;
  --surface-tint: #eef4f6;

  /* Textes */
  --text: #0f1f26;
  --muted: #5a7a85;
  --muted-strong: #3d5a64;

  /* 30% — Couleur principale */
  --primary: #155767;
  --primary-dark: #0f4050;
  --primary-deeper: #092d3a;
  --primary-soft: rgba(21, 87, 103, 0.08);
  --primary-soft-md: rgba(21, 87, 103, 0.13);
  --primary-soft-str: rgba(21, 87, 103, 0.18);

  /* 10% — Accent or */
  --accent: #b8860b;
  --accent-dark: #8f6708;
  --accent-soft: rgba(184, 134, 11, 0.1);
  --accent-soft-str: rgba(184, 134, 11, 0.18);

  /* Borders */
  --border: rgba(21, 87, 103, 0.1);
  --border-soft: rgba(21, 87, 103, 0.06);

  /* Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(15, 31, 38, 0.05);
  --shadow-sm: 0 8px 24px rgba(15, 31, 38, 0.07);
  --shadow-md: 0 16px 44px rgba(15, 31, 38, 0.09);
  --shadow-lg: 0 28px 70px rgba(15, 31, 38, 0.11);
  --shadow-pri: 0 14px 40px rgba(21, 87, 103, 0.22);

  --container: 1240px;

  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* =========================
   BASE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
}

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

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 12px;
  z-index: 60;
  padding: 12px 0 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 10px 14px 10px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: 0 8px 36px rgba(21, 87, 103, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 0.2s, box-shadow 0.2s, background 0.2s;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.brand-xl img {
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(21, 87, 103, 0.14);
  transition: height 0.2s, border-radius 0.2s;
}

.brand-xl .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-xl strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--primary-deeper);
}

.brand-xl span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* Nav links in header */
.header-float-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

/* Compact state */
.header.is-compact .topbar {
  padding: 8px 12px 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 42px rgba(21, 87, 103, 0.12);
}

.header.is-compact .brand-xl img {
  height: 40px;
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
  }

  .header-float-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 680px) {
  .header {
    top: 8px;
    padding-top: 8px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .brand-xl img {
    height: 42px;
  }

  .brand-xl strong {
    font-size: 16px;
  }

  .brand-xl span {
    display: none;
  }

  .header-float-actions {
    justify-content: stretch;
    flex-wrap: wrap;
    gap: 6px;
  }

  .nav-link {
    display: none;
  }

  .header-float-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

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

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13.5px;
  border-radius: var(--radius-xs);
}

/* Primary — or/accent (10%) pour CTA fort */
.btn-primary {
  color: #ffffff;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent-dark);
  box-shadow: 0 10px 28px rgba(184, 134, 11, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(184, 134, 11, 0.36);
}

/* Outline — primary/bleu-vert (30%) */
.btn-outline {
  color: var(--primary);
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  background: var(--primary-soft);
  border-color: var(--primary-soft-md);
  box-shadow: var(--shadow-sm);
}

/* Ghost — transparent */
.btn-ghost {
  color: var(--muted-strong);
  background: transparent;
  border-color: var(--border);
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--primary);
  background: var(--primary-soft);
  border-color: var(--border);
}

/* =========================
   TYPOGRAPHY HELPERS
========================= */

em {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  color: var(--primary);
}

/* =========================
   SECTION LABELS
========================= */

.section-label {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 99px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.14;
  color: var(--primary-deeper);
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  padding: 100px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% -10%, var(--primary-soft) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 5% 100%, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kicker {
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 99px;
  background: var(--primary-soft);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.h-title {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--primary-deeper);
}

.h-title em {
  font-size: inherit;
  letter-spacing: -1.5px;
}

.h-sub {
  margin: 0;
  color: var(--muted-strong);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  color: var(--primary-deeper);
  font-size: 14px;
  font-weight: 600;
  width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-product-frame {
  position: relative;
  z-index: 1;
}

@media (max-width: 1050px) {
  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 52px 0 44px;
  }

  .h-title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .h-sub {
    font-size: 15.5px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* =========================
   FRAMES
========================= */

.frame {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border-soft);
}

.frame-top strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-deeper);
}

.frame-meta {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

.frame-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 99px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
}

.frame-body {
  padding: 20px;
  background: var(--surface-soft);
}

.frame-body img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* =========================
   LA QUOTIDIENNE — version allégée
========================= */

.daily-section {
  background:
    radial-gradient(ellipse 65% 60% at 15% 20%, rgba(21, 87, 103, 0.04) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 90% 80%, rgba(184, 134, 11, 0.04) 0%, transparent 62%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.daily-layout-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 64px;
  align-items: center;
}

.daily-content {
  max-width: 680px;
}

.daily-simple-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 360px;
}

.daily-simple-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.daily-simple-point span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  background: var(--primary-soft);
  font-size: 17px;
}

.daily-simple-point strong {
  color: var(--primary-deeper);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
}

.daily-question-cloud {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 22px;
  max-width: 640px;
}

.daily-question-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(184, 134, 11, 0.1);
  background: rgba(184, 134, 11, 0.06);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.daily-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.daily-phone-frame {
  width: 100%;
  max-width: 360px;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 251, 0.82));
  border: 1px solid var(--border);
  box-shadow: 0 28px 80px rgba(15, 31, 38, 0.12);
}

.daily-phone-frame-soft {
  opacity: 0.94;
}

.daily-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px 14px;
}

.daily-phone-top strong {
  color: var(--primary-deeper);
  font-size: 14px;
  font-weight: 800;
}

.daily-phone-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.daily-phone-frame img {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  opacity: 0.84;
  filter: saturate(0.92) contrast(0.97);
  transition: opacity 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

.daily-phone-frame:hover img {
  opacity: 0.94;
  filter: saturate(1) contrast(1);
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .daily-layout-simple {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .daily-content {
    max-width: none;
  }

  .daily-visual {
    justify-content: flex-start;
  }

  .daily-phone-frame {
    max-width: 340px;
  }
}

@media (max-width: 680px) {
  .daily-simple-point {
    align-items: flex-start;
  }

  .daily-phone-frame {
    max-width: 100%;
  }
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 80px 0;
}

.section-tinted {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 36px;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .topbar-actions {
    width: 100%;
  }

  .topbar-actions .btn {
    width: 100%;
  }
}

/* =========================
   CARDS
========================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.card h3 {
  margin: 0 0 8px;
  color: var(--primary-deeper);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 450;
}

/* Feature cards */
.feature-card .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  font-size: 22px;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft-str));
  opacity: 0;
  transition: opacity 0.2s;
}

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

/* Problem cards */
.problem-card {
  display: flex;
  flex-direction: column;
}

.problem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  font-size: 20px;
}

.problem-question {
  margin: 2px 0 14px;
  padding: 0;
  color: var(--accent-dark);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.problem-question::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 0 10px;
  border-radius: 99px;
  background: var(--accent);
  opacity: 0.45;
}

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

/* =========================
   VIDEO
========================= */

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--primary-deeper);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   AVANT / APRÈS
========================= */

.about-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  flex: 0 0 auto;
}

.about-ba-card {
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-ba-before {
  border-left: 4px solid rgba(90, 122, 133, 0.35);
}

.about-ba-after {
  border-left: 4px solid var(--primary);
}

.about-ba-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.about-ba-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-ba-tag-before {
  background: rgba(90, 122, 133, 0.1);
  color: var(--muted-strong);
}

.about-ba-tag-after {
  background: var(--primary-soft);
  color: var(--primary);
}

.about-ba-mini {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.about-ba-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
}

.about-ba-item-after {
  background: var(--primary-soft);
  border-color: rgba(21, 87, 103, 0.08);
}

.about-ba-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(90, 122, 133, 0.08);
  font-size: 18px;
}

.about-ba-ico-after {
  background: rgba(21, 87, 103, 0.12);
}

.about-ba-item strong {
  display: block;
  color: var(--primary-deeper);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
}

.about-ba-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 450;
}

.after-before-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 860px) {
  .about-ba {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ba-divider {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .after-before-actions {
    justify-content: stretch;
  }

  .after-before-actions .btn {
    width: 100%;
  }
}

/* =========================
   À PROPOS CARD
========================= */

.about-more-card {
  max-width: 500px;
  margin: 32px auto 0;
  text-align: center;
  padding: 32px 28px;
  border-color: var(--border);
}

.about-more-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  font-size: 22px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: gap 0.15s;
}

.inline-link:hover {
  gap: 8px;
  text-decoration: underline;
}

/* =========================
   PAGE OUTILS
========================= */

.tools-hero {
  padding-bottom: 78px;
}

.tools-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.tools-intro {
  padding-top: 70px;
}

.tools-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tools-highlight-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.tools-highlight-card span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  font-size: 21px;
}

.tools-highlight-card strong {
  display: block;
  color: var(--primary-deeper);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.tools-highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tool-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

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

.tool-card:nth-child(even) {
  grid-template-columns: minmax(380px, 1fr) minmax(0, 0.85fr);
}

.tool-card:nth-child(even) .tool-copy {
  order: 2;
}

.tool-card:nth-child(even) .tool-media {
  order: 1;
}

.tool-copy {
  min-width: 0;
}

.tool-kicker {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-copy h3 {
  margin: 0 0 10px;
  color: var(--primary-deeper);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 850;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.tool-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 460;
  line-height: 1.68;
  max-width: 620px;
}

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

.tool-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.07);
  border: 1px solid rgba(184, 134, 11, 0.12);
  color: #6a4b07;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.3;
}

.tool-media {
  min-width: 0;
}

.tool-media video {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--primary-deeper);
}

@media (max-width: 1080px) {
  .tool-card,
  .tool-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .tool-card:nth-child(even) .tool-copy,
  .tool-card:nth-child(even) .tool-media {
    order: initial;
  }

  .tool-media video {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .tools-highlight-grid {
    grid-template-columns: 1fr;
  }

  .tools-hero {
    padding-bottom: 54px;
  }

  .tool-card {
    padding: 22px;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .tool-card {
    padding: 18px;
    border-radius: var(--radius);
  }

  .tool-copy p {
    font-size: 14.5px;
  }
}

/* =========================
   PRICING
========================= */

.pricing-wrapper {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pricing-card {
}

.pricing-head {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary) 100%);
  color: #ffffff;
}

.pricing-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 10px;
}

.price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: #ffffff;
}

.price-unit {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.75;
}

.pricing-promo {
  margin-top: 10px;
  font-size: 14.5px;
  font-weight: 500;
  opacity: 0.85;
}

.pricing-promo strong {
  font-weight: 800;
  color: #ffd166;
}

.pricing-body {
  padding: 24px 28px 28px;
}

.pricing-list {
  margin: 0 0 22px;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* Role cards inside pricing */
.pricing-role-grid {
  gap: 14px;
}

.pricing-role-card {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  box-shadow: none;
}

.pricing-role-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.pricing-role-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-role-sub {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-role-card ul {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 13.5px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.temporary-accounts {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(184, 134, 11, 0.15);
}

.temporary-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.temporary-accounts ul {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 13.5px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.temporary-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .pricing-role-grid {
    grid-template-columns: 1fr;
  }

  .pricing-body {
    padding: 20px;
  }

  .pricing-head {
    padding: 22px 20px 18px;
  }
}

/* =========================
   CTA BAND
========================= */

.cta {
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(21, 87, 103, 0.06) 0%, rgba(184, 134, 11, 0.04) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-deeper);
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.cta-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 450;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

@media (max-width: 860px) {
  .cta {
    padding: 24px;
  }

  .cta-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* =========================
   FOOTER
========================= */

.pro-footer {
  margin-top: 0;
  padding: 0;
  background: var(--primary-deeper);
  color: rgba(255, 255, 255, 0.6);
  border-top: none;
}

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

.pro-footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 0 24px;
}

/* Brand in footer — light version */
.pro-footer .brand-xl strong {
  color: #ffffff;
  font-size: 17px;
}

.pro-footer .brand-xl span {
  color: rgba(255, 255, 255, 0.5);
}

.pro-footer .brand-xl img {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.pro-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pro-footer-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.pro-footer-nav a:hover {
  color: #ffffff;
}

.pro-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.pro-footer-legal {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.pro-footer-mentions a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

.pro-footer-mentions a:hover {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 860px) {
  .pro-footer-container {
    padding: 0 20px;
  }

  .pro-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease, visibility 0.18s;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 25, 32, 0.72);
  backdrop-filter: blur(6px);
}

.lightbox-panel {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: min(1100px, calc(100vw - 32px));
  margin: 28px auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.lightbox-panel img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px rgba(2, 8, 14, 0.6);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 99px;
  background: #ffffff;
  color: var(--primary-deeper);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  z-index: 3;
}

@media (max-width: 680px) {
  .lightbox {
    padding: 16px;
  }

  .lightbox-panel {
    max-width: calc(100vw - 20px);
    margin: 20px auto;
  }

  .lightbox-panel img {
    max-height: none;
    max-width: 100%;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* =========================
   ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

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

/* Staggered delays */
[data-reveal-delay="30"] {
  transition-delay: 30ms;
}

[data-reveal-delay="40"] {
  transition-delay: 40ms;
}

[data-reveal-delay="60"] {
  transition-delay: 60ms;
}

[data-reveal-delay="80"] {
  transition-delay: 80ms;
}

[data-reveal-delay="90"] {
  transition-delay: 90ms;
}

[data-reveal-delay="120"] {
  transition-delay: 120ms;
}

[data-reveal-delay="150"] {
  transition-delay: 150ms;
}

[data-reveal-delay="180"] {
  transition-delay: 180ms;
}

[data-reveal-delay="210"] {
  transition-delay: 210ms;
}

[data-reveal-delay="240"] {
  transition-delay: 240ms;
}

[data-reveal-delay="260"] {
  transition-delay: 260ms;
}

[data-reveal-delay="280"] {
  transition-delay: 280ms;
}

[data-reveal-delay="300"] {
  transition-delay: 300ms;
}

/* Divider utilitaire */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-soft);
  margin: 0;
  border: none;
}

/* =========================
   PAGE À PROPOS
========================= */

.about-hero {
  padding-bottom: 78px;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.about-context {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: -8px 0 30px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.about-context-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-deeper);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}

.about-context-item span {
  font-size: 16px;
}

.about-context-item strong {
  font-weight: 750;
}

.about-context-separator {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.about-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.about-person {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}

.about-person-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(184, 134, 11, 0.14);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.about-avatar-primary {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(21, 87, 103, 0.12);
}

.about-person-head h3 {
  margin: 0;
  color: var(--primary-deeper);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.35px;
  line-height: 1.15;
}

.about-role {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

.about-person-intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  min-height: 104px;
}

.about-person-points {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
}

.about-point-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-soft);
  font-size: 18px;
}

.about-point strong {
  display: block;
  color: var(--primary-deeper);
  font-size: 14.5px;
  font-weight: 750;
  line-height: 1.25;
}

.about-point-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 450;
}

@media (max-width: 980px) {
  .about-people {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .about-hero {
    padding-bottom: 54px;
  }

  .about-context {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .about-context-separator {
    display: none;
  }

  .about-person {
    padding: 22px;
  }

  .about-person-head {
    align-items: flex-start;
  }

  .about-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

@media (max-width: 980px) {
  .about-person-intro {
    min-height: auto;
  }
}

/* =========================
   PAGE RGPD / LÉGAL
========================= */

.legal-hero {
  padding-bottom: 78px;
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.legal-intro-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.legal-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 920px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.legal-intro-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  font-size: 22px;
}

.legal-intro-card h2 {
  margin: 0 0 8px;
  color: var(--primary-deeper);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.legal-intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 500;
}

.legal-section {
  padding-top: 72px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 118px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.legal-summary-title {
  margin-bottom: 16px;
  color: var(--primary-deeper);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.legal-summary-items {
  display: grid;
  gap: 12px;
}

.legal-summary-item {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border-soft);
}

.legal-summary-item span {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 18px;
}

.legal-summary-item strong {
  display: block;
  color: var(--primary-deeper);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.3;
}

.legal-summary-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.45;
  font-weight: 500;
}

.legal-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.legal-prose {
  max-width: 860px;
}

.legal-prose section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--border-soft);
}

.legal-prose h2 {
  margin: 0 0 14px;
  color: var(--primary-deeper);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.4px;
  line-height: 1.22;
}

.legal-prose h3 {
  margin: 24px 0 10px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.legal-prose p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
}

.legal-prose ul {
  margin: 10px 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-prose li {
  margin: 7px 0;
  padding-left: 3px;
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 500;
}

.legal-prose strong {
  color: var(--primary-deeper);
  font-weight: 800;
}

.legal-prose a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.legal-prose a:hover {
  text-decoration: underline;
}

.legal-prose address {
  margin: 12px 0 0;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  color: var(--muted);
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-note {
  margin-top: 16px !important;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(184, 134, 11, 0.07);
  border: 1px solid rgba(184, 134, 11, 0.14);
  color: var(--muted-strong) !important;
  font-weight: 650 !important;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .legal-hero {
    padding-bottom: 54px;
  }

  .legal-intro-card {
    flex-direction: column;
    padding: 22px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-prose section + section {
    margin-top: 30px;
    padding-top: 28px;
  }

  .legal-prose h2 {
    font-size: 20px;
  }

  .legal-prose p,
  .legal-prose li {
    font-size: 14.5px;
  }
}

/* =========================
   PAGE CONTACT
========================= */

.contact-hero {
  padding-bottom: 78px;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 60px;
  align-items: center;
}

.contact-hero-content {
  max-width: 820px;
}

.contact-preview-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.contact-preview-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  font-size: 22px;
}

.contact-preview-card h2 {
  margin: 0 0 10px;
  color: var(--primary-deeper);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.contact-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.contact-preview-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-preview-list div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
}

.contact-preview-list span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  background: var(--primary-soft);
  font-size: 16px;
}

.contact-preview-list strong {
  color: var(--primary-deeper);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.contact-booking-section {
  padding-top: 72px;
}

.contact-booking-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border-soft);
}

.contact-booking-head strong {
  color: var(--primary-deeper);
  font-size: 15px;
  font-weight: 800;
}

.contact-booking-body {
  padding: 0;
  background: var(--surface);
}

.contact-calendly-widget {
  min-width: 320px;
  height: 720px;
}

@media (max-width: 1050px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-preview-card {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .contact-hero {
    padding-bottom: 54px;
  }

  .contact-preview-card {
    padding: 22px;
  }

  .contact-booking-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-calendly-widget {
    height: 760px;
  }
}