:root {
  --bg-primary: #0E0F12;
  --bg-secondary: #1A1D23;
  --border: #2A2F38;
  --text-primary: #E6E8EB;
  --text-muted: #9AA0A6;
  --text-dark: #1C1F26;
  --accent-red: #8C1D18;
  --accent-blue: #5A6F8F;
  --max-width: 1160px;
  --transition-speed: 200ms;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

h2 {
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 10px;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

a:hover,
 a:focus-visible {
  color: var(--text-primary);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(14, 15, 18, 0.92);
  border-bottom: 1px solid var(--border);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.skip-link:focus {
  left: 16px;
  outline: 2px solid var(--accent-blue);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  color: var(--text-muted);
}

.nav-links a {
  padding: 8px 10px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--accent-red);
  color: var(--text-primary);
}

.nav-links a.active {
  color: var(--text-primary);
  border-color: var(--accent-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color var(--transition-speed) ease, color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--accent-red);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.24);
}

.btn.primary {
  border-color: var(--accent-red);
  background: rgba(140, 29, 24, 0.14);
}

.btn.ghost {
  border-color: transparent;
  color: var(--text-muted);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  color: var(--text-primary);
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--accent-red);
}

.btn.text {
  border: none;
  padding: 0;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}
.btn.text:hover,
.btn.text:focus-visible {
  color: var(--text-primary);
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--accent-red);
}

main {
  min-height: auto;
  height: auto;
}

.section {
  position: relative;
  width: 100%;
  min-height: auto;
  height: auto;
  padding: 96px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.section > *:not(.fw-image-section) {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.section > * {
  position: relative;
  z-index: 2;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.section::before {
  background: linear-gradient(to bottom, rgba(14,15,18,0.9) 0%, rgba(14,15,18,0.35) 28%, rgba(14,15,18,0) 55%);
}

.section::after {
  background: linear-gradient(to top, rgba(14,15,18,0.9) 0%, rgba(14,15,18,0.35) 28%, rgba(14,15,18,0) 55%);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(230, 232, 235, 0.25), transparent);
  margin: -48px auto 24px;
  max-width: var(--max-width);
  opacity: 0.9;
}

.section-header {
  position: relative;
}

.section-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  max-width: 240px;
  background:
    linear-gradient(to right, rgba(230,232,235,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(230,232,235,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

.section.compact {
  padding: 48px 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.section-header h2,
.section-header h3 {
  margin: 0;
}

.section-header p {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.section-heading {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(26, 29, 35, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.section-heading h2 {
  margin: 0;
}

.section-heading p {
  margin: 0;
}

.whatwedo-section-header {
  margin-bottom: 18px;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 320px);
  gap: 24px;
  align-items: center;
  background: rgba(14, 15, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.product-hero-text .label {
  display: inline-flex;
  margin: 10px 0 8px;
}

.product-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: rgba(26, 29, 35, 0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.product-hero-media img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 14px;
}

.product-hero-meta {
  display: grid;
  gap: 12px;
}

.at-a-glance {
  background: rgba(26, 29, 35, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.at-a-glance h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.at-a-glance ul {
  margin: 0;
  padding-left: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

.at-a-glance li span {
  color: var(--text-muted);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  background: rgba(14, 15, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.overview-list ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--text-primary);
}

.cta-panel {
  background: rgba(14, 15, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-panel p {
  margin: 0;
}

.why-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 18px;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  background: rgba(14, 15, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.why-card-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-self: start;
}

.why-card-heading h2 {
  margin: 0;
}

.why-card-heading p {
  margin: 0;
}

.why-card-body p {
  margin-top: 0;
}

.why-card-body p:last-child {
  margin-bottom: 0;
}

.pull-quote {
  margin: 14px 0;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(140, 29, 24, 0.14);
  box-shadow: inset 0 0 0 1px rgba(140, 29, 24, 0.18);
}

.pull-quote p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.pull-quote p.subdued {
  font-weight: 400;
}

.why-list {
  margin: 14px 0 6px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(26, 29, 35, 0.85);
}

.why-list ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--text-primary);
}

.provenance {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.fw-image-section {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.fw-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 0;
  transform: scale(1.02);
  filter: contrast(1.05) brightness(1.02);
}

.fw-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,15,18,0.75) 0%, rgba(14,15,18,0.45) 40%, rgba(14,15,18,0.15) 70%, rgba(14,15,18,0) 100%),
    linear-gradient(180deg, rgba(14,15,18,0.92) 0%, rgba(14,15,18,0.5) 45%, rgba(14,15,18,0.25) 70%, rgba(14,15,18,0.85) 100%),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(140, 29, 24, 0.05), transparent 40%);
  pointer-events: none;
}

.fw-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(230,232,235,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(230,232,235,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

.whatwedo-image {
  background-image: url("/public/Section2.png");
}

.whoweserve-image {
  background-image: url("/public/EarthAgain.png");
}

.howwework-image {
  background-image: url("/public/ControlRoom.png");
}

.compliance-image {
  background-image: url("/public/SecurityCompliance.png");
}

.hero {
  position: relative;
  padding: 0 24px;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(90deg, rgba(14,15,18,0.75) 0%, rgba(14,15,18,0.45) 40%, rgba(14,15,18,0.15) 70%, rgba(14,15,18,0) 100%), linear-gradient(120deg, rgba(14, 15, 18, 0.72), rgba(26, 29, 35, 0.48)), url("/public/HeroImage.png");
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 420px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,0.92) 0%, rgba(14,15,18,0.5) 45%, rgba(14,15,18,0.25) 70%, rgba(14,15,18,0.85) 100%),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(140, 29, 24, 0.05), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  padding: 160px 0 140px;
}

.hero h1 {
  font-size: 52px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 20px;
}

.hero p {
  color: var(--text-muted);
  font-size: 18px;
  margin: 0 0 24px;
}

.hero .meta {
  display: flex;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 20px 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
  position: relative;
}

.card:hover,
.card:focus-within {
  border-color: var(--accent-blue);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card .label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.program-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 10px;
}

.card-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.text-card {
  background: rgba(26, 29, 35, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.text-card p {
  margin-top: 0;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.subdued {
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(90, 111, 143, 0.12);
  color: var(--text-primary);
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.note {
  font-size: 14px;
  color: var(--text-muted);
}

.form-status {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--text-primary);
}

.form-status.error {
  color: var(--accent-red);
}

.listed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.listed .item {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-secondary);
  font-weight: 500;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.capability {
  padding: 14px 14px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary);
}

.capability-title {
  font-weight: 600;
  margin: 0 0 6px;
}

.capability-meta {
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

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

.process-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  min-height: 150px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.process-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.process-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  margin-right: 2px;
  border: 1px solid var(--border);
  background: rgba(14,15,18,0.55);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
}

.process-card:hover {
  border-color: rgba(230,232,235,0.16);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transform: translateY(-4px);
}

.why-blurb {
  margin-top: 14px;
  color: var(--text-muted);
  max-width: 720px;
}

.process-card:hover .step-badge {
  border-color: rgba(140,29,24,0.45);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.links {
  display: flex;
  gap: 12px;
}

.links a {
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.links a:hover,
.links a:focus-visible {
  color: var(--text-primary);
  border-color: var(--accent-red);
}

.form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.form label {
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 16px;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--accent-blue);
  border-color: var(--accent-blue);
}

.form textarea {
  min-height: 160px;
  resize: vertical;
}

.meta {
  color: var(--text-muted);
  font-size: 14px;
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

.status-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
}

.status-band {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
  background:
    linear-gradient(to right, rgba(230,232,235,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(230,232,235,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.9;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.table-grid .cell {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-secondary);
}

.highlight-bar {
  width: 32px;
  height: 2px;
  background: var(--accent-red);
  margin: 0 0 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.card-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-anim-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.card-anim-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 960px) {
  .hero {
    padding: 0 18px;
    aspect-ratio: auto;
    height: auto;
    min-height: 400px;
  }
  .section-header {
    gap: 10px;
    flex-wrap: wrap;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .navbar {
    padding: 14px 18px;
  }
  header {
    position: sticky;
  }
}

@media (max-width: 720px) {
  .section {
    height: auto;
    min-height: auto;
    padding: 64px 18px;
  }
  .fw-image {
    background-position: center 50%;
  }
  .section-header {
    flex-direction: column;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  h1,
  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 19px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
  }
  .hero {
    padding: 0 16px;
    aspect-ratio: auto;
  }
  .hero-content {
    padding: 120px 0 90px;
  }
  .section::before,
  .section::after {
    height: 56px;
    background: linear-gradient(to bottom, rgba(14,15,18,0.92), rgba(14,15,18,0));
  }
  .hero p {
    font-size: 16px;
  }
  .card {
    min-height: auto;
    padding: 18px 16px;
    gap: 8px;
  }
  .product-hero {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    gap: 16px;
  }
  .overview-grid {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 14px;
  }
  .why-card {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  .why-card-heading {
    padding: 10px 12px;
  }
  .program-icon {
    width: 52px;
    height: 52px;
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }
  h1,
  .hero h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  .hero-content {
    padding: 100px 0 72px;
  }
  .section {
    padding: 56px 14px;
  }
  .btn {
    padding: 10px 14px;
  }
  .cta-group {
    gap: 10px;
  }
  .card-grid,
  .pillars {
    gap: 12px;
  }
  .at-a-glance,
  .why-card,
  .product-hero {
    padding: 14px;
  }
  .program-icon {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}
