/* ============================================================
   SCHOLATUDE MOBILITY — Design System
   Palette : Navy #1B3A6B · Or #F2A900 · Vert #16A34A · Blanc #FFFFFF
   Typo : Plus Jakarta Sans (UI) + Lora (titres élégants)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:      #1B3A6B;
  --navy-dark: #0D2247;
  --navy-light:#2A5199;
  --gold:      #F2A900;
  --gold-dark: #C8890A;
  --green:     #16A34A;
  --green-light:#DCFCE7;
  --white:     #FFFFFF;
  --bg:        #F6F7FB;
  --bg-card:   #FFFFFF;
  --border:    #E2E8F0;
  --text:      #0D1B2A;
  --text-body: #475569;
  --text-light:#94A3B8;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(27,58,107,0.08);
  --shadow:    0 6px 24px rgba(27,58,107,0.12);
  --shadow-lg: 0 16px 48px rgba(27,58,107,0.16);

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
.bg-light { background: var(--bg); }
.bg-white { background: var(--white); }
.bg-navy  { background: var(--navy); color: var(--white); }
.text-center { text-align: center; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; color: var(--text); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 17px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn, .btn-outline, .btn-white, .btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: #14532D; transform: translateY(-1px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ── Header / Nav ──────────────────────────────────────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 20px;
  height: 72px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 54px; width: auto; }

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--navy); background: var(--bg); }
.main-nav a.active { color: var(--navy); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── Pill badge for nav sections ───────────────────────────── */
.nav-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 4px;
  vertical-align: middle;
}
.nav-badge--mob { background: #DBEAFE; color: var(--navy); }
.nav-badge--form { background: var(--green-light); color: var(--green); }

/* ── Hero Sections ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,34,71,0.82) 0%, rgba(27,58,107,0.65) 100%);
}

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

.hero--home {
  background-image: url('images/hero-bg.jpg');
  padding: 120px 0;
}

.hero--france    { background-image: url('images/france.jpg'); }
.hero--canada    { background-image: url('images/canada.jpg'); }
.hero--luxembourg{ background-image: url('images/luxembourg.jpg'); }
.hero--services  { background-image: url('images/services.jpg'); }
.hero--formations{ background-image: url('images/formations.jpg'); }
.hero--contact   { background-image: url('images/contact.jpg'); }
.hero--candidature {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.hero__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* ── Trust bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ── Deux pôles (homepage) ─────────────────────────────────── */
.poles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.pole-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.pole-card--mob {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.pole-card--form {
  background: linear-gradient(135deg, #064E3B 0%, var(--green) 100%);
  color: var(--white);
}

.pole-card__icon {
  font-size: 40px;
  margin-bottom: 18px;
}

.pole-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 14px;
}

.pole-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pole-card__deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

/* ── Destinations cards ────────────────────────────────────── */
.destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dest-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.dest-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-card:hover .dest-card__img img { transform: scale(1.05); }

.dest-card__flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.dest-card__body { padding: 24px; }
.dest-card__body h3 { font-size: 20px; margin-bottom: 10px; }
.dest-card__body p { font-size: 14px; color: var(--text-body); margin-bottom: 20px; line-height: 1.6; }

/* ── Generic Cards ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card__icon {
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ── Steps ─────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-body); }

/* ── Info Grid (destination pages) ────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.info-box {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.info-box h3 { font-size: 17px; margin-bottom: 10px; }
.info-box p { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ── Highlight box ─────────────────────────────────────────── */
.highlight-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  margin-top: 32px;
}

.highlight-box p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.highlight-box p:last-child { margin-bottom: 0; }

/* ── Stats bar ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-box__number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-box__label {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 24px;
  font-size: 60px;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}
.testimonial-card__author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ── Team ──────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}

.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--border);
}

.team-card h3 { font-size: 20px; margin-bottom: 4px; }
.team-card__role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ── Form ──────────────────────────────────────────────────── */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid--full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.12);
}

textarea { resize: vertical; }

.form-row { margin-bottom: 0; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── WhatsApp float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 30px; height: 30px; }

/* ── Destination page hero sub layout ─────────────────────── */
.page-hero { padding: 80px 0; }
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.88); max-width: 580px; }

/* ── Contact info cards ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-info-item__text span {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 20px;
  font-family: var(--font-body);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }

/* ── Formations specifics ──────────────────────────────────── */
.formation-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.pole-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 32px;
}
.pole-divider__line { flex: 1; height: 1px; background: var(--border); }
.pole-divider__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  white-space: nowrap;
}

/* ── Vision section ────────────────────────────────────────── */
.vision-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--white);
  margin-top: 60px;
}
.vision-section h2 { color: var(--white); margin-bottom: 20px; }
.vision-section p { color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 16px; }
.vision-section h3 { color: var(--gold); margin: 28px 0 14px; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .destinations { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero--home { padding: 90px 0; }
  .hero p { font-size: 16px; }

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 2px;
    z-index: 999;
  }
  .main-nav.show { display: flex; }
  .main-nav a { padding: 11px 14px; border-radius: 8px; }
  .nav-cta { text-align: center; }

  .poles { grid-template-columns: 1fr; }
  .destinations { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 36px; }
  .form-wrapper { padding: 28px 22px; }
  .vision-section { padding: 36px 24px; }
  .highlight-box { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .trust-bar__inner { flex-direction: column; gap: 14px; }
}
