:root {
  --bg: #fffaf6;
  --bg-soft: #fff2e8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-tint: #fff7f2;
  --line: rgba(18, 32, 48, 0.08);
  --line-strong: rgba(240, 77, 35, 0.18);
  --text: #152435;
  --muted: #5f6f7d;
  --accent: #f04d23;
  --accent-strong: #ff7b42;
  --accent-soft: rgba(240, 77, 35, 0.1);
  --accent-wash: rgba(240, 77, 35, 0.06);
  --shadow: 0 24px 60px rgba(28, 34, 44, 0.08);
  --shadow-strong: 0 28px 80px rgba(240, 77, 35, 0.14);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240, 77, 35, 0.08), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255, 182, 142, 0.18), transparent 26%),
    linear-gradient(180deg, #fffefc 0%, #fffaf6 42%, #fff6f0 100%);
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: 6%;
  left: -6rem;
  width: 20rem;
  height: 20rem;
  background: rgba(240, 77, 35, 0.14);
}

.ambient-two {
  top: 24%;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  background: rgba(255, 171, 125, 0.18);
}

.container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  position: relative;
  background:
    linear-gradient(180deg, rgba(240, 77, 35, 0.03), rgba(240, 77, 35, 0)),
    var(--bg-soft);
  border-top: 1px solid rgba(240, 77, 35, 0.06);
  border-bottom: 1px solid rgba(240, 77, 35, 0.06);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.topbar.is-scrolled {
  background: rgba(255, 252, 248, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 32, 48, 0.08);
  box-shadow: 0 14px 32px rgba(18, 32, 48, 0.05);
}

.topbar-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 11rem;
  max-width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.96rem;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button).is-active,
.site-nav > a[aria-current="page"] {
  color: var(--text);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button).is-active::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(18, 32, 48, 0.08);
}

.nav-toggle span {
  position: absolute;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-0.35rem);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(0.35rem);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 36px rgba(240, 77, 35, 0.2);
}

.button-primary:hover {
  box-shadow: 0 22px 42px rgba(240, 77, 35, 0.28);
}

.text-link {
  color: var(--text);
  font-weight: 800;
}

.text-link::after {
  content: " ->";
  color: var(--accent);
}

.hero {
  position: relative;
  padding: 0 0 2.75rem;
}

.hero-band {
  position: relative;
  width: 100%;
  min-height: 42rem;
  padding: 5.2rem 0 6.2rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(48, 18, 10, 0.88) 0%, rgba(78, 29, 14, 0.8) 34%, rgba(117, 45, 20, 0.48) 60%, rgba(173, 70, 31, 0.2) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 183, 145, 0.22), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(255, 170, 116, 0.28), transparent 26%),
    url("assets/images/hero-bg.webp") center center / cover no-repeat;
  box-shadow: 0 30px 70px rgba(122, 46, 28, 0.16);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%, rgba(17, 7, 3, 0.12) 100%),
    linear-gradient(90deg, rgba(33, 11, 4, 0.24) 0%, transparent 38%);
  pointer-events: none;
}

.hero-band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.1rem;
  transform: translateX(-50%);
  width: 14rem;
  height: 4.8rem;
  border-radius: 999px 999px 0 0;
  background: var(--bg);
  box-shadow: 0 -14px 25px rgba(255, 255, 255, 0.12);
}

.hero-frame {
  position: relative;
  width: var(--container);
  min-height: calc(42rem - 11.4rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.hero .eyebrow {
  color: #ffd2c1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 242, 233, 0.94);
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(39, 14, 8, 0.18);
}

.hero-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd3bf 0%, #ffffff 100%);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: #fff8f3;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-subheadline {
  margin: 1.4rem 0 0;
  color: rgba(255, 235, 226, 0.82);
  font-size: 1.06rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.3rem;
  margin-top: 2rem;
}

.hero .text-link {
  color: #fff8f3;
}

.hero .text-link::after {
  color: #ffd7c8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  position: relative;
  padding-right: 0.75rem;
}

.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  right: 0;
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
  display: block;
  color: #ffffff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 231, 220, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

.reasons-section {
  padding-top: 3.25rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.hero-showcase-card,
.service-card,
.outcome-card,
.industry-card,
.process-card,
.stat-card,
.case-card,
.faq-item,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-showcase-card {
  padding: 2rem 1.5rem 1.45rem;
  min-height: 17rem;
}

.hero-showcase-card::before,
.hero-showcase-card::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-color: rgba(30, 53, 74, 0.55);
  pointer-events: none;
}

.hero-showcase-card::before {
  left: 1.1rem;
  top: 1.1rem;
  border-top: 3px solid rgba(30, 53, 74, 0.55);
  border-left: 3px solid rgba(30, 53, 74, 0.55);
  border-top-left-radius: 1.1rem;
}

.hero-showcase-card::after {
  right: 1.1rem;
  bottom: 1.1rem;
  border-right: 3px solid rgba(30, 53, 74, 0.55);
  border-bottom: 3px solid rgba(30, 53, 74, 0.55);
  border-bottom-right-radius: 1.1rem;
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(240, 77, 35, 0.2);
}

.hero-showcase-card h3 {
  margin: 0;
  max-width: 14rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.hero-showcase-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.hero-showcase-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 1.15rem;
  color: var(--text);
  font-weight: 800;
}

.hero-showcase-card a::after {
  content: " ->";
  color: var(--accent);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin:2em 0;
}

.service-card,
.outcome-card,
.industry-card,
.process-card,
.case-card,
.contact-card {
  padding: 1.55rem;
}

.service-card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.15rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(240, 77, 35, 0.14), rgba(240, 77, 35, 0.22)),
    linear-gradient(135deg, #fff 0%, #fff6f0 100%);
  color: var(--accent);
  box-shadow:
    0 16px 26px rgba(240, 77, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-card-icon::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 77, 35, 0.12);
  pointer-events: none;
}

.service-card-icon svg {
  position: relative;
  z-index: 1;
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card::before,
.outcome-card::before,
.industry-card::before,
.process-card::before,
.stat-card::before,
.case-card::before,
.faq-item::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 77, 35, 0.12), transparent 70%);
  pointer-events: none;
}

.service-card h3,
.outcome-card h3,
.industry-card h3,
.process-card h3,
.case-card h3,
.contact-card h3,
.faq-question {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.service-card p,
.outcome-card p,
.industry-card p,
.process-card p,
.case-card p,
.contact-card p,
.faq-answer p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.service-card,
.outcome-card,
.industry-card,
.process-card,
.case-card,
.contact-card,
.stat-card,
.hero-showcase-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.outcome-card:hover,
.industry-card:hover,
.process-card:hover,
.case-card:hover,
.contact-card:hover,
.stat-card:hover,
.hero-showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.micro-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid rgba(240, 77, 35, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 26px rgba(18, 32, 48, 0.05);
}

.micro-cta span {
  color: var(--muted);
}

.micro-cta a {
  font-weight: 800;
  color: var(--text);
}

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

.card-index,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--accent-wash);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

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

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  padding: 1.45rem;
}

.stat-value {
  display: inline-block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

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

.case-card .text-link {
  display: inline-flex;
  margin-top: 1rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
}

.faq-question {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 1.4rem 4rem 1.4rem 1.5rem;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.5rem;
  margin: 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.35rem;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 1.8rem;
}

.contact-card a {
  color: var(--text);
}

.contact-card-full {
  padding: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
}

.contact-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 32, 48, 0.08);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item p {
  margin-top: 0.45rem;
}

.footer {
  padding: 1.8rem 0 3rem;
  border-top: 1px solid rgba(18, 32, 48, 0.08);
  background:
    linear-gradient(180deg, rgba(240, 77, 35, 0.03), rgba(240, 77, 35, 0)),
    #fff8f3;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note,
.footer-meta p {
  margin: 0.6rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-meta {
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.1rem;
}

.footer-links a {
  color: var(--text);
  font-size: 0.94rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  max-width: 1440px;
  margin: auto;
  height:100%;
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-height) + 1.2rem);
}

@media (max-width: 1100px) {
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase,
  .service-grid,
  .outcome-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border: 1px solid rgba(18, 32, 48, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 0.8rem 0.4rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.4rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-band {
    min-height: auto;
    padding: 4.4rem 0 5rem;
  }

  .hero-band::after {
    width: 10rem;
    height: 3.8rem;
    bottom: -1.8rem;
  }

  .hero-frame {
    min-height: auto;
  }

  .hero-stats,
  .hero-showcase,
  .stats-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    padding-right: 0;
  }

  .hero-stat:not(:last-child)::after {
    display: none;
  }

}

@media (max-width: 720px) {
  .section {
    padding: 4.25rem 0;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-band {
    padding: 3.5rem 0 4.1rem;
  }

  .hero-band::after {
    width: 9rem;
    height: 3.2rem;
    bottom: -1.5rem;
  }

  .hero-kicker {
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.3rem);
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .industry-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .micro-cta,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta,
  .footer-links {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
