:root {
  --ink: #ffffff;
  --ink-2: #d5d5d5;
  --muted: #9a9a9a;
  --surface: #050505;
  --surface-soft: #0b0b0b;
  --surface-warm: #111111;
  --line: #202020;
  --brand: #5ce033;
  --brand-strong: #5ce033;
  --brand-soft: rgba(92, 224, 51, 0.12);
  --dark: #000000;
  --dark-2: #090909;
  --white: #ffffff;
  --danger: #ff5c5c;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 26px 72px rgba(0, 0, 0, 0.42);
  --radius-card: 26px;
  --radius-media: 30px;
  --radius-button: 14px;
  --radius-chip: 999px;
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 1.75rem);
  --header-height: 92px;
  --section-pad: clamp(4.75rem, 8vw, 8rem);
  --text-max: 68ch;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

::selection {
  color: var(--dark);
  background: var(--brand);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  color: var(--dark);
  background: var(--brand);
  transform: translateY(-180%);
  transition: transform var(--transition);
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 830px;
  margin-bottom: 1.45rem;
  font-size: clamp(2.45rem, 5.7vw, 4.9rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 730;
}

p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #b9f19f;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--dark);
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(98, 203, 49, 0.22);
}

.button-primary:hover {
  background: #77db45;
  box-shadow: 0 16px 36px rgba(98, 203, 49, 0.3);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.62);
}

.button-dark {
  color: var(--white);
  background: var(--dark);
}

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

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--brand);
  background: rgba(98, 203, 49, 0.1);
}

.button-small {
  min-height: 46px;
  padding-inline: 1rem;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-heading {
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-heading > p:last-child,
.section-heading > div > p:last-child {
  margin-bottom: 0;
}

.heading-center {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.heading-center .eyebrow {
  justify-content: center;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
}

.heading-split h2 {
  margin-bottom: 0;
}

.heading-split > p,
.heading-action p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.heading-action {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(7, 18, 13, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-main {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 168px;
  height: 64px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.desktop-nav > a,
.nav-dropdown > button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.7rem;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 680;
  cursor: pointer;
  transition: color var(--transition), background-color var(--transition);
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-dropdown > button:hover,
.nav-dropdown:focus-within > button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.desktop-nav > a[aria-current="page"]::after {
  position: absolute;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform var(--transition);
}

.nav-dropdown:hover button svg,
.nav-dropdown:focus-within button svg {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 340px;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(10, 21, 16, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-panel a {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
}

.dropdown-panel a:hover {
  background: rgba(98, 203, 49, 0.1);
}

.dropdown-panel span {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 720;
}

.dropdown-panel small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.85rem;
}

.header-phone {
  display: grid;
  line-height: 1.12;
  text-align: right;
}

.header-phone span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

.header-phone strong {
  color: var(--white);
  font-size: 0.9rem;
}

.mobile-action-row,
.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: var(--header-height);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

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

.hero-media {
  background-image: url("assets/hero-camion.webp");
  background-position: center 54%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 12, 8, 0.96) 0%, rgba(4, 12, 8, 0.82) 43%, rgba(4, 12, 8, 0.24) 78%, rgba(4, 12, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 12, 8, 0.48) 0%, transparent 35%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 10vh, 8rem);
}

.hero-copy {
  max-width: 800px;
}

.hero-copy h1 {
  text-wrap: balance;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.hero-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.7;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.trust-item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 0.9rem;
  padding: 1.35rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item span {
  display: grid;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.trust-item strong {
  color: var(--white);
  font-size: 0.95rem;
}

/* Problem */
.problem-section {
  background: var(--surface);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.section-copy > p:not(.eyebrow) {
  max-width: var(--text-max);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-2);
  font-weight: 620;
}

.check-list li::before {
  position: absolute;
  top: 0.22rem;
  left: 0;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--brand);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.before-after-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--dark);
  box-shadow: var(--shadow-lg);
}

.before-after-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 10, 6, 0.85) 0%, transparent 48%);
  content: "";
  pointer-events: none;
}

.before-after-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.before-after-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.2rem;
  padding: 1.5rem;
  color: var(--white);
}

.before-after-card figcaption span {
  font-size: 1.05rem;
  font-weight: 750;
}

.before-after-card figcaption small {
  color: rgba(255, 255, 255, 0.62);
}

/* Approach */
.approach-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

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

.feature-card {
  position: relative;
  min-height: 320px;
  padding: clamp(1.4rem, 2.7vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #b7d9aa;
  box-shadow: var(--shadow-sm);
}

.feature-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 2.1rem;
  fill: none;
  stroke: var(--brand-strong);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-number {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  color: #cdd7cf;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

/* Reviews */
.reviews-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(98, 203, 49, 0.12), transparent 32%),
    var(--dark);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.reviews-intro h2,
.reviews-intro p {
  color: var(--white);
}

.reviews-intro p {
  color: rgba(255, 255, 255, 0.66);
}

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

.review-card {
  min-height: 250px;
  margin: 0;
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.stars {
  margin-bottom: 2.2rem;
  color: var(--brand);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  font-weight: 680;
  line-height: 1.45;
}

.review-card figcaption {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

/* Quote */
.quote-section {
  background: linear-gradient(180deg, #f7faf6 0%, var(--surface-soft) 100%);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.quote-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.quote-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
}

.quote-contact-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-mini-card {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}

.contact-mini-card:hover {
  transform: translateX(4px);
  border-color: #add69c;
}

.contact-mini-card svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--brand-strong);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-mini-card span {
  display: grid;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-mini-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.quote-form {
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #cfd9d0;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfdfb;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--brand-strong);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(98, 203, 49, 0.14);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--brand-strong);
}

.consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button-submit {
  width: 100%;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Services */
.services-section {
  background: var(--surface);
}

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

.category-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.category-card-primary {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.category-card-primary p {
  color: rgba(255, 255, 255, 0.64);
}

.category-card-primary a,
.category-card-primary h3 {
  color: var(--white);
}

.category-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 2.4rem;
  place-items: center;
  border-radius: 18px;
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.category-card-primary .category-icon {
  color: var(--dark);
  background: var(--brand);
}

.category-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.75rem;
  color: var(--brand-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card-primary .category-label {
  color: #b9f19f;
}

.category-card p {
  margin-bottom: 1.8rem;
}

.category-card > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 760;
}

/* Appliances */
.appliance-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

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

.appliance-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.appliance-visual {
  display: grid;
  min-height: 210px;
  place-items: center;
  color: var(--dark);
}

.appliance-visual svg {
  width: 110px;
  height: 110px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-wall-unit {
  background: linear-gradient(135deg, #dff4d3, #f4faef);
}

.visual-central {
  background: linear-gradient(135deg, #e3ece7, #f7f9f7);
}

.visual-air-exchanger {
  background: linear-gradient(135deg, #d7eddd, #edf8ef);
}

.appliance-copy {
  padding: 1.5rem;
}

.appliance-copy p {
  min-height: 76px;
  font-size: 0.9rem;
}

.appliance-copy .text-link {
  font-size: 0.82rem;
}

/* Gallery */
.gallery-section {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-soft);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 12, 8, 0.68) 0%, transparent 45%);
  content: "";
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 680;
}

/* Process */
.process-section {
  color: var(--white);
  background: var(--dark);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.process-heading h2 {
  color: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li {
  position: relative;
  min-height: 260px;
  padding: 2rem 1.4rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.process-index {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 2.3rem;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--brand);
  font-weight: 850;
}

.process-list h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

/* Areas */
.areas-section {
  background: var(--surface-warm);
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.areas-copy > p:not(.eyebrow) {
  font-size: 1.04rem;
}

.area-fact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.8rem 0;
  padding: 1rem;
  border: 1px solid #cdd8ce;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.area-fact svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--brand-strong);
  stroke-width: 1.7;
}

.area-fact span {
  display: grid;
}

.area-fact small {
  color: var(--muted);
  font-size: 0.72rem;
}

.area-fact strong {
  color: var(--ink);
}

.map-card {
  overflow: hidden;
  border: 1px solid #cad6cc;
  border-radius: var(--radius-media);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.map-card iframe {
  width: 100%;
  min-height: 470px;
  border: 0;
}

.map-card > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 730;
}

/* About */
.about-section {
  background: var(--surface);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-media);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  display: grid;
  min-width: 190px;
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow-sm);
}

.about-badge span {
  color: var(--brand);
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.about-badge strong {
  font-size: 0.78rem;
}

.about-copy > p:not(.eyebrow) {
  font-size: 1.03rem;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.7rem;
}

/* FAQ */
.faq-section {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq-list {
  border-top: 1px solid #cfd9d0;
}

.faq-item {
  padding: 1.7rem 0;
  border-bottom: 1px solid #cfd9d0;
}

.faq-item h3 {
  margin-bottom: 0.7rem;
  font-size: 1.16rem;
}

.faq-item p {
  max-width: 62ch;
  margin-bottom: 0;
}

/* Final CTA */
.final-cta {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.final-cta-media,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-media {
  background-image: url("assets/realisation-conduit-01.webp");
  background-position: center;
  background-size: cover;
  filter: grayscale(0.25);
}

.final-cta-overlay {
  background: linear-gradient(90deg, rgba(4, 12, 8, 0.97), rgba(4, 12, 8, 0.77));
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-block: 5rem;
  text-align: center;
}

.final-cta-inner .eyebrow {
  justify-content: center;
}

.final-cta-inner h2,
.final-cta-inner p {
  color: var(--white);
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #040b07;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) repeat(4, minmax(130px, 0.52fr));
  gap: 2rem;
  padding-block: 4.5rem 3rem;
}

.footer-brand img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  font-weight: 800;
}

.social-links a:hover {
  color: var(--dark);
  background: var(--brand);
  border-color: var(--brand);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-column h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-contact p:last-child {
  margin-top: 0.55rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.webbec-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.webbec-credit strong {
  color: #57a8ff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 0;
  }

  .desktop-nav > a,
  .nav-dropdown > button {
    padding-inline: 0.48rem;
    font-size: 0.82rem;
  }

  .header-phone {
    display: none;
  }

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

  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .stars {
    margin-bottom: 1rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 126px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 1rem);
  }

  .site-header {
    background: rgba(7, 18, 13, 0.98);
  }

  .mobile-action-row {
    display: grid;
    min-height: 48px;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .mobile-action-row a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem var(--gutter);
    font-size: 0.78rem;
    font-weight: 760;
    text-align: center;
  }

  .mobile-phone {
    color: var(--white);
    background: var(--dark-2);
  }

  .mobile-phone svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--brand);
    stroke-width: 1.7;
  }

  .mobile-quote {
    color: var(--dark);
    background: var(--brand);
  }

  .header-main {
    min-height: 78px;
    justify-content: space-between;
  }

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

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--white);
    background: rgba(7, 18, 13, 0.995);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-inner {
    display: grid;
    padding-block: 0.5rem 2rem;
  }

  .mobile-menu-inner > a,
  .mobile-menu-group > button {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    background: transparent;
    font-weight: 720;
    text-align: left;
  }

  .mobile-menu-group > button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform var(--transition);
  }

  .mobile-menu-group > button[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    display: grid;
    padding: 0.45rem 0 0.65rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-submenu[hidden] {
    display: none;
  }

  .mobile-submenu a {
    min-height: 46px;
    padding-block: 0.7rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
  }

  .mobile-menu-footer {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.25rem;
  }

  .mobile-menu-footer a,
  .menu-close {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    color: var(--white);
    background: transparent;
  }

  .menu-close {
    cursor: pointer;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 12, 8, 0.94), rgba(4, 12, 8, 0.55));
  }

  .hero-copy {
    max-width: 680px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .split-grid,
  .quote-layout,
  .areas-layout,
  .about-layout,
  .faq-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .quote-copy,
  .faq-intro {
    position: static;
  }

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

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

  .review-card {
    min-height: 240px;
  }

  .category-grid,
  .appliance-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 320px;
  }

  .appliance-card {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
  }

  .appliance-visual {
    min-height: 100%;
  }

  .appliance-copy p {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-tall {
    grid-row: span 1;
  }

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

  .process-list li:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-layout {
    gap: 4rem;
  }

  .about-photo {
    max-width: 700px;
  }

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

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

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --section-pad: 4.4rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    padding-block: clamp(1.75rem, 4vh, 2.5rem);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 12, 8, 0.96) 0%, rgba(4, 12, 8, 0.72) 78%, rgba(4, 12, 8, 0.58) 100%);
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-actions,
  .final-cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .final-cta-actions .button {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

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

  .trust-item,
  .trust-item:first-child {
    min-height: 82px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .heading-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-grid,
  .review-cards,
  .form-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 280px;
  }

  .review-card {
    min-height: auto;
  }

  .field {
    grid-column: 1 / -1;
  }

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

  .appliance-visual {
    min-height: 180px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: 1fr;
  }

  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(2) {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-index {
    margin-bottom: 1.5rem;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .about-badge {
    right: 0.8rem;
    bottom: -1.5rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .mobile-action-row a {
    font-size: 0.72rem;
  }

  .mobile-phone span {
    white-space: nowrap;
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  .hero-lead {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-bottom: 0.75rem;
  }

  .hero-note {
    font-size: 0.78rem;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .about-badge {
    position: static;
    margin: -1rem 0 0 1rem;
    width: calc(100% - 2rem);
  }
}

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

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

/* === Theme update: black + green + before/after gallery === */
body {
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(92, 224, 51, 0.08), transparent 18%),
    radial-gradient(circle at left center, rgba(92, 224, 51, 0.04), transparent 24%),
    var(--surface);
}

h1, h2, h3, h4, h5, h6,
.section-heading h2,
.process-heading h2,
.reviews-intro h2,
.faq-intro h2,
.about-copy h2,
.areas-copy h2,
.quote-copy h2,
.hero-copy h1,
.category-card h3,
.appliance-card h3,
.feature-card h3,
.review-card blockquote,
.process-list h3,
.faq-item h3,
.footer-brand p,
.footer-nav strong,
.footer-bottom,
.area-fact strong,
.contact-mini-card strong,
.field label,
.quote-copy .eyebrow,
.section-heading .eyebrow,
.process-heading .eyebrow,
.faq-intro .eyebrow,
.about-copy .eyebrow,
.areas-copy .eyebrow {
  color: var(--ink);
}

p,
.section-copy > p:not(.eyebrow),
.heading-split > p,
.heading-action p,
.process-list p,
.faq-item p,
.about-copy p,
.areas-copy p,
.quote-copy > p:not(.eyebrow),
.category-card p,
.appliance-card p,
.feature-card p,
.review-card figcaption,
.form-note,
.contact-mini-card span,
.area-fact small,
.footer-brand small,
.footer-nav a,
.footer-bottom a,
.dropdown-panel small,
.quote-form .consent,
.quote-form .consent a {
  color: var(--muted);
}

.problem-section,
.services-section,
.appliance-section,
.gallery-section,
.about-section,
.faq-section,
.site-footer {
  background: transparent;
}

.approach-section,
.quote-section,
.process-section,
.areas-section,
.final-cta {
  background: var(--surface-soft);
  border-block-color: var(--line);
}

.section + .section {
  border-top: 1px solid rgba(255,255,255,0.03);
}

.text-link {
  color: var(--white);
}

.site-header {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-dropdown > button:hover,
.nav-dropdown:focus-within > button,
.mobile-menu a:hover,
.mobile-menu-group > button:hover {
  background: rgba(92, 224, 51, 0.12);
  color: var(--white);
}

.dropdown-panel,
.mobile-menu {
  background: rgba(10, 10, 10, 0.98);
  border-color: rgba(255,255,255,0.08);
}

.dropdown-panel a:hover {
  background: rgba(92, 224, 51, 0.12);
}

.mobile-action-row,
.trust-bar,
.reviews-section,
.process-section,
.final-cta,
.site-footer,
.mobile-menu-footer {
  background-color: var(--dark);
}

.trust-item,
.feature-card,
.review-card,
.quote-form,
.contact-mini-card,
.category-card,
.appliance-card,
.map-card,
.about-photo,
.faq-item,
.footer-card,
.final-cta-card,
.area-fact,
.process-list li {
  background: #0d0d0d;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.category-card-primary {
  background: linear-gradient(180deg, rgba(92, 224, 51, 0.12) 0%, rgba(92, 224, 51, 0.05) 100%);
  border-color: rgba(92, 224, 51, 0.24);
}

.category-label,
.feature-number,
.footer-bottom,
.footer-brand small,
.hero-note,
.trust-item span,
.review-card figcaption,
.before-after-card figcaption small,
.process-index,
.area-fact small,
.footer-nav a,
.header-phone span,
.dropdown-panel small {
  color: var(--muted);
}

.trust-item strong,
.header-phone strong,
.dropdown-panel span,
.category-card a,
.appliance-card a,
.contact-mini-card strong,
.footer-nav strong,
.footer-bottom,
.footer-bottom a,
.about-badge,
.about-badge strong,
.process-index,
.area-fact strong,
.faq-item h3,
.review-card blockquote {
  color: var(--white);
}

.feature-card:hover,
.category-card:hover,
.appliance-card:hover,
.contact-mini-card:hover,
.faq-item:hover,
.beforeafter-pair:hover {
  border-color: rgba(92, 224, 51, 0.34);
  box-shadow: var(--shadow-lg);
}

.field input,
.field select,
.field textarea {
  color: var(--white);
  background: #111111;
  border-color: #262626;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #808080;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #141414;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(92, 224, 51, 0.12);
}

.consent input {
  accent-color: var(--brand);
}

.button-dark {
  color: var(--white);
  background: #111111;
  border: 1px solid #242424;
}

.button-dark:hover {
  background: #171717;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, transparent 35%);
}

.beforeafter-gallery {
  display: grid;
  gap: 1.25rem;
}

.beforeafter-pair {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #0d0d0d;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.beforeafter-pair:hover {
  transform: translateY(-4px);
}

.beforeafter-featured figure,
.beforeafter-pair figure {
  margin: 0;
}

.beforeafter-featured img,
.beforeafter-pair img {
  width: 100%;
  border-radius: calc(var(--radius-card) - 8px);
  object-fit: cover;
}

.beforeafter-featured img {
  aspect-ratio: 16 / 9;
}

.beforeafter-featured figcaption {
  margin-top: 0.85rem;
  color: var(--white);
  font-weight: 680;
}

.pair-labels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.pair-labels span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(92, 224, 51, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(92, 224, 51, 0.08);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pair-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.pair-images figure {
  display: grid;
  gap: 0.7rem;
}

.pair-images img {
  aspect-ratio: 4 / 3;
}

.pair-images figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-card iframe {
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

.about-badge,
.process-index {
  background: rgba(92, 224, 51, 0.12);
  border-color: rgba(92, 224, 51, 0.22);
  color: var(--white);
}

@media (max-width: 780px) {
  .pair-images,
  .pair-labels {
    grid-template-columns: 1fr;
  }
}


/* === Interactive before / after cards === */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #0d0d0d;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 224, 51, 0.35);
  box-shadow: var(--shadow-lg);
}

.comparison-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #151515;
  isolation: isolate;
  touch-action: pan-y;
}

.comparison-image,
.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-image {
  object-fit: cover;
}

.comparison-after {
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--split));
}

.comparison-label {
  position: absolute;
  z-index: 5;
  top: clamp(0.8rem, 2vw, 1.2rem);
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label-before {
  left: clamp(0.8rem, 2vw, 1.2rem);
}

.comparison-label-after {
  right: clamp(0.8rem, 2vw, 1.2rem);
  color: #071006;
  background: var(--brand);
  border-color: var(--brand);
}

.comparison-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-1px);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(58px, 6vw, 72px);
  height: clamp(58px, 6vw, 72px);
  place-items: center;
  border: 9px solid rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  color: #071006;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7), 0 10px 32px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.comparison-handle svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-range:focus-visible + * {
  outline: none;
}

.comparison-media:focus-within .comparison-handle {
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px var(--brand), 0 10px 32px rgba(0, 0, 0, 0.28);
}

.comparison-content {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(92, 224, 51, 0.28);
  border-radius: var(--radius-chip);
  color: var(--white);
  background: rgba(92, 224, 51, 0.1);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-content h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.comparison-content p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .comparison-media {
    aspect-ratio: 1 / 1;
  }

  .comparison-label {
    min-height: 36px;
    padding: 0.5rem 0.65rem;
    font-size: 0.68rem;
  }

  .comparison-handle {
    width: 54px;
    height: 54px;
    border-width: 7px;
  }
}

/* Google review icon badge */
.review-card {
  position: relative;
}

.review-source-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.review-source-badge img {
  width: 22px;
  height: 22px;
}


/* === v5 adjustments === */
.trust-item,
.trust-item:first-child {
  background: transparent !important;
  box-shadow: none !important;
}

.about-badge {
  right: -0.8rem;
  bottom: -0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 260px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(92, 224, 51, 0.12);
  border-radius: 22px;
  background: rgba(6, 14, 9, 0.82);
  backdrop-filter: blur(10px);
}

.about-badge img {
  display: block;
  width: 185px;
  height: auto;
  object-fit: contain;
}

.faq-list {
  padding-top: clamp(1rem, 2.5vw, 2rem);
}

.faq-item {
  padding: 2.15rem 0;
}

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

.comparison-card {
  display: flex;
  flex-direction: column;
}

.comparison-card:last-child {
  grid-column: 1 / -1;
}

.careers-section {
  background: transparent;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.careers-intro > p:not(.eyebrow) {
  max-width: 60ch;
  font-size: 1.03rem;
}

.careers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

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

.career-card {
  min-height: 220px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #0d0d0d;
  box-shadow: var(--shadow-sm);
}

.career-card h3 {
  margin-bottom: 0.85rem;
  color: var(--white);
}

.career-card p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .careers-layout,
  .careers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .comparison-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .about-badge {
    right: 1rem;
    bottom: 1rem;
    max-width: 210px;
  }

  .about-badge img {
    width: 150px;
  }
}


/* === v7: requested corrections only === */
.faq-list {
  padding-top: 0;
}

.faq-item {
  padding: 2rem clamp(1.25rem, 3vw, 2.25rem);
  background: transparent !important;
  box-shadow: none !important;
}

.offer-section,
.offer-layout,
.offer-details,
.offer-detail {
  background: transparent;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.offer-copy > p:not(.eyebrow) {
  max-width: 60ch;
  font-size: 1.03rem;
}

.offer-details {
  border-top: 1px solid var(--line);
}

.offer-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.offer-detail > span {
  color: var(--brand);
  font-weight: 850;
}

.offer-detail h3 {
  margin-bottom: 0.4rem;
  color: var(--white);
}

.offer-detail p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-details > .text-link {
  margin-top: 1.4rem;
}

.comparison-card:last-child {
  grid-column: auto;
}

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

@media (max-width: 980px) {
  .offer-layout,
  .careers-grid {
    grid-template-columns: 1fr;
  }
}


/* === Header CTA update === */
.header-main-cta {
  white-space: nowrap;
}

.mobile-phone-primary {
  width: 100%;
  justify-content: center;
  color: #071006;
  background: var(--brand);
  font-weight: 800;
}

@media (max-width: 900px) {
  .mobile-action-row {
    grid-template-columns: 1fr;
  }
}

/* === v11: review proof, CTA hierarchy and Webbec footer logo === */
.hero-review-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.hero-google-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
}

.hero-google-icon img {
  width: 24px;
  height: 24px;
}

.hero-review-copy {
  display: grid;
  gap: 0.1rem;
}

.hero-review-stars {
  color: #fbbc04;
  font-size: 0.92rem;
  letter-spacing: 0.11em;
  line-height: 1;
}

.hero-review-copy strong {
  color: var(--white);
  font-size: 0.84rem;
  line-height: 1.25;
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.section-cta-center {
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.webbec-credit img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.webbec-credit strong {
  display: none;
}

@media (max-width: 640px) {
  .hero-review-proof {
    width: 100%;
    max-width: 390px;
  }

  .section-cta-row .button {
    width: 100%;
  }

  .section-cta-row .text-link {
    justify-content: center;
    width: 100%;
  }

  .webbec-credit img {
    width: 98px;
  }
}


/* === v13: restore both mobile header CTAs === */
@media (max-width: 900px) {
  .mobile-action-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .mobile-phone-primary,
  .mobile-quote {
    width: 100%;
  }

  .mobile-phone-primary {
    color: #071006;
    background: var(--brand);
  }

  .mobile-phone-primary svg {
    stroke: currentColor;
  }

  .mobile-quote {
    color: var(--white);
    background: var(--dark-2);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
}
