/* =========================================================
   AlloAdom — Design system
   Modern, accessible, performant. Mobile-first.
   ========================================================= */

:root {
  /* Brand palette */
  --color-primary: #1e3a8a;
  --color-primary-dark: #1e40af;
  --color-primary-darker: #172554;
  --color-primary-light: #93c5fd;
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;

  --color-accent: #b45309;
  --color-accent-dark: #92400e;
  --color-accent-50: #fffbeb;

  /* Neutrals */
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #f8fafc;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-text-soft: #64748b;
  --color-border: #e2e8f0;
  --color-border-strong: #cbd5e1;

  /* Status */
  --color-success: #16a34a;
  --color-info: #0284c7;

  /* Typo */
  --font-display: 'Lora', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, .10);
  --shadow-glow: 0 14px 40px -10px rgba(15, 118, 110, .35);

  /* Spacing scale (rem) */
  --s-1: .25rem;
  --s-2: .5rem;
  --s-3: .75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
}

/* ========================== Reset ========================== */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; list-style: none; }

/* ========================== Typography ========================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--color-text);
}
h1 { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--color-text); }
.lead { font-size: 1.15rem; color: var(--color-text-muted); line-height: 1.65; }
small, .small { font-size: .875rem; color: var(--color-text-muted); }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--color-primary-light); color: var(--color-primary-darker); }

/* ========================== Layout ========================== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.25rem; }

section { padding: var(--s-16) 0; }
@media (min-width: 768px) { section { padding: var(--s-20) 0; } }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-3);
}

.section-title { max-width: 720px; margin: 0 auto var(--s-10); text-align: center; }
.section-title h2 { margin-bottom: var(--s-4); }
.section-title p { color: var(--color-text-muted); font-size: 1.07rem; }

/* ========================== Header / Nav ========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(231, 229, 228, .6);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--color-primary-dark);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: grid; place-items: center;
  color: white;
  box-shadow: var(--shadow-md);
}
.brand-mark svg { width: 20px; height: 20px; }
.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-6);
}
.nav-links a {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a.active { color: var(--color-primary); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus { color: #ffffff; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--color-text); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--color-text); transition: transform .25s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: var(--s-4) 0;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  border-radius: 10px;
}
.nav-mobile a:hover { background: var(--color-primary-50); color: var(--color-primary); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ========================== Buttons ========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--color-primary-dark); box-shadow: 0 18px 48px -10px rgba(15, 118, 110, .55); }

.btn-accent {
  background: var(--color-accent);
  color: white;
}
.btn-accent:hover { background: var(--color-accent-dark); }

.btn-ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border-strong);
}
.btn-ghost:hover { background: var(--color-primary-50); border-color: var(--color-primary); color: var(--color-primary-dark); }

.btn-link {
  color: var(--color-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 0;
}
.btn-link:hover { color: var(--color-primary-dark); }
.btn-link svg { transition: transform .2s; }
.btn-link:hover svg { transform: translateX(3px); }

/* ========================== Hero ========================== */
.hero {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px circle at 90% -10%, rgba(94, 234, 212, .25), transparent 55%),
    radial-gradient(600px circle at -10% 80%, rgba(249, 115, 22, .12), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  gap: var(--s-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-16); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-primary-50);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary-100);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: var(--s-5);
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--color-primary); border-radius: 50%; }
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
  position: relative;
}
.hero p.lead { margin-bottom: var(--s-8); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin-top: var(--s-10);
  padding-top: var(--s-6);
  border-top: 1px solid var(--color-border);
}
.hero-trust-item { display: flex; align-items: center; gap: .55rem; color: var(--color-text); font-size: .9rem; font-weight: 600; }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-stat-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .85rem;
}
.hero-stat-card.bottom-left { left: -16px; bottom: 28px; }
.hero-stat-card.top-right { right: -16px; top: 28px; }
.hero-stat-card .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--color-primary-50);
  color: var(--color-primary);
  display: grid; place-items: center;
}
.hero-stat-card strong { display: block; font-size: 1.05rem; line-height: 1.2; }
.hero-stat-card span { font-size: .8rem; color: var(--color-text-muted); }

/* ========================== Cards ========================== */
.card-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card-grid.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.card-grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(15, 118, 110, .04));
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary-50), var(--color-primary-100));
  color: var(--color-primary-dark);
  display: grid; place-items: center;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 600; }
.service-card p { color: var(--color-text-muted); font-size: .95rem; line-height: 1.55; }
.service-card .card-link {
  margin-top: auto;
  padding-top: var(--s-4);
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .92rem;
}
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.service-card:hover .card-link svg { transform: translateX(3px); }

.service-card.featured {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border-color: transparent;
}
.service-card.featured h3, .service-card.featured p { color: white; }
.service-card.featured p { opacity: .9; }
.service-card.featured .icon-wrap { background: rgba(255,255,255,.15); color: white; }
.service-card.featured .card-link { color: white; }

/* Image cards (with photo header) */
.image-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.image-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.image-card .img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-alt);
}
.image-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.image-card:hover .img-wrap img { transform: scale(1.05); }
.image-card .body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.image-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; }
.image-card .meta { font-size: .82rem; color: var(--color-text-muted); display: flex; gap: var(--s-3); align-items: center; }
.image-card .body p { color: var(--color-text-muted); font-size: .95rem; }

.tag {
  display: inline-block;
  padding: .25rem .65rem;
  background: var(--color-primary-50);
  color: var(--color-primary-dark);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ========================== Features list ========================== */
.feature-list {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.feature {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}
.feature .icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-primary-50);
  color: var(--color-primary);
  display: grid; place-items: center;
}
.feature .icon-wrap svg { width: 22px; height: 22px; }
.feature h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: .25rem; }
.feature p { color: var(--color-text-muted); font-size: .95rem; line-height: 1.55; }

/* ========================== Stats / Numbers ========================== */
.stats {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: var(--s-5) 0; }
.stat .value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 1.6vw, 3rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}
.stat .label { color: var(--color-text-muted); font-size: .92rem; margin-top: .35rem; }

/* ========================== Testimonials ========================== */
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--color-text);
  font-style: italic;
}
.testimonial blockquote::before { content: '"'; font-size: 2rem; color: var(--color-primary-light); line-height: 0; vertical-align: -.4em; margin-right: .15em; }
.testimonial-author { display: flex; align-items: center; gap: var(--s-3); }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; overflow: hidden;
  background: var(--color-primary-100);
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .85rem; color: var(--color-text-muted); }

/* ========================== FAQ ========================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--s-2) 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) 0;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform .25s ease;
  font-weight: 400;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 var(--s-4);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========================== CTA banner ========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(94,234,212,.3), transparent 65%);
  pointer-events: none;
}
.cta-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 768px) { .cta-banner-grid { grid-template-columns: 1.5fr 1fr; gap: var(--s-10); } }
.cta-banner h2 { color: white; margin-bottom: var(--s-3); }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: flex-start; }
@media (min-width: 768px) { .cta-banner-actions { justify-content: flex-end; } }

/* ========================== Footer ========================== */
.site-footer {
  background: #172554;
  color: rgba(255,255,255,.78);
  padding: var(--s-16) 0 var(--s-8);
  margin-top: var(--s-16);
}
.footer-grid {
  display: grid;
  gap: var(--s-8);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-12);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand .brand-mark {
  background: linear-gradient(135deg, var(--color-primary-light), white);
  color: var(--color-primary-dark);
}
.footer-brand .brand { color: white; }
.footer-brand p { font-size: .92rem; max-width: 320px; margin-top: var(--s-4); color: rgba(255,255,255,.7); }
.footer-col h4 { color: white; margin-bottom: var(--s-3); font-size: .95rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a { font-size: .92rem; color: rgba(255,255,255,.78); transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: white; }

/* ========================== Page header ========================== */
.page-header {
  padding: var(--s-16) 0 var(--s-12);
  background: linear-gradient(180deg, var(--color-primary-50), transparent);
  text-align: center;
}
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--s-4);
}
.page-header .breadcrumb a { color: var(--color-primary); }
.page-header .breadcrumb span.sep { color: var(--color-border-strong); }
.page-header h1 { margin-bottom: var(--s-4); max-width: 760px; margin-left: auto; margin-right: auto; }
.page-header p { color: var(--color-text-muted); max-width: 640px; margin: 0 auto; font-size: 1.07rem; }

/* ========================== Article body ========================== */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.article-body h2 { margin-top: var(--s-12); margin-bottom: var(--s-4); }
.article-body h3 { margin-top: var(--s-8); margin-bottom: var(--s-3); }
.article-body p { margin-bottom: var(--s-5); color: var(--color-text); }
.article-body ul, .article-body ol { margin: 0 0 var(--s-5) 1.25rem; }
.article-body ul li, .article-body ol li { margin-bottom: .5rem; padding-left: .35rem; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--color-primary-dark); }
.article-body a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article-body a:hover { color: var(--color-primary-dark); }
.article-body blockquote {
  border-left: 3px solid var(--color-primary);
  padding: var(--s-2) var(--s-5);
  font-style: italic;
  color: var(--color-text-muted);
  background: var(--color-primary-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--s-6) 0;
}
.article-body figure { margin: var(--s-6) 0; }
.article-body figure img { border-radius: var(--radius-md); }
.article-body figcaption { font-size: .85rem; color: var(--color-text-muted); text-align: center; margin-top: .5rem; }
.article-body .info-box {
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-100);
  border-radius: var(--radius-md);
  padding: var(--s-5);
  margin: var(--s-6) 0;
}
.article-body .info-box h4 {
  color: var(--color-primary-dark);
  margin-bottom: .5rem;
  display: flex; align-items: center; gap: .5rem;
}

/* ========================== Forms ========================== */
.form { display: grid; gap: var(--s-4); }
.form-row { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: .35rem; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .checkbox { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; color: var(--color-text-muted); }
.form .checkbox input { width: auto; margin-top: .15rem; }

/* ========================== Two-column section ========================== */
.split {
  display: grid;
  gap: var(--s-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-16); }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: var(--s-4); }
.split-text p { color: var(--color-text-muted); margin-bottom: var(--s-5); font-size: 1.05rem; line-height: 1.7; }
.split-text ul.checks { display: grid; gap: var(--s-3); margin-bottom: var(--s-6); }
.split-text ul.checks li {
  padding-left: 1.85rem;
  position: relative;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.55;
}
.split-text ul.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}

/* ========================== Pricing / Tarifs cards ========================== */
.pricing {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.price-card.popular {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  position: relative;
}
.price-card.popular::before {
  content: 'Le plus demandé';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: .25rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}
.price-card .price small { font-size: .9rem; color: var(--color-text-muted); }
.price-card ul { display: grid; gap: .5rem; margin: var(--s-3) 0; }
.price-card ul li { padding-left: 1.5rem; position: relative; font-size: .92rem; color: var(--color-text-muted); }
.price-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* ========================== Utility ========================== */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--s-4); }
.mb-4 { margin-bottom: var(--s-4); }
.mt-8 { margin-top: var(--s-8); }
.mb-8 { margin-bottom: var(--s-8); }
.bg-alt { background: var(--color-surface-alt); }

/* ========================== Animations ========================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp .7s cubic-bezier(.22,.61,.36,1) forwards;
  }
  .fade-in.delay-1 { animation-delay: .1s; }
  .fade-in.delay-2 { animation-delay: .2s; }
  .fade-in.delay-3 { animation-delay: .3s; }
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Print */
@media print