:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(0, 86, 224, 0.12);
  --white-line: rgba(255, 255, 255, 0.22);
  --brand-500: #1e6fff;
  --brand-600: #0056e0;
  --brand-700: #0041a8;
  --brand-900: #002c70;
  --teal-500: #00bfa5;
  --teal-600: #00a88e;
  --green-400: #4ade80;
  --shadow-soft: 0 20px 40px rgba(0, 86, 224, 0.1);
  --shadow-strong: 0 0 60px rgba(0, 86, 224, 0.22), 0 0 120px rgba(0, 191, 165, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-700);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.subpage .site-header {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 58%, var(--teal-500) 100%);
}

.subpage .site-header .brand,
.subpage .site-header .brand-copy small,
.subpage .site-header .nav-links a {
  text-shadow: 0 1px 10px rgba(0, 44, 112, 0.18);
}

.site-header.is-solid {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 86, 224, 0.12);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  box-shadow: 0 12px 28px rgba(0, 86, 224, 0.28);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.brand-copy {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px 0 4px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  border-right-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.site-header.is-solid .brand,
.site-header.is-solid .brand-copy small {
  color: var(--text);
}

.site-header.is-solid .nav-links a {
  color: #334155;
  border-right-color: rgba(148, 163, 184, 0.9);
}

.site-header.is-solid .nav-links a:hover {
  color: var(--brand-700);
  border-right-color: var(--brand-500);
}

.nav-cta {
  display: inline-flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--teal-500));
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 86, 224, 0.32);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--teal-600));
  box-shadow: 0 10px 30px rgba(0, 86, 224, 0.4);
}

.button-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 58%, var(--teal-500) 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(147, 197, 253, 0.18), transparent 16%),
    radial-gradient(circle at 85% 80%, rgba(52, 211, 153, 0.2), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(0, 191, 165, 0.1), transparent 28%);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="1" height="1" x="30" y="30" fill="white"/></svg>');
  background-size: 60px 60px;
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 116px 0 72px;
}

.hero-copy {
  text-align: left;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-400);
  animation: pulse 2s ease-in-out infinite;
}

.hero-copy h1 {
  margin: 0 0 22px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0 0 12px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 34px;
}

.hero-actions .button {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.emoji-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
  flex: 0 0 auto;
}

.hero-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(0, 44, 112, 0.92), rgba(0, 86, 224, 0.88));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-strong);
  color: #fff;
  animation: floatCard 3s ease-in-out infinite;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.signal-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.22);
}

.signal-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.signal-band strong {
  color: #d8fff4;
  font-size: 14px;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.metric,
.timeline {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric {
  padding: 16px;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.metric span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
}

.timeline {
  margin: 0 18px 18px;
  padding: 18px;
}

.timeline ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.timeline li strong {
  color: #fff;
}

.timeline b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 191, 165, 0.24);
  color: #fff;
  font-size: 12px;
}

.ticker-strip {
  background: #fff;
  padding: 18px 0;
}

.ticker-shell {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  min-width: max-content;
  gap: 18px;
  color: #6b7280;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: tickerMove 20s linear infinite;
}

.section {
  padding: 88px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-header p,
.page-hero p,
.content-shell p,
.content-shell li,
.card p,
.feature-panel p,
.feature-mini p,
.benefit p,
.sector-item p {
  color: var(--muted);
}

.section-header p,
.page-hero p {
  margin-top: 14px;
  font-size: 18px;
}

.page-hero {
  margin: 110px auto 0;
  padding: 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
}

.page-hero .container,
.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 52px 42px 48px;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .icon-badge {
  margin-bottom: 18px;
}

.page-hero .eyebrow {
  margin: 0 0 20px;
}

.page-hero h1 {
  max-width: 920px;
  color: #fff;
  margin: 0;
}

.page-hero p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.76);
  margin: 18px 0 0;
}

.card-grid,
.benefit-grid,
.sector-grid,
.feature-grid,
.link-grid,
.solution-grid {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid,
.link-grid,
.solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid,
.sector-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-panel,
.feature-mini,
.benefit,
.sector-item,
.content-shell,
.faq-item {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-soft);
}

.card,
.feature-panel,
.feature-mini,
.benefit,
.sector-item,
.content-shell {
  padding: 28px;
}

.card,
.feature-panel,
.feature-mini,
.benefit,
.sector-item {
  transition: all 0.3s ease;
}

.card:hover,
.feature-panel:hover,
.feature-mini:hover,
.benefit:hover,
.sector-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 86, 224, 0.15);
}

.card h3,
.feature-panel h3,
.feature-mini h3,
.benefit h3,
.sector-item h3,
.content-shell h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.15), rgba(0, 191, 165, 0.15));
  border: 1px solid rgba(0, 86, 224, 0.2);
  color: var(--brand-600);
}

.icon-badge-soft {
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.1), rgba(0, 191, 165, 0.1));
}

.ui-fa,
.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ui-fa {
  font-size: 20px;
}

.ui-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ui-icon-line {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 86, 224, 0.1);
  box-shadow: 0 18px 34px rgba(0, 86, 224, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(0, 86, 224, 0.11);
}

.audience-card .icon-badge {
  margin-bottom: 0;
}

.audience-card strong {
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.workflow-grid .feature-panel {
  min-height: 220px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: #111827;
  text-align: left;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 24px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-600));
  box-shadow: var(--shadow-strong);
  color: #fff;
  margin-bottom: 40px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .eyebrow {
  margin-bottom: 14px;
}

.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.72);
  padding: 42px 0;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-shell strong {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-line .icon-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  color: #dbeafe;
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.18), rgba(0, 191, 165, 0.18));
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col {
  display: grid;
  gap: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.footer-side-title {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.75;
}

.footer-contact a {
  color: #dbeafe;
  font-weight: 700;
}

.footer-topic-list {
  display: grid;
  gap: 10px;
}

.footer-topic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.footer-topic .emoji-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.lead-modal.active {
  display: block;
}

.lead-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(10px);
}

.lead-panel {
  position: relative;
  width: min(620px, calc(100% - 24px));
  margin: 6vh auto 0;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.28);
}

.lead-panel h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.lead-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(209, 213, 219, 1);
  background: #fff;
  color: #111827;
}

.lead-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header.is-solid .mobile-toggle {
  color: var(--text);
  border-color: rgba(209, 213, 219, 0.9);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.09s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

@keyframes floatCard {
  0%,
  100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid,
  .compact-grid,
  .feature-grid,
  .link-grid,
  .benefit-grid,
  .sector-grid,
  .solution-grid,
  .audience-grid,
  .lead-row {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header.open .nav-shell {
    flex-wrap: wrap;
  }

  .site-header.open .nav-links,
  .site-header.open .nav-cta {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
  }

  .site-header.is-solid.open .nav-links,
  .site-header.is-solid.open .nav-cta {
    background: #fff;
    border-color: rgba(209, 213, 219, 0.9);
  }

  .site-header.open .nav-links a {
    padding: 10px 0;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-header.open .nav-links a:hover {
    background: transparent;
  }

  .site-header.is-solid.open .nav-links a {
    border-right-color: rgba(203, 213, 225, 0.9);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .site-header {
    padding: 12px 0;
  }

  .nav-shell {
    gap: 12px;
  }

  .hero-grid {
    padding: 104px 0 56px;
    gap: 32px;
  }

  .hero-copy {
    text-align: center;
    padding: 0 4px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: none;
    min-height: 54px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 30px 24px 30px;
    border-radius: 24px;
  }

  .page-hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .page-hero p {
    font-size: 16px;
    line-height: 1.75;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .section-header p {
    font-size: 16px;
    line-height: 1.75;
  }

  .card,
  .feature-panel,
  .feature-mini,
  .benefit,
  .sector-item,
  .content-shell,
  .cta-band,
  .lead-panel {
    padding: 24px;
  }

  .cta-band {
    flex-direction: column;
    align-items: start;
    gap: 18px;
    margin-bottom: 32px;
  }

  .cta-band h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .cta-band p {
    font-size: 16px;
    line-height: 1.75;
  }

  .lead-panel h2 {
    font-size: 30px;
  }

  .lead-panel p {
    font-size: 15px;
    line-height: 1.7;
  }

  .lead-actions .button {
    width: 100%;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 2px;
  }

  .audience-card {
    width: 100%;
  }
}
