/* ── COLOR TOKENS (from servicegroup.pt) ── */
:root {
  --white: #FFFFFF;
  --off-white: #F4F6F8;
  --light-gray: #E8ECF0;
  --ink: #1C1C2E;
  --ink-2: #2B3A4A;
  --muted: #6B7A8D;
  --green: #3D9B47;
  --green-hover: #2E7A38;
  --green-light: #EBF5EC;
  --lime: #009DE0;
  --orange: #E8730A;
  --orange-light: #FEF0E6;
  --navy: #0A1628;
  --navy-2: #112240;
  --border: #D8DFE8;
  --dark: #111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;   /* fallback for older browsers */
  overflow-x: clip;     /* clips without becoming a scroll container, so position:sticky keeps working */
  width: 100%;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NAV ── */
.navbar {
  background: transparent;
  border-bottom: 1px solid var(--border);
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.nav-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink) !important;
  transition: color .2s;
  font-weight: 500;
  padding: 18px 0;
}

.nav-link:hover {
  color: var(--green) !important;
}

.nav-back {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.nav-back:hover {
  color: var(--green) !important;
}

/* ── BUTTONS ── */
.btn-green {
  background: var(--green);
  border: none;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 3px;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
}

.btn-green:hover {
  background: var(--green-hover);
  color: #fff;
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  border: none;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 3px;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
}

.btn-orange:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-ink {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  transition: background .2s, color .2s;
  display: inline-flex;
  align-items: center;
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: #fff;
}

/* ── HERO / SLIDER ── */
.hero {
  background: #06220e;
  height: calc(100vh - 133px);
  min-height: 620px;
  max-height: 920px;
  align-content: center;
  position: relative;
  overflow: hidden;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 0s linear 1.1s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s ease;
  z-index: 1;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}

.hero-slide.active picture,
.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgb(0 0 0 / 60%);
  /* background:
    linear-gradient(90deg, rgba(6, 34, 14, 0.94) 0%, rgba(10, 56, 20, 0.88) 32%, rgba(20, 74, 40, 0.55) 62%, rgba(43, 123, 173, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 20, 8, 0.55) 0%, rgba(4, 20, 8, 0) 28%); */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  backdrop-filter: blur(3px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-size: clamp(2rem, 6.5vw, 3.8rem);
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
}

.hero h1 .accent {
  color: #7dd87f;
}

.hero-title {
  min-height: 2.8em;
  transition: opacity .26s ease, transform .26s ease, filter .26s ease;
}

.hero-title.is-swapping {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  color: #7dd87f;
  line-height: 1;
}

.hero-stat .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Content layer */
.hero-content-wrap {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 96px;
}

.hero-content {
  max-width: 620px;
  animation: heroRise .8s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-content-center {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-content-center .hero-title {
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider controls (arrows + dots) */
.hero-arrow-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  pointer-events: none;
}

.hero-nav {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 30, 16, 0.32);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.hero-nav i {
  display: block;
  transform: translateX(0);
  transition: transform .2s ease;
}

.hero-nav.prev:hover i {
  transform: translateX(-2px);
}

.hero-nav.next:hover i {
  transform: translateX(2px);
}

.hero-nav:hover {
  background: rgba(125, 216, 127, 0.18);
  border-color: rgba(125, 216, 127, 0.65);
  transform: scale(1.06);
}

.hero-slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 18px;
  height: 3px;
  padding: 0;
  /* border-radius: 50%; */
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: #fcfcfc;
  cursor: pointer;
  transition: all .3s ease;
}

.hero-dot:hover {
  border-color: #fff;
}

.hero-dot.active {
  width: 26px;
  /* border-radius: 5px; */
  background: #7dd87f;
  border-color: #7dd87f;
}

/* ── MARQUEE ── */
.marquee-band {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  padding: 0 32px;
  white-space: nowrap;
}

.marquee-track span::before {
  content: '◆';
  margin-right: 32px;
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── INTRO SPLIT ── */
.intro {
  padding: 96px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.intro h2 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--ink);
}

.intro .lede {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
}

.intro p {
  color: var(--muted);
  line-height: 1.7;
}

.intro-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(28, 28, 46, 0.08);
  height: 420px;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.efficiency-bar {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 28px;
}

.efficiency-bar .bar-label {
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.efficiency-bar .bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.efficiency-bar .bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
  transition: width 1.2s ease;
}

/* ── METHODS SECTION ── */
.methods {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.methods h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.method-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(28, 28, 46, 0.12);
  border-color: var(--green);
}

.method-card::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .28s ease;
  transform-origin: left;
}

.method-card:hover::after {
  transform: scaleX(1);
}

.method-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.method-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.method-card:hover .method-img img {
  transform: scale(1.06);
}

.method-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.method-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.method-body h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.method-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 13px;
}

.method-specs {
  /* margin-top: 18px; */
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-2);
}

.method-spec i {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── GALLERY STRIP ── */
.gallery {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.gallery h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
  margin-top: 32px;
}

.gallery-grid .g-main {
  grid-row: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-grid .g-cell {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-grid .g-main:hover img,
.gallery-grid .g-cell:hover img {
  transform: scale(1.04);
}

/* ── BENEFITS ── */
/* ── BENEFITS LEFT COLUMN ── */
.benefits-left {
  position: sticky;
  top: 100px;
}
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.stat-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(61,155,71,0.1);
}
.stat-card .sc-num {
  /* font-family: 'Archivo Black', sans-serif; */
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}
.stat-card .sc-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0em;
  /* text-transform: uppercase; */
  color: var(--muted);
  margin-top: 5px;
}
.stat-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card.wide .sc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--green-light);
  border: 1px solid rgba(61,155,71,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 22px;
}
.stat-card.wide .sc-body .sc-lbl { margin-top: 2px; }
.coverage-block {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 20px 14px;
}
.coverage-block .cb-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.coverage-block .cb-title i { color: var(--green); }
.coverage-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.coverage-row:last-child { border-bottom: none; padding-bottom: 0; }
.coverage-row .flag {
  font-size: 1rem; flex-shrink: 0; line-height: 1.4;
}
.coverage-row .places {
  color: var(--ink-2); line-height: 1.5;
}
.coverage-row .places strong {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .benefits-left { position: static; }
}


.benefits {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--orange-light);
  border: 1px solid rgb(233 148 68);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 24px;
}
.benefit-icon.top-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green-light);
    border: 1px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 32px;
}
.benefit-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.benefit-text p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  padding: 96px 0;
  background: var(--white);
}

.process h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}

.step {
  background: var(--white);
  padding: 32px 26px;
  position: relative;
  transition: background .2s;
}

.step:hover {
  background: var(--green-light);
}

.step .step-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  color: rgba(61, 155, 71, 0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 16px;
}

.step .step-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--green-light);
  border: 1px solid rgba(61, 155, 71, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 22px;
}

.step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--ink);
}

.step p {
  color: var(--muted);
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.65;
}

/* ── CTA BAND ── */
.cta-band {
  padding: 96px 0;
  background: var(--orange);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 155, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 155, 71, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  position: relative;
}

.cta-band h2 span {
  color: var(--green);
}

.cta-band p {
  color: rgba(255, 255, 255, 1);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 1);
}

.cta-actions {
  position: relative;
  margin-top: 36px;
}

.btn-white {
  background: #fff;
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 3px;
  border: none;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
}

.btn-white:hover {
  background: #f0f0f0;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  transition: border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
  font-weight: 500;
}

footer p {
  color: rgba(255, 255, 255, 0.45);
  max-width: 300px;
  font-size: 0.9rem;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color .2s;
}

footer ul a:hover {
  color: var(--green);
}

footer ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.6);
  margin: 40px 0 0;
}

.footer-bottom {
  padding-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--green);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery-grid .g-main {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 70vh !important;
    min-height: 560px;
    max-height: none;
  }

  .hero-content-wrap {
    padding: 76px 0 84px;
    align-items: center;
  }

  .hero-content {
    max-width: 92%;
    padding: 0 15px;
  }

  .hero-arrow-wrap {
    padding: 0 12px;
    top: calc(50% - 18px);
  }

  .hero-nav {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
    background: rgba(10, 30, 16, 0.42);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hero-slider-controls {
    bottom: 20px;
    justify-content: center;
  }

  .intro,
  .methods,
  .gallery,
  .benefits,
  .process,
  .cta-band {
    padding: 56px 0;
  }

  .step-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gallery-grid .g-main {
    grid-column: auto;
  }

  footer {
    padding: 48px 0 24px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .hero-stats {
    gap: 24px;
  }
}

/* ── SERVICE AREAS ── */
.service-areas {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-areas h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1.1;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 18px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.area-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(28,28,46,0.06);
}
.area-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.area-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.area-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── ADVANCED SERVICES (Thermal Inspection + Vegetation Management) ── */
.adv-services {
  padding: 96px 0;
  background: #1d6d3a;
  /* background: var(--green); */
  color: var(--white);
}
.adv-services .eyebrow { color: var(--white); }
.adv-services h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1.1;
}
.adv-services > .container > .row > div > p {
  color: rgba(255,255,255,1);
}
.adv-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 32px;
  height: 100%;
}
.adv-card .adv-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 16px;
}
.adv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.adv-card p {
  color: rgba(255,255,255,1);
  line-height: 1.65;
  font-size: 0.94rem;
}
.adv-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 18px 0;
}
.adv-highlight .num {
  /* font-family: 'Archivo Black', sans-serif; */
  font-size: 1.3rem;
  color: var(--orange);
  white-space: nowrap;
}
.adv-highlight .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,1);
  line-height: 1.4;
}
.adv-list {
  list-style: none;
  padding: 0; margin: 0;
}
.adv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,1);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.adv-list li:first-child { border-top: none; }
.adv-list li i { color: var(--green-light); margin-top: 2px; }
@media (max-width: 767px) {
  .service-areas, .adv-services { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  .hero-badge .dot {
    animation: none;
  }
}

.services-img img {
    width: 100%;
    height: 100%;
    max-height: 580px;
    border-radius: 10px;
}

.download-btn {
    padding: 8px 18px;
    background: #fff;
    align-items: center;
    width: max-content;
    border-radius: 3px;
    text-transform: uppercase;
    color: #222;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.download-btn a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
}

.download-btn:hover,
.download-btn:hover a {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
}

 .lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  transition: border-color .2s, color .2s;
}
.lang-btn i { font-size: 1rem; color: var(--green); }
.lang-btn:hover, .lang-btn:focus { border-color: var(--green); color: var(--green); }

.lang-switcher .dropdown-menu {
  min-width: 80px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.12);
  margin-top: 10px;
}
.lang-switcher .dropdown-item {
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--ink);
  text-align: center;
}
.lang-switcher .dropdown-item:hover,
.lang-switcher .dropdown-item:focus { background: var(--green-light); color: var(--green); }
.lang-switcher .dropdown-item.active { background: var(--green); color: #fff; }

@media (max-width: 767.98px) {
  .lang-btn { padding: 6px 10px; }
}

/* Services dropdown (under "Service Areas" nav item) */
.services-dropdown .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.12);
  margin-top: 2px; 
  min-width: 325px;
}
.services-dropdown .dropdown-item {
  font-size: 0.82rem;
  border-radius: 6px;
  padding: 8px 8px;
  color: var(--ink);
  white-space: normal;
  margin: 3px 0;
  text-transform: capitalize;
}
.services-dropdown .dropdown-item:hover,
.services-dropdown .dropdown-item:focus { background: var(--green-light); color: var(--green); }
.services-dropdown .dropdown-toggle::after { vertical-align: 2px; }

@media (min-width: 768px) {
  .services-dropdown:hover .dropdown-menu { display: block; }
}

/* Services dropdown: separate caret toggle button (sibling of the real
   link, not nested inside it) so clicking the label navigates while the
   caret opens the submenu. */
.services-dropdown { display: flex; align-items: center; }
.dropdown-caret-btn {
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 18px 4px 18px 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: color .2s;
}
.dropdown-caret-btn:hover,
.dropdown-caret-btn:focus { color: var(--green); }

/* ── OFFCANVAS NAV DRAWER (mobile) ──
   navbar-expand-md automatically reverts this to a normal static inline
   nav bar at desktop widths — the rules below only take visual effect
   below that breakpoint. */
.offcanvas#nav {
  width: min(350px, 84vw);
}
.offcanvas#nav .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
.offcanvas#nav .offcanvas-body {
  padding: 10px;
}
.offcanvas#nav .navbar-nav {
  gap: 4px;
}
.offcanvas#nav .nav-link {
  padding: 12px 4px;
  border-bottom: 0px solid var(--border);
}

@media (max-width: 767.98px) {
  .dropdown-caret-btn { display: none; }
  .services-dropdown {
    display: block;   /* ← add this: cancel the flex row on mobile */
  }
  .services-dropdown .dropdown-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: transparent;
    margin: 0 0 8px 16px;
    padding: 0;
  }
  .services-dropdown .dropdown-item { 
    padding: 8px 0px; 
    text-transform: capitalize;
        font-size: 14px;
      }
  .offcanvas#nav .nav-link {
    padding: 6px 4px;
    border-bottom: 0px solid var(--border);
}
}
.sub-title{
  color: var(--green);
}

.application-list li {
    display: flex;
    align-items: start;
    margin-bottom: 0.5rem;
}
.application-list li i {
    color: #3D9B47; /* matches your footer's green accent color */
    font-size: 1.1rem;
}
.application-list--cols {
    column-count: 1;
}

@media (min-width: 768px) {
    .application-list--cols {
        column-count: 2;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md .offcanvas .offcanvas-body {
        justify-content: end;
        margin-right: 24px;
    }
        .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
        top: 46px;
        right: 0;
    }
}
.text-justify{
  text-align: justify !important;
}
.navbar-toggler:focus{
  box-shadow: none;
}
.navbar-toggler{
  border: 0px;
  padding-left: 6px;
  padding-right: 0px;

}
.services-dropdown ul.dropdown-menu li {
    border-bottom: 1px solid #f3f3f3;
}
.services-dropdown ul.dropdown-menu li:last-child {
    border-bottom: 0px solid #f3f3f3;
}
.it-breadcrumb-area {
  background-image: var(--bg-desktop);
}

@media (max-width: 768px) {
  .it-breadcrumb-area {
    background-image: var(--bg-mobile) !important;
  }
}
.contact-form-card .iti {
    width: 100%;
}