@import url('https://fonts.googleapis.com/css2?family=Sometype+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --lp-c-main: #CE252A;
  --lp-c-bg: #000C1A;
  --lp-c-hdr: #1B1B1B;
  --lp-c-txt: #FFFFFF;
  --lp-f-mono: 'Sometype Mono', monospace;
  --bg: #000c1a;
  --surface: #111b2f;
  --surface-alt: #16233b;
  --border: #293752;
  --border-strong: #41516f;
  --text-primary: #f5f7fb;
  --text-secondary: #ccd3e2;
  --text-muted: #93a0b8;
  --accent: #ce252a;
  --accent-hover: #e44549;
  --accent-light: #27161f;
  --accent-mid: #7b3940;
  --success: #22c55e;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --max-width: 1140px;
  --header-height: 64px;
  --font-mono: 'Sometype Mono', 'Courier New', monospace;
}

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

html {
  font-size: 16px;
  background: var(--bg);
}

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

body {
  font-family: var(--font-mono);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--accent);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-md);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-mono); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.lp-wrap-z1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.lp-hdr-x9 {
  width: 100%;
  height: 72px;
  background-color: var(--lp-c-hdr);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-hdr-inner-y5 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.lp-logo-w3 {
  height: 30px;
  display: flex;
  align-items: center;
}

.lp-logo-w3 img {
  height: 100%;
  width: auto;
}

.lp-nav-u7 {
  display: flex;
  gap: 32px;
}

.lp-nav-u7 a {
  color: var(--lp-c-txt);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.3s;
}

.lp-nav-u7 a:hover {
  color: var(--lp-c-main);
}

.lp-nav-u7 a.active {
  color: var(--lp-c-main);
  font-weight: 600;
}

.lp-cont-p2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-cont-p2 img {
  width: 24px;
  height: 24px;
}

.lp-cont-p2 span {
  font-size: 16px;
  color: var(--lp-c-txt);
}

.lp-extra-k4 {
  height: 40px;
  display: flex;
  align-items: center;
}

.lp-extra-k4 img {
  height: 100%;
  width: auto;
}

.lp-auth-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-auth-image-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
}

.lp-auth-image-btn img {
  height: 100%;
  width: auto;
}

.lp-auth-controls--logged {
  gap: 12px;
}

.lp-auth-text-btn,
.lp-auth-logout-btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--lp-c-main);
  background: rgba(206, 37, 42, 0.12);
  color: var(--lp-c-txt);
  text-decoration: none;
  font-size: 14px;
}

.lp-auth-logout-btn {
  cursor: pointer;
}

.lp-footer-x1 {
  width: 100%;
  background-color: var(--lp-c-hdr);
  padding: 64px 0;
  display: flex;
  justify-content: center;
}

.lp-footer-inner-v9 {
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-footer-top-m3 {
  display: flex;
  gap: 285px;
  align-items: center;
  margin-bottom: 32px;
}

.lp-footer-logo-n1 {
  width: 94px;
  height: 60px;
  object-fit: contain;
}

.lp-footer-nav-b2 {
  flex: 1;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.lp-footer-nav-col-r5 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-footer-nav-link-t4 {
  color: var(--lp-c-txt);
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
}

.lp-footer-mid-v1 {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.lp-footer-info-m9 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-footer-info-title-f5 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFB;
  line-height: 40px;
}

.lp-footer-info-txt-y9 {
  font-size: 18px;
  line-height: 20px;
  color: var(--lp-c-txt);
}

.lp-footer-bot-n2 {
  border-top: 1px solid var(--lp-c-main);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lp-footer-links-b8 {
  display: flex;
  gap: 16px;
  align-items: center;
}

.lp-footer-legal-link-p1 {
  color: var(--lp-c-txt);
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
}

.lp-footer-dot-v4 {
  width: 8px;
  height: 8px;
  background-color: var(--lp-c-txt);
  border-radius: 50%;
}

.lp-footer-copy-s3 {
  font-size: 16px;
  line-height: 20px;
  color: var(--lp-c-txt);
}

/* ─── HEADER ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(17, 27, 47, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  height: var(--header-height);
}

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

.site-logo {
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.1;
}

.site-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(206, 37, 42, 0.22), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem;
  flex-shrink: 0;
}

.site-logo-copy {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-list a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--space-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Keep nav links and nav-cta focus visible */
.site-nav a:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ─── FOOTER ─── */

.site-footer {
  background: #0b1220;
  color: var(--text-muted);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid #2A2A28;
}

.footer-brand .logo-main {
  color: #fff;
  font-size: 1rem;
}

.footer-brand .logo-sub {
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: var(--space-md);
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: #fff;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.9375rem;
}

/* ─── HERO ─── */

.hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-mid);
  background: var(--accent-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.hero-panel-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.panel-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.panel-checklist li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.panel-checklist li::before {
  content: '';
  display: block;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 2px;
  position: relative;
}

.panel-checklist li::before {
  content: '\2713';
  color: #fff;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.panel-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-lg) 0;
}

.panel-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.panel-stat {
  text-align: center;
  padding: var(--space-md);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
}

.panel-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.panel-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ─── STRIP / TICKER ─── */

.strip {
  background: var(--text-primary);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: var(--space-3xl);
  align-items: center;
  white-space: nowrap;
}

.strip-item {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #888;
  text-transform: uppercase;
  flex-shrink: 0;
}

.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── SECTION COMMONS ─── */

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--text-primary);
  color: #fff;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-dark .section-label {
  color: var(--accent-mid);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-dark .section-title {
  color: #fff;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
}

.section-dark .section-lead {
  color: #888;
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header-centered {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header-centered .section-lead {
  margin-inline: auto;
}

/* ─── WHO-FOR ─── */

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: border-color 0.2s;
}

.who-card:hover {
  border-color: var(--accent-mid);
}

.who-card-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  -webkit-text-stroke: 2px var(--accent-mid);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.who-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.who-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── SERVICES ─── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 8px 32px rgba(27,79,216,0.07);
}

.service-card-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.service-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.service-card-link:hover {
  color: var(--accent-hover);
}

/* ─── PROCESS LANE ─── */

.process-lane {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.step-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: var(--space-sm);
}

.process-step:last-child .step-line {
  display: none;
}

.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  padding-top: 0.6rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-duration {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

/* ─── OBSTACLES ─── */

.obstacle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.obstacle-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.obstacle-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.obstacle-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.obstacle-item p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── TRUST STRIP ─── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-item {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid #2A2A28;
  border-radius: var(--radius-md);
  background: #181816;
}

.trust-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-mid);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.trust-label {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.5;
}

/* ─── FAQ ─── */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) 0;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  gap: var(--space-lg);
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-body-inner {
  padding-bottom: var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-body.is-open {
  max-height: 400px;
}

/* ─── FORM ─── */

.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 560px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.field-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.field-group input,
.field-group select,
.field-group textarea {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem var(--space-md);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,79,216,0.1);
}

.field-group input.error,
.field-group select.error,
.field-group textarea.error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.field-error {
  font-size: 0.75rem;
  color: #DC2626;
  display: none;
}

.field-error.visible {
  display: block;
}

.field-group textarea {
  resize: vertical;
  min-height: 120px;
}

.field-group select {
  appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAADtJREFUGFdjYGBg+M9AAGCioGRgIKISVxCQRVJBgImRgYERRZCBEUWSgYER2QQGRiQTGBiRHMfAAADEhgcvzVKDDAAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
}

.form-submit-row {
  margin-top: var(--space-lg);
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--accent);
}

/* ─── CONTACT SECTION ─── */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-block h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.contact-block p, .contact-block a {
  font-size: 0.9375rem;
  color: var(--text-primary);
  text-decoration: none;
}

.contact-block a:hover { color: var(--accent); }

/* ─── COOKIE BANNER ─── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}

.cookie-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  min-width: 200px;
}

.cookie-text a {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-accept {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
}

.cookie-accept:hover { background: var(--accent-hover); }

.cookie-reject {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.cookie-reject:hover { border-color: var(--border-strong); color: var(--text-primary); }

.cookie-banner.hidden { display: none; }

/* ─── PAGE HERO (inner pages) ─── */

.page-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero-inner {
  max-width: 680px;
}

.breadcrumb {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-lg);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep { color: var(--border-strong); }

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.page-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── SPLIT LAYOUT ─── */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-text .section-label { margin-bottom: var(--space-sm); }
.split-text .section-title { margin-bottom: var(--space-md); }
.split-text .section-lead { margin-bottom: var(--space-xl); }

.visual-block {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.visual-block::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
}

.visual-block-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.visual-block-metric {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.visual-block-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.visual-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.visual-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.visual-list-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.visual-list-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}

/* ─── COMPARISON ─── */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
}

.compare-table th:last-child,
.compare-table th:nth-child(2) {
  text-align: center;
}

.compare-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.compare-table td:last-child,
.compare-table td:nth-child(2) {
  text-align: center;
}

.compare-table tr:hover td {
  background: var(--surface-alt);
}

.check-yes {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.check-no {
  color: var(--border-strong);
  font-size: 1.25rem;
}

.table-highlight th:nth-child(3) {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.table-highlight td:nth-child(3) {
  color: var(--text-primary);
  font-weight: 600;
}

/* ─── RESOURCE NOTES ─── */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.resource-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.resource-card-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.resource-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.resource-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── CTA BAND ─── */

.cta-band {
  background: var(--accent);
  padding: var(--space-3xl) 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.cta-band-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s;
}

.btn-white:hover { opacity: 0.92; color: var(--accent); }

/* ─── LEGAL PAGES ─── */

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  padding: var(--space-3xl) 0;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.legal-toc h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.legal-toc ul a,
.legal-toc ul span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  padding: var(--space-xs) 0;
  border-left: 2px solid var(--border);
  padding-left: var(--space-md);
  transition: color 0.15s, border-color 0.15s;
}

.legal-toc ul a:hover,
.legal-toc ul span:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: var(--space-2xl) 0 var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.legal-body h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.legal-body ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-body ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

/* ─── SUCCESS PAGE ─── */

.success-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-box {
  text-align: center;
  padding: var(--space-4xl);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  max-width: 480px;
}

.success-indicator {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

.success-box h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.success-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── UTILITY ─── */

.rule-line {
  height: 1px;
  background: var(--border);
}

.tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }

/* ─── FEATURE LIST ─── */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── PROOF PANELS ─── */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.proof-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.proof-quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--accent-mid);
  line-height: 0.5;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.proof-author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.proof-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── PLANNER STRIP ─── */

.planner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.planner-cell {
  padding: var(--space-xl);
  border-right: 1px solid var(--border);
}

.planner-cell:last-child { border-right: none; }

.planner-week {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.planner-task {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.planner-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.planner-indicator {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.planner-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* ─── SPLIT TEXT (column in split-layout) ─── */

.split-text {
  display: flex;
  flex-direction: column;
}

/* ─── BODY TEXT (inline prose helper, used in case-block) ─── */

.body-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── FAQ CATEGORY BLOCK ─── */

.faq-category-block {
  display: flex;
  flex-direction: column;
}

/* ─── CONTACT FAQ TEXT (left column in the prompt section) ─── */

.contact-faq-text {
  display: flex;
  flex-direction: column;
}

/* ─── CONTACT FORM SIDE (wraps the form in contatti) ─── */

.contact-form-side {
  display: flex;
  flex-direction: column;
}

/* ─── FAQ TWO-COL LAYOUT ─── */

.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl) var(--space-3xl);
}

.faq-cat-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent-mid);
}

/* ─── CONTACT FAQ PROMPT ─── */

.contact-faq-prompt {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-faq-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.aside-note-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.aside-note-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.aside-note-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
}

/* ─── CONTACT FORM WIDE ─── */

.form-panel-wide {
  max-width: 100%;
}

/* ─── CONTACT BLOCK NOTE ─── */

.contact-block-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ─── CONTACT PROCESS STEPS ─── */

.contact-process-note {
  border-top: 1px solid var(--border);
  padding-top: var(--space-xl);
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.contact-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.contact-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 0.4rem;
}

/* ─── REASSURE GRID ─── */

.contact-reassure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.reassure-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.reassure-icon-block {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-mid);
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.reassure-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.reassure-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
