:root {
  --bg: #ffffff;
  --ink: #111316;
  --muted: #666f78;
  --line: #dfe4e8;
  --panel: #ffffff;
  --red: #ff0000;
  --red-dark: #b80000;
  --steel: #19313b;
  --shadow: 0 22px 70px rgba(12, 18, 24, 0.16);
  --radius: 8px;
  --max: 1180px;
  --font-main: "Montserrat", Arial, Helvetica, sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extra: 800;
  --weight-title: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: var(--weight-regular);
  line-height: 1.5;
  overflow-x: hidden;
}

.intro,
.services,
.feature-strip,
.compare-section,
.gallery-section,
.clients-section,
.rules,
.contact {
  background: #ffffff !important;
  color: var(--ink);
}

.intro h2,
.intro-copy,
.section-head h2,
.feature-copy h2,
.rules h2,
.rules-content p,
.contact h2,
.contact-lead,
.form-heading p {
  color: var(--ink);
}

.intro-point {
  background: #ffffff;
  border: 1px solid rgba(17, 19, 22, 0.1);
  border-top: 2px solid var(--red);
}

.intro-point strong {
  color: var(--ink);
}

.intro-point p,
.section-copy {
  color: rgba(17, 19, 22, 0.68);
}

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

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

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 250ms ease, box-shadow 250ms ease, padding 250ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(10, 13, 16, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 76px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.brand img {
  width: 270px;
  max-height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 150px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 0, 0, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(6, 8, 10, 0.86), rgba(6, 8, 10, 0.58) 50%, rgba(6, 8, 10, 0.22)),
    linear-gradient(0deg, rgba(6, 8, 10, 0.9), transparent 48%);
}

.hero-grid {
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  font-weight: var(--weight-extra);
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5.5vw, 5.25rem);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: var(--weight-title);
}

.section h2,
.contact h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: var(--weight-title);
}

.hero-copy {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: var(--weight-medium);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: var(--weight-extra);
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(780px, 100%);
  margin: 62px auto 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero-panel.is-visible div {
  animation: metricIn 680ms ease both;
}

.hero-panel.is-visible div:nth-child(2) {
  animation-delay: 90ms;
}

.hero-panel.is-visible div:nth-child(3) {
  animation-delay: 180ms;
}

.hero-panel div {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    rgba(9, 14, 18, 0.46);
  text-align: center;
  transition: transform 220ms ease, background 220ms ease;
}

.hero-panel div:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255, 0, 0, 0.18), rgba(255, 255, 255, 0)),
    rgba(9, 14, 18, 0.58);
}

@keyframes metricIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}

.hero-panel strong span {
  display: inline;
  margin: 0;
  color: inherit;
  max-width: none;
}

.hero-panel div > span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  max-width: 190px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 4vw, 36px);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.intro h2,
.section-head h2,
.feature-copy h2,
.rules h2,
.contact h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
  line-height: 1.12;
  font-weight: var(--weight-title);
}

.intro-main {
  max-width: 680px;
}

.intro-copy {
  color: #c2ccd6;
  font-size: 0.98rem;
  font-weight: var(--weight-medium);
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.intro-point {
  min-height: 150px;
  padding: 22px;
  border-top: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 12px;
}

.intro-point span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: var(--weight-extra);
}

.intro-point strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 1.05rem;
}

.intro-point p {
  margin: 8px 0 0;
  color: #aeb9c3;
  font-size: 0.86rem;
}

.section-head {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 36px;
  margin-bottom: 38px;
}

.section-copy {
  grid-column: 2;
  max-width: 620px;
  margin: -18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  font-weight: var(--weight-medium);
  line-height: 1.65;
}

.services {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.services .section-head {
  position: sticky;
  top: 116px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
}

.services .section-copy {
  grid-column: auto;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  min-height: auto;
  padding: 22px;
  overflow: hidden;
  color: #fff;
  background: #111416;
  border: 0;
  border-radius: var(--radius);
  box-shadow: inset 4px 0 0 var(--red);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateX(8px);
  background: #171b1f;
  box-shadow: inset 4px 0 0 var(--red), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.service-number {
  color: var(--red);
  font-size: 1.7rem;
  font-weight: var(--weight-extra);
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: var(--weight-extra);
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: var(--weight-medium);
  line-height: 1.5;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: #111416;
  border-radius: var(--radius);
  color: #e9eff4;
  font-weight: var(--weight-bold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.check-list li:hover {
  transform: translateX(8px);
  background: #171b1f;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.compare-section {
  max-width: 1280px;
}

.compare-section .section-head,
.gallery-section .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.compare-section .section-head h2,
.gallery-section .section-head h2 {
  max-width: 900px;
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.compare {
  --compare-position: 58%;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.compare-image,
.compare-after img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.compare-after {
  position: absolute;
  inset: 0;
  width: var(--compare-position);
  overflow: hidden;
  border-right: 3px solid #fff;
}

.compare-after img {
  width: calc(100% / (var(--compare-position) / 100));
  max-width: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--compare-position);
  width: 52px;
  height: 52px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.compare-handle::before,
.compare-handle::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
}

.compare-handle::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare-handle::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.56);
  font-size: 0.8rem;
  font-weight: var(--weight-extra);
  text-transform: uppercase;
}

.compare-label-before {
  left: 18px;
}

.compare-label-after {
  right: 18px;
}

.compare-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background: #111416;
  border-radius: 12px;
}

.compare-copy h3 {
  margin: 0;
  max-width: 410px;
  font-size: clamp(1.55rem, 2.45vw, 2.45rem);
  line-height: 1.08;
  font-weight: var(--weight-title);
}

.compare-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.compare-copy .button {
  align-self: flex-start;
  margin-top: 28px;
}

.gallery-section {
  max-width: 1280px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #111;
  cursor: zoom-in;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  content: "";
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.clients-section {
  max-width: 1160px;
  padding-block: clamp(54px, 7vw, 86px);
}

.clients-section .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.clients-section .section-head h2 {
  max-width: 780px;
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.client-logo {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  background: #0b0e10;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: var(--weight-extra);
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms ease, border 220ms ease, color 220ms ease, background 220ms ease;
}

.client-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.62);
  color: #fff;
  background: #111416;
}

.rules {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.rules-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.rules-kicker {
  color: #ff0000 !important;
}

.rules-list {
  display: grid;
  gap: 12px;
}

.rule-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: #111416;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: inset 4px 0 0 var(--red);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.rule-item:hover {
  transform: translateX(8px);
  background: #171b1f;
  box-shadow: inset 4px 0 0 var(--red), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.rule-item span {
  color: var(--red);
  font-weight: var(--weight-extra);
  font-size: 1.7rem;
}

.rule-item p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: stretch;
  width: min(100% - clamp(36px, 8vw, 112px), 1120px);
  margin-inline: auto;
  padding: clamp(38px, 5vw, 66px) 0;
  background: #000;
  color: #fff;
}

.contact-info,
.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-info {
  padding-right: clamp(0px, 4vw, 42px);
}

.contact-info h2 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.55vw, 2.65rem);
}

.contact-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: var(--weight-medium);
  line-height: 1.55;
}

.contact address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 22px;
  font-style: normal;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  transition: transform 200ms ease, border 200ms ease, color 200ms ease;
}

.contact-method:hover {
  transform: translateX(8px);
  border-color: rgba(255, 0, 0, 0.7);
}

.contact-method span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: var(--weight-extra);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-method strong {
  color: #fff;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-hours {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: var(--weight-medium);
}

.contact-content {
  padding-left: clamp(20px, 4vw, 46px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.form-heading span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: var(--weight-extra);
  text-transform: uppercase;
}

.form-heading p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: var(--weight-medium);
  line-height: 1.48;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: var(--weight-extra);
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  padding: 11px 14px;
  outline: none;
  transition: border 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 58px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%) right 39px center / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%) right 33px center / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.075);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form select option {
  color: #111;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.12);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-wide {
  grid-column: 1 / -1;
}

.quote-form .button.form-wide {
  justify-self: center;
  min-width: 0;
  width: min(100%, 230px);
  padding-inline: 12px;
  font-size: 0.76rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 14px 32px rgba(18, 140, 74, 0.36), 0 0 0 0 rgba(37, 211, 102, 0.28);
  font-weight: var(--weight-extra);
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.floating-whatsapp::before {
  width: 31px;
  height: 31px;
  background: url("assets/whatsapp.svg") center / contain no-repeat;
  content: "";
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  filter: saturate(1.08);
  box-shadow: 0 20px 46px rgba(18, 140, 74, 0.44), 0 0 0 8px rgba(37, 211, 102, 0.14);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 14px 32px rgba(18, 140, 74, 0.36), 0 0 0 0 rgba(37, 211, 102, 0.28);
  }

  70% {
    box-shadow: 0 14px 32px rgba(18, 140, 74, 0.36), 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 14px 32px rgba(18, 140, 74, 0.36), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(150px, 0.7fr));
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-brand-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: var(--weight-extra);
  letter-spacing: 0;
}

.footer-col span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: var(--weight-extra);
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: var(--weight-medium);
  line-height: 1.65;
}

.footer-contact-mini a {
  width: fit-content;
}

.site-footer a:hover {
  color: var(--red);
}

.intro,
.services,
.feature-strip,
.compare-section,
.gallery-section,
.clients-section,
.rules,
.contact {
  background: #fff !important;
  color: var(--ink) !important;
}

.intro h2,
.intro-copy,
.intro-point strong,
.section-head h2,
.feature-copy h2,
.rules h2,
.rules-content p,
.contact h2,
.contact-lead,
.form-heading p {
  color: var(--ink) !important;
}

.intro-point {
  background: #fff !important;
}

.intro-point p,
.section-copy {
  color: rgba(17, 19, 22, 0.68) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  width: min(92vw, 1100px);
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 32px;
  font-weight: var(--weight-bold);
  line-height: 42px;
  text-align: center;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(8, 10, 12, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-nav:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  content: "";
}

.lightbox-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.lightbox-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    background: rgba(8, 10, 12, 0.9);
    backdrop-filter: blur(14px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(10, 13, 16, 0.94);
    border-radius: var(--radius);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    color: #fff;
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(6, 8, 10, 0.9), rgba(6, 8, 10, 0.54));
  }

  .hero-panel,
  .intro-layout,
  .intro-points,
  .section-head,
  .service-grid,
  .services,
  .feature-strip,
  .compare-layout,
  .rules,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .compare,
  .compare-image,
  .compare-after img {
    min-height: 380px;
  }

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

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: start;
  }

  .services .section-head {
    position: static;
  }

  .contact {
    width: min(100% - 32px, 680px);
    gap: 24px;
  }

  .contact-content {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: center;
    padding: 10px 14px;
  }

  .brand {
    width: 214px;
    height: 58px;
  }

  .brand img {
    width: 210px;
    max-height: 54px;
  }

  .nav-toggle {
    flex: 0 0 42px;
  }

  .site-nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.18;
  }

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

  .section {
    padding: 64px 16px;
  }

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

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

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

  .rule-item {
    grid-template-columns: 1fr;
  }

  .contact {
    width: min(100% - 24px, 460px);
    padding: 28px 16px;
    border-radius: var(--radius);
  }

  .contact-content {
    padding-left: 0;
    border-left: 0;
    padding-top: 22px;
  }

  .contact address {
    grid-template-columns: 1fr;
  }

  .contact-method {
    display: grid;
    justify-content: stretch;
    justify-items: start;
    gap: 4px;
    padding: 14px 0;
  }

  .contact-method strong {
    max-width: 100%;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .contact-info h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .contact-lead,
  .form-heading p {
    font-size: 0.95rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form .button.form-wide {
    width: min(100%, 220px);
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
}

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

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

body.light-page {
  background: #fff !important;
  color: var(--ink);
}

body.light-page .intro,
body.light-page .services,
body.light-page .feature-strip,
body.light-page .compare-section,
body.light-page .gallery-section,
body.light-page .clients-section,
body.light-page .rules,
body.light-page .contact {
  background: #fff !important;
  color: var(--ink) !important;
}

body.light-page .intro h2,
body.light-page .intro-copy,
body.light-page .section-head h2,
body.light-page .feature-copy h2,
body.light-page .rules h2,
body.light-page .rules-content p,
body.light-page .contact h2,
body.light-page .contact-lead,
body.light-page .form-heading p {
  color: var(--ink) !important;
}

body.light-page .intro-point {
  background: #fff !important;
  border: 1px solid rgba(17, 19, 22, 0.12);
  border-top: 2px solid var(--red);
}

body.light-page .intro-point strong {
  color: var(--ink) !important;
}

body.light-page .intro-point p,
body.light-page .section-copy {
  color: rgba(17, 19, 22, 0.68) !important;
}

body.light-page .section-kicker,
body.light-page .contact-method span,
body.light-page .quote-form span,
body.light-page .form-heading span,
body.light-page .footer-col span {
  color: var(--red) !important;
}

body.light-page .contact-method strong,
body.light-page .contact-hours,
body.light-page .quote-form input,
body.light-page .quote-form select,
body.light-page .quote-form textarea,
body.light-page .footer-brand-text strong {
  color: var(--ink) !important;
}

body.light-page .contact address,
body.light-page .contact-method {
  border-color: rgba(17, 19, 22, 0.14) !important;
}

body.light-page .quote-form input,
body.light-page .quote-form select,
body.light-page .quote-form textarea {
  background: #f5f6f7 !important;
  border-color: rgba(17, 19, 22, 0.18) !important;
}

body.light-page .quote-form select {
  background:
    linear-gradient(45deg, transparent 50%, rgba(17, 19, 22, 0.72) 50%) right 39px center / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(17, 19, 22, 0.72) 50%, transparent 50%) right 33px center / 6px 6px no-repeat,
    #f5f6f7 !important;
}

body.light-page .quote-form input::placeholder,
body.light-page .quote-form textarea::placeholder {
  color: rgba(17, 19, 22, 0.42) !important;
}

body.light-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.72), rgba(6, 8, 10, 0.48) 52%, rgba(6, 8, 10, 0.2)),
    linear-gradient(0deg, rgba(6, 8, 10, 0.82), transparent 48%) !important;
}

body.light-page .site-nav a {
  white-space: nowrap;
}

body.light-page .section-kicker,
body.light-page .rules-kicker,
body.light-page .form-heading span,
body.light-page .contact-method span,
body.light-page .footer-col span {
  color: var(--red) !important;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem) !important;
  line-height: 1.05;
}

body.light-page .section-kicker,
body.light-page .rules-kicker {
  margin-bottom: 18px;
}

body.light-page .intro-point,
body.light-page .service-card,
body.light-page .rule-item,
body.light-page .check-list li,
body.light-page .client-logo {
  position: relative;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid rgba(17, 19, 22, 0.12) !important;
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(17, 19, 22, 0.08);
}

body.light-page .intro-point::before,
body.light-page .service-card::before,
body.light-page .rule-item::before,
body.light-page .check-list li::before,
body.light-page .client-logo::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--red);
  content: "";
}

body.light-page .intro-point {
  min-height: 170px;
  padding: 26px 24px 24px 30px;
  border-top: 0 !important;
}

body.light-page .intro-point span,
body.light-page .service-number,
body.light-page .rule-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--red) !important;
  background: rgba(255, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: var(--weight-extra);
}

body.light-page .intro-point strong,
body.light-page .service-card h3,
body.light-page .rule-item p,
body.light-page .check-list li,
body.light-page .client-logo {
  color: var(--ink) !important;
}

body.light-page .intro-point p,
body.light-page .service-card p {
  color: rgba(17, 19, 22, 0.64) !important;
}

body.light-page .service-card,
body.light-page .rule-item {
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 28px 24px 30px;
}

body.light-page .service-card:hover,
body.light-page .rule-item:hover,
body.light-page .check-list li:hover,
body.light-page .client-logo:hover,
body.light-page .intro-point:hover {
  transform: translateY(-4px);
  background: #fff !important;
  box-shadow: 0 22px 54px rgba(17, 19, 22, 0.12);
}

body.light-page .check-list li {
  padding: 18px 22px 18px 28px;
  box-shadow: 0 14px 34px rgba(17, 19, 22, 0.07);
}

body.light-page .client-logo {
  min-height: 104px;
  padding-left: 26px;
  color: rgba(17, 19, 22, 0.78) !important;
}

body.light-page .eyebrow {
  font-size: clamp(1.05rem, 1.65vw, 1.35rem) !important;
}

body.light-page .compare-copy {
  position: relative;
  overflow: hidden;
  color: var(--ink) !important;
  background: #fff !important;
  border: 1px solid rgba(17, 19, 22, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(17, 19, 22, 0.1);
}

body.light-page .compare-copy::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--red);
  content: "";
}

body.light-page .compare-copy h3 {
  color: var(--red) !important;
}

body.light-page .compare-copy p {
  color: rgba(17, 19, 22, 0.68) !important;
}

body.light-page .rules-kicker {
  color: var(--red) !important;
}

body.light-page .site-footer .footer-brand-text strong {
  color: #fff !important;
}
