/* =========================================================
   MV Janitorial Service — Home Page Styles
   Brand: Deep Green #15443d · Emerald #54ac84 · Mint #e7f2ec
   ========================================================= */

:root {
  --green-900: #0f322d;
  --green-800: #15443d; /* primary deep green (logo) */
  --green-700: #1c5a4f;
  --green-500: #54ac84; /* emerald accent (logo) */
  --green-400: #6fbf98;
  --green-200: #a9d8c1;
  --mint-100: #e7f2ec;
  --mint-50: #f4f9f6;
  --ink: #1d2b28;
  --body: #4a5b56;
  --white: #ffffff;
  --line: #e3ece7;
  --shadow-sm: 0 4px 14px rgba(21, 68, 61, 0.08);
  --shadow-md: 0 14px 40px rgba(21, 68, 61, 0.12);
  --shadow-lg: 0 30px 70px rgba(21, 68, 61, 0.18);
  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 16px;
}
.eyebrow--dark {
  color: var(--green-500);
}

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-title--light {
  color: var(--white);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-intro {
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}
.btn--lg {
  padding: 16px 34px;
  font-size: 1.02rem;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(84, 172, 132, 0.35);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 68, 61, 0.3);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--green-800);
}
.btn--white:hover {
  background: var(--mint-100);
  transform: translateY(-2px);
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--green-900);
  color: #cfe6da;
  font-size: 0.84rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  gap: 16px;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.topbar__item:hover {
  color: #fff;
}
.topbar__badge {
  background: rgba(84, 172, 132, 0.22);
  color: #bfe6d3;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.ic {
  font-size: 0.9em;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition:
    transform 0.35s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header--hidden {
  transform: translateY(-100%);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand__logo {
  height: clamp(64px, 9vw, 84px);
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.15s;
}
.nav__link:hover {
  color: var(--green-500);
}
.nav__link--active {
  color: var(--green-500);
  font-weight: 600;
}
.nav__cta {
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--green-800);
  border-radius: 3px;
  transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--green-800) 0%,
    var(--green-900) 55%,
    #0b2723 100%
  );
  color: #eaf5ef;
  padding: clamp(28px, 4vw, 48px) 0;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(84, 172, 132, 0.35),
      transparent 40%
    ),
    radial-gradient(
      circle 2px at 20px 20px,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size:
    auto,
    26px 26px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__title span {
  color: var(--green-400);
}
.hero__title .nowrap {
  color: inherit;
  white-space: nowrap;
}
.nowrap {
  white-space: nowrap;
}
.hero__lead {
  font-size: 1.1rem;
  color: #cfe6da;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: #dcefe5;
  font-weight: 500;
}
.hero__badges .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(84, 172, 132, 0.2);
}

.hero__visual {
  position: relative;
  min-height: 400px;
}

/* Hero slider */
.hero__slider {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(160deg, var(--green-700), var(--green-500));
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: scale(1.02);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.8s ease,
    transform 6s ease;
}
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(21, 68, 61, 0.28),
    rgba(84, 172, 132, 0.12) 60%,
    transparent
  );
}
.hero__slide-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-800);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 7px 13px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.hero__slider-dots {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 4;
  display: flex;
  gap: 7px;
}
.hero__slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  transition:
    background 0.25s,
    width 0.25s;
}
.hero__slider-dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 5px;
}
.hero__slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-800);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition:
    opacity 0.25s,
    background 0.2s;
}
.hero__slider-nav:hover {
  background: #fff;
}
.hero__slider-nav--prev {
  left: 12px;
}
.hero__slider-nav--next {
  right: 12px;
}
.hero__visual:hover .hero__slider-nav {
  opacity: 1;
}
@media (hover: none) {
  .hero__slider-nav {
    opacity: 1;
    background: rgba(255, 255, 255, 0.8);
  }
}
.hero__card {
  position: absolute;
  left: -14px;
  bottom: 26px;
  z-index: 6;
  background: #fff;
  color: var(--ink);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: 230px;
  border-left: 5px solid var(--green-500);
}
.hero__card-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--green-800);
}
.hero__card-txt {
  font-size: 0.8rem;
  color: var(--body);
  line-height: 1.4;
}
.hero__leaf {
  position: absolute;
  top: -16px;
  right: -10px;
  z-index: 6;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
}

/* ---------- Sub-page banner ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--green-800) 0%,
    var(--green-900) 60%,
    #0b2723 100%
  );
  color: #eaf5ef;
  padding: clamp(40px, 6vw, 72px) 0;
}
.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(84, 172, 132, 0.32),
      transparent 42%
    ),
    radial-gradient(
      circle 2px at 20px 20px,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size:
    auto,
    26px 26px;
}
.page-hero__inner {
  position: relative;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-hero p {
  color: #cfe6da;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #a9d8c1;
}
.breadcrumb a {
  color: #cfe6da;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  opacity: 0.6;
}

/* ---------- Service detail rows ---------- */
.svc-group {
  padding: clamp(32px, 4.5vw, 55px) 0;
}
.svc-group--alt {
  background: var(--mint-50);
}
.svc-group__head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.svc-group__badge {
  display: inline-block;
  background: var(--green-800);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--mint-100);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 18px 24px;
}
.stat {
  text-align: center;
  padding: 8px;
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 4.5vw, 2.1rem);
  color: var(--green-800);
  white-space: nowrap;
}
.stat__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- About ---------- */
.about {
  padding: clamp(32px, 4.5vw, 55px) 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.about__media {
  position: relative;
}
.about__photo {
  height: 440px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(160deg, rgba(21, 68, 61, 0.15), transparent),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=80")
      center/cover,
    linear-gradient(160deg, var(--green-700), var(--green-500));
}
.about__accent {
  position: absolute;
  right: -16px;
  bottom: -22px;
  background: var(--green-800);
  color: #fff;
  padding: 20px 26px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  width: max-content;
  max-width: calc(100% - 12px);
}
.about__accent-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  white-space: nowrap;
}
.about__accent-sub {
  font-size: 0.8rem;
  color: var(--green-200);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about__copy p {
  margin-bottom: 20px;
  font-size: 1.03rem;
}
.pillars__title {
  font-size: 1.15rem;
  color: var(--green-800);
  margin-top: 30px;
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar__icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mint-100);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: inset 0 0 0 1px var(--line);
}
.pillar h3 {
  font-size: 1.08rem;
  margin-bottom: 2px;
  color: var(--green-800);
}
.pillar p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Services ---------- */
.services {
  padding: clamp(32px, 4.5vw, 55px) 0;
  background: var(--mint-50);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-800));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}
.card:hover::before {
  transform: scaleX(1);
}
.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: var(--mint-100);
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--green-800);
}
.card p {
  font-size: 0.96rem;
}

/* ---------- Benefit banner ---------- */
.benefit {
  position: relative;
  overflow: hidden;
  background: var(--green-800);
  color: #eaf5ef;
  padding: clamp(28px, 4vw, 45px) 0;
}
.benefit__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 10% 90%,
      rgba(84, 172, 132, 0.4),
      transparent 45%
    ),
    radial-gradient(
      circle 2px at 18px 18px,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
  background-size:
    auto,
    24px 24px;
}
.benefit__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.benefit__copy p {
  color: #cfe6da;
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 520px;
}
.benefit__eco {
  color: var(--green-200);
  font-weight: 500;
  margin-bottom: 28px;
}
.benefit__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.benefit__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 500;
  color: #eaf5ef;
}
.benefit__list span {
  color: var(--green-400);
  font-weight: 700;
}

/* ---------- Industries ---------- */
.industries {
  padding: clamp(32px, 4.5vw, 55px) 0;
  background: var(--mint-100);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.industry:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.industry__ic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: linear-gradient(145deg, var(--mint-100), #fff);
  box-shadow: inset 0 0 0 1px var(--line);
}
.industry h3 {
  font-size: 1.05rem;
  color: var(--green-800);
  margin-bottom: 8px;
}
.industry p {
  font-size: 0.9rem;
}
/* Detailed 2-col variant (Industries page) */
.industry-grid--detail {
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.industry-grid--detail .industry {
  text-align: left;
  padding: 34px 30px;
}
.industry-grid--detail .industry__ic {
  margin: 0 0 18px;
}
.industry-grid--detail .industry p {
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.reviews {
  padding: clamp(32px, 4.5vw, 55px) 0;
  background: var(--mint-50);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__stars {
  color: #f5b301;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review p {
  font-style: italic;
  color: var(--ink);
  font-size: 1rem;
  flex: 1;
}
.review footer {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green-700);
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(32px, 4.5vw, 55px) 0;
  background: #fff;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item.open {
  border-color: var(--green-200);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--green-800);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__icon {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-500);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq__icon::before {
  width: 14px;
  height: 2.5px;
}
.faq__icon::after {
  width: 2.5px;
  height: 14px;
}
.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a p {
  padding: 0 24px 22px;
  font-size: 0.98rem;
  color: var(--body);
}

/* ---------- Careers ---------- */
.careers {
  padding: clamp(32px, 4.5vw, 55px) 0;
}
.careers__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.careers__copy p {
  font-size: 1.03rem;
  margin-bottom: 24px;
}
.careers__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.careers__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}
.careers__points span {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--green-700);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}
.careers__form {
  background: var(--mint-50);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.careers__form h3 {
  font-size: 1.4rem;
  color: var(--green-800);
  margin-bottom: 20px;
}
.careers__form .field input,
.careers__form .field select,
.careers__form .field textarea {
  background: #fff;
}

/* ---------- Quote / CTA ---------- */
.quote {
  padding: clamp(32px, 4.5vw, 55px) 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #eaf5ef;
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.quote__copy p {
  color: #cfe6da;
  margin-bottom: 22px;
  font-size: 1.03rem;
}
.quote__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.quote__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
}
.quote__contact a:hover {
  color: var(--green-400);
}
.quote__contact .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(84, 172, 132, 0.2);
  display: grid;
  place-items: center;
}
.quote__eco {
  font-weight: 600;
  color: var(--green-200);
}

/* Light variant (used above a dark footer to avoid dark-on-dark blend) */
.quote--light {
  background: linear-gradient(135deg, var(--mint-100) 0%, var(--mint-50) 100%);
  color: var(--ink);
}
.quote--light .eyebrow {
  color: var(--green-500);
}
.quote--light .section-title--light {
  color: var(--ink);
}
.quote--light .quote__copy p {
  color: var(--body);
}
.quote--light .quote__contact li {
  color: var(--ink);
}
.quote--light .quote__contact a {
  color: var(--green-800);
}
.quote--light .quote__contact a:hover {
  color: var(--green-500);
}
.quote--light .quote__eco {
  color: var(--green-700);
}
.quote--light .quote__form {
  border: 1px solid var(--line);
}

.quote__form {
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.quote__form h3 {
  font-size: 1.4rem;
  color: var(--green-800);
  margin-bottom: 20px;
}
.field {
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--mint-50);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(84, 172, 132, 0.18);
  background: #fff;
}
.field textarea {
  resize: vertical;
}
.quote__disclaimer {
  font-size: 0.76rem;
  color: #8a9994;
  margin-top: 12px;
  text-align: center;
}
.form-success {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--green-700);
  background: var(--mint-100);
  padding: 12px;
  border-radius: 10px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-900);
  color: #bcd4c9;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 32px 24px 22px;
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer__logo img {
  height: 78px;
  width: auto;
  display: block;
}
.footer__brand p {
  font-size: 0.95rem;
  max-width: 320px;
}
.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  margin-bottom: 11px;
  font-size: 0.93rem;
  transition: color 0.15s;
}
.footer__col a:hover {
  color: var(--green-400);
}
.footer__loc {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
}
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

/* ---------- Floating call button ---------- */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 26px rgba(21, 68, 61, 0.4);
  transition: transform 0.2s;
  display: none;
}
.fab:hover {
  transform: scale(1.08);
}

/* keep the reCAPTCHA v3 badge clear of the floating call button */
.grecaptcha-badge {
  bottom: 88px !important;
  z-index: 80 !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    max-width: 520px;
    min-height: 340px;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .cards,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .careers__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .topbar__email {
    display: none;
  }
  .topbar__right .topbar__item {
    display: none;
  }
  .nav {
    position: fixed;
    top: 100px;
    right: 0;
    height: calc(100vh - 100px);
    width: min(300px, 82vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    border-left: 1px solid var(--line);
    overflow-y: auto;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__link {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav__cta {
    margin: 14px 0 0;
    text-align: center;
  }
  .nav-toggle {
    display: flex;
  }
  .benefit__inner,
  .quote__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fab {
    display: grid;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
  .topbar {
    font-size: 0.72rem;
  }
  .topbar__inner {
    gap: 10px;
  }
  .topbar__left {
    gap: 14px;
  }
  .topbar__item {
    white-space: nowrap;
  }
  .topbar__badge {
    white-space: nowrap;
    padding: 3px 10px;
    font-size: 0.7rem;
  }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
  }
  .cards,
  .review-grid,
  .industry-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .benefit__list {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .hero__actions .btn {
    flex: 1 1 100%;
  }
  .about__accent {
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: none;
    position: relative;
    bottom: auto;
    margin-top: 16px;
  }
  .footer__grid {
    padding-top: 42px;
  }
  .footer__logo img {
    height: 60px;
  }
  .footer__bar-inner {
    justify-content: center;
    text-align: center;
  }
  .quote__form {
    padding: 26px 20px;
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- footer icon ---------- */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #cfe6da;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.footer__social a:hover {
  background: var(--green-500);
  color: #fff;
  transform: translateY(-3px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
