:root {
  --brand-orange: #ef7d00;
  --primary: #2596be;
  --primary-strong: #1f7f9f;
  --primary-deep: #17617c;
  --primary-hover: #196b88;
  --secondary: #66737f;
  --secondary-hover: #596774;
  --ribbon: #eef1f3;
  --heading: #263546;
  --body-text: #526274;
  --white: #ffffff;
  --bg-alt: #f5f7f9;
  --line: #d8e0e5;
  --font-body: "Poppins", system-ui, sans-serif;
  --wrap: 480px;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(37, 150, 190, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body-text);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
summary {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--primary-deep);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0 0 8px 0;
  color: var(--white);
  background: var(--primary-deep);
  transform: translateY(-120%);
  transition: transform 0.15s ease;
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--primary-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-headline {
  margin-bottom: 0.85rem;
  color: var(--primary);
  font-size: clamp(1.6rem, 5vw, 2.1rem);
}

.section-body {
  max-width: 68ch;
  color: var(--body-text);
  font-size: 0.98rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-vend {
  border: 2px solid var(--primary-strong);
  color: var(--white);
  background: var(--primary-strong);
  box-shadow: 0 6px 16px rgba(31, 127, 159, 0.24);
}

.btn-vend:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
  box-shadow: 0 9px 20px rgba(25, 107, 136, 0.28);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary-hover);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(38, 53, 70, 0.08);
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--secondary-hover);
  background: var(--secondary-hover);
  box-shadow: 0 9px 20px rgba(38, 53, 70, 0.18);
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: none;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.topbar {
  border-bottom: 1px solid var(--line);
  color: var(--heading);
  background: var(--ribbon);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.45rem 1.25rem;
}

.topbar-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
}

.topbar-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-link:hover,
.contact-link:hover {
  color: var(--primary-deep);
}

.icon-accent {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--primary);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.6rem;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  color: var(--primary-strong);
  font-size: 1.02rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-tagline {
  display: none;
  color: var(--body-text);
  font-size: 0.72rem;
}

.nav-menu {
  position: relative;
}

.nav-toggle {
  display: flex;
  width: 44px;
  height: 44px;
  padding: 9px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  list-style: none;
}

.nav-toggle::-webkit-details-marker {
  display: none;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--heading);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu[open] .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-menu[open] .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: 118px 0 0;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 3rem;
  color: var(--heading);
  background: var(--white);
}

.nav-menu:not([open]) .primary-nav {
  display: none;
}

.primary-nav ul {
  display: flex;
  flex-direction: column;
}

.primary-nav li a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.2rem;
  font-weight: 600;
}

.primary-nav li a:hover {
  color: var(--primary-deep);
}

.nav-cta {
  width: 100%;
  margin-top: 1.5rem;
}

.hero {
  padding: 2.5rem 0;
  background: #f6f8fa;
}

.hero-copy {
  margin-bottom: 2rem;
}

.hero-headline {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: clamp(2.1rem, 8vw, 2.9rem);
}

.hero-body {
  max-width: 62ch;
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media img,
.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.split-grid {
  display: grid;
  gap: 2rem;
}

#how-it-works,
#service-areas,
#faq {
  background-image: url("/assets/images/home/texture-background.webp");
  background-position: center;
  background-size: cover;
}

#about {
  background-image: linear-gradient(rgba(20, 24, 27, 0.58), rgba(20, 24, 27, 0.58)), url("/assets/images/home/machines-background.webp");
  background-position: center;
  background-size: cover;
}

#about .eyebrow,
#about .section-headline,
#about .section-body {
  color: var(--white);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--heading);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.area-cities {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.area-cities-label,
.connect-label {
  margin-bottom: 0.75rem;
  color: var(--body-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.city-list a,
.form-fallback a {
  color: var(--primary-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.city-list a:hover,
.form-fallback a:hover {
  color: var(--primary-strong);
}

.testimonials {
  color: var(--heading);
  background: var(--white);
}

.grw-wrap {
  max-width: 980px;
}

.grw-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.grw-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  gap: 14px;
}

.grw-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
}

.grw-brand-text {
  min-width: 0;
  text-align: left;
}

.grw-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.grw-sub {
  margin-top: 4px;
  color: var(--body-text);
  font-size: 0.92rem;
}

.grw-header-side {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.grw-link {
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.grw-controls {
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 1rem auto 0;
}

.grw-arrow,
.grw-toggle {
  display: flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary-deep);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(37, 150, 190, 0.1);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, background-color 0.15s ease;
}

.grw-arrow svg,
.grw-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grw-arrow:hover,
.grw-toggle:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
  background: var(--ribbon);
  transform: translateY(-1px);
}

.grw-toggle [data-icon="play"] {
  display: none;
}

.grw-toggle[aria-pressed="true"] [data-icon="pause"] {
  display: none;
}

.grw-toggle[aria-pressed="true"] [data-icon="play"] {
  display: block;
}

.grw-carousel {
  display: grid;
  gap: 1rem;
}

.grw-carousel.is-enhanced {
  display: block;
}

.grw-carousel:not(.is-enhanced) .grw-card:nth-child(n + 4),
.grw-carousel.is-enhanced .grw-card[hidden] {
  display: none;
}

.grw-card {
  display: flex;
  min-height: 220px;
  padding: 1.5rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 4px solid var(--primary);
  border-radius: 18px;
  color: var(--heading);
  background: var(--white);
  box-shadow: var(--shadow);
}

.grw-top {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.grw-meta {
  min-width: 0;
  flex: 1 1 auto;
}

.grw-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.grw-when {
  display: block;
  margin-top: 6px;
  color: var(--body-text);
  font-size: 0.8rem;
}

.grw-stars {
  flex: 0 0 auto;
  color: #f9ab00;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.grw-text {
  margin-top: 16px;
  color: var(--heading);
  font-size: 0.92rem;
  line-height: 1.55;
}

.grw-position {
  min-width: 4.5rem;
  color: var(--body-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

#features {
  background-image: linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)), url("/assets/images/home/features-background.webp");
  background-position: center;
  background-size: cover;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: invert(49%) sepia(74%) saturate(811%) hue-rotate(151deg) brightness(91%) contrast(84%);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-strong);
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

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

.faq-question {
  display: flex;
  width: 100%;
  padding: 1.1rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--primary-deep);
  font-size: 0.98rem;
  font-weight: 600;
  list-style: none;
  text-align: left;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  display: flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  content: "";
  background: var(--primary);
}

.faq-icon::before {
  width: 9px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 9px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.92rem;
}

.cta-band {
  padding: 3.25rem 0;
  background-image: linear-gradient(rgba(23, 97, 124, 0.9), rgba(38, 53, 70, 0.88)), url("/assets/images/home/cta-background.webp");
  background-position: center;
  background-size: cover;
}

.cta-band .section-headline,
.cta-band .section-body {
  color: var(--white);
}

.cta-band .section-body {
  margin-bottom: 1.5rem;
}

.cta-band .btn-vend {
  border-color: var(--white);
  color: var(--primary-deep);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

.cta-band .btn-vend:hover {
  border-color: var(--ribbon);
  color: var(--primary-deep);
  background: var(--ribbon);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.assessment-section {
  scroll-margin-top: 8rem;
  background: linear-gradient(rgba(245, 247, 249, 0.94), rgba(245, 247, 249, 0.94)), url("/assets/images/home/texture-background.webp") center / cover;
}

.assessment-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.assessment-intro .section-body {
  margin: 0 auto;
}

.assessment-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.assessment-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--heading);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.assessment-points li::before {
  color: var(--primary);
  content: "✓";
  font-weight: 700;
}

.assessment-card {
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--primary);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(37, 150, 190, 0.12);
}

.zoho-form-embed {
  min-height: 720px;
}

.zoho-form-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: var(--white);
}

.form-fallback {
  padding: 0 1.25rem 1.25rem;
  color: var(--body-text);
  font-size: 0.88rem;
  text-align: center;
}

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

.contact-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ribbon);
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-strong);
  font-size: 1.05rem;
}

.contact-card p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.contact-link {
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.connect-label {
  margin-top: 2rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.social-row a {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary-deep);
  background: var(--white);
}

.social-row a:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
  background: var(--ribbon);
  transform: translateY(-1px);
}

.social-row svg,
.social-row img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--body-text);
  background: var(--ribbon);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand > span > strong {
  display: block;
  color: var(--primary-strong);
  font-size: 0.95rem;
}

.footer-brand > span > span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--primary-deep);
}

.footer-copyright {
  color: var(--secondary-hover);
  font-size: 0.78rem;
}

@media (min-width: 560px) {
  .feature-grid,
  .contact-grid,
  .grw-carousel:not(.is-enhanced) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  :root {
    --wrap: 1080px;
  }

  .brand-tagline {
    display: block;
  }

  .nav-menu > .nav-toggle {
    display: none;
  }

  .nav-menu:not([open]) .primary-nav,
  .primary-nav {
    position: static;
    display: flex;
    overflow: visible;
    padding: 0;
    align-items: center;
    gap: 1.75rem;
    background: transparent;
  }

  .primary-nav ul {
    flex-direction: row;
    gap: 1.5rem;
  }

  .primary-nav li a {
    padding: 0;
    border: 0;
    font-size: 0.92rem;
  }

  .nav-cta {
    width: auto;
    margin-top: 0;
  }

  .hero-inner,
  .split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 3rem;
  }

  .hero-copy {
    margin-bottom: 0;
  }

  .split-grid-reverse .split-copy {
    order: 2;
  }

  .split-grid-reverse .split-media {
    order: 1;
  }

  .feature-grid,
  .grw-carousel:not(.is-enhanced) {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .grw-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .grw-brand {
    width: auto;
    justify-content: flex-start;
  }

  .grw-logo {
    width: 56px;
    height: 56px;
  }

  .grw-header-side {
    width: auto;
    align-items: flex-end;
  }

  .assessment-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-meta {
    align-items: flex-end;
  }
}

@media (min-width: 860px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  #about,
  #features,
  .cta-band {
    background-attachment: fixed;
  }
}

@media (max-width: 559px) {
  .topbar-contact {
    font-size: 0.74rem;
  }

  .topbar-link:first-child {
    display: none;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

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

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