:root {
  --navy: #011847;
  --navy-deep: #00133d;
  --navy-darker: #000f33;
  --blue: #1b8fff;
  --blue-bright: #42a5ff;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --text-dark: #0d1735;
  --text-mid: #66748f;
  --border-light: #dde5f0;
  --card-border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 64px rgba(0, 20, 70, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1280px;

  /* compatibility aliases */
  --bg: var(--navy-deep);
  --line: rgba(255, 255, 255, 0.1);
  --text: var(--white);
  --muted: rgba(255, 255, 255, 0.82);
  --accent: var(--blue);
  --accent-2: var(--blue-bright);
  --accent-soft: rgba(27, 143, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 19, 61, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container,
.nav-wrap {
  min-height: 96px;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand,
.brand-wrap {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.site-nav,
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  flex: 1;
}

.site-nav a,
.nav a {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.94);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav a:hover,
.nav a.active {
  color: var(--blue);
}

.site-nav a.active::after,
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.header-cta,
.button-accent {
  padding: 14px 24px;
  border: 1.5px solid var(--blue);
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  background: transparent;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.header-cta:hover,
.button-accent:hover {
  background: rgba(27, 143, 255, 0.12);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  justify-self: end;
  cursor: pointer;
  color: var(--white);
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 999px;
}

/* ===== BUTTONS ===== */

.btn,
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary,
.button {
  background: linear-gradient(135deg, #2498ff 0%, #0d7cff 100%);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(13, 124, 255, 0.28);
  border: none;
}

.btn-primary:hover,
.button:hover {
  transform: translateY(-2px);
}

.btn-secondary,
.button-secondary {
  border: 1.5px solid var(--blue);
  color: var(--white);
  background: transparent;
}

.btn-secondary:hover,
.button-secondary:hover {
  background: rgba(27, 143, 255, 0.1);
}

.form-submit {
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

/* ===== HOME HERO ===== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background:
    radial-gradient(circle at 15% 85%, rgba(27, 143, 255, 0.18), transparent 26%),
    radial-gradient(circle at 92% 46%, rgba(66, 165, 255, 0.16), transparent 24%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-darker) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.28), transparent 74%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 430px);
  gap: 72px;
  align-items: start;
}

.eyebrow,
.eyebrow-pill,
.section-label,
.card-eyebrow,
.section-tag {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1,
.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.accent-line {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin: 24px 0 20px;
}

.accent-line-small {
  width: 48px;
  margin: 18px 0 20px;
}

.accent-line-dark {
  margin-top: 22px;
  margin-bottom: 0;
}

.hero-text,
.hero-copy p {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy p {
  margin-top: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
  padding-top: 24px;
}

.stat,
.stat-card {
  position: relative;
}

.stat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.stat-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 4px;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.16);
}

.stat-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--blue);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat strong,
.stat-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat span,
.stat-card span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-card,
.hero-panel {
  padding: 30px 30px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.hero-card h2,
.hero-panel h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.impact-list,
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-list li,
.hero-list li {
  position: relative;
  padding: 16px 0 16px 42px;
  font-size: 16px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-list li::before,
.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--blue);
}

.supporting {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(27, 143, 255, 0.1);
  border: 1px solid rgba(27, 143, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  border: 1.5px solid var(--blue);
  background: rgba(27, 143, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

/* ===== HOME / GENERAL WHITE SECTIONS ===== */

.services-band,
.service-sections,
.contact-section,
.section-light {
  background: var(--off-white);
  color: var(--text-dark);
  padding: 78px 0 88px;
}

.services-intro h2,
.split-box h2,
.contact-copy h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.services-head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.services-head-grid p,
.split-box p,
.contact-copy p,
.section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.services-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.services-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.value-card,
.problem-card,
.outcome-card,
.contact-form-shell,
.intro-panel,
.panel,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(13, 23, 53, 0.05);
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(13, 23, 53, 0.08);
  border-color: #cfdced;
}

.service-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.value-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text-dark);
}

.service-card p,
.value-card p,
.problem-card p,
.outcome-card p,
.text-block p,
.contact-card p,
.contact-detail-item span {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ===== DARK SPLIT / CTA SECTIONS ===== */

.split-section,
.section.alt,
.service-cta-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-darker) 100%);
  padding: 76px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.middle-box {
  padding: 10px 0 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.right-box {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.left-box h2,
.right-box h2 {
  color: var(--white);
}

.middle-box p,
.right-box p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.cta-shell,
.service-cta-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}

.service-cta-shell h2,
.cta-shell h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--white);
}

.service-cta-shell p,
.cta-text {
  margin-top: 18px;
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
}

.service-cta-panel,
.contact-box {
  background: rgba(27, 143, 255, 0.1);
  border: 1px solid rgba(27, 143, 255, 0.22);
  border-radius: 22px;
  padding: 26px;
}

.service-cta-panel p,
.contact-box p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.7;
}

.contact-tag {
  margin-bottom: 10px;
  color: var(--blue-bright);
}

.contact-box-button {
  margin-top: 18px;
}

/* ===== INTERNAL PAGE HERO ===== */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 64px;
  background:
    radial-gradient(circle at 15% 80%, rgba(27, 143, 255, 0.16), transparent 24%),
    radial-gradient(circle at 90% 30%, rgba(66, 165, 255, 0.14), transparent 22%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-darker) 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 720px;
}

.page-hero-copy p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.page-hero-panel {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}

.page-hero-panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero-panel p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.8;
}

/* compatibility for your current HTML */
.page-hero .hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}

.page-hero .hero-panel h2 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.page-hero .hero-list {
  margin-top: 18px;
}

/* ===== SERVICE PAGE SECTIONS ===== */

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-bottom: 24px;
  align-items: stretch;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block-left,
.service-block-right {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(13, 23, 53, 0.05);
}

.service-block-left {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-block-left h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-dark);
}

.service-block-left p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
}

.service-list-title {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-points li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
}

.service-points li:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-points li:first-child::before {
  top: 1px;
}

.service-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

/* ===== GENERIC LAYOUT HELPERS ===== */

.two-col,
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.subsection-title {
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-dark);
}

.intro-panel p {
  margin-top: 16px;
}

.problems-stack {
  display: grid;
  gap: 18px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outcome-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
}

/* ===== CONTACT PAGE ===== */

.contact-details-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-detail-item {
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.contact-detail-item strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form-shell h2 {
  margin: 0 0 24px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  background: #f8fbff;
  color: var(--text-dark);
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8ea1bc;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(27,143,255,0.7);
  box-shadow: 0 0 0 4px rgba(27,143,255,0.10);
}

/* ===== FOOTER ===== */

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.footer-copy {
  margin-top: 16px;
  max-width: 620px;
  color: rgba(255,255,255,0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
}

/* ===== ANIMATION ===== */

.reveal {
  animation: fadeUp 0.8s ease both;
}

.reveal-delay {
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1180px) {
  .site-header .container,
  .nav-wrap {
    grid-template-columns: 250px 1fr auto;
  }

  .brand-logo {
    max-width: 240px;
  }

  .site-nav,
  .nav {
    gap: 24px;
  }

  .hero-grid,
  .contact-card,
  .services-head-grid,
  .page-hero-grid,
  .service-block,
  .service-cta-shell,
  .two-col,
  .contact-page-grid,
  .cta-shell,
  .outcomes-grid,
  .values-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .middle-box,
  .right-box {
    border-left: 0;
    padding-left: 0;
  }

  .hero-card,
  .hero-panel {
    max-width: 620px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header .container,
  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .brand-logo {
    max-width: 210px;
  }

  .mobile-toggle {
    display: block;
  }

  .site-nav,
  .nav,
  .header-cta,
  .button-accent {
    display: none;
  }

  .site-nav.open,
  .nav.open {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 0 6px;
    width: 100%;
  }

  .site-nav.open a.active::after,
  .nav.open a.active::after {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .page-hero {
    padding: 56px 0 48px;
  }

  .hero h1,
  .hero-copy h1 {
    font-size: 46px;
  }

  .page-hero-copy h1 {
    font-size: 40px;
  }

  .hero-text,
  .hero-copy p,
  .page-hero-copy p {
    font-size: 17px;
  }

  .hero-stats,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .contact-card,
  .hero-card,
  .hero-panel,
  .service-block-left,
  .service-block-right,
  .page-hero-panel,
  .service-cta-shell,
  .service-card,
  .value-card,
  .problem-card,
  .outcome-card,
  .contact-form-shell,
  .intro-panel,
  .cta-shell,
  .contact-box {
    padding: 24px;
  }

  .btn,
  .button,
  .button-secondary {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .impact-list li,
  .hero-list li {
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}