:root {
  --green: #0f8a5f;
  --green-dark: #07543c;
  --green-soft: #e8f7f0;
  --black: #0d1110;
  --ink: #18211f;
  --muted: #5d6864;
  --line: #dfe8e4;
  --white: #ffffff;
  --gray-50: #f7f9f8;
  --gray-100: #eef3f1;
  --amber: #d89b2b;
  --blue: #2364aa;
  --rose: #b84a62;
  --shadow: 0 18px 55px rgba(13, 17, 16, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  width: 100%;
  height: 72px;
  margin: 0;
  padding: 8px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--black);
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #dfe8e4;
  border-radius: 0;
  box-shadow: 0 14px 45px rgba(13, 17, 16, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  height: 54px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 215px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  color: #030303;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(0, 0, 0, 0.5) 46% 52%, transparent 52% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 8px),
    var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.1;
}

.top-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  width: 100%;
}

.menu-wrap {
  position: relative;
  justify-self: center;
  margin-left: 0;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-cta {
  display: none !important;
}

.desktop-cta {
  display: inline-flex;
}

.hamburger {
  display: grid;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 38px;
}

.menu-list.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--black);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.nav-active {
  color: var(--black);
  background: #dfe4e1;
}

.nav-link:hover,
.nav-link:focus,
.dropdown-trigger:hover,
.dropdown-trigger:focus,
.dropdown-trigger.is-open {
  border-color: rgba(13, 17, 16, 0.26);
}

.nav-link:focus,
.dropdown-trigger:focus {
  color: var(--black);
  background: #dfe4e1;
}

.nav-dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  display: grid;
  min-width: 280px;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(13, 17, 16, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu,
.submenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  padding: 12px 20px;
  color: var(--ink);
  font-weight: 700;
}

.submenu a:hover,
.submenu a:focus {
  background: var(--green-soft);
}

.nav-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
}

.nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(15, 138, 95, 0.24);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.compact {
  min-height: 44px;
  padding-inline: 16px;
}

.site-header .compact {
  min-width: 246px;
  min-height: 48px;
  padding-inline: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .compact:hover {
  background: var(--green-dark);
}

.site-header .compact:focus,
.site-header .compact:active {
  color: var(--black);
  background: #dfe4e1;
  box-shadow: none;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: none;
  min-height: 720px;
  overflow: hidden;
  margin-top: 0;
  padding: 112px max(16px, calc((100vw - var(--max)) / 2)) 54px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/hero-performance.webp") center / cover no-repeat;
  transform: scale(1.06);
  animation: heroSlowMove 28s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 9, 7, 0.64) 0%, rgba(3, 9, 7, 0.42) 42%, rgba(3, 9, 7, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 9, 7, 0.04), rgba(3, 9, 7, 0.44));
}

@keyframes heroSlowMove {
  from {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }

  to {
    transform: scale(1.13) translate3d(1.4%, 1%, 0);
  }
}

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

.hero-copy {
  padding-top: 0;
  transform: translateY(-10px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1.1rem;
}

.subtitle {
  color: var(--green-dark);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.14;
}

.hero h1 {
  color: var(--white);
}

.hero .eyebrow,
.hero .subtitle {
  color: #47e09d;
}

.hero .subtitle {
  white-space: nowrap;
}

.hero .hero-text {
  max-width: 720px;
  color: #d7dfdc;
}

.hero-text,
.section-heading p,
.content-card p,
.investment-list p,
.price-card p,
.quote-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #c9eadc;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero .trust-row span {
  color: #dff8ec;
  background: rgba(71, 224, 157, 0.12);
  border-color: rgba(71, 224, 157, 0.26);
}

.section-image,
.responsive-image {
  display: block;
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-image img,
.responsive-image img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intro-strip div {
  padding: 26px;
  background: var(--gray-50);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.content-card,
.feature-card,
.model-card,
.quote-form,
.service-stack,
.investment-list div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-card {
  padding: 34px;
  box-shadow: 0 12px 34px rgba(13, 17, 16, 0.06);
}

.content-stack {
  display: grid;
  gap: 18px;
}

.section-image {
  aspect-ratio: 3 / 2;
}

.section-image img {
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.solutions-section {
  padding-top: 30px;
}

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

.solution-card {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(13, 17, 16, 0.06);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(15, 138, 95, 0.42);
  background: #f3fbf7;
  box-shadow: 0 24px 70px rgba(13, 17, 16, 0.15);
}

.solution-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 900;
}

.solution-card h3 {
  margin-bottom: 12px;
}

.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.solution-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.solution-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.solution-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 7, 0.76);
  backdrop-filter: blur(8px);
}

.solution-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  width: min(100%, 980px);
  max-height: min(88vh, 760px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.solution-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-modal-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.solution-modal-content {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.solution-modal-content h2 {
  margin-bottom: 16px;
}

.solution-modal-content p {
  color: var(--muted);
  font-size: 1.05rem;
  white-space: pre-line;
}

.solution-modal-cta {
  width: max-content;
  margin-top: 10px;
  justify-self: center;
  text-transform: uppercase;
}

body.modal-open {
  overflow: hidden;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-card p,
.model-card p,
.timeline p,
.service-stack li,
.form-note {
  color: var(--muted);
}

.methodology,
.responsive-showcase {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--gray-50);
}

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

.timeline article {
  position: relative;
  min-height: 245px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline strong {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.investment-list {
  display: grid;
  gap: 14px;
}

.investment-list div {
  padding: 24px;
}

.pricing {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.price-card {
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.price-card h2 {
  color: var(--white);
}

.price-card h2 strong {
  color: #adf0d3;
}

.price-card p,
.price-card .eyebrow {
  color: #d9f2e9;
}

.service-stack {
  padding: 30px;
  background: var(--black);
}

.service-stack h3 {
  color: var(--white);
}

.service-stack ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-stack li {
  padding-left: 26px;
  color: #d7dfdc;
  background: linear-gradient(var(--green), var(--green)) left 10px / 10px 10px no-repeat;
}

.responsive-image {
  width: min(100%, 1040px);
  margin: 0 auto;
  aspect-ratio: 3 / 2;
}

.responsive-image img {
  height: 100%;
  object-fit: cover;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.model-card {
  overflow: hidden;
}

.model-card h3,
.model-card p {
  padding-inline: 20px;
}

.model-card h3 {
  margin-top: 20px;
}

.model-card p {
  padding-bottom: 22px;
}

.model-preview {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
  height: 150px;
  padding: 18px;
  background: var(--gray-50);
}

.model-preview span,
.model-preview b,
.model-preview i {
  display: block;
  border-radius: 6px;
}

.model-preview span {
  grid-column: 1 / -1;
  height: 20px;
  background: rgba(255, 255, 255, 0.75);
}

.model-preview b {
  height: 78px;
  background: rgba(255, 255, 255, 0.95);
}

.model-preview i {
  height: 78px;
  background: rgba(255, 255, 255, 0.58);
}

.model-green .model-preview { background: linear-gradient(135deg, #0f8a5f, #121716); }
.model-black .model-preview { background: linear-gradient(135deg, #0d1110, #45504c); }
.model-silver .model-preview { background: linear-gradient(135deg, #dfe8e4, #87918d); }
.model-gold .model-preview { background: linear-gradient(135deg, #d89b2b, #151a18); }
.model-blue .model-preview { background: linear-gradient(135deg, #2364aa, #152238); }
.model-lime .model-preview { background: linear-gradient(135deg, #7ac142, #07543c); }
.model-rose .model-preview { background: linear-gradient(135deg, #b84a62, #28171c); }
.model-cyan .model-preview { background: linear-gradient(135deg, #11a7a0, #0d1110); }
.model-white .model-preview { background: linear-gradient(135deg, #ffffff, #dfe8e4); border-bottom: 1px solid var(--line); }

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 138, 95, 0.12);
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 34px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 28px;
  padding: 34px;
  color: #d7dfdc;
  background: var(--black);
  border-radius: var(--radius);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: min(100%, 285px);
  max-height: none;
}

.footer-brand small,
.site-footer p {
  color: #aebbb6;
}

address {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

address strong {
  color: var(--white);
}

address a {
  color: #d7f0e6;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .pricing,
  .quote-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
    padding-top: 108px;
    padding-bottom: 46px;
  }

  .hero .subtitle {
    white-space: normal;
  }

  .site-header {
    --mobile-header-side: 12px;
    --mobile-header-height: 70px;
    width: calc(100% - (var(--mobile-header-side) * 2));
    height: var(--mobile-header-height);
    left: var(--mobile-header-side);
    top: var(--mobile-header-side);
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px 12px;
    color: var(--black);
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(18, 38, 63, 0.12);
  }

  .brand {
    height: 52px;
  }

  .brand-logo {
    width: min(58vw, 230px);
    height: 52px;
    max-width: none;
    object-position: left center;
  }

  .top-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0;
  }

  .desktop-cta {
    display: none !important;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    color: #142033;
    background: #f8fbff;
    border: 1px solid #cfe0f2;
    border-radius: 9px;
  }

  .menu-text,
  .chevron {
    display: none;
  }

  .menu-list {
    position: fixed;
    top: calc(var(--mobile-header-side) + var(--mobile-header-height) + 14px);
    left: var(--mobile-header-side);
    right: var(--mobile-header-side);
    width: auto;
    display: grid;
    min-width: 0;
    max-width: none;
    gap: 8px;
    padding: 18px 14px;
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 14px;
    box-shadow: 0 22px 55px rgba(18, 38, 63, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .menu-list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link,
  .dropdown-trigger,
  .nav-icon {
    width: 100%;
    justify-content: flex-start;
    color: #42526d;
    min-height: 44px;
    padding-inline: 14px;
  }

  .nav-link:hover,
  .nav-link:focus,
  .dropdown-trigger:hover,
  .dropdown-trigger:focus,
  .dropdown-trigger.is-open,
  .nav-active {
    color: var(--black);
    background: #edf2f7;
    border-color: transparent;
  }

  .nav-icon {
    padding: 8px 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px;
    background: #f3f7fb;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu.is-open,
  .nav-dropdown:focus-within .submenu {
    display: grid;
  }

  .submenu a {
    color: #42526d;
    border-radius: 8px;
  }

  .menu-cta {
    display: inline-flex !important;
    width: 100%;
    margin-top: 8px;
    color: var(--white);
    text-transform: uppercase;
  }

  .benefit-grid,
  .models-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-dialog {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .solution-modal-image {
    min-height: 260px;
    max-height: 320px;
  }

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

  .section-image,
  .responsive-image {
    box-shadow: 0 12px 34px rgba(13, 17, 16, 0.08);
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 12px;
    margin-top: 0;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: min(58vw, 230px);
    height: 52px;
    max-width: none;
  }

  .top-actions {
    width: auto;
    justify-content: flex-end;
    gap: 0;
  }

  .menu-wrap {
    flex: 0 0 auto;
  }

  .compact {
    padding-inline: 12px;
    font-size: 0.85rem;
  }

  .section {
    width: calc(100% - 24px);
    padding: 62px 0;
  }

  .hero {
    width: 100%;
    gap: 36px;
    padding-top: 122px;
    padding-bottom: 42px;
    min-height: auto;
  }

  .hero-copy {
    transform: none;
  }

  .intro-strip,
  .benefit-grid,
  .models-grid,
  .timeline,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

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

  .solution-modal {
    padding: 12px;
  }

  .solution-modal-content {
    padding: 26px;
  }

  .solution-modal-cta {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .menu-list {
    top: calc(var(--mobile-header-side) + var(--mobile-header-height) + 14px);
    left: var(--mobile-header-side);
    right: var(--mobile-header-side);
    width: auto;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 440px) {
  .brand strong {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: min(58vw, 220px);
    height: 52px;
    max-width: none;
  }

  .menu-list {
    top: calc(var(--mobile-header-side) + var(--mobile-header-height) + 12px);
    left: var(--mobile-header-side);
    right: var(--mobile-header-side);
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .content-card,
  .quote-form,
  .service-stack,
  .site-footer {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
  }
}
