/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ============ Tokens ============ */
:root {
  --font-body: 'General Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);

  --color-bg: #2a1b33;
  --color-bg-deep: #1d1224;
  --color-surface: #241732;
  --color-surface-2: #2e2040;
  --color-border: #46324f;
  --color-ink: #f5f3f7;
  --color-muted: #b7aec2;
  --color-muted-2: #8d80a0;
  --color-accent: #1f989a;
  --color-accent-light: #5fe8e9;
  --color-accent-hover: #24b3b5;
  --color-warm: #ff6b81;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;

  --container: 1180px;
  --space-section: 140px;

  --shadow-card: 0 20px 60px -20px rgba(0,0,0,0.55);
  --ease: cubic-bezier(.16,.84,.44,1);
}

@media (max-width: 900px) {
  :root { --space-section: 90px; }
}

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(8,4,10,0.5);
}

h1 { font-size: clamp(38px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: 22px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  background: rgba(31,152,154,0.12);
  border: 1px solid rgba(31,152,154,0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head p {
  color: var(--color-ink);
  font-size: 18px;
  margin-top: 18px;
  text-shadow: 0 2px 16px rgba(8,4,10,0.45);
}

.section-head.left {
  text-align: left;
  margin: 0 0 56px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 32px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-accent {
  background: var(--color-accent);
  color: #06201f;
  box-shadow: 0 10px 30px -8px rgba(31,152,154,0.55);
}
.btn-accent:hover { background: var(--color-accent-hover); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: rgba(245,243,247,0.28);
  color: var(--color-ink);
}
.btn-ghost:hover { border-color: var(--color-ink); background: rgba(255,255,255,0.06); }

.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 14px; }

/* ============ Header / Nav ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(29,18,36,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-color: var(--color-border);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-row .nav-links { justify-self: start; }
.nav-row .brand { justify-self: center; }
.nav-row .nav-cta { justify-self: end; }

@media (max-width: 900px) {
  .nav-row { grid-template-columns: 1fr auto; }
  .nav-row .brand { justify-self: start; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px;
}

.nav-links a {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--color-ink); background: rgba(255,255,255,0.05); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand .brand-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent), #3a1f42);
  display: grid;
  place-items: center;
  object-fit: contain;
  padding: 4px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  align-items: center;
  justify-content: center;
}
.nav-burger span, .nav-burger::before, .nav-burger::after { content:''; }
.nav-burger-icon { position: relative; width: 18px; height: 12px; }
.nav-burger-icon span, .nav-burger-icon::before, .nav-burger-icon::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--color-ink); border-radius: 2px;
}
.nav-burger-icon::before { top: 0; }
.nav-burger-icon span { top: 5px; }
.nav-burger-icon::after { top: 10px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg-deep);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: 28px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--color-border);
}
.nav-drawer .btn { margin-top: 24px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

/* Fixed behind the entire page (negative z-index keeps it below every
 * normal-flow section, even though those sections have no z-index of
 * their own — see stacking-context notes for why z-index:0 would not
 * work here). Transparent sections let it show through as you scroll;
 * opaque sections (.section-alt, cards) cover it for readability. */
#stormCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,25,0) 0%, rgba(20,10,25,0.12) 55%, rgba(20,10,25,0.34) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(560px, 78vw);
  margin-bottom: 8px;
  filter: drop-shadow(0 20px 60px rgba(31,152,154,0.35));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-top: -18px;
  margin-bottom: 40px;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto 24px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--color-ink);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--color-accent-light);
  font-weight: 700;
}
.hero-stat .label { color: var(--color-muted); font-size: 13.5px; margin-top: 4px; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

@media (max-width: 640px) {
  .hero { padding-top: 110px; }
  .hero-stats { gap: 28px; }
}

/* ============ Reveal ============
 * Visible by default — never dependent on JS/animation timing to be
 * readable. When JS is ready, elements not yet on screen get a subtle
 * entrance transition; anything already in view on load is untouched. */
[data-reveal].is-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============ Sections ============ */
.section { padding: var(--space-section) 0; }
.section-alt { background: var(--color-bg-deep); }

/* Pain points */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.pain-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--color-surface-2);
  display: grid; place-items: center;
  color: var(--color-accent-light);
  margin-bottom: 22px;
}
.pain-card h3 { margin-bottom: 10px; }
.pain-card p { color: var(--color-muted); font-size: 15.5px; }

.pain-note {
  margin-top: 32px;
  padding: 28px 32px;
  border-left: 3px solid var(--color-accent);
  background: linear-gradient(90deg, rgba(31,152,154,0.08), transparent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 19px;
}
.pain-note strong { color: var(--color-accent-light); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--color-accent); }
.price-card.is-featured {
  border-color: var(--color-accent);
  background: linear-gradient(160deg, rgba(31,152,154,0.14), var(--color-surface) 60%);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--color-accent);
  color: #06201f;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.price-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 18px; margin-bottom: 18px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-amount .big { font-family: var(--font-display); font-size: 34px; font-weight: 700; }
.price-amount .unit { color: var(--color-muted); font-size: 14px; }
.price-monthly { color: var(--color-accent-light); font-size: 15px; margin-top: 4px; margin-bottom: 24px; }
.price-monthly strong { font-size: 17px; }
.price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--color-muted); align-items: flex-start; }
.price-list svg { flex: none; margin-top: 3px; color: var(--color-accent); }

.pricing-footnote { text-align: center; color: var(--color-muted); margin-top: 40px; font-size: 15px; }

/* Calculator */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 980px) { .calc-wrap { grid-template-columns: 1fr; } }

.calc-sliders { display: flex; flex-direction: column; gap: 20px; }

.calc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.calc-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.calc-card-head-left { display: flex; align-items: center; gap: 14px; }
.calc-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--color-surface-2); display: grid; place-items: center; color: var(--color-accent-light); flex: none; }
.calc-card-head h3 { font-family: var(--font-body); font-weight: 600; font-size: 16px; }
.calc-card-head .sub { color: var(--color-muted-2); font-size: 13px; margin-top: 2px; }
.calc-value { color: var(--color-accent-light); font-weight: 600; font-size: 14px; white-space: nowrap; }

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) var(--pct,50%), var(--color-surface-2) var(--pct,50%), var(--color-surface-2) 100%);
  outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-ink);
  border: 4px solid var(--color-accent);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-ink);
  border: 4px solid var(--color-accent);
  cursor: pointer;
}
.slider-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12.5px; color: var(--color-muted-2); }
.slider-labels .mid { color: var(--color-accent-light); }

.calc-summary {
  position: sticky;
  top: 110px;
  border-color: var(--color-accent);
  background: linear-gradient(165deg, rgba(31,152,154,0.16), var(--color-surface) 55%);
}
.calc-summary .rec-label { color: var(--color-muted); font-size: 14px; }
.calc-summary .rec-name { color: var(--color-accent-light); font-weight: 600; }
.calc-summary-icons { display: flex; gap: 10px; margin-bottom: 24px; }
.calc-summary-icons .dot { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--color-surface-2); color: var(--color-muted-2); transition: background 0.25s, color 0.25s; }
.calc-summary-icons .dot.is-active { background: var(--color-accent); color: #06201f; }
.calc-summary-icons .cap { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 10.5px; color: var(--color-muted-2); flex: 1; }

.calc-included { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.calc-included li { display: flex; gap: 10px; font-size: 14px; color: var(--color-muted); }
.calc-included svg { color: var(--color-accent); flex: none; margin-top: 2px; }
.calc-included-label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11.5px; color: var(--color-muted-2); margin-bottom: 6px; }

/* Industries */
.industry-teaser-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.industry-teaser-icons { display: flex; gap: 12px; }
.industry-teaser-icons .industry-icon { margin-bottom: 0; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .industry-grid { grid-template-columns: 1fr; } }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.industry-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
}
.industry-card:hover { transform: translateY(-6px); border-bottom-color: var(--color-accent); }
.industry-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--color-surface-2); display: grid; place-items: center; color: var(--color-accent-light); margin-bottom: 22px; }
.industry-card h3 { margin-bottom: 16px; }
.industry-card ul { display: flex; flex-direction: column; gap: 10px; }
.industry-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--color-muted); }
.industry-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); flex: none; margin-top: 8px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--color-surface-2);
  color: var(--color-accent-light);
  display: grid; place-items: center;
  font-size: 18px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--color-muted); font-size: 15.5px; margin-top: 14px; line-height: 1.55; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card, .book-card, .info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--color-ink);
  font-size: 15px;
  transition: border-color 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--color-muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-accent); }
.field textarea { resize: vertical; min-height: 110px; }
.field-error { display: none; color: #ff8fa3; font-size: 12.5px; margin-top: 6px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff6b81; }
.field.has-error .field-error { display: block; }

.form-status { margin-top: 16px; font-size: 14px; text-align: center; display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { color: var(--color-accent-light); }
.form-status.err { color: #ff8fa3; }

.book-card { margin-bottom: 20px; }
.book-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.book-card p { color: var(--color-muted); font-size: 15px; margin-bottom: 18px; }
.calendar-embed { border-radius: 14px; overflow: hidden; }
.calendar-embed iframe { min-height: 650px; display: block; }

.info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic { width: 44px; height: 44px; border-radius: 13px; background: var(--color-surface-2); display: grid; place-items: center; color: var(--color-accent-light); flex: none; }
.info-row .label { font-size: 12.5px; color: var(--color-muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.info-row .value { font-size: 15.5px; margin-top: 2px; }

.info-note {
  background: rgba(31,152,154,0.1);
  border: 1px solid rgba(31,152,154,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--color-muted);
}
.info-note strong { color: var(--color-accent-light); }

/* Footer */
.site-footer { background: var(--color-bg-deep); border-top: 1px solid var(--color-border); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-logo { height: 34px; margin-bottom: 18px; }
.footer-grid p { color: var(--color-muted); font-size: 14.5px; max-width: 340px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: var(--color-surface); border: 1px solid var(--color-border); display: grid; place-items: center; color: var(--color-muted); transition: color 0.2s, border-color 0.2s; }
.footer-social a:hover { color: var(--color-accent-light); border-color: var(--color-accent); }
.footer-col h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-bottom: 18px; color: var(--color-ink); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--color-muted); font-size: 14.5px; }
.footer-col a:hover { color: var(--color-accent-light); }
.footer-col .row { display: flex; gap: 10px; align-items: flex-start; color: var(--color-muted); font-size: 14.5px; }
.footer-col .row svg { flex: none; margin-top: 3px; color: var(--color-accent); }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: var(--color-muted-2); font-size: 13.5px; }
.footer-legal { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--color-accent-light); }

/* Utility icon sizing */
.ic svg, .pain-icon svg, .industry-icon svg, .calc-icon svg, .info-row .ic svg { width: 22px; height: 22px; }

/* Page hero (blog / legal pages) */
.page-hero { padding: 170px 0 80px; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(31,152,154,0.16), transparent 60%); }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero p { max-width: 620px; margin: 20px auto 0; color: var(--color-muted); font-size: 18px; }

/* Branchen page */
.branch-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 28px;
}
.branch-head { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; }
.branch-head .industry-icon { margin-bottom: 0; width: 60px; height: 60px; border-radius: 18px; }
.branch-head h2 { font-size: 30px; }
.branch-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .branch-cols { grid-template-columns: 1fr; } }
.branch-col-label { display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12.5px; font-weight: 600; margin-bottom: 18px; }
.branch-col-label.challenge { color: #ff9fae; }
.branch-col-label.solution { color: var(--color-accent-light); }
.branch-cols ul { display: flex; flex-direction: column; gap: 12px; }
.branch-cols li { display: flex; gap: 10px; font-size: 15px; color: var(--color-muted); }
.branch-cols li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; margin-top: 8px; flex: none; opacity: 0.6; }
.branch-cols p { color: var(--color-muted); font-size: 15.5px; margin-bottom: 14px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--color-accent); }
.blog-card-media {
  height: 170px;
  display: grid;
  place-items: center;
  font-size: 40px;
}
.blog-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag { color: var(--color-accent-light); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; }
.blog-card p { color: var(--color-muted); font-size: 14.5px; flex: 1; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; font-size: 13px; color: var(--color-muted-2); }
.blog-card-meta .read { color: var(--color-accent-light); font-weight: 600; }

/* Article */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 120px;
}
.article-header { text-align: center; padding: 170px 0 50px; }
.article-header .eyebrow { margin-bottom: 22px; }
.article-meta { color: var(--color-muted); font-size: 14px; margin-top: 20px; }
.article-body h2 { font-size: 28px; margin: 52px 0 18px; }
.article-body h3 { margin: 34px 0 12px; }
.article-body p { color: var(--color-muted); font-size: 17px; margin-bottom: 18px; }
.article-body ul { margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.article-body li { color: var(--color-muted); font-size: 16px; display: flex; gap: 10px; }
.article-body li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); margin-top: 9px; flex: none; }
.article-body strong { color: var(--color-ink); }
.article-cta {
  margin-top: 56px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(31,152,154,0.16), var(--color-surface));
  border: 1px solid var(--color-border);
  text-align: center;
}
.article-cta p { color: var(--color-muted); margin: 10px 0 22px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-accent-light); font-weight: 600; font-size: 14.5px; margin-bottom: 30px; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 170px 32px 120px; }
.legal h1 { font-size: 38px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 40px 0 14px; }
.legal p, .legal li { color: var(--color-muted); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal-todo {
  background: rgba(255,107,129,0.1);
  border: 1px solid rgba(255,107,129,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #ffb3c0;
  font-size: 14px;
  margin: 24px 0;
}
