/* ============================================================
   HALIROM — Site corporate
   Palette : neutre + accents par produit
   ============================================================ */

:root {
  /* Halirom palette */
  --h-ink: #0b0d12;
  --h-ink-2: #111421;
  --h-fg: #1a1d2b;
  --h-muted: #5a627a;
  --h-line: #e6e8ef;
  --h-soft: #f5f6fa;
  --h-bg: #ffffff;

  /* Accents */
  --h-accent: #2563eb;
  --h-accent-2: #1d4ed8;
  --h-accent-glow: rgba(37, 99, 235, 0.15);

  /* Product accents */
  --ozir: #6366f1;        /* indigo */
  --ozir-2: #4f46e5;
  --ozir-soft: rgba(99, 102, 241, 0.10);

  --otryx: #8b5cf6;       /* violet */
  --otryx-2: #7c3aed;
  --otryx-soft: rgba(139, 92, 246, 0.10);

  --oryx: #3b82f6;        /* blue */
  --oryx-2: #2563eb;
  --oryx-soft: rgba(59, 130, 246, 0.10);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(11, 13, 18, 0.04), 0 2px 8px rgba(11, 13, 18, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 13, 18, 0.06), 0 12px 32px rgba(11, 13, 18, 0.08);
  --shadow-lg: 0 8px 24px rgba(11, 13, 18, 0.08), 0 24px 64px rgba(11, 13, 18, 0.12);

  --container: 1200px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", var(--font-sans);
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --h-ink: #f4f5f8;
    --h-ink-2: #e6e8ef;
    --h-fg: #d8dbe4;
    --h-muted: #8b93a8;
    --h-line: #1f2333;
    --h-soft: #14172a;
    --h-bg: #0b0d12;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5), 0 24px 64px rgba(0, 0, 0, 0.5);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--h-fg);
  background: var(--h-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h-accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--h-ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--h-muted);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--h-bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--h-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--h-ink);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ozir) 0%, var(--otryx) 50%, var(--oryx) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--h-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav a:hover { color: var(--h-ink); background: var(--h-soft); }
.nav a.is-active { color: var(--h-ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px !important;
  background: var(--h-ink);
  color: var(--h-bg) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-pill) !important;
  margin-left: 8px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--h-fg); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { background: var(--h-soft); }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--h-ink); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 72px 0 0;
    background: var(--h-bg);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid var(--h-line);
    transform: translateX(100%);
    transition: var(--transition);
  }
  .nav a { width: 100%; padding: 14px 16px; font-size: 16px; }
  .nav.is-open { transform: translateX(0); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--h-ink);
  color: var(--h-bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--h-ink);
  border: 1px solid var(--h-line);
}
.btn-ghost:hover { border-color: var(--h-ink); background: var(--h-soft); }

.btn-arrow svg { transition: var(--transition); }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 15% 0%, var(--ozir-soft), transparent 60%),
    radial-gradient(800px 400px at 85% 0%, var(--otryx-soft), transparent 60%),
    radial-gradient(600px 300px at 50% 100%, var(--oryx-soft), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 72px; }
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--h-ink);
  margin-bottom: 24px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--ozir), var(--otryx) 50%, var(--oryx));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--h-muted);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--h-line);
  max-width: 520px;
}
.hero-stats .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--h-ink);
  letter-spacing: -0.02em;
}
.hero-stats .lab { font-size: 13px; color: var(--h-muted); }

/* Hero visual: cluster de cartes produit */
.hero-cluster {
  position: relative;
  height: 480px;
  display: none;
}
@media (min-width: 980px) { .hero-cluster { display: block; } }
.cluster-card {
  position: absolute;
  width: 280px;
  padding: 22px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.cluster-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cluster-card .product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.cluster-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cluster-card p { font-size: 13.5px; color: var(--h-muted); line-height: 1.45; }

.cluster-card.c-ozir { top: 0; left: 0; }
.cluster-card.c-ozir .product-tag { background: var(--ozir-soft); color: var(--ozir); }
.cluster-card.c-otryx { top: 130px; right: 0; }
.cluster-card.c-otryx .product-tag { background: var(--otryx-soft); color: var(--otryx); }
.cluster-card.c-oryx { bottom: 0; left: 60px; }
.cluster-card.c-oryx .product-tag { background: var(--oryx-soft); color: var(--oryx); }

/* ===== Trust bar ===== */
.trust {
  padding: 48px 0;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
  background: var(--h-soft);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h-muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
}
.trust-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--h-muted);
  opacity: 0.7;
  letter-spacing: -0.01em;
}

/* ===== Solutions cards ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .solutions-grid { grid-template-columns: repeat(3, 1fr); } }

.solution-card {
  position: relative;
  padding: 36px 32px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-accent-soft, transparent), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.solution-card:hover::before { opacity: 1; }

.solution-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.solution-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--h-ink);
  margin-bottom: 6px;
}
.solution-card .sub {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.solution-card .desc {
  color: var(--h-muted);
  margin-bottom: 24px;
  font-size: 15px;
  flex: 1;
}
.solution-card .features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution-card .features li {
  font-size: 14.5px;
  color: var(--h-fg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.solution-card .features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent, var(--h-accent));
  margin-top: 9px;
  flex-shrink: 0;
}

.solution-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--card-accent, var(--h-accent));
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.solution-card .more svg { width: 16px; height: 16px; transition: var(--transition); }
.solution-card .more:hover svg { transform: translateX(4px); }

.solution-card.is-ozir { --card-accent: var(--ozir); --card-accent-soft: var(--ozir-soft); }
.solution-card.is-ozir .ico { background: linear-gradient(135deg, var(--ozir), var(--ozir-2)); }
.solution-card.is-ozir .sub { color: var(--ozir); }

.solution-card.is-otryx { --card-accent: var(--otryx); --card-accent-soft: var(--otryx-soft); }
.solution-card.is-otryx .ico { background: linear-gradient(135deg, var(--otryx), var(--otryx-2)); }
.solution-card.is-otryx .sub { color: var(--otryx); }

.solution-card.is-oryx { --card-accent: var(--oryx); --card-accent-soft: var(--oryx-soft); }
.solution-card.is-oryx .ico { background: linear-gradient(135deg, var(--oryx), var(--oryx-2)); }
.solution-card.is-oryx .sub { color: var(--oryx); }

/* ===== About / Halirom ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.about-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--h-ink);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-content p { font-size: 17px; color: var(--h-muted); margin-bottom: 16px; }

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  padding: 20px;
  background: var(--h-soft);
  border-radius: var(--radius);
  border: 1px solid var(--h-line);
}
.value-item .v-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--h-bg);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--h-accent);
}
.value-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 4px;
}
.value-item p { font-size: 14px; color: var(--h-muted); margin: 0; }

.about-visual {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--ozir-soft), var(--otryx-soft) 50%, var(--oryx-soft));
  border-radius: var(--radius-lg);
  border: 1px solid var(--h-line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, var(--ozir), var(--otryx) 50%, var(--oryx));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.about-visual .seal {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--h-bg);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--h-line);
}
.about-visual .seal-text {
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--h-ink);
}
.about-visual .seal-text small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h-muted);
  margin-top: 4px;
}

/* ===== Approach (process) ===== */
.approach { background: var(--h-soft); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  padding: 32px 24px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  font-weight: 800;
  color: var(--h-line);
  letter-spacing: -0.02em;
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p { font-size: 14.5px; color: var(--h-muted); }

/* ===== CTA ===== */
.cta-band {
  text-align: center;
  background: var(--h-ink);
  color: var(--h-bg);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(99, 102, 241, 0.25), transparent 60%),
    radial-gradient(600px 300px at 80% 100%, rgba(139, 92, 246, 0.20), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-band p { font-size: 18px; opacity: 0.75; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary {
  background: var(--h-bg);
  color: var(--h-ink);
}
.cta-band .btn-ghost {
  color: var(--h-bg);
  border-color: rgba(255, 255, 255, 0.2);
}
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* ===== Footer ===== */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--h-line);
  background: var(--h-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h-ink);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--h-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--h-ink); }
.footer-about p { font-size: 14.5px; color: var(--h-muted); margin: 16px 0; max-width: 380px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--h-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--h-muted);
}

/* ===== Product detail pages ===== */
.product-hero {
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 450px at 50% 0%, var(--p-soft), transparent 70%);
  pointer-events: none;
}
.product-hero .container { position: relative; }
.product-hero .product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--p-soft);
  color: var(--p-accent);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.product-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--h-ink);
  margin-bottom: 16px;
}
.product-hero h1 .accent { color: var(--p-accent); }
.product-hero .tagline {
  font-size: 22px;
  font-weight: 500;
  color: var(--h-fg);
  margin-bottom: 24px;
  max-width: 700px;
  letter-spacing: -0.01em;
}
.product-hero .lead {
  font-size: 17px;
  color: var(--h-muted);
  max-width: 700px;
  line-height: 1.6;
}

.product-page[data-product="ozir"] { --p-accent: var(--ozir); --p-accent-2: var(--ozir-2); --p-soft: var(--ozir-soft); }
.product-page[data-product="otryx"] { --p-accent: var(--otryx); --p-accent-2: var(--otryx-2); --p-soft: var(--otryx-soft); }
.product-page[data-product="oryx"] { --p-accent: var(--oryx); --p-accent-2: var(--oryx-2); --p-soft: var(--oryx-soft); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature {
  padding: 32px 28px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .f-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--p-soft);
  display: grid;
  place-items: center;
  color: var(--p-accent);
  margin-bottom: 20px;
}
.feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p { font-size: 15px; color: var(--h-muted); }

.use-cases {
  background: var(--h-soft);
}
.use-case-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.use-case {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
}
.use-case .uc-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--p-soft);
  color: var(--p-accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.use-case h5 { font-size: 16px; font-weight: 700; color: var(--h-ink); margin-bottom: 4px; }
.use-case p { font-size: 14.5px; color: var(--h-muted); }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; } }

.contact-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--h-ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-info p { font-size: 16px; color: var(--h-muted); margin-bottom: 32px; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--h-line);
}
.contact-method:first-of-type { border-top: none; padding-top: 0; }
.contact-method .cm-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--h-soft);
  display: grid;
  place-items: center;
  color: var(--h-accent);
  flex-shrink: 0;
}
.contact-method h5 { font-size: 14px; font-weight: 700; color: var(--h-ink); margin-bottom: 4px; }
.contact-method p { font-size: 15px; color: var(--h-muted); margin: 0; }
.contact-method a { color: var(--h-accent); }

.contact-form {
  padding: 40px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row.split { grid-template-columns: 1fr; } }

.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--h-fg);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  font: inherit;
  font-size: 15px;
  background: var(--h-bg);
  color: var(--h-ink);
  border: 1px solid var(--h-line);
  border-radius: var(--radius);
  transition: var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--h-accent);
  box-shadow: 0 0 0 4px var(--h-accent-glow);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-status {
  margin-top: 16px;
  font-size: 14px;
  color: var(--h-muted);
}
.form-status.is-error { color: #dc2626; }
.form-status.is-ok { color: #16a34a; }

/* ===== Pricing ===== */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  background: var(--h-soft);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-pill);
  margin: 0 auto 48px;
}
.pricing-toggle-label {
  display: flex;
  justify-content: center;
}
.pricing-toggle button {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--h-muted);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.pricing-toggle button.is-active {
  background: var(--h-bg);
  color: var(--h-ink);
  box-shadow: var(--shadow-sm);
}
.pricing-toggle .badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  background: var(--ozir-soft);
  color: var(--ozir);
  border-radius: var(--radius-pill);
  margin-left: 4px;
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.plan.is-featured {
  border-color: transparent;
  background: linear-gradient(180deg, var(--h-bg), var(--h-soft));
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.plan.is-featured::before {
  content: "Plus populaire";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--h-ink);
  color: var(--h-bg);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--h-muted);
  margin-bottom: 8px;
}
.plan-tagline {
  font-size: 14px;
  color: var(--h-muted);
  margin-bottom: 20px;
  min-height: 40px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-price .amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--h-ink);
  letter-spacing: -0.02em;
}
.plan-price .period {
  font-size: 14px;
  color: var(--h-muted);
}
.plan-price-hint {
  font-size: 12.5px;
  color: var(--h-muted);
  margin-bottom: 8px;
}
.plan-placeholder-note {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--radius-pill);
  background: var(--h-soft);
  color: var(--h-ink);
  border: 1px solid var(--h-line);
  transition: var(--transition);
  margin-bottom: 24px;
}
.plan-cta:hover { background: var(--h-line); }
.plan.is-featured .plan-cta {
  background: var(--h-ink);
  color: var(--h-bg);
  border-color: var(--h-ink);
}
.plan.is-featured .plan-cta:hover { background: var(--h-fg); transform: translateY(-1px); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--h-fg);
}
.plan-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #16a34a;
}
.plan-features li.muted { color: var(--h-muted); }
.plan-features li.muted svg { color: var(--h-muted); opacity: 0.5; }

.price-by-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.price-by-product .pp-block {
  padding: 32px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
}
.pp-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--h-line);
}
.pp-head .pp-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
}
.pp-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--h-ink);
  letter-spacing: -0.01em;
}
.pp-head p { font-size: 14px; color: var(--h-muted); margin: 0; }

.pp-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .pp-plans { grid-template-columns: repeat(3, 1fr); } }

.pp-plan {
  padding: 24px;
  border: 1px solid var(--h-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.pp-plan h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pp-plan .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--h-ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pp-plan .price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--h-muted);
}
.pp-plan .desc {
  font-size: 13.5px;
  color: var(--h-muted);
  margin: 8px 0 16px;
  flex: 1;
}
.pp-plan .pp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--h-line);
  background: var(--h-bg);
  color: var(--h-ink);
  transition: var(--transition);
}
.pp-plan .pp-cta:hover { background: var(--h-soft); }
.pp-plan.is-featured .pp-cta {
  background: var(--h-ink);
  color: var(--h-bg);
  border-color: var(--h-ink);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--h-line);
}
.compare-table thead th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--h-muted);
  background: var(--h-soft);
}
.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  text-align: center;
}
.compare-table tbody tr:hover { background: var(--h-soft); }
.compare-table .check { color: #16a34a; font-weight: 800; }
.compare-table .dash { color: var(--h-muted); }
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--h-line); }

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  padding: 32px 28px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  font-size: 16px;
  line-height: 1.5;
  color: var(--h-fg);
  margin-bottom: 24px;
  flex: 1;
}
.testimonial blockquote::before { content: "« "; color: var(--h-muted); }
.testimonial blockquote::after { content: " »"; color: var(--h-muted); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--h-line);
}
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ozir), var(--otryx) 50%, var(--oryx));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
}
.testimonial-author .who {
  font-size: 14px;
  font-weight: 700;
  color: var(--h-ink);
}
.testimonial-author .role {
  font-size: 13px;
  color: var(--h-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--h-muted); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--h-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--h-muted);
  border-bottom: 2px solid var(--h-muted);
  transform: rotate(45deg);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--h-muted);
  line-height: 1.6;
}

/* ===== Pricing teaser on landing ===== */
.pricing-teaser {
  background: var(--h-soft);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .teaser-grid { grid-template-columns: repeat(3, 1fr); } }

/* Highlighted suite CTA on pricing */
.suite-callout {
  margin-top: 64px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--h-ink);
  color: var(--h-bg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.suite-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 250px at 0% 0%, rgba(99, 102, 241, 0.25), transparent 60%),
    radial-gradient(500px 250px at 100% 100%, rgba(59, 130, 246, 0.20), transparent 60%);
}
@media (min-width: 768px) { .suite-callout { grid-template-columns: 1.6fr 1fr; padding: 56px; } }
.suite-callout > * { position: relative; }
.suite-callout h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.suite-callout p { opacity: 0.8; font-size: 16px; line-height: 1.6; }
.suite-callout-side { text-align: left; }
.suite-callout .price-line {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 6px;
}
.suite-callout .price-amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.suite-callout .btn-primary { background: var(--h-bg); color: var(--h-ink); }
.suite-callout .btn-ghost { color: var(--h-bg); border-color: rgba(255,255,255,0.2); }
.suite-callout .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Modal de notification Stripe (placeholder) */
.notice-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 13, 18, 0.5);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms;
}
.notice-modal.is-open { opacity: 1; pointer-events: auto; }
.notice-modal-card {
  max-width: 480px;
  width: 100%;
  background: var(--h-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.notice-modal-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--h-ink); }
.notice-modal-card p { font-size: 15px; color: var(--h-muted); margin-bottom: 20px; }
.notice-modal-card .btn { margin-top: 8px; }

/* ===== Stats grid (counters) ===== */
.stats-band {
  padding: 64px 0;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
  background: linear-gradient(180deg, var(--h-bg), var(--h-soft));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item .value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--ozir), var(--otryx) 50%, var(--oryx));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1.1;
}
.stat-item .label {
  font-size: 14px;
  font-weight: 500;
  color: var(--h-muted);
  margin-top: 8px;
}

/* ===== Sovereignty band ===== */
.sovereignty {
  padding: 96px 0;
  background:
    radial-gradient(800px 400px at 20% 30%, var(--ozir-soft), transparent 60%),
    radial-gradient(800px 400px at 80% 70%, var(--oryx-soft), transparent 60%),
    var(--h-bg);
  position: relative;
}
.sov-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) { .sov-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.sov-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--h-ink);
  line-height: 1.15;
  margin-bottom: 20px;
}
.sov-content h2 .accent {
  background: linear-gradient(135deg, #1e40af, #1e3a8a, #b91c1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sov-content p {
  font-size: 17px;
  color: var(--h-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sov-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.sov-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius);
}
.sov-badge .b-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--h-soft);
  color: var(--h-accent);
  flex-shrink: 0;
}
.sov-badge .b-text { font-size: 13px; font-weight: 600; color: var(--h-ink); line-height: 1.3; }
.sov-badge .b-text small { display: block; font-weight: 400; color: var(--h-muted); font-size: 11.5px; }

.sov-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #fef3f2 0%, #ffffff 50%, #eff6ff 100%);
  border: 1px solid var(--h-line);
  display: grid;
  place-items: center;
}
[data-theme="dark"] .sov-visual,
:root:not([data-theme="light"]) .sov-visual {
  background: linear-gradient(135deg, #1a1d2b 0%, #14172a 50%, #1a1d2b 100%);
}
.sov-flag {
  position: relative;
  width: 70%;
  max-width: 340px;
  aspect-ratio: 3 / 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.sov-flag .stripe { width: 100%; height: 100%; }
.sov-flag .blue { background: #002654; }
.sov-flag .white { background: #ffffff; display: grid; place-items: center; }
.sov-flag .red { background: #ED2939; }
.sov-flag .crest {
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--h-bg);
  border: 3px solid #002654;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 24px;
  color: #002654;
  letter-spacing: -0.02em;
}
.sov-tagline {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h-muted);
}

/* ===== Comparison Halirom vs SaaS US ===== */
.versus {
  background: var(--h-soft);
}
.versus-table-wrap {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--h-line);
  background: var(--h-bg);
  box-shadow: var(--shadow-sm);
}
.versus-table {
  width: 100%;
  border-collapse: collapse;
}
.versus-table th,
.versus-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--h-line);
  font-size: 14.5px;
  vertical-align: middle;
}
.versus-table th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--h-muted);
  background: var(--h-soft);
  text-align: left;
}
.versus-table th.col-hal { color: var(--h-ink); background: linear-gradient(135deg, var(--ozir-soft), var(--otryx-soft)); }
.versus-table th:not(:first-child),
.versus-table td:not(:first-child) {
  text-align: center;
}
.versus-table tbody tr:last-child td { border-bottom: none; }
.versus-table tbody tr:hover { background: var(--h-soft); }
.versus-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}
.versus-icon.ok { background: rgba(22, 163, 74, 0.12); color: #16a34a; }
.versus-icon.no { background: rgba(220, 38, 38, 0.12); color: #dc2626; }
.versus-icon.partial { background: rgba(245, 158, 11, 0.18); color: #b45309; }

/* ===== Integrations grid ===== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 600px) { .integrations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .integrations-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .integrations-grid { grid-template-columns: repeat(6, 1fr); } }

.integration {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--h-fg);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.integration:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
  background: linear-gradient(135deg, var(--h-bg), var(--h-soft));
}
.integration .int-name { display: block; }
.integration .int-cat {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--h-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Sectors (verticals) ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .sectors-grid { grid-template-columns: repeat(4, 1fr); } }

.sector-card {
  position: relative;
  padding: 32px 28px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}
.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.sector-card .s-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: white;
  font-size: 22px;
}
.sector-card.btp .s-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.sector-card.services .s-icon { background: linear-gradient(135deg, var(--ozir), var(--ozir-2)); }
.sector-card.retail .s-icon { background: linear-gradient(135deg, var(--otryx), var(--otryx-2)); }
.sector-card.bouche .s-icon { background: linear-gradient(135deg, #16a34a, #15803d); }

.sector-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--h-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sector-card .lead {
  font-size: 14.5px;
  color: var(--h-muted);
  margin-bottom: 16px;
}
.sector-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}
.sector-card li {
  color: var(--h-fg);
  padding-left: 16px;
  position: relative;
}
.sector-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--h-muted);
}

/* ===== Blog / insights ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ozir), var(--otryx) 50%, var(--oryx));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.blog-thumb.thumb-1 { background: linear-gradient(135deg, var(--ozir), var(--ozir-2)); }
.blog-thumb.thumb-2 { background: linear-gradient(135deg, var(--otryx), var(--otryx-2)); }
.blog-thumb.thumb-3 { background: linear-gradient(135deg, var(--oryx), var(--oryx-2)); }
.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 30% 20%, rgba(255, 255, 255, 0.2), transparent);
}
.blog-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--h-muted);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-meta .tag {
  padding: 3px 10px;
  background: var(--h-soft);
  color: var(--h-fg);
  border-radius: var(--radius-pill);
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--h-ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.blog-card p { font-size: 14.5px; color: var(--h-muted); margin-bottom: 20px; flex: 1; }
.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--h-accent);
}

/* ===== ROI calculator ===== */
.roi {
  background: var(--h-ink);
  color: var(--h-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.roi::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 350px at 0% 0%, rgba(99, 102, 241, 0.25), transparent 60%),
    radial-gradient(700px 350px at 100% 100%, rgba(59, 130, 246, 0.20), transparent 60%);
  pointer-events: none;
}
.roi .container { position: relative; }
.roi .section-head h2 { color: var(--h-bg); }
.roi .section-head .eyebrow { color: #93c5fd; }
.roi .section-head p { color: rgba(255, 255, 255, 0.7); }

.roi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 980px) { .roi-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }

.roi-inputs, .roi-output {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.roi-inputs h3, .roi-output h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--h-bg);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.roi-inputs > p, .roi-output > p { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }

.roi-input-row { margin-bottom: 24px; }
.roi-input-row label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}
.roi-input-row .roi-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--h-bg);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.roi-input-row input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}
.roi-input-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ozir), var(--otryx));
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}
.roi-input-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ozir), var(--otryx));
  cursor: pointer;
  border: none;
}

.roi-result {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.roi-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}
.roi-result-row:last-of-type { border-bottom: none; }
.roi-result-row .roi-label { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.roi-result-row .roi-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--h-bg);
  letter-spacing: -0.02em;
}
.roi-result-row.highlight .roi-amount {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--ozir), var(--otryx) 50%, var(--oryx));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.roi-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ===== Hero mockup ===== */
.mockup-window {
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, monospace;
  position: absolute;
  width: 92%;
  max-width: 380px;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--h-soft);
  border-bottom: 1px solid var(--h-line);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
}
.mockup-dot.r { background: #ff5f56; }
.mockup-dot.y { background: #ffbd2e; }
.mockup-dot.g { background: #27c93f; }
.mockup-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--h-muted);
  font-family: var(--font-sans);
  font-weight: 500;
}
.mockup-body { padding: 16px; font-size: 12.5px; line-height: 1.7; color: var(--h-fg); }
.mockup-line { display: flex; align-items: center; gap: 8px; }
.mockup-line + .mockup-line { margin-top: 4px; }
.mockup-line.muted { color: var(--h-muted); }
.mockup-line .pill {
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.pill.ozir { background: var(--ozir-soft); color: var(--ozir); }
.pill.otryx { background: var(--otryx-soft); color: var(--otryx); }
.pill.oryx { background: var(--oryx-soft); color: var(--oryx); }
.pill.ok { background: rgba(22,163,74,0.12); color: #16a34a; }
.mockup-arrow { color: var(--h-muted); margin: 0 4px; }
.mockup-cursor {
  display: inline-block;
  width: 6px;
  height: 14px;
  background: var(--h-ink);
  vertical-align: middle;
  margin-left: 4px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Hero cluster — augmented to host mockup */
.hero-cluster .mockup-window.m1 { top: 10px; right: 0; z-index: 3; }
.hero-cluster .mockup-window.m2 { top: 130px; left: 0; z-index: 2; opacity: 0.95; }
.hero-cluster .mockup-window.m3 { bottom: 0; right: 40px; z-index: 1; opacity: 0.9; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 150;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 28px;
  background: var(--h-bg);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  transform: translateY(140%);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-shown { transform: translateY(0); }
@media (min-width: 768px) { .cookie-banner { grid-template-columns: 1fr auto; gap: 24px; } }
.cookie-banner h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--h-ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cookie-banner p { font-size: 13.5px; color: var(--h-muted); line-height: 1.5; }
.cookie-banner p a { color: var(--h-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 14px; }
.cookie-actions .btn-tertiary {
  background: transparent;
  color: var(--h-muted);
  border: 1px solid var(--h-line);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}
.cookie-actions .btn-tertiary:hover { color: var(--h-ink); border-color: var(--h-ink); }

/* ===== Generic prose page ===== */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--h-fg);
}
.prose h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--h-ink);
  margin-bottom: 16px;
}
.prose h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--h-ink);
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--h-ink);
  margin: 28px 0 8px;
}
.prose p { margin-bottom: 12px; color: var(--h-fg); }
.prose ul, .prose ol { margin: 12px 0 12px 24px; }
.prose li { margin-bottom: 6px; color: var(--h-fg); }
.prose .lead-meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--h-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.prose .placeholder-warn {
  margin: 24px 0;
  padding: 16px 20px;
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid #f59e0b;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--h-fg);
}
.prose strong { color: var(--h-ink); }
.prose a { color: var(--h-accent); }

/* ===== Misc ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.is-in { opacity: 1; transform: translateY(0); }

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