/* ================================================================
   Ulnavor — Static stylesheet
   Faithful port of Tailwind v4 + globals.css design tokens
   ================================================================ */

/* ── Brand tokens ── */
:root {
  --background: #F8F5EE;      /* Ivoire */
  --foreground: #1A1A2E;      /* Nuit */
  --card: #FFFFFF;
  --primary: #C9A84C;         /* Or Dorée */
  --primary-dark: #A8853A;
  --secondary: #2C3E50;       /* Ardoise profond */
  --muted: #E8F4F0;           /* Menthe pâle */
  --muted-foreground: #7A7A8C;/* Gris pierre */
  --border: #D4C9B0;
  --slate-light: #3D5166;

  --font-sans: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: #F8F5EE;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1 1 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #F8F5EE; }
::-webkit-scrollbar-thumb { background: #C9A84C; }

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl = 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-narrow {
  width: 100%;
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container, .container-narrow { padding-left: 2rem; padding-right: 2rem; }
}

.section { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .section { padding-top: 6rem; padding-bottom: 6rem; } }

/* Brutalist borders */
.bg-ivory   { background: var(--background); }
.bg-slate   { background: var(--secondary); }
.bg-white-c { background: #fff; }
.bg-night   { background: var(--foreground); }
.stripe-bg {
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 6px,
    rgba(201,168,76,0.08) 6px, rgba(201,168,76,0.08) 12px
  );
}
.stripe-bg-20 {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 6px,
    rgba(201,168,76,0.20) 6px, rgba(201,168,76,0.20) 12px
  );
}

/* Section label (gold bar + text) */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.section-label .bar {
  height: 3px;
  width: 2.5rem;
  background: var(--primary);
  flex-shrink: 0;
}
.section-label .txt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
}

.eyebrow-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.375rem 0.75rem;
  margin-bottom: 1.25rem;
}

/* Gold pulse CTA */
@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.55); }
  50%       { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
}
.pulse-gold { animation: gold-pulse 2.2s ease-in-out infinite; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  padding: 1rem 1.75rem;
  min-height: 52px;
}
.btn svg { flex-shrink: 0; }
.btn-gold {
  background: var(--primary);
  color: var(--foreground);
  border: 3px solid var(--primary);
}
.btn-gold:hover { background: var(--primary-dark); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 3px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--foreground); }
.btn-night {
  background: var(--foreground);
  color: #fff;
  border: 3px solid var(--foreground);
}
.btn-night:hover { background: var(--primary); color: var(--foreground); border-color: var(--primary); }
.btn-sm { padding: 0.875rem 1.5rem; min-height: 48px; }
.btn:disabled { opacity: 0.6; cursor: default; }
.btn-block { width: 100%; }
@media (min-width: 640px) { .btn-auto { width: auto; } }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #F8F5EE;
  border-bottom: 3px solid #1A1A2E;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

.compliance-bar {
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  padding: 0.375rem 1rem;
  text-align: center;
  letter-spacing: 0.025em;
  display: none;
}
@media (min-width: 768px) { .compliance-bar { display: block; } }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.logo-link:hover .name { color: var(--primary); }
.logo-text .sub {
  font-size: 10px;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-desktop a.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s, background-color 0.2s;
}
.nav-desktop a.nav-link:hover { color: var(--primary); background: rgba(44,62,80,0.05); }
.nav-desktop a.nav-cta {
  margin-left: 1rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid var(--foreground);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
}
.nav-desktop a.nav-cta:hover { background: var(--primary-dark); }

.header-mobile { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .header-mobile { display: none; } }
.mobile-call {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.menu-toggle {
  padding: 0.5rem;
  border: 3px solid var(--foreground);
  background: transparent;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
}
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-open { display: none; }
.menu-toggle.open .icon-close { display: block; }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #F8F5EE;
  border-top: 3px solid #1A1A2E;
  overflow: hidden;
}
.nav-mobile.open { display: flex; }
@media (min-width: 768px) { .nav-mobile { display: none !important; } }
.nav-mobile a.nav-link {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.2s, color 0.2s;
}
.nav-mobile a.nav-link:hover { background: var(--secondary); color: #fff; }
.nav-mobile a.nav-cta {
  margin: 1rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: var(--foreground);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid var(--foreground);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--secondary);
  color: var(--background);
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-top: 4rem; padding-bottom: 4rem; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; }
}
.footer-brand-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand-row .name { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; color: #fff; }
.footer-brand-row .sub { font-size: 10px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.15em; }
.footer p.lead { font-size: 0.875rem; color: var(--border); line-height: 1.7; margin-bottom: 1rem; }
.footer p.fine { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; }
.footer h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer ul.links li { margin-bottom: 0.5rem; }
.footer ul.links a { font-size: 0.875rem; color: var(--border); transition: color 0.2s; }
.footer ul.links a:hover { color: var(--primary); }
.footer ul.contact li { display: flex; gap: 0.625rem; margin-bottom: 0.75rem; }
.footer ul.contact svg { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer ul.contact span, .footer ul.contact a { font-size: 0.875rem; color: var(--border); }
.footer ul.contact a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom p { font-size: 0.75rem; color: var(--muted-foreground); }

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--secondary);
  border-top: 3px solid var(--primary);
  padding: 1rem;
  transform: translateY(0);
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}
@media (min-width: 768px) { .cookie-banner { padding: 1.25rem; } }
.cookie-banner.hidden-banner { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) { .cookie-inner { flex-direction: row; align-items: center; } }
.cookie-inner p { font-size: 0.875rem; color: var(--background); line-height: 1.7; flex: 1; }
.cookie-inner p strong { color: var(--primary); }
.cookie-inner a { color: var(--primary); text-decoration: underline; }
.cookie-inner a:hover { color: #fff; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-decline {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 2px solid var(--muted-foreground);
  color: var(--muted-foreground);
  background: transparent;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: #fff; color: #fff; }
.cookie-accept {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--foreground);
  border: 2px solid var(--primary);
  min-height: 44px;
  transition: background-color 0.2s;
}
.cookie-accept:hover { background: var(--primary-dark); }

/* ================================================================
   HERO (home)
   ================================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44,62,80,0.92) 0%, rgba(44,62,80,0.72) 55%, rgba(44,62,80,0.15) 100%);
}
.accent-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); }
.hero-content { position: relative; z-index: 10; padding-top: 4rem; }
.hero-inner { max-width: 42rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--foreground);
}
.hero h1 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 .gold { color: var(--primary); }
.hero p.sub {
  font-size: 1rem;
  color: var(--border);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.hero-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 3rem; }
.trust-row { display: flex; gap: 1rem; margin-bottom: 2rem; }
.trust-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.25rem 0.625rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}
@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
  .hero p.sub { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-stats {
  position: relative;
  z-index: 10;
  background: #fff;
  border-top: 3px solid var(--primary);
}
.stats-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-cell { padding: 1.25rem 1.5rem; text-align: center; border-bottom: 1px solid var(--border); }
.stat-cell:last-child { border-bottom: none; }
@media (min-width: 640px) {
  .stat-cell { border-bottom: none; border-right: 1px solid var(--border); }
  .stat-cell:last-child { border-right: none; }
}
.stat-cell .val { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.stat-cell .lbl { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
@media (min-width: 768px) { .stat-cell .val { font-size: 2.25rem; } }
.stats-note { font-size: 10px; color: var(--muted-foreground); text-align: right; padding: 0.375rem 0.25rem; }

/* ================================================================
   MARQUEE TICKER
   ================================================================ */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee {
  background: var(--primary);
  border-top: 3px solid var(--foreground);
  border-bottom: 3px solid var(--foreground);
  overflow: hidden;
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--foreground);
}
.marquee-dot { width: 6px; height: 6px; background: var(--foreground); border-radius: 9999px; flex-shrink: 0; }

/* ================================================================
   Generic section heading
   ================================================================ */
.h2-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--foreground);
  font-size: 1.875rem;
}
.h2-serif.on-dark { color: #fff; }
.h2-serif .gold { color: var(--primary); }
@media (min-width: 768px) { .h2-serif { font-size: 3rem; } }
.h2-serif.smaller { font-size: 1.875rem; }
@media (min-width: 768px) { .h2-serif.smaller { font-size: 2.25rem; } }

/* ================================================================
   SERVICES OVERVIEW
   ================================================================ */
.services-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .services-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.2s;
  align-self: flex-start;
}
.link-underline:hover { color: var(--primary); }

.brutal-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--foreground);
}
@media (min-width: 768px) { .brutal-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--background);
  border-bottom: 3px solid var(--foreground);
}
.service-card:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .service-card { padding: 2.5rem; border-bottom: none; }
}
.service-card.middle {
  background: var(--secondary);
  color: #fff;
}
@media (min-width: 768px) {
  .service-card.middle { border-left: 3px solid var(--foreground); border-right: 3px solid var(--foreground); }
}
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--foreground);
  background: var(--foreground);
  flex-shrink: 0;
}
.service-card.middle .service-icon { background: var(--primary); border-color: var(--primary); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--foreground); }
.service-card.middle h3 { color: #fff; }
.service-card p { font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.service-card.middle p { color: var(--border); }
.service-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  transition: color 0.2s;
}
.service-more:hover { color: var(--primary); }
.service-card.middle .service-more { color: var(--primary); }
.service-card.middle .service-more:hover { color: #fff; }

/* ================================================================
   MARKET CHART / two-col text+chart
   ================================================================ */
.split-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .split-2 { grid-template-columns: repeat(2, 1fr); } }
.split-2.start { align-items: start; }

.section-white-bordered {
  background: #fff;
  border-top: 3px solid var(--foreground);
  border-bottom: 3px solid var(--foreground);
}

.stat-pair { display: flex; gap: 1.5rem; }
.stat-border-gold { border-left: 3px solid var(--primary); padding-left: 1rem; }
.stat-border-slate { border-left: 3px solid var(--secondary); padding-left: 1rem; }
.stat-border-gold .n, .stat-border-slate .n { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.stat-border-gold .l, .stat-border-slate .l { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }

.chart-box {
  border: 3px solid var(--foreground);
  padding: 1rem;
  background: var(--background);
}
@media (min-width: 768px) { .chart-box { padding: 1.5rem; } }
.chart-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.chart-svg { width: 100%; height: auto; display: block; }

.fine-print { font-size: 10px; color: var(--muted-foreground); margin-top: 1rem; }
.fine-print.right { text-align: right; }
.text-note { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }
.max-sm { max-width: 24rem; }
.max-lg { max-width: 32rem; }
.max-xl { max-width: 36rem; }
.max-2xl { max-width: 42rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }

/* ================================================================
   ESTIMATION FORM
   ================================================================ */
.form-brutal {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--foreground);
}
@media (min-width: 1024px) { .form-brutal { grid-template-columns: repeat(2, 1fr); } }

.form-visual {
  position: relative;
  overflow: hidden;
  background: var(--secondary);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
@media (min-width: 768px) { .form-visual { padding: 3.5rem; } }
.form-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.form-visual .rel { position: relative; z-index: 10; }
.form-visual h2 { font-family: var(--font-serif); font-size: 1.875rem; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.form-visual h2 .gold { color: var(--primary); }
@media (min-width: 768px) { .form-visual h2 { font-size: 2.25rem; } }
.form-visual p { color: var(--border); font-size: 0.875rem; line-height: 1.7; max-width: 24rem; }
.bar-gold { height: 3px; width: 2.5rem; background: var(--primary); margin-bottom: 1rem; }
.form-visual-stats { position: relative; z-index: 10; margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-visual-stats .cell { border: 1px solid rgba(201,168,76,0.4); padding: 1rem; }
.form-visual-stats .cell .n { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.form-visual-stats .cell .l { font-size: 0.75rem; color: var(--border); margin-top: 0.25rem; }

.form-panel { background: #fff; padding: 2rem; }
@media (min-width: 768px) { .form-panel { padding: 3rem; } }
.form-panel h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 1.5rem; }

.field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  min-height: 48px;
}
.field textarea { resize: none; min-height: auto; }
.field select { appearance: none; -webkit-appearance: none; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-foreground); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--primary); }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--destructive, #c0392b); }
.field-error { font-size: 0.75rem; color: #c0392b; display: none; }
.field.invalid .field-error { display: block; }

.form-fields { display: flex; flex-direction: column; gap: 0; }
.form-note { margin-top: 1rem; font-size: 11px; color: var(--muted-foreground); line-height: 1.6; }
.form-note a { text-decoration: underline; }
.form-note a:hover { color: var(--primary); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem 0;
  animation: fade-scale 0.3s ease-out;
}
@keyframes fade-scale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.form-success svg { color: var(--primary); }
.form-success h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--foreground); }
.form-success p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.7; max-width: 20rem; }
.hidden { display: none !important; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   WHY US
   ================================================================ */
.section-slate { background: var(--secondary); }
.brutal-grid-gold {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--primary);
}
@media (min-width: 768px) { .brutal-grid-gold { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary);
}
.why-card:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .why-card { padding: 2.5rem; border-bottom: none; border-right: 3px solid var(--primary); }
  .why-card:last-child { border-right: none; }
}
.why-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 3px solid var(--primary);
}
.why-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: var(--border); line-height: 1.7; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--foreground);
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border-bottom: 3px solid var(--foreground);
}
.testi-card:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .testi-card { border-bottom: none; border-right: 3px solid var(--foreground); }
  .testi-card:last-child { border-right: none; }
}
.testi-card.dark { background: var(--foreground); color: #fff; }
.stars { display: flex; gap: 2px; }
.testi-card p.quote { font-size: 0.875rem; line-height: 1.7; font-style: italic; flex: 1; color: var(--muted-foreground); }
.testi-card.dark p.quote { color: var(--border); }
.testi-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; border-top: 1px solid rgba(212,201,176,0.3); }
.testi-avatar {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  border: 2px solid currentColor;
  flex-shrink: 0;
  color: var(--background);
}
.testi-author .nm { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.testi-card.dark .testi-author .nm { color: #fff; }
.testi-author .ct { font-size: 0.75rem; color: var(--muted-foreground); }
.testi-card.dark .testi-author .ct { color: var(--primary); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: repeat(3, 1fr); } }
.faq-left { grid-column: span 1; }
.faq-left h2 { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
@media (min-width: 768px) { .faq-left h2 { font-size: 2.25rem; } }
.faq-left p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }
.faq-acc { border-top: 3px solid var(--foreground); }
@media (min-width: 1024px) { .faq-acc { grid-column: span 2; } }
.faq-item { border-bottom: 3px solid var(--foreground); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  background: transparent;
  border: none;
  min-height: 60px;
}
.faq-q .q-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
  transition: color 0.2s;
  padding-right: 0.5rem;
}
@media (min-width: 768px) { .faq-q .q-text { font-size: 1.125rem; } }
.faq-q:hover .q-text { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--foreground);
  color: #fff;
  transition: background-color 0.2s, color 0.2s;
}
.faq-q:hover .faq-icon { background: var(--primary); color: var(--foreground); }
.faq-icon .icon-minus { display: none; }
.faq-item.open .faq-icon .icon-plus { display: none; }
.faq-item.open .faq-icon .icon-minus { display: block; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; padding-bottom: 1.25rem; padding-right: 2rem; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner { background: var(--secondary); border-top: 4px solid var(--primary); }
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 1024px) { .cta-inner { flex-direction: row; } }
.cta-text { text-align: center; }
@media (min-width: 1024px) { .cta-text { text-align: left; } }
.cta-text h2 { font-family: var(--font-serif); font-size: 1.875rem; color: #fff; margin-bottom: 0.75rem; }
.cta-text h2 .gold { color: var(--primary); }
@media (min-width: 768px) { .cta-text h2 { font-size: 3rem; } }
.cta-text p { color: var(--border); font-size: 1rem; max-width: 32rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ================================================================
   INTERNAL HERO (about / services / pricing / contact)
   ================================================================ */
.inner-hero-photo {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.inner-hero-photo .bg { position: absolute; inset: 0; }
.inner-hero-photo .bg img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero-photo .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44,62,80,0.90) 0%, rgba(44,62,80,0.55) 100%);
}
.inner-hero-photo .content { position: relative; z-index: 10; padding-top: 4rem; padding-bottom: 4rem; }
.inner-hero-photo h1 { font-family: var(--font-serif); font-size: 2.25rem; color: #fff; margin-bottom: 1rem; }
.inner-hero-photo h1 .gold { color: var(--primary); }
.inner-hero-photo p { color: var(--border); font-size: 1rem; line-height: 1.7; max-width: 36rem; }
@media (min-width: 768px) {
  .inner-hero-photo .content { padding-top: 5rem; padding-bottom: 5rem; }
  .inner-hero-photo h1 { font-size: 3.75rem; }
  .inner-hero-photo p { font-size: 1.125rem; }
}

.inner-hero-slate {
  position: relative;
  background: var(--secondary);
  border-bottom: 4px solid var(--primary);
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) { .inner-hero-slate { padding-top: 6rem; padding-bottom: 6rem; } }
.inner-hero-slate .content { position: relative; z-index: 10; }
.inner-hero-slate h1 { font-family: var(--font-serif); font-size: 2.25rem; color: #fff; margin-bottom: 1rem; }
.inner-hero-slate h1 .gold { color: var(--primary); }
.inner-hero-slate p { color: var(--border); font-size: 1rem; line-height: 1.7; max-width: 42rem; }
@media (min-width: 768px) {
  .inner-hero-slate h1 { font-size: 3.75rem; }
  .inner-hero-slate p { font-size: 1.125rem; }
}

/* ================================================================
   ABOUT — history / values / certifications
   ================================================================ */
.split-brutal {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--foreground);
}
@media (min-width: 1024px) { .split-brutal { grid-template-columns: repeat(2, 1fr); } }
.split-brutal .pad { padding: 2.5rem; }
@media (min-width: 768px) { .split-brutal .pad { padding: 3.5rem; } }
.about-history h2 { font-family: var(--font-serif); font-size: 1.875rem; color: var(--foreground); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-history h2 { font-size: 2.25rem; } }
.about-history .prose p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.about-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 2px solid var(--border);
  padding-top: 2rem;
}
.about-stats .n { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.about-stats .l { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.about-photo { position: relative; min-height: 400px; border-top: 3px solid var(--foreground); }
@media (min-width: 1024px) { .about-photo { border-top: none; border-left: 3px solid var(--foreground); } }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--primary);
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card {
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  border-bottom: 3px solid rgba(201,168,76,0.4);
}
@media (min-width: 640px) {
  .value-card:nth-child(odd) { border-right: 3px solid rgba(201,168,76,0.4); }
  .value-card:nth-last-child(-n+2) { border-bottom: none; }
}
.value-card:last-child { border-bottom: none; }
.value-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}
.value-card h3 { font-family: var(--font-serif); font-size: 1.125rem; color: #fff; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--border); line-height: 1.7; }

.certs-wrap { text-align: center; }
.certs-wrap h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--foreground); margin-bottom: 2rem; }
.certs-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
.cert-badge {
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--foreground);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  transition: background-color 0.2s;
}
.cert-badge:hover { background: var(--primary); }
.certs-wrap p { font-size: 0.875rem; color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; line-height: 1.7; }
.center-cta { text-align: center; }
.center-cta h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--foreground); margin-bottom: 1.5rem; }

/* ================================================================
   SERVICES page
   ================================================================ */
.svc-split {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--foreground);
}
@media (min-width: 1024px) { .svc-split { grid-template-columns: repeat(2, 1fr); } }
.svc-photo { position: relative; min-height: 360px; border-bottom: 3px solid var(--foreground); }
@media (min-width: 1024px) { .svc-photo { border-bottom: none; } }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-photo.rightborder { }
@media (min-width: 1024px) { .svc-photo.leftedge { border-right: 3px solid var(--foreground); } }
@media (min-width: 1024px) { .svc-photo.rightedge { border-left: 3px solid var(--foreground); } }
.svc-tag {
  position: absolute;
  top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
}
.svc-tag.left { left: 1rem; background: var(--primary); color: var(--foreground); }
.svc-tag.right { right: 1rem; background: var(--secondary); color: var(--primary); }
.svc-body { padding: 2rem; }
@media (min-width: 768px) { .svc-body { padding: 3rem; } }
.svc-body h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--foreground); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .svc-body h2 { font-size: 1.875rem; } }
.svc-body .intro { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .order-1 { order: 1; } .order-2 { order: 2; } }

.feature-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.625rem;
}
.feature-list svg { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.callout { margin-top: 1.5rem; padding: 1rem; border-left: 3px solid var(--primary); }
.callout.mint { background: var(--muted); }
.callout.slate { background: var(--secondary); }
.callout.cream { background: #FFF8E7; display: flex; gap: 0.75rem; }
.callout p { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; }
.callout.mint p strong { color: var(--foreground); }
.callout.slate p { color: var(--border); }
.callout.slate p strong { color: var(--primary); }
.callout.cream svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Pie legend */
.pie-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem; margin-top: 0.75rem; }
.pie-legend .li { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--muted-foreground); }
.pie-legend .sw { width: 10px; height: 10px; display: inline-block; }

/* Tarif table */
.table-wrap { border: 3px solid var(--foreground); overflow-x: auto; }
.tarif-table { width: 100%; min-width: 400px; border-collapse: collapse; }
.tarif-table thead tr { background: var(--foreground); }
.tarif-table th {
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.tarif-table th.left { text-align: left; }
.tarif-table th.right { text-align: right; }
.tarif-table tbody tr { border-top: 2px solid var(--border); }
.tarif-table tbody tr:nth-child(odd) { background: #fff; }
.tarif-table tbody tr:nth-child(even) { background: var(--background); }
.tarif-table td { padding: 1rem 1.5rem; font-size: 0.875rem; }
.tarif-table td.prest { color: var(--foreground); font-weight: 500; }
.tarif-table td.tarif { text-align: right; font-weight: 700; color: var(--primary); }

/* ================================================================
   PRICING page
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--foreground);
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
  color: var(--foreground);
  border-bottom: 3px solid var(--foreground);
}
.price-card:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .price-card { padding: 2.5rem; border-bottom: none; border-right: 3px solid var(--foreground); }
  .price-card:last-child { border-right: none; }
}
.price-card.highlight { background: var(--foreground); color: #fff; }
.price-tag {
  align-self: flex-start;
  margin-bottom: 1rem;
  background: var(--primary);
  color: var(--foreground);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
}
.price-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.5rem; color: var(--muted-foreground); }
.price-card.highlight .price-title { color: var(--primary); }
.price-amount { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--foreground); }
.price-card.highlight .price-amount { color: #fff; }
.price-sub { font-size: 0.875rem; margin-bottom: 1.5rem; color: var(--muted-foreground); }
.price-card.highlight .price-sub { color: var(--border); }
.price-features { flex: 1; margin-bottom: 2rem; }
.price-features li { display: flex; gap: 0.625rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.price-features svg { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.price-features span { color: var(--muted-foreground); }
.price-card.highlight .price-features span { color: var(--border); }

/* ================================================================
   CONTACT page
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid var(--foreground);
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-info {
  background: var(--foreground);
  padding: 2rem;
  border-bottom: 3px solid var(--foreground);
}
@media (min-width: 768px) { .contact-info { padding: 2.5rem; } }
@media (min-width: 1024px) { .contact-info { border-bottom: none; border-right: 3px solid var(--foreground); } }
.contact-info h2 { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-item .ic {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .k { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.25rem; }
.contact-item .v, .contact-item a { font-size: 0.875rem; color: var(--border); }
.contact-item a:hover { color: var(--primary); }
.contact-legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--slate-light); }
.contact-legal p { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; }
.contact-form { background: #fff; padding: 2rem; }
@media (min-width: 768px) { .contact-form { padding: 3rem; } }
.contact-form h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--foreground); margin-bottom: 2rem; }

/* ================================================================
   COMPLIANCE page
   ================================================================ */
.compliance-hero {
  background: var(--foreground);
  border-bottom: 4px solid var(--primary);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .compliance-hero { padding-top: 4rem; padding-bottom: 4rem; } }
.compliance-hero .kicker { color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 0.75rem; }
.compliance-hero h1 { font-family: var(--font-serif); font-size: 1.875rem; color: #fff; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .compliance-hero h1 { font-size: 3rem; } }
.compliance-hero .sub { color: var(--border); font-size: 0.875rem; }
.compliance-hero .updated { color: var(--muted-foreground); font-size: 0.75rem; margin-top: 0.5rem; }

.compliance-body { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .compliance-body { padding-top: 4rem; padding-bottom: 4rem; } }
.compliance-card {
  background: #fff;
  border: 3px solid var(--foreground);
  padding: 2rem;
}
@media (min-width: 768px) { .compliance-card { padding: 3rem; } }
.compliance-section { margin-bottom: 2.5rem; }
.compliance-section:last-of-type { margin-bottom: 0; }
.compliance-section h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}
.compliance-section p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }
.compliance-section ul li { display: flex; gap: 0.625rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 0.5rem; }
.compliance-section ul li .dash { color: var(--primary); font-weight: 700; flex-shrink: 0; }
.compliance-actions {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .compliance-actions { flex-direction: row; } }
.compliance-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 44px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.compliance-actions a.primary { background: var(--foreground); color: #fff; border: 2px solid var(--foreground); }
.compliance-actions a.primary:hover { background: var(--primary); color: var(--foreground); border-color: var(--primary); }
.compliance-actions a.ghost { background: transparent; color: var(--foreground); border: 2px solid var(--border); }
.compliance-actions a.ghost:hover { border-color: var(--foreground); }

/* Utility text helpers */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
