:root {
  --bg: #f3f3ee;
  --bg-alt: #e8ece4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #101311;
  --surface-dark-soft: #171b18;
  --text: #111512;
  --text-muted: #5d665f;
  --text-soft: #8e978f;
  --line: rgba(17, 21, 18, 0.08);
  --line-strong: rgba(17, 21, 18, 0.14);
  --accent: #a7ff2f;
  --accent-strong: #88d51f;
  --accent-contrast: #101311;
  --success: #d8f2bc;
  --shadow-soft: 0 14px 40px rgba(17, 21, 18, 0.08);
  --shadow-strong: 0 28px 80px rgba(17, 21, 18, 0.14);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(167, 255, 47, 0.16), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(17, 21, 18, 0.06), transparent 20%),
    linear-gradient(180deg, #fbfcf8 0%, var(--bg) 52%, #eef1ec 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 19, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 17, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 82%);
  z-index: -2;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.section-kicker,
.eyebrow,
.logo,
.stat-value,
.step-index {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

main {
  overflow: hidden;
}

section {
  padding: 5.5rem 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 252, 248, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 21, 18, 0.06);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
  font-size: 1.75rem;
  line-height: 1;
}

.logo span {
  color: var(--accent-strong);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 21, 18, 0.05);
}

.nav-links a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.97rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(17, 21, 18, 0.05);
}

.nav-links .btn {
  margin-left: 0.45rem;
}

.nav-links .btn.primary {
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
  color: var(--accent-contrast);
  background: linear-gradient(135deg, #c4ff72, var(--accent));
  box-shadow: 0 18px 34px rgba(135, 213, 31, 0.26);
}

.btn.outline {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
}

.btn.outline:hover {
  border-color: rgba(16, 19, 17, 0.22);
  background: #ffffff;
}

.btn.dark {
  color: #ffffff;
  background: var(--surface-dark);
  box-shadow: 0 18px 34px rgba(16, 19, 17, 0.18);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: var(--text);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.centered .section-kicker {
  justify-content: center;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 6.8rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.lede,
.subtitle,
.lead,
.section-head p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.hero {
  padding: 2rem 0 4rem;
}

.page-hero {
  padding: 3.2rem 0 1.2rem;
}

.page-hero .section-head {
  max-width: 860px;
  margin-bottom: 0;
}

.hero-shell {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    linear-gradient(160deg, rgba(167, 255, 47, 0.1), rgba(17, 21, 18, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-strong);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 1.5rem;
  align-items: center;
}

.hero-copy,
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  max-width: 620px;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  background: rgba(255, 255, 255, 0.72);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 255, 47, 0.28), transparent 70%);
  z-index: 0;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.mini-point {
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(16, 19, 17, 0.04);
  border: 1px solid rgba(17, 21, 18, 0.06);
}

.mini-point p {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-proof span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: rgba(16, 19, 17, 0.05);
  color: var(--text);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(16, 19, 17, 0.96), rgba(16, 19, 17, 0.78)),
    radial-gradient(circle at top left, rgba(167, 255, 47, 0.16), transparent 34%);
  color: #ffffff;
}

.hero-photo-frame {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.floating-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.floating-card p {
  color: rgba(255, 255, 255, 0.76);
}

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

.hero-stats-inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(16, 19, 17, 0.05);
  min-height: 126px;
  border: 1px solid rgba(17, 21, 18, 0.06);
}

.stat-value {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.stat-card-accent {
  background: linear-gradient(135deg, rgba(167, 255, 47, 0.18), rgba(255, 255, 255, 0.92));
}

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

.split-section {
  align-items: stretch;
}

.card,
.panel,
.service-card,
.testimonial-card,
.process-card,
.spotlight-card,
.legal-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.spotlight-card,
.card,
.service-card,
.testimonial-card,
.process-card,
.contact-card {
  padding: 1.5rem;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--surface-dark);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(16, 19, 17, 0.62);
  color: #ffffff;
}

.image-caption p {
  color: rgba(255, 255, 255, 0.76);
}

.story-card {
  display: grid;
  gap: 1.2rem;
  align-content: center;
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.credential-list,
.check-list,
.micro-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.credential-list li,
.check-list li,
.micro-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-muted);
}

.credential-list li::before,
.check-list li::before,
.micro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.quote-band {
  padding: 1.2rem 1.35rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(167, 255, 47, 0.16), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(16, 19, 17, 0.06);
}

.services-grid,
.testimonial-grid,
.process-grid,
.metrics-grid {
  display: grid;
  gap: 1.2rem;
}

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

.service-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(167, 255, 47, 0.16);
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 800;
}

.service-meta {
  color: var(--text-soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-link {
  margin-top: 0.35rem;
  color: var(--text);
  font-weight: 700;
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(160deg, rgba(16, 19, 17, 0.98), rgba(22, 27, 24, 0.92)),
    radial-gradient(circle at top right, rgba(167, 255, 47, 0.08), transparent 24%);
}

.section-dark .section-head p,
.section-dark .testimonial-card p,
.section-dark .process-card p,
.section-dark .cta-panel p,
.section-dark .comparison-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .section-kicker {
  color: #ffffff;
}

.section-dark .section-kicker::before {
  background: var(--accent);
}

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

.testimonial-card {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
}

.client-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.result-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(167, 255, 47, 0.18);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.process-card {
  display: grid;
  gap: 0.8rem;
}

.step-index {
  font-size: 1rem;
  color: var(--accent-strong);
}

.process-card h3 {
  color: var(--text);
}

.process-card p {
  color: var(--text-muted);
}

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

.metric-card {
  padding: 1.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 21, 18, 0.08);
}

.metric-value {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

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

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(232, 236, 228, 0.66));
}

.feature-grid .service-card {
  min-height: 300px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(16, 19, 17, 0.98), rgba(29, 35, 31, 0.92)),
    radial-gradient(circle at top right, rgba(167, 255, 47, 0.1), transparent 25%);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 255, 47, 0.22), transparent 66%);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2,
.cta-panel p {
  max-width: 720px;
}

.contact-section .grid-2 {
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-card {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.contact-options {
  display: grid;
  gap: 0.8rem;
}

.option-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.option-bullet {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(167, 255, 47, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 1rem;
}

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

.form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(17, 21, 18, 0.1);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(135, 213, 31, 0.8);
  box-shadow: 0 0 0 4px rgba(167, 255, 47, 0.14);
}

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

.form-note,
.small-note {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 2rem;
  color: #ffffff;
  background:
    linear-gradient(180deg, #121613 0%, #0d100e 100%);
}

.footer-wrap {
  display: grid;
  gap: 1.4rem;
  padding: 2.2rem 0 1.4rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-copy {
  display: grid;
  gap: 0.35rem;
  max-width: 560px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-title {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.footer-logo-band {
  min-height: 24vh;
  max-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0 0;
  overflow: hidden;
}

.footer-mega-logo {
  display: block;
  width: min(90vw, 1680px);
  height: auto;
  object-fit: contain;
  transform: translateY(2%);
  opacity: 0.98;
}

.legal-page {
  background:
    radial-gradient(circle at top left, rgba(167, 255, 47, 0.12), transparent 20%),
    linear-gradient(180deg, #f9fbf7 0%, #eff2ed 100%);
}

.legal-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  margin: 2rem 0 4rem;
}

.legal-card h1,
.legal-card h2 {
  margin-bottom: 1rem;
}

.legal-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 2rem;
}

.legal-card p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.comparison-card,
.spotlight-card {
  display: grid;
  gap: 1rem;
}

.comparison-card {
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 21, 18, 0.08);
}

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

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .grid-2,
  .services-grid,
  .testimonial-grid,
  .process-grid,
  .metrics-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    min-height: 420px;
  }

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

  .hero-copy {
    max-width: none;
  }

  .hero-stats-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  section {
    padding: 4.5rem 0;
  }

  .topbar {
    backdrop-filter: blur(14px);
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 21, 18, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links .btn {
    margin-left: 0;
    margin-top: 0.3rem;
  }

  .hero-shell {
    padding: 0.7rem;
    border-radius: 28px;
  }

  .hero-copy,
  .hero-visual,
  .card,
  .service-card,
  .testimonial-card,
  .process-card,
  .contact-card,
  .image-panel,
  .legal-card,
  .cta-panel {
    border-radius: 26px;
  }

  .hero-photo-frame {
    min-height: 360px;
  }

  .hero-benefits,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 110px;
    padding: 0.85rem;
  }

  .stat-value {
    font-size: 1.65rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-band {
    min-height: 17vh;
    max-height: 180px;
  }

  .footer-mega-logo {
    width: min(110vw, 1200px);
    max-width: none;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 78px;
  }

  .container {
    width: min(100vw - 1rem, 100%);
  }

  .page-hero {
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 3.75rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .subtitle,
  .lead,
  .section-head p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .hero-proof {
    flex-direction: column;
  }

  .hero {
    padding-top: 1.2rem;
    padding-bottom: 3.2rem;
  }

  .hero-copy {
    gap: 1rem;
    padding: 1.2rem;
  }

  .hero-visual {
    padding: 0.8rem;
  }

  .hero-photo-frame {
    min-height: 300px;
  }

  .floating-card {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.85rem;
  }

  .hero-stats-inline {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .stat-card {
    min-height: auto;
  }

  .hero-proof span,
  .pill {
    width: 100%;
    justify-content: center;
  }

  .image-panel img {
    min-height: 320px;
  }

  .feature-grid .service-card {
    min-height: auto;
  }

  .service-card,
  .story-card,
  .cta-panel {
    padding: 1.2rem;
  }

  .footer-wrap {
    padding-top: 1.6rem;
  }

  .footer-links {
    gap: 0.75rem;
    font-size: 0.92rem;
  }

  .footer-logo-band {
    min-height: 110px;
    max-height: 130px;
  }

  .footer-mega-logo {
    width: 140vw;
    transform: translateY(0);
  }
}
