:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f4f6f8;
  --text: #101828;
  --muted: #667085;
  --line: #d0d5dd;
  --primary: #101828;
  --primary-dark: #060b14;
  --accent: #22c55e;
  --accent-soft: #e7f9ee;
  --success-soft: #ecfdf3;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.1);
}

* {
  box-sizing: border-box;
}

html.geo-checking body {
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(16, 24, 40, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body.popup-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(208, 213, 221, 0.94);
  min-height: 80px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

main {
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(16, 24, 40, 0.12));
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.14);
}

.dot,
.brand-core,
.brand-ring,
.brand-spark {
  position: absolute;
}

.brand-core {
  width: 12px;
  height: 12px;
  top: 17px;
  left: 17px;
  border-radius: 50%;
  background: linear-gradient(180deg, #34d977 0%, #16a34a 100%);
}

.brand-ring {
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.95;
}

.ring-a {
  inset: 8px;
  border-color: rgba(16, 24, 40, 0.3);
}

.ring-b {
  inset: 2px;
  border-color: rgba(34, 197, 94, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 0 58%);
}

.brand-spark {
  border-radius: 50%;
  background: var(--accent);
}

.spark-a {
  width: 7px;
  height: 7px;
  top: 9px;
  right: 10px;
}

.spark-b {
  width: 5px;
  height: 5px;
  bottom: 10px;
  left: 10px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-copy strong,
.brand-copy small,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
}

.brand-copy strong {
  font-size: 34px;
  letter-spacing: 0.16em;
  color: #101828;
}

.brand-copy small {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: #667085;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav a:hover,
.text-link:hover {
  color: var(--primary);
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button {
  background: linear-gradient(135deg, #1d2939 0%, #0b1320 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.24);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.cta-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--surface-alt);
  color: var(--primary);
}

.hero-section {
  position: relative;
  padding: 50px 0 70px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 26px 0 auto;
  height: 580px;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 197, 94, 0.16), transparent 18%),
    radial-gradient(circle at 85% 8%, rgba(16, 24, 40, 0.15), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 246, 248, 0.5));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 420px);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-tag,
.card-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #101828;
}

.hero-copy h1 {
  font-size: clamp(40px, 3vw, 40px);
  line-height: 0.9;
  margin-bottom: 18px;
  /* max-width: 11ch; */
}

.hero-text,
.section-copy p,
.section-heading p,
.service-card p,
.highlight-card p,
.faq-item p,
.footer-brand-block p,
.footer-column p,
.footer-bottom p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 0 0 24px;
}

.hero-inline-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 251, 0.86));
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.08);
}

.hero-inline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0.08));
  color: #15803d;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.24);
}

.hero-inline-copy strong,
.hero-inline-copy span {
  display: block;
}

.hero-inline-copy strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.hero-inline-copy span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hero-inline-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.hero-inline-keywords a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.14);
}

.hero-inline-keywords a:hover {
  background: linear-gradient(135deg, #1d2939 0%, #0b1320 100%);
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-point-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-point-card {
  padding: 22px 20px;
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-point-card p {
  margin: 0 0 16px;
  color: #475467;
  font-size: 17px;
  line-height: 1.55;
}

.mini-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.12);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.16);
}

.mini-help-button:hover {
  background: linear-gradient(135deg, #1d2939 0%, #0b1320 100%);
  color: #fff;
}

.hero-card {
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f7 100%);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card-inner {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(208, 213, 221, 0.9);
  background: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.hero-card h2 {
  font-size: 40px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.hero-card-badge {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -52px;
  top: -58px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.08) 42%, transparent 68%);
  pointer-events: none;
}

.full-width {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-strip span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: #475467;
  font-size: 12px;
  font-weight: 600;
}

.metrics-section {
  padding-bottom: 34px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric-card,
.service-card,
.faq-item,
.highlight-card.soft {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  color: #1d2939;
  line-height: 1.25;
}

.metric-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.about-section,
.services-section,
.highlight-section,
.faq-section,
.funding-section,
.disclaimer-section {
  padding: 64px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 38px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.highlight-card h2,
.highlight-card h3 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 460px;
  box-shadow: var(--shadow);
  background: #f4f6f8;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.services-section {
  background: linear-gradient(180deg, rgba(244, 246, 248, 0.9) 0%, rgba(249, 250, 251, 0) 100%);
}

.section-heading {
  /* max-width: 760px; */
  margin-bottom: 28px;
}

.narrow {
  max-width: 560px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.service-card h3,
.faq-item h3,
.footer-column h3 {
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1;
  margin-bottom: 12px;
  text-wrap: balance;
}

.service-card p,
.faq-item p {
  margin: 0 0 16px;
}

.text-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.16);
}

.service-button:hover {
  background: linear-gradient(135deg, #1d2939 0%, #0b1320 100%);
  color: #fff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
  gap: 20px;
}

.highlight-card {
  padding: 32px;
}

.accent-card {
  border-radius: 28px;
  background: linear-gradient(180deg, #16202e 0%, #060b14 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(6, 11, 20, 0.28);
}

.accent-card h3,
.accent-card p {
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 24px;
}

.funding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.disclaimer-card {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.disclaimer-card .section-tag {
  font-size: 10px;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.disclaimer-card h2 {
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.disclaimer-card p {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.disclaimer-card p:last-child {
  margin: 0;
}

.testimonials-section {
  padding: 64px 0;
  background: var(--surface-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-rating {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(208, 213, 221, 0.7);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
}

.testimonial-author small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding: 64px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a,
.contact-list li > span:last-child {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.contact-list a:hover {
  color: var(--primary);
}

.site-footer {
  padding: 34px 0 28px;
  background: #eaedf1;
  border-top: 1px solid rgba(208, 213, 221, 0.9);
}

.policy-hero {
  padding: 72px 0 24px;
}

.policy-hero h1 {
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.92;
  margin-bottom: 14px;
}

.policy-intro {
  max-width: 72ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-section {
  padding: 12px 0 64px;
}

.policy-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.policy-block + .policy-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(208, 213, 221, 0.72);
}

.policy-block h2 {
  font-size: 34px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.policy-block p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-list {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--muted);
}

.policy-list li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
  align-items: center;
}

.footer-brand .brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.footer-brand .brand-copy strong {
  font-size: 36px;
}

.footer-brand .brand-copy small {
  font-size: 12px;
}

.footer-column {
  display: grid;
  gap: 8px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #667085;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(208, 213, 221, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-button {
  white-space: nowrap;
}

.sticky-call-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d2939 0%, #0b1320 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.28);
}

.sticky-call-button:hover {
  background: var(--primary-dark);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 24, 40, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overflow-y: auto;
}

.popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  padding: 34px;
  border: 1px solid rgba(208, 213, 221, 0.95);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.popup-label {
  margin: 0 0 10px;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popup-card h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1;
  margin-bottom: 14px;
  
}

.popup-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.popup-keywords {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.popup-keywords li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  color: #14532d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.popup-dismiss {
  cursor: pointer;
}

@media (max-width: 960px) {
  .top-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-row {
    gap: 12px;
  }

  .hero-section {
    padding: 56px 0 42px;
  }

  .hero-section::before {
    height: 420px;
  }

  .hero-grid,
  .split-grid,
  .highlight-grid,
  .footer-grid,
  .funding-grid {
    grid-template-columns: 1fr;
  }

  .hero-point-cards,
  .metrics-grid,
  .faq-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inline-note {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero-inline-badge {
    justify-self: start;
  }

  .hero-card {
    max-width: 560px;
  }

  .image-panel {
    min-height: 420px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
  }

  .nav-row {
    flex-wrap: nowrap;
    align-items: center;
    padding: 12px 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 28px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-cta {
    padding: 10px 14px;
    min-height: 42px;
    font-size: 12px;
  }

  .hero-copy h1,
  .policy-hero h1,
  .section-copy h2,
  .section-heading h2,
  .highlight-card h2,
  .highlight-card h3 {
    font-size: 42px;
    line-height: 0.98;
  }

  .popup-card {
    width: min(100%, 620px);
    padding: 28px 24px;
    max-height: calc(100vh - 28px);
  }

  .popup-card h2 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav-row {
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-section {
    padding: 42px 0 34px;
  }

  .hero-section::before {
    inset: 10px 0 auto;
    height: 360px;
  }

  .popup-card {
    padding: 26px 22px;
    border-radius: 24px;
    max-height: calc(100vh - 24px);
  }

  .popup-actions {
    flex-direction: column;
  }

  .popup-actions .cta-button,
  .popup-actions .secondary-button {
    width: 100%;
  }

  .popup-close {
    top: 10px;
    right: 10px;
  }

  .brand-copy strong {
    font-size: 28px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-cta {
    padding: 10px 14px;
    min-height: 42px;
    font-size: 12px;
  }

  .hero-copy h1,
  .policy-hero h1,
  .section-copy h2,
  .section-heading h2,
  .highlight-card h2,
  .highlight-card h3 {
    font-size: 34px;
    line-height: 0.98;
  }

  .service-card h3,
  .faq-item h3,
  .footer-column h3 {
    font-size: 22px;
  }

  .hero-inline-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .hero-inline-badge {
    justify-self: start;
    min-height: 48px;
    font-size: 15px;
  }

  .hero-inline-copy strong {
    font-size: 17px;
  }

  .hero-inline-copy span {
    font-size: 14px;
  }

  .hero-inline-keywords a {
    width: 100%;
    text-align: center;
  }

  .popup-card h2 {
    max-width: none;
    font-size: 30px;
  }

  .popup-keywords {
    grid-template-columns: 1fr;
  }

  .hero-card h2 {
    font-size: 30px;
  }

  .service-card,
  .faq-item,
  .metric-card,
  .highlight-card,
  .hero-card-inner,
  .policy-card {
    padding: 22px;
  }

  .hero-point-cards,
  .metrics-grid,
  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .metric-card p,
  .service-card p,
  .faq-item p,
  .hero-text,
  .popup-card p {
    font-size: 15px;
  }

  .image-panel {
    min-height: 340px;
  }

  .sticky-call-button {
    right: 12px;
    left: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-copy strong {
    font-size: 24px;
    letter-spacing: 0.12em;
  }

  .brand-copy small {
    letter-spacing: 0.22em;
  }

  .nav-cta {
    max-width: 158px;
    text-align: center;
    line-height: 1.1;
  }

  .mobile-menu summary {
    width: 42px;
    height: 42px;
  }

  .hero-copy h1,
  .policy-hero h1,
  .section-copy h2,
  .section-heading h2,
  .highlight-card h2,
  .highlight-card h3 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .cta-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .popup-overlay {
    padding: 10px;
  }

  .popup-card {
    padding: 22px 18px;
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .popup-label {
    padding-right: 40px;
  }

  .popup-card h2 {
    font-size: 26px;
    line-height: 1.02;
  }

  .popup-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .popup-keywords {
    gap: 8px;
    margin-top: 14px;
  }

  .popup-keywords li {
    padding: 9px 10px;
    font-size: 13px;
  }

  .popup-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .popup-actions .cta-button,
  .popup-actions .secondary-button {
    min-height: 48px;
  }

  .hero-inline-badge {
    width: 100%;
  }

  .service-card,
  .faq-item,
  .metric-card,
  .highlight-card,
  .hero-card-inner,
  .policy-card {
    padding: 18px;
  }

  .image-panel {
    min-height: 300px;
  }
}

/* ==========================================================================
   RESTYLE LAYER - shared chrome (header, buttons, cards, footer, sticky CTA)
   Mirrors the homepage visual language so the policy pages stay consistent.
   ========================================================================== */

body {
  background: #ffffff;
}

h1, h2, h3 {
  letter-spacing: -0.01em;
}

.site-header {
  min-height: 72px;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid #e4e7ec;
}

.brand-mark {
  border-radius: 12px;
  background: linear-gradient(135deg, #101828 0%, #1d2939 100%);
  box-shadow: none;
}

.cta-button {
  border-radius: 10px;
  background: #22c55e;
  color: #101828;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
}

.cta-button:hover {
  background: #16a34a;
  color: #ffffff;
}

.secondary-button {
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  background: #ffffff;
  color: #101828;
}

.secondary-button:hover {
  border-color: #101828;
  background: #f9fafb;
}

.eyebrow,
.section-tag,
.card-label {
  border-radius: 8px;
}

.metric-card,
.service-card,
.faq-item,
.testimonial-card,
.highlight-card,
.policy-card {
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.site-footer {
  padding: 56px 0 40px;
  border-top: none;
  background: #101828;
}

.site-footer .brand-mark {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.site-footer .brand-copy strong {
  color: #ffffff;
}

.site-footer .brand-copy small {
  color: #98a2b3;
}

.footer-brand-block p,
.footer-column p,
.footer-bottom p {
  color: #98a2b3;
}

.footer-column h3 {
  color: #ffffff;
}

.footer-column a {
  color: #e4e7ec;
}

.footer-column a:hover {
  color: #22c55e;
}

.sticky-call-button {
  border-radius: 12px;
  background: #22c55e;
  color: #101828;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.35);
}

.sticky-call-button:hover {
  background: #16a34a;
  color: #ffffff;
}

@media (max-width: 640px) {
  .policy-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .policy-card {
    padding: 18px;
  }

  .brand-mark {
    border-radius: 10px;
  }
}

.ring-a {
  border-color: rgba(255, 255, 255, 0.22);
}

.ring-b {
  border-color: rgba(34, 197, 94, 0.55);
}
