/* ============================================================
   HACCP Suite — Marketing site stylesheet
   Brand: dark slate hexagon + vibrant blue primary, light theme
   ============================================================ */

:root {
  --primary: #2563EB;
  --primary-700: #1D4ED8;
  --primary-600: #2563EB;
  --primary-500: #3B82F6;
  --primary-100: #DBEAFE;
  --primary-50: #EFF6FF;

  --teal: #14B8A6;
  --purple: #8B5CF6;
  --amber: #F59E0B;
  --orange: #F97316;
  --green: #10B981;
  --red: #EF4444;

  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;
  --white: #FFFFFF;

  --bg: var(--white);
  --bg-alt: var(--ink-50);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --border: var(--ink-200);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow: 0 2px 8px rgba(15,23,42,.06);
  --shadow-lg: 0 8px 28px rgba(15,23,42,.08);
  --shadow-card: 0 1px 3px rgba(15,23,42,.04), 0 4px 16px rgba(15,23,42,.05);

  --container: 1180px;
  --header-h: 76px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-700); }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* Layout helpers */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 56px 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.25; color: var(--ink-900); font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 14px; font-weight: 700; }
h3 { font-size: 1.1rem; margin-bottom: 6px; font-weight: 700; }
p { margin-bottom: 14px; color: var(--ink-700); }
.lead { font-size: 1.1rem; color: var(--ink-600); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: transform .12s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(37,99,235,.15);
}
.btn--primary:hover { background: var(--primary-700); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--primary-50); color: var(--primary-700); }
.btn--outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary-50); color: var(--primary-700); }
.btn--dark {
  background: var(--ink-900); color: var(--white);
}
.btn--dark:hover { background: var(--ink-800); color: var(--white); }
.btn--lg { padding: 14px 26px; font-size: 16px; }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.brand img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-50); }
.nav-links a.active { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }

.menu-toggle {
  display: none; background: none; border: 0;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  color: var(--text);
}
.menu-toggle:hover { background: var(--ink-100); }

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
  }
  .site-header.is-open .nav-links a {
    padding: 14px 8px; border-bottom: 1px solid var(--ink-100);
  }
}

/* Hero */
.hero {
  background: var(--white);
  padding: 64px 0 80px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.hero h1 { color: var(--ink-900); margin-bottom: 20px; }
.hero p.lead-blue { color: var(--primary); font-size: 1.15rem; font-weight: 600; margin-bottom: 18px; line-height: 1.5; }
.hero p.body { color: var(--ink-600); margin-bottom: 28px; max-width: 540px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.trust-pills {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 640px;
}
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px; color: var(--ink-700);
  line-height: 1.3;
}
.trust-pill .ic {
  flex: 0 0 28px; height: 28px;
  border-radius: 6px;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-pill .ic svg { width: 16px; height: 16px; }
.trust-pill strong { display: block; font-weight: 600; color: var(--ink-900); font-size: 13px; }
.trust-pill span.lbl { color: var(--ink-500); font-size: 12px; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-pills { grid-template-columns: repeat(2, 1fr); }
}

/* Hero dashboard mockup */
.dash {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
}
.dash-side {
  background: var(--ink-50);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-side .dash-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.dash-side .dash-brand img { height: 28px; }
.dash-side .nav-item {
  padding: 8px 10px; border-radius: 6px;
  font-size: 12px; color: var(--ink-600);
  display: flex; align-items: center; gap: 8px;
}
.dash-side .nav-item.active { background: var(--primary); color: white; font-weight: 600; }
.dash-side .nav-item svg { width: 14px; height: 14px; }

.dash-main { padding: 16px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.dash-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.dash-top h4 { margin: 0; font-size: 18px; font-weight: 700; }
.dash-pill { font-size: 11px; padding: 4px 10px; border-radius: 6px; background: var(--ink-100); color: var(--ink-700); font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }
.dash-user { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.dash-user .av { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,#3B82F6,#1D4ED8); color: white; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 10px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.dash-kpi { background: var(--ink-50); border-radius: 8px; padding: 10px; }
.dash-kpi .lbl { font-size: 10px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .04em; }
.dash-kpi .val { font-size: 22px; font-weight: 800; color: var(--ink-900); margin-top: 2px; }
.dash-kpi .val.green { color: var(--green); }
.dash-kpi .val.amber { color: var(--amber); }
.dash-kpi .val.blue { color: var(--primary); }
.dash-kpi .sub { font-size: 10px; color: var(--ink-500); }

.dash-row2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.dash-card { background: var(--ink-50); border-radius: 8px; padding: 12px; }
.dash-card h5 { font-size: 12px; font-weight: 600; color: var(--ink-700); margin-bottom: 10px; }
.dash-card .legend { display: flex; gap: 12px; font-size: 10px; color: var(--ink-500); margin-bottom: 6px; }
.dash-card .legend span { display: inline-flex; align-items: center; gap: 4px; }
.dash-card .legend .dot { width: 8px; height: 8px; border-radius: 50%; }

.dash-list { display: flex; flex-direction: column; gap: 8px; }
.dash-list-item { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; }
.dash-list-item .bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); margin-top: 5px; flex: 0 0 6px; }
.dash-list-item strong { display: block; color: var(--ink-900); font-weight: 600; font-size: 11px; }
.dash-list-item small { color: var(--ink-500); }

.dash-docs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.dash-doc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px;
  display: flex; gap: 8px; align-items: flex-start;
}
.dash-doc .ic { width: 22px; height: 22px; border-radius: 4px; background: var(--primary-50); color: var(--primary); flex: 0 0 22px; display: inline-flex; align-items: center; justify-content: center; }
.dash-doc .ic svg { width: 12px; height: 12px; }
.dash-doc .ic.amber { background: #FFFBEB; color: var(--amber); }
.dash-doc .ic.purple { background: #F3E8FF; color: var(--purple); }
.dash-doc .ic.red { background: #FEE2E2; color: var(--red); }
.dash-doc strong { display: block; font-size: 10px; font-weight: 600; color: var(--ink-900); }
.dash-doc small { font-size: 9px; color: var(--ink-500); }

@media (max-width: 720px) {
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-kpis { grid-template-columns: repeat(2,1fr); }
  .dash-row2 { grid-template-columns: 1fr; }
  .dash-docs { grid-template-columns: repeat(2,1fr); }
}

/* Section header */
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* Feature cards (4-col light) */
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.feat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.feat-card .ic-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-card .ic-circle svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--ink-900); }
.feat-card p { font-size: 0.95rem; color: var(--ink-600); margin: 0; }

/* 3 steps */
.steps-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px; align-items: flex-start;
}
.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: flex-start; }
.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.step-icon svg { width: 26px; height: 26px; }
.step-icon .num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); color: white;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.step-item h3 { font-size: 1rem; margin-bottom: 4px; }
.step-item p { font-size: 0.92rem; color: var(--ink-600); margin: 0; line-height: 1.55; }
.step-sep {
  align-self: center;
  border-top: 2px dashed var(--ink-300);
  width: 100%; min-width: 30px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .steps-row { grid-template-columns: 1fr; }
  .step-sep { display: none; }
}

/* Use cases with image */
.uc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: var(--ink-900);
  transition: transform .15s, box-shadow .15s;
  height: 100%;
}
.uc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--ink-900); text-decoration: none; }
.uc-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #E0E7FF, #F1F5F9);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.uc-image::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.2), transparent 50%);
}
.uc-image .ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; opacity: 0.5;
  filter: grayscale(0.2);
}
.uc-image.ristoranti { background: linear-gradient(135deg, #FEE2E2, #FEF3C7); }
.uc-image.hotel       { background: linear-gradient(135deg, #E0E7FF, #DBEAFE); }
.uc-image.laboratori  { background: linear-gradient(135deg, #FEF9C3, #FFEDD5); }
.uc-image.catering    { background: linear-gradient(135deg, #FFEDD5, #FED7AA); }

.uc-icon-overlay {
  position: absolute; bottom: -22px; left: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.uc-icon-overlay.teal   { background: var(--teal); }
.uc-icon-overlay.purple { background: var(--purple); }
.uc-icon-overlay.amber  { background: var(--amber); }
.uc-icon-overlay.orange { background: var(--orange); }
.uc-icon-overlay svg { width: 22px; height: 22px; }
.uc-body { padding: 32px 22px 22px; }
.uc-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.uc-body p { font-size: 0.92rem; color: var(--ink-600); margin: 0; }

/* Benefit row (3-col with circular icon) */
.benefits-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.benefit {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: flex-start;
}
.benefit .b-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.benefit .b-icon svg { width: 30px; height: 30px; }
.benefit h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit p { font-size: 0.92rem; color: var(--ink-600); margin: 0; line-height: 1.6; }
@media (max-width: 900px) { .benefits-row { grid-template-columns: 1fr; gap: 22px; } }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan--feat {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(37,99,235,.12);
}
.plan-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--primary); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.plan-name { font-size: 0.95rem; font-weight: 700; color: var(--ink-900); margin-bottom: 4px; }
.plan-desc { color: var(--ink-500); margin-bottom: 16px; font-size: 0.9rem; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.plan-price .amount { font-size: 2.4rem; font-weight: 800; color: var(--ink-900); line-height: 1; }
.plan-price .per { color: var(--ink-500); font-size: 0.85rem; }
.plan-price.custom .amount { font-size: 2rem; }
.plan ul { display: grid; gap: 8px; margin-bottom: 22px; flex: 1; }
.plan ul li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-700);
}
.plan ul li::before {
  content: "";
  flex: 0 0 16px; height: 16px;
  margin-top: 3px;
  background: var(--primary);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z"/></svg>') center / contain no-repeat;
}
.plan ul li.bold { font-weight: 700; color: var(--ink-900); }
.plan .btn { width: 100%; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* FAQ teaser horizontal */
.faq-teaser {
  display: flex; align-items: stretch; gap: 16px; flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.faq-teaser .label { font-size: 1rem; font-weight: 700; padding-right: 16px; align-self: center; }
.faq-teaser .label small { display: block; font-size: 13px; font-weight: 500; color: var(--primary); margin-top: 2px; }
.faq-teaser .questions { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; flex: 1; }
.faq-teaser .q {
  padding: 12px 14px;
  background: var(--ink-50);
  border-radius: var(--radius);
  font-size: 13px; color: var(--ink-800);
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px; cursor: pointer;
}
.faq-teaser .q::after { content: "›"; color: var(--ink-400); font-size: 18px; }
.faq-teaser .q:hover { background: var(--primary-50); color: var(--primary-700); }
@media (max-width: 1000px) {
  .faq-teaser { flex-direction: column; }
  .faq-teaser .questions { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .faq-teaser .questions { grid-template-columns: 1fr; }
}

/* CTA band — solid blue */
.cta-band {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cta-band .ctab-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.cta-band .ctab-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.cta-band .ctab-icon svg { width: 24px; height: 24px; color: white; }
.cta-band h2 { color: var(--white); margin: 0 0 4px; font-size: 1.4rem; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; font-size: 0.95rem; }
.cta-band .btn { background: var(--white); color: var(--primary); border-color: var(--white); }
.cta-band .btn:hover { background: var(--ink-50); color: var(--primary-700); }
@media (max-width: 800px) {
  .cta-band { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-band .ctab-left { justify-content: center; }
}

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--primary); }
.faq summary {
  list-style: none;
  padding: 18px 22px;
  font-weight: 600; font-size: 1.02rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 14px; height: 14px;
  background: var(--ink-500);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"/></svg>') center / contain no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(180deg); background: var(--primary); }
.faq .faq-body { padding: 0 22px 20px; color: var(--ink-700); }
.faq .faq-body p { margin-bottom: 8px; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .form-row.cols-2 { grid-template-columns: 1fr; } }
label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--ink-700); }
input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px;
  background: var(--white); color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
textarea { resize: vertical; min-height: 120px; }
.form-consent {
  display: flex; gap: 10px; align-items: flex-start; font-size: 13px;
  color: var(--ink-600); margin: 12px 0 18px;
}
.form-consent input { width: auto; margin-top: 4px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px; color: var(--text-muted);
  padding: 18px 0 4px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--ink-400); }

/* Page hero */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--ink-900); margin-bottom: 14px; }
.page-hero p { color: var(--ink-600); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }

/* Card (generic) */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
}
.card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.card .icon-wrap svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.card p { font-size: 0.95rem; color: var(--ink-600); margin: 0; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; font-weight: 600; font-size: 14px;
}

/* Split (feature alternating) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.checklist { display: grid; gap: 12px; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.98rem; color: var(--ink-700);
}
.checklist li::before {
  content: "";
  flex: 0 0 20px; height: 20px;
  margin-top: 2px;
  background: var(--primary);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z"/></svg>') center / contain no-repeat;
}

.callout {
  background: var(--primary-50);
  border-left: 4px solid var(--primary);
  padding: 18px 22px; border-radius: var(--radius);
  margin: 24px 0;
  color: var(--ink-700);
}
.callout strong { color: var(--primary-700); }

.mock-screen {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.mock-screen .mock-head {
  display: flex; gap: 6px; margin-bottom: 16px;
}
.mock-screen .mock-head span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink-200);
}
.mock-screen .mock-head span:nth-child(1) { background: #FF6058; }
.mock-screen .mock-head span:nth-child(2) { background: #FFBD2D; }
.mock-screen .mock-head span:nth-child(3) { background: #28C940; }

/* Footer minimal */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.site-footer .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.site-footer .footer-brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.site-footer .footer-brand img { height: 36px; }
.site-footer .footer-brand .desc { font-size: 13px; color: var(--ink-500); }
.site-footer .footer-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.site-footer .footer-links a { color: var(--ink-600); font-size: 14px; text-decoration: none; }
.site-footer .footer-links a:hover { color: var(--primary); }
.site-footer .footer-links .lang { font-size: 13px; color: var(--ink-500); display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 800px) {
  .site-footer .container { flex-direction: column; align-items: flex-start; }
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num {
  font-size: 2.2rem; font-weight: 800; color: var(--primary);
  margin-bottom: 4px;
}
.stat-label { font-size: 0.9rem; color: var(--ink-500); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2,1fr); } }

.feature-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: flex-start;
}
.feature-row .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-row .icon-wrap svg { width: 22px; height: 22px; }
.feature-row h3 { margin-bottom: 4px; }
.feature-row p { margin: 0; color: var(--ink-600); }
