:root {
  --navy-950: #08233f;
  --navy-900: #0b365a;
  --navy-800: #164f78;
  --steel-700: #536b7f;
  --slate-800: #293846;
  --slate-600: #65717d;
  --slate-200: #dfe6eb;
  --slate-100: #f6f8f9;
  --white: #ffffff;
  --paper: #fbfcfd;
  --accent: #e3aa31;
  --accent-dark: #a96f14;
  --accent-light: #ffe19a;
  --accent-blue: #8ba0ae;
  --success: #557d62;
  --shadow: 0 24px 70px rgba(8, 35, 63, 0.16);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-800);
  background: var(--slate-100);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
}

section[id],
#sample-report {
  scroll-margin-top: 96px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 56px);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 35, 63, 0.12);
  box-shadow: 0 10px 34px rgba(8, 35, 63, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 50px;
  height: 50px;
  padding: 4px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border: 1px solid rgba(8, 35, 63, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(8, 35, 63, 0.12);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-950);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #ffd77a);
  border-radius: 8px;
  box-shadow: inset 0 -4px 0 rgba(6, 24, 45, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--navy-950);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: var(--slate-600);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--slate-800);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--accent-dark);
}

.nav-links a[aria-current="page"] {
  color: var(--accent-dark);
}

.header-cta {
  padding: 11px 16px;
  color: var(--navy-950);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(227, 170, 49, 0.24);
}

.header-cta:hover {
  color: var(--white);
  background: var(--navy-900);
}

.hero {
  position: relative;
  min-height: calc(100svh - 75px);
  display: flex;
  align-items: flex-start;
  isolation: isolate;
  color: var(--white);
  background-image: url("assets/images/home-inspector-thermal-hero.png");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(227, 170, 49, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(8, 35, 63, 0.97) 0%, rgba(8, 35, 63, 0.91) 42%, rgba(8, 35, 63, 0.56) 72%, rgba(8, 35, 63, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 35, 63, 0.08), rgba(8, 35, 63, 0.78));
}

.hero-content {
  width: min(820px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding: 72px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.report-copy h2,
.schedule h2 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  line-height: 1.02;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(2.7rem, 4.6vw, 4.45rem);
}

.hero-subtitle {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.96rem;
  font-weight: 800;
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 18px 42px rgba(227, 170, 49, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.section {
  padding: 92px clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.report-copy h2,
.schedule h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-heading h2 span {
  color: var(--accent-dark);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.pathway-card,
.service-panel,
.addons-grid article,
.badge-card,
.testimonial-shell,
.schedule-card {
  background: var(--white);
  border: 1px solid rgba(83, 98, 115, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(6, 24, 45, 0.08);
}

.pathway-card {
  position: relative;
  min-height: 286px;
  padding: 30px;
  overflow: hidden;
}

.pathway-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  border: 24px solid rgba(227, 170, 49, 0.11);
  transform: rotate(45deg);
}

.pathway-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.card-index {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--accent-blue);
  font-weight: 800;
}

.featured .card-index,
.featured h3,
.featured p,
.featured a {
  color: var(--white);
}

.pathway-card h3,
.addons-grid h3,
.service-panel h3,
.testimonial-copy h3 {
  margin: 0 0 13px;
  color: inherit;
  font-size: 1.35rem;
}

.pathway-card p,
.addons-grid p,
.service-panel p,
.report-copy p,
.schedule p,
.footer-map p,
.footer-brand p {
  color: var(--slate-600);
  line-height: 1.7;
}

.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.pathway-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy-900);
  font-weight: 800;
}

.pathway-card a::after {
  content: "";
  width: 34px;
  height: 2px;
  margin: auto 0 auto 10px;
  background: currentColor;
}

.pathway-card.featured .seller-details-link,
.pathway-card.featured .seller-details-link:hover,
.pathway-card.featured .seller-details-link:focus-visible {
  color: var(--white);
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 249, 0.97)),
    repeating-linear-gradient(90deg, rgba(8, 35, 63, 0.04) 0 1px, transparent 1px 84px);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.35fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-panel {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.service-panel h3 {
  font-size: 1.75rem;
}

.service-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-tags span {
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

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

.addons-grid article {
  position: relative;
  min-height: 186px;
  padding: 28px;
}

.addons-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
  border-radius: 999px;
}

.report-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 100px clamp(20px, 7vw, 96px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(227, 170, 49, 0.22), transparent 32%),
    linear-gradient(145deg, var(--navy-950), #0b2f50 62%, #071b31);
}

.report-copy h2,
.report-copy p {
  color: var(--white);
}

.report-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.03rem;
}

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

.report-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.report-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 15px;
  height: 15px;
  background: var(--accent);
  clip-path: polygon(14% 44%, 0 60%, 38% 100%, 100% 18%, 84% 4%, 36% 66%);
}

.report-mockup {
  padding: 18px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.mockup-topbar {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-200);
}

.mockup-topbar span {
  width: 11px;
  height: 11px;
  background: var(--slate-200);
  border-radius: 50%;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.mockup-header small,
.summary-card span {
  display: block;
  color: var(--slate-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mockup-header strong {
  display: block;
  margin-top: 7px;
  font-size: 1.5rem;
}

.status-pill {
  align-self: flex-start;
  padding: 8px 10px;
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(227, 170, 49, 0.22);
  border-radius: 999px;
}

.summary-grid {
  display: grid;
  gap: 12px;
}

.summary-card {
  padding: 16px;
  background: var(--slate-100);
  border-left: 4px solid var(--accent-blue);
  border-radius: 6px;
}

.summary-card.urgent {
  border-left-color: var(--accent);
}

.summary-card strong {
  display: block;
  margin-top: 6px;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.photo-row span {
  height: 82px;
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.88), rgba(227, 170, 49, 0.42)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 255, 255, 0.16) 8px 9px);
  border-radius: 6px;
}

.trust {
  background: var(--white);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto 48px;
}

.badge-card {
  min-height: 178px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 35, 63, 0.04), rgba(227, 170, 49, 0.08)),
    var(--white);
}

.badge-card::before {
  content: "";
  width: 58px;
  height: 58px;
  margin: 0 auto 8px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 12px 24px rgba(8, 35, 63, 0.14);
}

.badge-ashi::before {
  display: none;
}

.ashi-logo {
  width: 94px;
  margin: 0 auto 8px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--navy-950);
  border: 3px solid var(--accent);
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(8, 35, 63, 0.14);
}

.badge-nhie::before {
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.22)),
    conic-gradient(from 30deg, var(--accent), var(--navy-800), var(--accent));
}

.badge-license::before {
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent),
    var(--success);
}

.badge-insurance::before {
  clip-path: polygon(50% 0, 92% 18%, 86% 72%, 50% 100%, 14% 72%, 8% 18%);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    var(--navy-900);
}

.badge-card span {
  color: var(--accent-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-card strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.badge-card small {
  color: var(--slate-600);
  line-height: 1.45;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  max-width: 1050px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.testimonial-copy h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.testimonial-slider {
  position: relative;
}

.testimonial {
  display: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.testimonial.active {
  display: block;
}

.testimonial cite {
  display: block;
  margin-top: 20px;
  color: var(--accent);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
}

.slider-controls {
  display: flex;
  gap: 9px;
  margin-top: 24px;
}

.slider-dot {
  width: 34px;
  height: 5px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  border-radius: 999px;
}

.slider-dot.active {
  background: var(--accent);
}

.schedule {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 30px;
  padding: 76px clamp(20px, 7vw, 96px);
  background:
    radial-gradient(circle at 10% 12%, rgba(227, 170, 49, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #edf2f5);
}

.schedule p {
  max-width: 720px;
}

.schedule-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-line {
  display: flex;
  justify-content: center;
  padding: 14px 16px;
  color: var(--navy-950);
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
  background: var(--slate-100);
  border: 1px solid rgba(8, 35, 63, 0.08);
  border-radius: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 1fr) minmax(220px, 0.7fr);
  gap: 34px;
  padding: 52px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
}

.site-footer .brand small,
.footer-brand p,
.footer-map p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.map-card {
  position: relative;
  min-height: 150px;
  margin-bottom: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 160, 174, 0.18), rgba(227, 170, 49, 0.12)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.map-dot {
  position: absolute;
  padding: 6px 8px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(8, 35, 63, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.map-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.louisville {
  left: 38%;
  top: 43%;
}

.east {
  right: 17%;
  top: 28%;
}

.south {
  left: 48%;
  bottom: 18%;
}

.indiana {
  left: 12%;
  top: 20%;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a:hover {
  color: var(--white);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 96px clamp(20px, 7vw, 96px);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 249, 0.9)),
    radial-gradient(circle at 82% 28%, rgba(227, 170, 49, 0.2), transparent 34%);
}

.about-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
}

.about-hero p,
.about-story p,
.about-cta p,
.values-grid p {
  color: var(--slate-600);
  line-height: 1.7;
}

.about-hero p {
  max-width: 690px;
  font-size: 1.08rem;
}

.btn-secondary.light {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(8, 35, 63, 0.18);
}

.about-logo-card {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(8, 35, 63, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-logo-card img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 360px;
  height: 100%;
  object-fit: contain;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--white);
}

.story-copy h2,
.about-cta h2 {
  margin: 0 0 20px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
}

.about-card {
  padding: 28px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.about-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
}

.values-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(246, 248, 249, 0.97)),
    repeating-linear-gradient(90deg, rgba(8, 35, 63, 0.04) 0 1px, transparent 1px 84px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.values-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(8, 35, 63, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(8, 35, 63, 0.08);
}

.values-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent-dark);
  font-weight: 800;
}

.values-grid h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 1.35rem;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 30px;
  padding: 76px clamp(20px, 7vw, 96px);
  background: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .pathway-grid,
  .services-layout,
  .report-section,
  .testimonial-shell,
  .schedule,
  .site-footer,
  .about-hero,
  .about-story,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .badge-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 24, 45, 0.96), rgba(6, 24, 45, 0.82));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 86px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.85rem);
  }

  .btn,
  .hero-actions {
    width: 100%;
  }

  .section {
    padding: 70px 16px;
  }

  .addons-grid,
  .badge-grid,
  .photo-row {
    grid-template-columns: 1fr;
  }

  .report-section,
  .schedule,
  .site-footer,
  .about-hero,
  .about-story,
  .about-cta {
    padding: 70px 16px;
  }

  .about-logo-card {
    min-height: 280px;
  }

  .about-logo-card img {
    max-height: 220px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}
