:root {
  --blue: #1a4f76;
  --teal: #198a78;
  --gold: #d4af37;
  --red: #a62131;
  --navy: #0c2638;
  --charcoal: #24313a;
  --muted: #62717a;
  --line: #dfe7e5;
  --paper: #f6f8f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(12, 38, 56, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.news-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--blue));
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.news-bar span {
  color: var(--gold);
  text-transform: uppercase;
}

.news-bar strong {
  color: var(--white);
  animation: news-flash 1.2s ease-in-out infinite;
}

@keyframes news-flash {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.38;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 231, 229, 0.82);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1240px, calc(100% - 28px));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 150px;
  height: 68px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta {
  padding: 0.76rem 1rem;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 27, 40, 0.92), rgba(8, 27, 40, 0.52) 46%, rgba(8, 27, 40, 0.06));
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 5rem 0 6rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-copy {
  max-width: 720px;
  margin-top: 1.35rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(25, 138, 120, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.trust-line {
  max-width: 800px;
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
}

.section,
.section-tight {
  padding: 6rem 0;
}

.section-tight {
  padding: 3.2rem 0;
  background: var(--white);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2.2rem;
}

.section-intro {
  max-width: 620px;
}

.section-intro p:not(.section-kicker),
.section-heading p:not(.section-kicker) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.client-strip h2 {
  max-width: 760px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.logo-grid span,
.industry-grid span,
.cert-list span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.problem {
  background: linear-gradient(180deg, #f6f8f7, #ffffff);
}

.problem-grid,
.benefit-grid,
.gallery-grid,
.infra-grid,
.industry-grid {
  display: grid;
  gap: 1rem;
}

.problem-grid,
.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-grid article,
.benefit-card,
.solution-list div,
.timeline article,
.roi-panel,
.lead-form,
.contact-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(12, 38, 56, 0.06);
}

.problem-grid article {
  min-height: 150px;
  padding: 1.3rem;
}

.problem-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.08rem;
}

.problem-grid span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.benefit-card {
  min-height: 250px;
  padding: 1.35rem;
}

.benefit-card .icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.benefit-card:nth-child(2) .icon,
.benefit-card:nth-child(4) .icon {
  background: var(--teal);
}

.benefit-card p,
.timeline p,
.roi-panel p,
.lead-copy p {
  margin-top: 0.72rem;
  color: var(--muted);
}

.solutions {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.solution-list {
  display: grid;
  gap: 0.85rem;
}

.solution-list div {
  padding: 1.2rem;
}

.solution-list b {
  display: block;
  color: var(--navy);
}

.solution-list span {
  color: var(--muted);
}

.process {
  background: #eef5f3;
}

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

.timeline article {
  min-height: 210px;
  padding: 1.25rem;
}

.timeline span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.wide-proof {
  margin: 2rem 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.infra-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.infra-grid .gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0.75rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(12, 38, 56, 0.08);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--navy);
  font-weight: 900;
}

.roi {
  background: var(--navy);
}

.roi h2,
.roi .section-kicker {
  color: var(--white);
}

.roi .section-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.roi-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.roi-panel div {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
}

.roi-panel span {
  display: block;
  color: var(--teal);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.roi-panel b {
  display: block;
  margin-top: 0.5rem;
  color: var(--navy);
}

.impact-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: var(--shadow);
}

.impact-band h2,
.impact-band .section-kicker {
  color: var(--white);
}

.impact-band p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.impact-stats {
  display: grid;
  gap: 0.8rem;
}

.impact-stats span {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.impact-stats b {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.45rem;
}

.compliance {
  background: var(--white);
}

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.cert-list span {
  min-height: 42px;
}

.compliance-media {
  display: grid;
  gap: 1rem;
}

.compliance-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(12, 38, 56, 0.08);
}

.compliance-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 1rem;
  overflow: hidden;
  background: #f8faf9;
}

.compliance-media figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--navy);
  font-weight: 900;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq {
  background: #eef5f3;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1.05rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.faq-list p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.enquiry {
  background: var(--white);
}

.lead-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.4rem;
  padding: 1.2rem;
}

.contact-card b {
  color: var(--navy);
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd8d5;
  border-radius: var(--radius);
  padding: 0.86rem 0.9rem;
  color: var(--charcoal);
  background: #fbfcfb;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(25, 138, 120, 0.18);
  border-color: var(--teal);
}

.lead-form .full {
  grid-column: 1 / -1;
}

.file-field input {
  background: var(--white);
}

.site-footer {
  padding: 3rem 0 5rem;
  color: rgba(255, 255, 255, 0.78);
  background: #081b28;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer img {
  width: 150px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.footer-credit {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.footer-credit a {
  display: inline;
  color: var(--gold);
}

.mobile-cta {
  display: none;
}

/* V2 Premium Enterprise Edition */
.hero {
  min-height: clamp(720px, 92vh, 900px);
  background: #061622;
}

.hero-bg {
  animation: hero-fade 1.5s ease both, hero-drift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero::after {
  background:
    radial-gradient(circle at 74% 34%, rgba(25, 138, 120, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(4, 16, 25, 0.96), rgba(4, 16, 25, 0.76) 39%, rgba(4, 16, 25, 0.2) 72%),
    linear-gradient(180deg, rgba(4, 16, 25, 0.1), rgba(4, 16, 25, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3.7rem;
  padding-bottom: 4.2rem;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 4.45vw, 5rem);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 660px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
}

.hero .hero-actions {
  margin-top: 1.35rem;
}

.hero .trust-line {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.68);
  box-shadow: 0 0 22px rgba(25, 138, 120, 0.7);
  animation: particle-float 9s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 9%; top: 72%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 24%; top: 42%; animation-delay: 1.2s; }
.hero-particles span:nth-child(3) { left: 49%; top: 68%; animation-delay: 2.4s; }
.hero-particles span:nth-child(4) { left: 69%; top: 28%; animation-delay: 3.1s; }
.hero-particles span:nth-child(5) { left: 86%; top: 58%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 38%; top: 22%; animation-delay: 5.1s; }

.hero-recycle {
  position: absolute;
  right: 9vw;
  top: 18vh;
  z-index: 1;
  color: rgba(96, 224, 177, 0.24);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  line-height: 1;
  animation: slow-spin 22s linear infinite;
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 30px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.desktop-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(25, 138, 120, 0.28);
}

.btn::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.btn.ripple::after {
  left: var(--ripple-x);
  top: var(--ripple-y);
  animation: ripple 0.65s ease-out;
}

.logo-marquee {
  position: relative;
  margin-top: 1.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7faf9);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  animation: logo-marquee 26s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img,
.client-wordmark {
  width: 172px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(223, 231, 229, 0.82);
  border-radius: var(--radius);
  background: var(--white);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-wordmark {
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.logo-track img:hover,
.client-wordmark:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.trust-badges,
.stats-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.trust-badges {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-badges article {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(26, 79, 118, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(12, 38, 56, 0.07);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-badges article:hover,
.benefit-card:hover,
.problem-grid article:hover,
.solution-list div:hover,
.gallery-card:hover,
.compare-card:hover,
.timeline article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(12, 38, 56, 0.13);
}

.trust-badges span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 138, 120, 0.28);
  border-radius: 50%;
  color: var(--teal);
  font-size: 1.25rem;
}

.trust-badges b {
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.92rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  padding: 1.2rem;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.process-track {
  position: relative;
  grid-template-columns: repeat(8, minmax(180px, 1fr));
  overflow-x: auto;
  padding: 0.6rem 0.2rem 1.5rem;
  scrollbar-width: thin;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--blue));
  transform-origin: left;
  animation: line-grow 2.6s ease both;
}

.process-track article {
  position: relative;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.92);
}

.process-track article::after {
  content: "↓";
  position: absolute;
  right: -0.72rem;
  top: 36px;
  color: var(--teal);
  font-weight: 900;
}

.process-track article:last-child::after {
  content: "";
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(12, 38, 56, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compare-card h3 {
  padding: 1rem 1.1rem 1.15rem;
}

.compare-slider {
  --position: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eaf0ee;
  cursor: ew-resize;
  user-select: none;
}

.compare-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-after img {
  width: 100%;
  max-width: none;
}

.compare-slider::before {
  content: "";
  position: absolute;
  left: var(--position);
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 2px;
  background: var(--gold);
  transform: translateX(-1px);
}

.compare-handle {
  position: absolute;
  left: var(--position);
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(12, 38, 56, 0.22);
  transform: translate(-50%, -50%);
  cursor: ew-resize;
}

.compare-handle::before {
  content: "↔";
  color: var(--white);
  font-weight: 900;
}

.gallery-card img,
.compliance-media img,
.wide-proof img {
  background: #f7faf9;
  filter: saturate(1.03) contrast(1.02);
}

.lead-form {
  position: relative;
  box-shadow: 0 26px 80px rgba(12, 38, 56, 0.13);
}

.form-trust {
  color: var(--teal);
  font-weight: 800;
  text-align: center;
}

.desktop-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 29;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 42px rgba(12, 38, 56, 0.22);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 16, 25, 0.68);
  backdrop-filter: blur(8px);
}

.success-popup[hidden] {
  display: none;
}

.success-popup > div {
  position: relative;
  width: min(460px, 100%);
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-popup h2 {
  font-size: 1.55rem;
}

.success-popup p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.success-close {
  position: absolute;
  right: 0.75rem;
  top: 0.65rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(25, 138, 120, 0.22), transparent 30%),
    linear-gradient(135deg, #061622, #0c2638 54%, #07151f);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.footer-grid,
.footer-credit {
  position: relative;
  z-index: 1;
}

.footer-grid {
  grid-template-columns: 1.35fr repeat(4, 0.85fr) 1.1fr;
  align-items: start;
}

.footer-company {
  max-width: 320px;
}

.footer-map {
  grid-column: 1 / -1;
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.22) contrast(1.05);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.social-icons a,
.social-icons button,
.floating-whatsapp {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-icons a:hover,
.social-icons button:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--teal);
  border-color: var(--teal);
}

.social-icons svg,
.mobile-cta svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-note {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 29;
  width: 54px;
  height: 54px;
  border: 0;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(12, 38, 56, 0.22);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.social-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  font-weight: 800;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes hero-fade {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes particle-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.22; }
  50% { transform: translate3d(18px, -34px, 0); opacity: 0.82; }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 22px); }
}

@keyframes ripple {
  to { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1180px) {
  .trust-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-company,
  .footer-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .stats-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track {
    grid-template-columns: repeat(8, minmax(210px, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 110px);
  }

  .hero-recycle {
    right: -10vw;
    top: 14vh;
    opacity: 0.58;
  }

  .scroll-indicator,
  .desktop-sticky-cta,
  .floating-whatsapp {
    display: none;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 44px;
  }

  .logo-track {
    animation-duration: 20s;
  }

  .logo-track img,
  .client-wordmark {
    width: 142px;
    height: 60px;
  }

  .trust-badges,
  .stats-grid,
  .compare-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges article {
    min-height: 104px;
  }

  .process-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .process-track article {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .process-track::before,
  .process-track article::after {
    display: none;
  }

  .compare-slider {
    cursor: pointer;
  }

  .footer-map iframe {
    height: 220px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .news-bar strong {
    animation: none;
  }
}

@media (max-width: 980px) {
  .two-col,
  .lead-wrap,
  .impact-band {
    grid-template-columns: 1fr;
  }

  .logo-grid,
  .gallery-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roi-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 66px;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 128px;
    height: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.9rem;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(8, 27, 40, 0.84), rgba(8, 27, 40, 0.62) 56%, rgba(8, 27, 40, 0.22));
  }

  .hero-content {
    padding: 3rem 0 4.5rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .section,
  .section-tight {
    padding: 4rem 0;
  }

  .problem-grid,
  .benefit-grid,
  .timeline,
  .infra-grid,
  .lead-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-form .full {
    grid-column: auto;
  }

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

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--navy);
  }

  .mobile-cta a {
    min-height: 58px;
    display: grid;
    grid-auto-flow: column;
    gap: 0.35rem;
    place-items: center;
    align-content: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 900;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--teal);
  }
}
