/* Hand aufs Herz — Complete CSS */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --red: #E31E24;
  --dark: #0B132B;
  --white: #FFFFFF;
  --grey: #F2F2F4;
  --black: #111111;
  --text: #1a1a2e;
  --text-muted: #5a6070;
  --font: 'Avenir Next LT Pro','Avenir Next','Avenir','Nunito Sans','Inter',system-ui,sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11,19,43,.10);
  --section-pad: 5rem 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
p { color: var(--text-muted); }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

/* ── LAYOUT ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-pad);
}
section { position: relative; }
.bg-white { background: var(--white); }
.bg-grey  { background: var(--grey); }
.bg-dark  { background: var(--dark); color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.7); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font); font-weight: 700; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s ease; white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #c51b21; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(227,30,36,.35); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--white); text-decoration: none; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); text-decoration: none; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red); margin-bottom: .75rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.logo { display: flex; align-items: center; }
.logo img, .logo svg { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--text); font-weight: 600; font-size: .9rem; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.nav-links .btn { padding: .55rem 1.2rem; font-size: .85rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
  background: var(--white);
  padding: 10rem 1.5rem 6rem;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(227,30,36,0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-content {
  text-align: left;
}
.hero-badge {
  display: inline-block;
  background: var(--red); color: white;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--dark); margin-bottom: 1.2rem; }
.hero-subline { font-size: clamp(1.1rem, 2.5vw, 1.35rem); color: var(--text-muted); margin-bottom: 2rem; line-height: 1.5; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(11,19,43,0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, border-color 0.5s ease;
  width: 100%;
}
.hero-image-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(227,30,36,0.3);
}
.hero-img-main {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  object-fit: cover;
}
.hero-floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: heroFloat 3.5s ease-in-out infinite;
}
.hero-floating-badge h4 {
  font-size: 0.85rem;
  color: var(--dark);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.hero-floating-badge p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.2;
}
.badge-icon {
  font-size: 1.5rem;
  line-height: 1;
}

@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Hero form */
.hero-form-wrapper { max-width: 100%; margin: 0 0 2rem 0; }
.form-row { display: flex; gap: .5rem; margin-bottom: .75rem; }
.form-row input[type=email] { flex: 1; min-width: 0; }
input[type=email], input[type=text], select, textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid rgba(11,19,43,.15); border-radius: 8px;
  font-family: var(--font); font-size: .95rem;
  background: var(--white); color: var(--text);
  outline: none; transition: border-color .2s;
}
input[type=email]::placeholder, input[type=text]::placeholder { color: rgba(11,19,43,.45); }
input[type=email]:focus, select:focus { border-color: var(--red); background: var(--white); }
.checkbox-row { display: flex; align-items: flex-start; gap: .6rem; text-align: left; }
.checkbox-row input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--red); border: none; background: none; }
.checkbox-row label { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.checkbox-row label a { color: var(--red); text-decoration: underline; }
.honeypot { display: none !important; }
.form-error { color: #ff6b6b; font-size: .82rem; margin-top: .5rem; min-height: 1.2em; }
.form-note { font-size: .78rem; color: var(--text-muted); margin-top: .75rem; }
.form-success { display: none; text-align: center; }
.form-success.visible { display: block; }
.form-success p { color: var(--text); font-size: 1.05rem; }
.checkmark { font-size: 2.5rem; margin-bottom: .75rem; }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2.5rem; }
.trust-badge {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(11,19,43,0.05); border: 1px solid rgba(11,19,43,0.1);
  color: var(--text-muted); font-size: .8rem; font-weight: 600;
  padding: .45rem .9rem; border-radius: 20px;
}
.trust-badge .icon-mono {
  width: 14px;
  height: 14px;
  color: var(--red);
}

/* ── EKG DIVIDER ── */
.ekg-divider {
  width: 100%; height: 48px; overflow: visible;
  color: var(--red); background: var(--white);
  display: flex; align-items: center;
  position: relative;
  z-index: 10;
}
.ekg-divider.white-to-grey {
  background: linear-gradient(to bottom, var(--white) 50%, var(--grey) 50%);
}
.ekg-divider.grey-to-white {
  background: linear-gradient(to bottom, var(--grey) 50%, var(--white) 50%);
}
.ekg-divider svg { width: 100%; height: 100%; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(227,30,36,.12);
  border-color: rgba(227,30,36,.2);
}
.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800;
  color: var(--red); line-height: 1; margin-bottom: .5rem;
}
.stat-label { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
.text-block { max-width: 800px; margin: 2.5rem auto 0; }
.text-block p + p { margin-top: 1rem; }

/* ── TRAINING STEPS ── */
.subline { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.step-card {
  background: var(--white); color: var(--text);
  border-radius: var(--radius); padding: 2rem;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(227,30,36,.12);
  border-color: var(--red);
}
.step-card::before {
  content: attr(data-step);
  position: absolute; top: 1rem; right: 1rem;
  font-size: 3rem; font-weight: 800; color: rgba(11,19,43,.12); line-height: 1;
}
.step-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.step-card h3 { color: var(--dark); margin-bottom: .6rem; }
.step-card p { color: var(--text-muted); font-size: .92rem; }

/* X-Ray highlight box */
.highlight-box {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: var(--grey); border-radius: var(--radius);
  padding: 2rem 2.5rem; color: var(--text);
  border: 1px solid rgba(0,0,0,.06);
  border-left: 4px solid var(--red);
}
.highlight-box-icon { font-size: 2rem; flex-shrink: 0; margin-top: .2rem; }
.highlight-box h3 { color: var(--dark); margin-bottom: .5rem; }
.highlight-box p { color: var(--text-muted); font-size: .92rem; }

/* X-Ray screenshot */
.xray-screenshot {
  width: 100%; border-radius: var(--radius);
  overflow: hidden; margin-top: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  aspect-ratio: 4/3; object-fit: cover;
}

/* ── OUTCOMES ── */
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.outcome-block {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--grey); border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.outcome-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  border-color: rgba(227,30,36,.1);
}
.outcome-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--red); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; margin-top: .15rem;
}
.outcome-block p { font-size: .92rem; color: var(--text); line-height: 1.6; }

/* ── TARGET CARDS ── */
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.target-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.07);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.target-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-color: rgba(227,30,36,.15);
}
.target-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.target-card h3 { color: var(--dark); margin-bottom: .75rem; font-size: 1.05rem; }
.target-card p { color: var(--text-muted); font-size: .9rem; flex: 1; }
.target-card .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ── TECH GRID ── */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tech-badge {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1.5px solid rgba(11,19,43,.12);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(11,19,43,.03);
  transition: all .3s ease;
}
.tech-badge:hover {
  background: var(--white);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227,30,36,.08);
}
.tech-badge h3 { color: var(--dark); font-size: .95rem; margin-bottom: .2rem; }
.tech-badge p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ── SCREENSHOTS ── */
.screenshot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.screenshot-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.screenshot-item img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.screenshot-caption { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1.5px solid rgba(0,0,0,.08);
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11,19,43,.15);
  border-color: rgba(11,19,43,.2);
}
.pricing-card.featured:hover {
  box-shadow: 0 15px 40px rgba(227,30,36,.25);
  border-color: var(--red);
}
.pricing-card.featured {
  border-color: var(--red); box-shadow: 0 8px 40px rgba(227,30,36,.18);
}
.featured-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 20px;
}
.pricing-card h3 { color: var(--dark); margin-bottom: 1rem; }
.price { font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.price-unit { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.25rem; margin-top: .2rem; }
.pricing-card ul { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.pricing-card ul li { font-size: .88rem; color: var(--text-muted); padding: .4rem 0; border-bottom: 1px solid var(--grey); display: flex; gap: .5rem; }
.pricing-card ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.pricing-cta-box {
  background: var(--grey); border-radius: var(--radius);
  padding: 1.5rem 2rem; margin-top: 2rem; text-align: center;
}
.pricing-cta-box p { color: var(--text-muted); font-size: .9rem; }

/* ── REFERENCE ── */
.reference-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.school-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(227,30,36,.1); color: var(--red);
  font-size: .78rem; font-weight: 700; padding: .3rem .8rem; border-radius: 20px; margin-bottom: 1rem;
}
.school-badge .icon-mono {
  width: 14px;
  height: 14px;
  color: var(--red);
}
.reference-text { color: var(--text-muted); margin: 1rem 0 1.5rem; line-height: 1.7; }
.reference-visual {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.reference-visual img { width: 100%; height: 320px; object-fit: cover; }

/* ── ABOUT ── */
.about-logos { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; margin-top: 2rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.09); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--dark);
  gap: 1rem;
}
.faq-question:hover { color: var(--red); }
.faq-arrow { flex-shrink: 0; transition: transform .3s; color: var(--red); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--text-muted); font-size: .95rem; line-height: 1.75; }

/* ── NEWSLETTER SECTION ── */
.newsletter-section { background: var(--white); }
.newsletter-section h2 { color: var(--dark); }
.newsletter-form-large { max-width: 560px; margin: 0 auto 1.5rem; }
.newsletter-form-large .field-group { margin-bottom: .75rem; }
.newsletter-form-large input[type=email],
.newsletter-form-large select {
  background: var(--white); border-color: rgba(11,19,43,.15);
  color: var(--text);
}
.newsletter-form-large select option { color: var(--text); background: white; }
.direct-contact { color: var(--text-muted); font-size: .9rem; }
.direct-contact a { color: var(--red); text-decoration: underline; }

/* ── WHITEPAPER ── */
.whitepaper-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.whitepaper-cover {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem;
  color: var(--text); text-align: center;
  border: 1.5px solid rgba(11,19,43,.1);
  box-shadow: var(--shadow);
}
.cover-badge {
  display: inline-block; background: var(--red); color: white;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.25rem;
}
.whitepaper-cover h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: .75rem; }
.whitepaper-cover p { color: var(--text-muted); font-size: .9rem; }
.whitepaper-form .checkbox-row label { color: var(--text-muted); }
.whitepaper-form .checkbox-row label a { color: var(--red); }

/* ── FOOTER ── */
footer { background: var(--white); border-top: 1px solid rgba(0,0,0,.08); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 2rem; align-items: center; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.footer-brand p { color: var(--text-muted); font-size: .8rem; margin-top: .4rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: .85rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--red); }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .75rem; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.social-link:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding-top: 1.5rem; font-size: .78rem; color: var(--text-muted);
}



/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content { text-align: center; }
  .hero-subline { text-align: center; }
  .hero-form-wrapper { margin: 0 auto 2rem; max-width: 580px; }
  .trust-badges { justify-content: center; }
  
  .stats-grid, .steps-grid, .tech-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reference-inner, .whitepaper-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .stats-grid, .steps-grid, .outcomes-grid, .target-grid, .tech-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--dark); padding: 1.5rem 2rem; gap: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .highlight-box { flex-direction: column; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-floating-badge { left: 1rem; bottom: 1rem; }
}

/* ── MONOCHROMATIC ICONS ── */
.icon-mono {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon-wrapper, .step-icon-wrapper, .highlight-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(227,30,36,0.06);
  color: var(--red);
  margin-bottom: 1.25rem;
}
.highlight-box-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.tech-badge .icon-wrapper {
  margin-bottom: 0;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.outcome-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  flex-shrink: 0;
}
.outcome-icon-wrapper .icon-mono {
  width: 14px;
  height: 14px;
  color: var(--white);
}
