/* =========================================================
   Canada Solution — Feuille de style principale
   Palette : pin profond, rouge érable, crème, or discret
   ========================================================= */

:root {
  --pine: #123c33;
  --pine-dark: #0c2b24;
  --pine-soft: #e6efec;
  --maple: #b3222f;
  --maple-dark: #8f1b26;
  --maple-soft: #fbe9ea;
  --gold: #c9a227;
  --cream: #faf7f1;
  --cream-dark: #f1ece2;
  --ink: #22302c;
  --ink-soft: #52635e;
  --white: #ffffff;
  --line: #e3ddd0;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(12, 43, 36, 0.07);
  --shadow-md: 0 12px 32px rgba(12, 43, 36, 0.12);
  --shadow-lg: 0 24px 60px rgba(12, 43, 36, 0.18);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--pine-dark);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
a { color: var(--maple); text-decoration: none; }
a:hover { color: var(--maple-dark); }
ul { padding-left: 1.2em; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--maple); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 0; }

.section { padding: 84px 0; }
.section-alt { background: var(--pine-dark); color: #e9f0ed; }
.section-alt h2, .section-alt h3 { color: #fff; }
.section-soft { background: var(--pine-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 0.9em;
}
.section-alt .eyebrow { color: var(--gold); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--maple); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--maple-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--pine-dark); }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-dark); color: #fff; }
.btn-small { padding: 10px 20px; font-size: 0.92rem; }
.btn-block { display: block; width: 100%; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--pine-dark);
}
.brand strong { color: var(--maple); font-weight: 700; }
.brand-mark { font-size: 1.5rem; }
.brand:hover { color: var(--pine-dark); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.site-nav a:not(.btn) { color: var(--ink); font-weight: 500; position: relative; padding: 6px 0; }
.site-nav a:not(.btn):hover { color: var(--maple); }
.site-nav a.active { color: var(--maple); }
.site-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--maple); border-radius: 2px;
}
.nav-lang {
  display: flex; align-items: center; margin-left: 8px;
}
.nav-lang .gt_switcher {
  display: inline-flex !important;
  align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.88rem;
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-lang .gt_switcher:hover { border-color: var(--maple); color: var(--maple) !important; }
.nav-lang img.gt_globe { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--pine-dark); border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Héro ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  background: linear-gradient(100deg, rgba(12, 43, 36, 0.94) 0%, rgba(12, 43, 36, 0.72) 55%, rgba(12, 43, 36, 0.35) 100%),
              url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  color: #fff;
}
.hero-inner { padding: 110px 0; max-width: 700px; }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead { font-size: 1.22rem; color: rgba(255, 255, 255, 0.88); margin-bottom: 1.6em; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85); font-size: 0.92rem;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ---------- Section mutuel (home) ---------- */
.mutuel-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.mutuel-visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.mutuel-points { list-style: none; padding: 0; margin: 24px 0; }
.mutuel-points li { display: flex; gap: 14px; margin-bottom: 16px; }
.mutuel-points .icon {
  flex: 0 0 42px; height: 42px; border-radius: 12px;
  background: var(--pine-soft); color: var(--pine);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}
.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.bento-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.bento-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 43, 36, 0.05) 0%, rgba(12, 43, 36, 0.86) 100%);
}
.bento-content { position: relative; z-index: 2; }
.bento-content h3 { color: #fff; font-size: 1.22rem; margin-bottom: 4px; }
.bento-content p { margin: 0; font-size: 0.94rem; color: rgba(255, 255, 255, 0.88); }
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-card.center { grid-column: span 2; grid-row: span 2; align-items: center; justify-content: center; text-align: center; }
.bento-card.center .bento-content h3 { font-size: 1.6rem; margin-bottom: 10px; }

/* ---------- Calculatrice ---------- */
.calculator-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.calculator-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--maple);
}
.range-field { margin-bottom: 28px; }
.range-field label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; margin-bottom: 10px; }
.range-field label span { font-family: var(--font-display); font-size: 1.5rem; color: var(--maple); font-weight: 700; }
input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--maple) var(--fill, 50%), var(--line) var(--fill, 50%));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--maple); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(179, 34, 47, 0.4); cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--maple); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(179, 34, 47, 0.4); cursor: grab;
}
.range-hint { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }
.calc-result {
  background: var(--pine-dark); color: #fff; border-radius: var(--radius-sm);
  padding: 24px; margin-top: 8px;
}
.calc-result .row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed rgba(255,255,255,0.18); }
.calc-result .row:last-child { border-bottom: 0; }
.calc-result .row.monthly { font-size: 1.35rem; font-family: var(--font-display); }
.calc-result .row.monthly strong { color: var(--gold); }
.calc-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.calc-side h2 { margin-bottom: 0.3em; }
.calc-side .list { margin-top: 20px; }
.calc-side .list li { margin-bottom: 10px; }

/* ---------- Pourquoi nous choisir ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-sm); border-bottom: 3px solid var(--maple);
  transition: transform 0.25s ease;
}
.why-card:hover { transform: translateY(-4px); }
.why-card .icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--maple-soft);
  color: var(--maple); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.why-card p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--maple) 0%, var(--maple-dark) 100%);
  color: #fff; text-align: center; padding: 72px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 28px; }
.cta-band .btn-outline { border-color: #fff; }

/* ---------- Page hero interne ---------- */
.page-hero {
  background: linear-gradient(100deg, rgba(12, 43, 36, 0.94), rgba(12, 43, 36, 0.6)),
              url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  color: #fff; padding: 92px 0 80px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.86); max-width: 640px; font-size: 1.12rem; }
.page-hero .eyebrow { color: var(--gold); }

/* ---------- Contenu de page ---------- */
.content-block { max-width: 780px; }
.content-block h2 { margin-top: 40px; }
.content-block ul li, .content-block ol li { margin-bottom: 8px; }

/* ---------- Chiffres clés ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
}
.stat-card .value { font-family: var(--font-display); font-size: 2.3rem; color: var(--gold); font-weight: 700; }
.stat-card .label { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Valeurs ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.value-card .icon {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--pine-soft); color: var(--pine); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.value-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.timeline li { padding: 0 0 34px 40px; position: relative; }
.timeline li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pine); border: 4px solid var(--pine-soft);
}
.timeline h3 { margin-bottom: 4px; }
.timeline .year { color: var(--maple); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.timeline p { color: var(--ink-soft); margin: 0; }

/* ---------- Services ---------- */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--line);
}
.service-row:first-of-type { padding-top: 16px; }
.service-row:last-of-type { border-bottom: 0; }
.service-row:nth-child(even) .service-img { order: 2; }
.service-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.service-img img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.service-info h2 { margin-bottom: 0.2em; }
.service-info .lead { color: var(--ink-soft); font-size: 1.08rem; }
.service-feats { list-style: none; padding: 0; margin: 18px 0 26px; }
.service-feats li { display: flex; gap: 10px; margin-bottom: 8px; font-size: 0.97rem; }
.service-feats li::before { content: '✓'; color: var(--maple); font-weight: 700; }

/* ---------- FAQ ---------- */
.accordion { max-width: 780px; }
.acc-item {
  background: var(--white); border-radius: var(--radius-sm); margin-bottom: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.acc-header {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 20px 56px 20px 24px; font: 600 1.05rem var(--font-body);
  color: var(--pine-dark); cursor: pointer; position: relative;
}
.acc-header::after {
  content: '+'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); font-size: 1.6rem; font-weight: 400;
  color: var(--maple); transition: transform 0.25s ease;
}
.acc-item.open .acc-header::after { transform: translateY(-50%) rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-body-inner { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Formulaires ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius); padding: 44px;
  box-shadow: var(--shadow-md); border-top: 5px solid var(--maple);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.92rem; color: var(--pine-dark); }
.form-field label .req { color: var(--maple); }
.form-field input,
.form-field select,
.form-field textarea {
  font: 400 0.98rem var(--font-body);
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--maple);
  box-shadow: 0 0 0 3px rgba(179, 34, 47, 0.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field .hint { font-size: 0.8rem; color: var(--ink-soft); }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--maple); }
.form-check label { font-size: 0.93rem; color: var(--ink); font-weight: 400; }
.field-error { color: var(--maple); font-size: 0.84rem; font-weight: 600; }
.form-error-box {
  background: var(--maple-soft); border: 1px solid var(--maple); color: var(--maple-dark);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 24px; font-size: 0.95rem;
}
.form-success-box {
  background: #e4f0e9; border: 1px solid var(--pine); color: var(--pine-dark);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px;
}
.hp-field { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }

/* ---------- Merci ---------- */
.thanks {
  text-align: center; padding: 110px 0;
}
.thanks-icon {
  width: 92px; height: 92px; margin: 0 auto 28px; border-radius: 50%;
  background: var(--pine-soft); color: var(--pine);
  font-size: 2.6rem; display: flex; align-items: center; justify-content: center;
}
.thanks p.lead { max-width: 560px; margin: 0 auto 30px; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--pine-dark); color: #c8d8d2; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 44px;
  padding: 64px 0 48px;
}
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #c8d8d2; }
.footer-col a:hover { color: var(--gold); }
.brand-footer { color: #fff; margin-bottom: 14px; }
.brand-footer strong { color: var(--gold); }
.brand-footer:hover { color: #fff; }
.footer-about p { font-size: 0.95rem; }
.footer-contact li { font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding: 22px 0; font-size: 0.88rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.footer-legal a { color: #c8d8d2; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */

/* Grille contact (utilisée sur contact.php) */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }

@media (max-width: 1020px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .values-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row, .mutuel-grid, .calculator-wrap, .form-grid { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-img { order: 0; }
  .calc-side { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid > div:first-child { order: -1; }
}

/* Navigation mobile : le menu coulissant est activé dès 900px pour éviter
   que la barre déborde et soit tronquée sur téléphones paysage/tablettes */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--cream);
    padding: 24px 6% calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 90;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; gap: 4px; width: 100%; margin: 0; }
  .site-nav ul li a { display: block; padding: 12px 0; font-size: 1.15rem; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 20px; width: 100%; text-align: center; }
  .nav-lang { margin: 16px 0 0; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 72px 0; }
  .hero p.lead { font-size: 1.08rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { margin-top: 28px; gap: 14px; font-size: 0.86rem; }
  .hero-badges span { width: 100%; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card, .bento-card.wide, .bento-card.tall, .bento-card.center { grid-column: auto; grid-row: auto; min-height: 190px; }
  .stats-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 48px 0 32px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .form-card { padding: 28px; }
  .form-grid { gap: 16px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; }
  .calculator-card { padding: 26px; }
  .calc-result { padding: 20px; }
  .section-head { margin-bottom: 32px; }
  .stat-card { padding: 24px 16px; }
  .why-card, .value-card { padding: 26px; }
}

@media (max-width: 420px) {
  .header-inner { height: 68px; }
  .site-nav { top: 68px; height: calc(100vh - 68px); height: calc(100dvh - 68px); }
  .brand { font-size: 1.18rem; }
  .form-card { padding: 22px; }
  h1 { font-size: 2.1rem; }
}
