:root {
  --black: #050505;
  --black-soft: #0b0d0a;
  --panel: #11140f;
  --panel-light: #171b14;
  --border: rgba(255, 255, 255, 0.12);
  --border-lime: rgba(132, 255, 0, 0.35);
  --white: #ffffff;
  --text: #f2f4ef;
  --muted: #b8c0b3;
  --lime: #84ff00;
  --lime-dark: #55ad00;
  --green: #153d20;
  --yellow: #ffd500;
  --yellow-dark: #e6be00;
  --danger: #ff6b6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
}

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

a:hover,
a:focus-visible {
  color: var(--lime);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(132, 255, 0, 0.55);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

h1 span,
h2 span {
  color: var(--lime);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  font-weight: 800;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-small {
  padding: 52px 0;
}

.section-lead {
  max-width: 850px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.inline-link {
  color: var(--lime);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(132, 255, 0, 0.45);
  text-underline-offset: 4px;
}

.topbar {
  border-bottom: 1px solid rgba(132, 255, 0, 0.15);
  background: #020302;
  color: #cbd2c6;
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: min(320px, 34vw);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: #151714;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.22s ease;
}

.nav-button:hover,
.nav-button:focus-visible {
  border-color: var(--lime);
  background: var(--green);
  color: var(--lime);
  transform: translateY(-1px);
}

.nav-call {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.nav-call:hover,
.nav-call:focus-visible {
  background: var(--white);
  color: var(--black);
}

.nav-quote {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.nav-quote:hover,
.nav-quote:focus-visible {
  background: var(--white);
  color: var(--black);
}

.mobile-toggle {
  display: none;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  border-bottom: 1px solid var(--border);
  background: #030403;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #030403;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fade-in 0.45s ease;
}

.slide a {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  object-position: center;
  background: #030403;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.carousel-arrow.previous {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.carousel-dot.active {
  border-color: var(--lime);
  background: var(--lime);
}

@keyframes fade-in {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.benefit-strip {
  border-top: 1px solid rgba(132, 255, 0, 0.18);
  border-bottom: 1px solid rgba(132, 255, 0, 0.18);
  background: #0b0d0a;
}

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

.benefit-item {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-item svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--lime);
}

.benefit-item strong,
.benefit-item span {
  display: block;
}

.benefit-item strong {
  color: var(--white);
  font-weight: 900;
}

.benefit-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.intro-section {
  background:
    radial-gradient(circle at 0 0, rgba(132, 255, 0, 0.08), transparent 36%),
    var(--black);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: start;
  gap: 54px;
}

.breadcrumb {
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #8f998a;
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--lime);
}

.highlight-pills,
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-pills {
  margin: 28px 0;
}

.highlight-pills span,
.footer-pills span {
  padding: 8px 13px;
  border: 1px solid var(--border-lime);
  border-radius: 999px;
  background: rgba(132, 255, 0, 0.08);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 800;
}

.button-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: 0.22s ease;
}

.button:hover,
.button:focus-visible {
  color: var(--black);
  transform: translateY(-2px);
}

.button-lime {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.button-lime:hover,
.button-lime:focus-visible {
  background: var(--white);
}

.button-yellow {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  background: var(--white);
}

.button-outline {
  border-color: var(--border-lime);
  background: transparent;
  color: var(--lime);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--lime);
}

.quote-card {
  position: relative;
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(132, 255, 0, 0.075), transparent 40%),
    #0d100c;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
}

.quote-heading {
  padding: 34px 34px 6px;
}

.quote-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px 34px 36px;
}

.field {
  min-width: 0;
}

.field.full,
.consent-line,
.submit-button,
.quote-phone-note {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: #070807;
  color: var(--white);
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 135px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(132, 255, 0, 0.09);
  outline: 0;
}

.field option {
  background: #111;
  color: var(--white);
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.consent-line input {
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--lime);
}

.submit-button {
  width: 100%;
}

.quote-phone-note {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.quote-phone-note a {
  color: var(--lime);
  font-weight: 900;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #080a07;
}

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

.stat-card {
  min-height: 122px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: #11150f;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--lime);
  font-size: 1.35rem;
  font-weight: 900;
}

.stat-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.local-context-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 213, 0, 0.065), transparent 31%),
    var(--black-soft);
}

.context-grid,
.industry-layout,
.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.context-panel {
  padding: 34px;
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-lg);
  background: #10130e;
  box-shadow: var(--shadow);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  color: var(--muted);
}

.checklist svg {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--lime);
}

.section-heading-row {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

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

.service-card,
.process-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(132, 255, 0, 0.035), transparent 50%), var(--panel);
  overflow: hidden;
  transition: 0.22s ease;
}

.service-card:hover,
.process-card:hover {
  border-color: var(--border-lime);
  transform: translateY(-4px);
}

.icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-lime);
  border-radius: 14px;
  background: rgba(132, 255, 0, 0.09);
  color: var(--lime);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card p,
.process-card p {
  margin-bottom: 18px;
}

.service-card a {
  color: var(--lime);
  font-weight: 800;
}

.packages-section,
.seo-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0, rgba(132, 255, 0, 0.07), transparent 38%),
    #070807;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.price-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #11150f;
}

.price-card.featured {
  border-color: var(--yellow);
  background:
    linear-gradient(145deg, rgba(255, 213, 0, 0.09), transparent 50%),
    #14140d;
  box-shadow: 0 24px 70px rgba(255, 213, 0, 0.08);
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(132, 255, 0, 0.1);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card.featured .tag {
  background: rgba(255, 213, 0, 0.1);
  color: var(--yellow);
}

.price {
  margin: 20px 0;
  color: var(--lime);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-card.featured .price {
  color: var(--yellow);
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-card .button {
  width: 100%;
  margin-top: 20px;
}

.industry-grid,
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.industry-grid span,
.area-grid span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #11140f;
  color: var(--white);
  font-weight: 800;
}

.industry-grid span::before,
.area-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(132, 255, 0, 0.45);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.process-number {
  margin-bottom: 22px;
  color: var(--lime);
  font-size: 2.1rem;
  font-weight: 900;
}

.resources-section {
  background: #0a0c09;
}

.resource-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 40px;
  padding: 38px;
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(132, 255, 0, 0.06), transparent 55%), #11140f;
}

.resource-panel p a {
  color: var(--lime);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(132, 255, 0, 0.45);
  text-underline-offset: 4px;
}

.resource-note {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.resource-links {
  display: grid;
  gap: 11px;
}

.resource-links a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #090b08;
  color: var(--white);
  font-weight: 800;
}

.resource-links a::after {
  content: "↗";
  color: var(--lime);
}

.faq-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--panel);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 1.5rem;
  transition: 0.2s ease;
}

.faq-question[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open {
  border-color: var(--border-lime);
}

.faq-item.open .faq-answer {
  display: block;
}

.final-cta-section {
  padding-top: 30px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 44px;
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(132, 255, 0, 0.13), rgba(255, 213, 0, 0.06)),
    #11140f;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 12px;
}

.cta-band p {
  margin-bottom: 0;
}

.cta-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.site-footer {
  padding: 72px 0 26px;
  border-top: 1px solid rgba(132, 255, 0, 0.18);
  background: #020302;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1.1fr;
  gap: 40px;
}

.footer-brand img {
  width: min(330px, 100%);
}

.site-footer h3 {
  color: var(--lime);
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: #c3cac0;
  font-size: 0.91rem;
}

.site-footer a:not(.brand):hover,
.site-footer a:not(.brand):focus-visible {
  color: var(--lime);
}

.legal-strip {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: #8f998a;
  font-size: 0.82rem;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: grid;
  gap: 10px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-actions.form-visible {
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
}

.floating-call,
.floating-quote {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.34);
}

.floating-call {
  background: var(--lime);
}

.floating-quote {
  background: var(--yellow);
}

.floating-call:hover,
.floating-quote:hover,
.floating-call:focus-visible,
.floating-quote:focus-visible {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    position: fixed;
    top: 134px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    padding: 24px 20px 120px;
    background: rgba(5, 5, 5, 0.99);
    overflow-y: auto;
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav a {
    display: block;
    margin-bottom: 10px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #11140f;
    color: var(--white);
    font-weight: 800;
  }

  .mobile-nav .mobile-call {
    border-color: var(--lime);
    background: var(--lime);
    color: var(--black);
  }

  .mobile-nav .mobile-quote {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--black);
  }

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

  .benefit-item:nth-child(2) {
    border-right: 0;
  }

  .benefit-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .lead-grid,
  .context-grid,
  .industry-layout,
  .areas-layout {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 760px;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-bottom: 72px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .section-small {
    padding: 38px 0;
  }

  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand img {
    width: min(252px, 68vw);
  }

  .mobile-nav {
    top: 78px;
  }

  .hero {
    padding: 0;
  }

  .slide img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.45rem;
  }

  .carousel-arrow.previous {
    left: 9px;
  }

  .carousel-arrow.next {
    right: 9px;
  }

  .carousel-dots {
    bottom: 8px;
  }

  .carousel-dot {
    width: 9px;
    height: 9px;
  }

  .benefit-grid,
  .stat-grid,
  .service-grid,
  .pricing-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item,
  .benefit-item:nth-child(2) {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .quote-heading {
    padding: 28px 22px 4px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px 22px 28px;
  }

  .field.full,
  .consent-line,
  .submit-button,
  .quote-phone-note {
    grid-column: auto;
  }

  .button-row,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-grid,
  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .industry-grid span,
  .area-grid span {
    min-height: 58px;
    padding: 12px;
    font-size: 0.83rem;
  }

  .resource-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
    padding: 30px 24px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .floating-actions {
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .floating-call,
  .floating-quote {
    min-width: 0;
    min-height: 48px;
    padding: 10px 8px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .floating-call span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .brand img {
    width: min(220px, 65vw);
  }

  .mobile-toggle {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.88rem;
  }

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

  .floating-call,
  .floating-quote {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
