:root {
  --bg: #f3f6fb;
  --bg-alt: #edf2f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #0f1c2e;
  --line: rgba(115, 138, 164, 0.2);
  --line-strong: rgba(61, 89, 121, 0.25);
  --text: #33465d;
  --text-soft: #62758d;
  --title: #14263d;
  --accent: #0f5fa8;
  --accent-strong: #0a4478;
  --accent-soft: rgba(15, 95, 168, 0.1);
  --success-soft: #edf8f1;
  --shadow-lg: 0 32px 90px rgba(15, 34, 58, 0.14);
  --shadow-md: 0 20px 50px rgba(15, 34, 58, 0.1);
  --shadow-sm: 0 10px 26px rgba(15, 34, 58, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 95, 168, 0.1), transparent 25%),
    radial-gradient(circle at 100% 20%, rgba(15, 95, 168, 0.08), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, var(--bg-alt) 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; text-wrap: pretty; }

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--title);
  color: #fff;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.8);
  border-bottom: 1px solid rgba(115, 138, 164, 0.16);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { width: clamp(156px, 17vw, 220px); }

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #3b89cf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--title); }

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header-actions {
  align-items: center;
}

.language-switcher {
  position: relative;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--title);
  font-weight: 700;
  pointer-events: none;
}

.language-current img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.language-switcher select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #2e7dc2 100%);
  box-shadow: 0 14px 30px rgba(15, 95, 168, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
}

.btn-secondary {
  color: var(--title);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(15, 95, 168, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--title);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section {
  position: relative;
  padding: 48px 0 28px;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0 0 auto;
  height: 680px;
  background:
    radial-gradient(circle at 20% 15%, rgba(15, 95, 168, 0.14), transparent 22%),
    radial-gradient(circle at 86% 20%, rgba(15, 95, 168, 0.15), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 247, 252, 0.62) 100%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.hero-layout-single {
  grid-template-columns: 1fr;
}

.hero-section-hub .hero-copy {
  max-width: 980px;
}

.hero-copy,
.hero-panel,
.info-card,
.comparison-card,
.use-case-card,
.feature-panel,
.insight-banner,
.reference-card,
.reference-note,
.quote-card-modern,
.checklist-card,
.cta-shell,
.cta-side-card,
.faq-item,
.stat-card,
.timeline-item { position: relative; }

.eyebrow,
.section-label,
.panel-label,
.comparison-tag,
.stat-kicker,
.reference-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eyebrow::before,
.section-label::before,
.panel-label::before,
.comparison-tag::before,
.stat-kicker::before,
.reference-city::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-label.light { background: rgba(255, 255, 255, 0.12); color: #fff; }
.section-label.light::before { background: #d7e8f9; }

h1, h2, h3, strong { color: var(--title); }

h1 {
  margin: 18px 0 18px;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.lead {
  max-width: 64ch;
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stats-grid-hub .stat-card {
  min-height: 100%;
}

.case-switcher-wrap {
  position: relative;
  z-index: 5;
  padding-top: 14px;
}

.case-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text-soft);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.case-switcher a:hover,
.case-switcher a:focus-visible,
.case-switcher a.is-active {
  color: var(--title);
  border-color: rgba(15, 95, 168, 0.35);
  background: rgba(15, 95, 168, 0.08);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.industry-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.industry-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(59, 137, 207, 0.24));
}

.stat-card,
.info-card,
.comparison-card,
.use-case-card,
.feature-tile,
.reference-note,
.quote-card-modern,
.checklist-card,
.cta-side-card,
.faq-item,
.timeline-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(10, 23, 38, 0.96) 0%, rgba(18, 38, 61, 0.94) 100%);
  border: 1px solid rgba(161, 193, 226, 0.12);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 159, 221, 0.28) 0%, rgba(95, 159, 221, 0) 68%);
}

.hero-panel-top h2,
.hero-panel strong,
.hero-panel p,
.hero-panel span { color: #f5f9fd; }

.hero-panel-top { margin-bottom: 22px; }
.hero-panel-top h2 { margin-top: 16px; font-size: clamp(1.6rem, 2.6vw, 2.3rem); }

.benefit-stack { display: grid; gap: 14px; }

.benefit-item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-item p { color: rgba(241, 247, 252, 0.78); }

.hero-panel-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-panel-meta div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-meta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(241, 247, 252, 0.7);
  font-size: 0.88rem;
}

.hero-panel-meta strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
}

.section { padding: 44px 0 78px; }

.section-muted { position: relative; }

.section-muted::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(249, 251, 254, 0.66) 100%);
  border-top: 1px solid rgba(115, 138, 164, 0.12);
  border-bottom: 1px solid rgba(115, 138, 164, 0.12);
  pointer-events: none;
}

.section-muted > .container { position: relative; z-index: 1; }

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.section-heading-left { margin-bottom: 24px; }

.four-card-grid,
.comparison-grid,
.use-cases-grid,
.feature-grid,
.reference-grid-modern,
.implementation-grid {
  display: grid;
  gap: 18px;
}

.four-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.info-card::before,
.comparison-card::before,
.use-case-card::before,
.feature-tile::before,
.reference-note::before,
.checklist-card::before,
.cta-side-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(59, 137, 207, 0.24));
}

.info-index {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(15, 95, 168, 0.4);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.comparison-card-positive {
  background: linear-gradient(180deg, #f5fbf7 0%, var(--success-soft) 100%);
  border-color: rgba(103, 154, 118, 0.2);
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
}

.list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.5em;
  border-radius: 50%;
  flex: 0 0 9px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(15, 95, 168, 0.1);
}

.list-light li,
.list-light li::before,
.insight-banner p,
.insight-banner h2,
.insight-banner h3 { color: #fff; }

.list-light li::before {
  background: #d4e5f6;
  box-shadow: 0 0 0 5px rgba(212, 229, 246, 0.15);
}

.use-cases-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.tag,
.reference-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 95, 168, 0.08);
  border: 1px solid rgba(61, 89, 121, 0.14);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(250, 252, 255, 0.96) 100%);
  box-shadow: var(--shadow-md);
}

.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-tile {
  padding: 22px;
  border: 1px solid rgba(115, 138, 164, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
}

.insight-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #123a62 0%, #165592 55%, #327bbb 100%);
  box-shadow: var(--shadow-lg);
}

.insight-box {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.reference-grid-modern { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.reference-card,
.reference-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.reference-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 24px;
  background: linear-gradient(180deg, #f5f8fc 0%, #eaf0f6 100%);
}

.reference-media img {
  width: 100%;
  max-width: 320px;
  max-height: 430px;
  object-fit: contain;
}

.reference-content { padding: 26px; }
.reference-content h3 { margin-top: 16px; font-size: 1.26rem; }

.reference-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
}

.text-link::after { content: "→"; }
.text-link:hover,
.text-link:focus-visible { color: var(--accent-strong); }

.reference-note {
  padding: 26px;
  justify-content: center;
}

.implementation-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.timeline { display: grid; gap: 14px; }

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 16px;
}

.timeline-step {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, #2f7ec3 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(15, 95, 168, 0.22);
}

.implementation-side { display: grid; gap: 18px; }

.quote-card-modern { background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%); }

.quote-card-modern blockquote {
  margin: 0 0 18px;
  color: var(--title);
  font-size: 1.12rem;
  line-height: 1.65;
}

.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0 22px; }

summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 34px 22px 0;
  color: var(--title);
  font-weight: 700;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

details[open] summary::after { content: "–"; }
details p { margin: 0 0 22px; color: var(--text-soft); }

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 247, 252, 0.96) 100%);
  box-shadow: var(--shadow-lg);
}

.cta-shell h2 { margin: 18px 0 16px; }
.cta-shell p { color: var(--text-soft); margin-bottom: 24px; }

.site-footer {
  padding: 22px 0 42px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(115, 138, 164, 0.16);
}

.footer-brand-block,
.footer-meta-block {
  display: grid;
  gap: 12px;
}

.footer-logo {
  width: 180px;
}

.footer-title {
  color: var(--title);
  font-weight: 800;
  font-size: 0.95rem;
}

.footer-meta-block-wide {
  padding-left: 10px;
}

.footer-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a,
.footer-socials a {
  color: var(--accent);
  font-weight: 700;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(61, 89, 121, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(61, 89, 121, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(15, 95, 168, 0.35);
  background: rgba(255, 255, 255, 0.96);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .site-nav a::after, .menu-toggle span { transition: none; }
}

@media (max-width: 1080px) {
  .header-inner,
  .hero-layout,
  .four-card-grid,
  .comparison-grid,
  .use-cases-grid,
  .industry-grid,
  .reference-grid-modern,
  .implementation-grid,
  .cta-shell,
  .insight-banner { grid-template-columns: 1fr; }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open { display: flex; }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 18px;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .stats-grid,
  .hero-panel-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta-block-wide {
    grid-column: 1 / -1;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--max-width), calc(100% - 24px)); }
  .header-inner { min-height: 76px; gap: 16px; }
  .brand-logo { width: 160px; }

  h1 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  h2 { font-size: clamp(1.45rem, 6.5vw, 2rem); }
  .section { padding: 34px 0 56px; }
  .hero-section { padding-top: 28px; }

  .header-actions,
  .hero-actions,
  .btn { width: 100%; }

  .header-actions,
  .hero-actions { flex-direction: column; }

  .stats-grid,
  .feature-grid,
  .hero-panel-meta,
  .industry-grid { grid-template-columns: 1fr; }

  .stat-card,
  .info-card,
  .comparison-card,
  .use-case-card,
  .feature-panel,
  .feature-tile,
  .hero-panel,
  .reference-content,
  .reference-media,
  .reference-note,
  .timeline-item,
  .quote-card-modern,
  .checklist-card,
  .cta-shell,
  .cta-side-card,
  .insight-banner,
  .insight-box { padding: 20px; }

  .timeline-item { grid-template-columns: 1fr; }
  .timeline-step { width: 44px; height: 44px; }
  .faq-item { padding: 0 18px; }
  .reference-media { min-height: 240px; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-meta-block-wide { grid-column: auto; }
}