:root {
  --accent: #fe9fb8;
  --accent-dark: #e07a96;
  --ink: #0c1118;
  --ink-soft: #1a2433;
  --paper: #f6f7fb;
  --paper-2: #e8ecf5;
  --text: #0c1118;
  --text-on-dark: #f6f7fb;
  --muted: #5c6678;
  --line: rgba(12, 17, 24, 0.12);
  --shadow: 0 18px 50px rgba(12, 17, 24, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
  --space: clamp(1rem, 2vw, 1.75rem);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ink-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.nav-toggle i {
  font-size: 1.35rem;
  color: var(--ink);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--accent);
}

.nav-close {
  display: none;
}

main {
  overflow-x: hidden;
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space);
}

.section--tight {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.surface-dark {
  background: radial-gradient(1200px 500px at 10% 0%, #1b2434 0%, #0f1419 55%, #0c1118 100%);
  color: var(--text-on-dark);
}

.surface-dark a {
  color: #fff;
}

.surface-dark .muted {
  color: rgba(246, 247, 251, 0.78);
}

.surface-rose {
  background: linear-gradient(135deg, #ffe8ef 0%, #ffd6e4 40%, #fe9fb8 120%);
  color: var(--ink);
}

.surface-ink {
  background: var(--ink-soft);
  color: var(--text-on-dark);
}

.surface-ink a {
  color: #fff;
}

.surface-paper {
  background: var(--paper);
  color: var(--ink);
}

.surface-muted {
  background: var(--paper-2);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: stretch;
  color: var(--text-on-dark);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(12, 17, 24, 0.82) 0%, rgba(12, 17, 24, 0.55) 45%, rgba(12, 17, 24, 0.78) 100%),
    url("../image/picture11.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 20% 20%, rgba(254, 159, 184, 0.35), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-card {
  background: rgba(12, 17, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 159, 184, 0.55);
  box-shadow: 0 22px 60px rgba(12, 17, 24, 0.35);
}

.hero h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  margin: 0 0 1.25rem;
  color: rgba(246, 247, 251, 0.92);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-row li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pill-row li:hover {
  background: rgba(254, 159, 184, 0.18);
  border-color: rgba(254, 159, 184, 0.65);
  transform: translateY(-1px);
}

.hero-form {
  display: grid;
  gap: 0.75rem;
}

.hero-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 17, 24, 0.35);
  color: var(--text-on-dark);
  font: inherit;
}

.hero-form input::placeholder {
  color: rgba(246, 247, 251, 0.55);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
}

.btn i {
  font-size: 1.15rem;
  color: inherit;
}

.surface-dark .btn i,
.surface-ink .btn i,
.hero .btn i {
  color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: #ffc3d4;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: var(--text-on-dark);
}

.btn-dark:hover {
  background: #000;
}

.section h2 {
  font-size: clamp(1.55rem, 1.2rem + 1vw, 2.1rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
}

.section h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  margin: 1.5rem 0 0.5rem;
}

.prose {
  max-width: 72ch;
}

.prose-wide {
  max-width: 80ch;
}

.split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(12, 17, 24, 0.06);
}

.surface-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

.card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card i {
  font-size: 1.35rem;
  color: var(--accent-dark);
}

.surface-dark .card i {
  color: var(--accent);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.list-check li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.list-check i {
  margin-top: 0.2rem;
  color: var(--accent-dark);
}

.surface-dark .list-check i {
  color: var(--accent);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  background: #fff;
  position: relative;
  padding-left: 3.25rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.surface-dark .steps li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.disclaimer {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.1rem;
  background: rgba(254, 159, 184, 0.12);
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.surface-dark .disclaimer {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
  border-left-color: var(--accent);
}

.site-footer {
  background: #0b0f15;
  color: rgba(246, 247, 251, 0.88);
  padding: 2.25rem var(--space);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer a {
  color: #fff;
}

.footer-meta {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(246, 247, 251, 0.72);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: var(--space);
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: #0b0f15;
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: end center;
  padding: var(--space);
  background: rgba(12, 17, 24, 0.55);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel-dialog {
  width: min(640px, 100%);
  background: var(--paper);
  color: var(--ink);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}

.cookie-toggle {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  background: #fff;
}

.toggle small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.switch {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  position: relative;
  flex: 0 0 auto;
}

.switch::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  position: absolute;
  top: 2px;
  left: 3px;
  transition: transform 160ms ease;
}

.switch.is-on {
  background: rgba(254, 159, 184, 0.35);
  border-color: rgba(254, 159, 184, 0.65);
}

.switch.is-on::after {
  transform: translateX(20px);
}

.switch.is-locked {
  opacity: 0.65;
}

label.switch-wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
}

input.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label {
  font-weight: 700;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.form-grid textarea {
  min-height: 160px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(12, 17, 24, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
  display: block;
}

.kpi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.kpi div {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
}

.kpi strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.surface-dark .note {
  color: rgba(246, 247, 251, 0.75);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .kpi {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 30%;
    z-index: 55;
    background: #fff;
    color: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 1.25rem 1.5rem;
    box-shadow: -18px 0 50px rgba(12, 17, 24, 0.18);
    transform: translateX(110%);
    transition: transform 220ms ease;
    overflow: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.6rem;
    cursor: pointer;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(12, 17, 24, 0.45);
    z-index: 40;
  }
}

@media (max-width: 420px) {
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

body.cookie-panel-open {
  overflow: hidden;
}

.prose-wide h2 {
  margin-top: 2.25rem;
}

.prose-wide h2:first-of-type {
  margin-top: 1.5rem;
}

.on-page-list {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.45rem;
  line-height: 1.45;
}

.on-page-list li {
  padding-left: 0.25rem;
}

.feature-showcase {
  background: #fff;
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.feature-showcase__header {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.feature-showcase__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.feature-showcase__header h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 1.2rem + 1.6vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.feature-showcase__lead {
  margin: 0 auto;
  max-width: 46rem;
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
}

.feature-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.feature-showcase__col--left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-showcase__mini {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.feature-showcase__img {
  width: 100%;
  display: block;
  border-radius: clamp(18px, 2.5vw, 28px);
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(12, 17, 24, 0.1);
}

.feature-showcase__img--sm {
  aspect-ratio: 4 / 3;
  min-height: 140px;
}

.feature-showcase__visual {
  position: relative;
  border-radius: clamp(18px, 2.5vw, 28px);
  overflow: hidden;
}

.feature-showcase__img--lg {
  aspect-ratio: 3 / 4;
  width: 100%;
  max-height: min(560px, 72vh);
  min-height: 280px;
}

.feature-showcase__stat {
  position: absolute;
  left: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  max-width: min(240px, 88%);
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(12, 17, 24, 0.18);
}

.feature-showcase__stat-num {
  display: block;
  font-size: clamp(1.85rem, 1.4rem + 1.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.feature-showcase__stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.feature-showcase__tagline {
  margin: 1.2rem 0 1rem;
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.12rem);
  color: var(--ink);
}

.feature-showcase__cta {
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 0.85rem 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(254, 159, 184, 0.35);
}

.feature-list--lines li {
  padding: 0.65rem 0.75rem 0.65rem 1.85rem;
  border-radius: 12px;
  border: 1px dashed rgba(12, 17, 24, 0.12);
  background: linear-gradient(135deg, rgba(254, 159, 184, 0.08), transparent 55%);
}

.feature-list--lines li::before {
  top: 50%;
  transform: translateY(-50%);
}

.feature-steps {
  counter-reset: feat;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.feature-steps li {
  counter-increment: feat;
  position: relative;
  padding: 0.55rem 0.65rem 0.55rem 2.4rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.45;
  background: #fff;
}

.feature-steps li::before {
  content: counter(feat);
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.78rem;
  display: grid;
  place-items: center;
}

.feature-dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.feature-dl div {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  background: var(--paper);
}

.feature-dl dt {
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
}

.feature-dl dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.feature-showcase__quote {
  margin: 1.25rem 0 0;
  padding: 1.2rem 1.25rem 1.25rem;
  border-radius: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  background: var(--paper-2);
  position: relative;
}

.feature-showcase__qicon {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.feature-showcase__quote p {
  margin: 0 0 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.feature-showcase__quote footer {
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

@media (max-width: 900px) {
  .feature-showcase__grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase__mini {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .feature-showcase__img--sm {
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .feature-showcase__visual {
    max-width: 28rem;
  }
}

@media (max-width: 420px) {
  .feature-showcase__stat {
    padding: 0.75rem 0.85rem;
  }

  .feature-showcase__cta {
    width: 100%;
    justify-content: center;
  }
}
