:root {
  --navy: #0b1f33;
  --navy-2: #12314f;
  --ink: #122033;
  --muted: #627084;
  --line: #dce8ef;
  --soft: #f4f9fb;
  --white: #ffffff;
  --teal: #19b7b0;
  --teal-dark: #0d8f8a;
  --green: #71c68a;
  --sand: #eef4f0;
  --shadow: 0 20px 60px rgba(11, 31, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 31, 51, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000 0, transparent 55%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 1rem 1rem auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 0.65rem;
  border: 1px solid rgba(220, 232, 239, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 48px rgba(11, 31, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(25, 183, 176, 0.28);
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.12);
}

.brand,
.nav,
.hero-actions,
.trust-row,
.footer {
  display: flex;
  align-items: center;
}

.brand,
.nav a,
.header-phone,
.menu-toggle,
.button,
.text-link,
.footer a {
  text-decoration: none;
}

.brand {
  gap: 0.72rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav {
  gap: 0.2rem;
}

.nav a {
  padding: 0.55rem 0.72rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a:hover {
  background: var(--soft);
  color: var(--navy);
}

.nav-item {
  position: relative;
}

.nav-chevron {
  display: inline-block;
  font-size: 0.6rem;
  opacity: 0.65;
  transition: transform 0.18s ease;
}

.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 210px;
  padding: 0.35rem;
  border: 1px solid rgba(220, 232, 239, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 48px rgba(11, 31, 51, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.72rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--soft);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 0.26rem;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-phone {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.hero,
.section,
.footer {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 100vh;
  padding: 9.5rem 0 4rem;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 0.72rem;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 44rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #062022;
  box-shadow: 0 18px 42px rgba(25, 183, 176, 0.2);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.button.whatsapp {
  width: 100%;
  background: #25d366;
  color: #062012;
}

.button:hover,
.header-phone:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.trust-row {
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 0.42rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.interior {
  inset: 0 5% 13% 0;
}

.photo-card.paving {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 42%;
}

.hero-badge {
  position: absolute;
  left: 4%;
  bottom: 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  max-width: 18rem;
  padding: 1rem;
  border: 1px solid rgba(25, 183, 176, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(11, 31, 51, 0.14);
  backdrop-filter: blur(14px);
}

.hero-badge strong {
  color: var(--teal-dark);
  font-size: 3rem;
  line-height: 0.9;
}

.hero-badge span {
  color: var(--navy);
  font-weight: 850;
  line-height: 1.25;
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid,
.work-grid,
.benefit-grid,
.gallery-grid,
.contact-layout {
  display: grid;
  gap: 1rem;
}

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

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

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

.service-card,
.work-card,
.benefit-card,
.step,
.contact-form,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 50px rgba(11, 31, 51, 0.06);
}

.service-card {
  min-height: 32rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.work-card {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.work-card:hover,
.benefit-card:hover,
.step:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 183, 176, 0.38);
  box-shadow: 0 24px 64px rgba(11, 31, 51, 0.11);
}

.work-image {
  min-height: 9.5rem;
  margin: -1rem -1rem 1rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 31, 51, 0), rgba(11, 31, 51, 0.18)),
    var(--work-bg);
}

.work-image.ceiling {
  --work-bg: linear-gradient(135deg, #ffffff 0 30%, #d9edf1 31% 68%, #9bcdd7);
}

.work-image.airless {
  --work-bg:
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 44%),
    linear-gradient(135deg, #f7fbfc 0 32%, #d8edf0 33% 58%, #b6d6dc);
}

.work-image.stuk {
  --work-bg:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.55), transparent 18%),
    radial-gradient(circle at 72% 42%, rgba(8, 44, 70, 0.12), transparent 24%),
    linear-gradient(135deg, #eef3ef, #cad8d2 55%, #f7faf8);
}

.work-image.led {
  --work-bg: linear-gradient(135deg, #081c2f, #174a67 55%, #6be0d8);
}

.work-image.paving-clean,
.work-image.facade,
.work-image.terrace,
.work-image.sidewalk,
.work-image.driveway {
  --work-bg: repeating-linear-gradient(45deg, #aeb9b5 0 24px, #e7efeb 24px 48px);
}

.work-image.facade {
  --work-bg:
    linear-gradient(90deg, rgba(11, 31, 51, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 31, 51, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f0f5f2, #c7d7d2);
  background-size: 42px 42px, 42px 42px, auto;
}

.work-image.terrace {
  --work-bg: repeating-linear-gradient(90deg, #b8c9c2 0 38px, #eef5f1 38px 76px);
}

.work-image.sidewalk {
  --work-bg: repeating-linear-gradient(135deg, #a5b0ad 0 18px, #dfe8e4 18px 36px);
}

.work-image.driveway {
  --work-bg: repeating-linear-gradient(90deg, #9ba8a4 0 32px, #d7e1dc 32px 64px);
}

.work-card .service-icon {
  margin-bottom: 1.7rem;
}

.work-card p {
  color: var(--muted);
}

.work-card span {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 4rem;
  border-radius: 7px;
  background: rgba(25, 183, 176, 0.1);
  color: var(--teal-dark);
}

.service-icon.green {
  background: rgba(113, 198, 138, 0.14);
  color: #2d8b4d;
}

.service-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.service-card p,
.benefit-card p,
.step p,
.contact-box p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.35rem;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  font-weight: 650;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.benefits {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.benefits > * {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

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

.benefit-card {
  min-height: 14.5rem;
  padding: 1.25rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.benefit-card span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 2.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

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

.step {
  position: relative;
  min-height: 18rem;
  padding: 1.2rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.step strong {
  display: block;
  margin-bottom: 3.8rem;
  color: var(--teal-dark);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.gallery {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

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

.gallery-item {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 16px 50px rgba(11, 31, 51, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(11, 31, 51, 0.78)),
    var(--gallery-bg);
}

.gallery-item p {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.ceiling {
  --gallery-bg: linear-gradient(135deg, #eff8fb, #9fd9de 48%, #f7fbfc);
}

.paving-clean {
  --gallery-bg: repeating-linear-gradient(45deg, #bfc9c7 0 22px, #d8e0dd 22px 44px);
}

.ceiling-light {
  --gallery-bg: linear-gradient(135deg, #ffffff 0 35%, #d9edf1 36% 68%, #9bcdd7);
}

.driveway {
  --gallery-bg: repeating-linear-gradient(90deg, #a9b4b0 0 30px, #d9e1dd 30px 60px);
}

.before-after {
  background: var(--white);
}

.before-after::before {
  background: none;
}

.ba-split {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-split::before,
.ba-split::after {
  content: "";
  position: absolute;
  inset: 0;
}

.ba-split::before {
  right: 50%;
  background:
    linear-gradient(180deg, transparent 35%, rgba(11, 31, 51, 0.72)),
    repeating-linear-gradient(45deg, #7e8986 0 20px, #9aa4a0 20px 40px);
}

.ba-split::after {
  left: 50%;
  background:
    linear-gradient(180deg, transparent 35%, rgba(11, 31, 51, 0.72)),
    repeating-linear-gradient(45deg, #c9d4cf 0 20px, #eef5f1 20px 40px);
}

.ba-split span {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: start;
  margin: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.ba-split span + span {
  justify-self: end;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.contact-form,
.contact-box {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

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

label,
dt {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(25, 183, 176, 0.18);
  border-color: var(--teal);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-box {
  background:
    linear-gradient(135deg, rgba(25, 183, 176, 0.12), transparent 42%),
    var(--navy);
  color: var(--white);
}

.contact-box h3,
.contact-box dt {
  color: var(--white);
}

.contact-box dl {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}

.contact-box dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-box p {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--navy);
  font-weight: 850;
}

.mobile-cta {
  display: none;
}

.subpage-main {
  padding-top: 8rem;
}

.service-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-hero-img {
  flex: 1;
  min-height: 13rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(11, 31, 51, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 31, 51, 0), rgba(11, 31, 51, 0.14)),
    var(--hero-img-bg, var(--soft));
}

.service-hero-img.airless {
  --hero-img-bg:
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 44%),
    linear-gradient(135deg, #f7fbfc 0 32%, #d8edf0 33% 58%, #b6d6dc);
}

.service-hero-img.stuk {
  --hero-img-bg:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.55), transparent 18%),
    radial-gradient(circle at 72% 42%, rgba(8, 44, 70, 0.12), transparent 24%),
    linear-gradient(135deg, #eef3ef, #cad8d2 55%, #f7faf8);
}

.service-hero-img.paving-clean {
  --hero-img-bg: repeating-linear-gradient(45deg, #aeb9b5 0 24px, #e7efeb 24px 48px);
}

.service-hero-img.facade {
  --hero-img-bg:
    linear-gradient(90deg, rgba(11, 31, 51, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 31, 51, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f0f5f2, #c7d7d2);
  background-size: 42px 42px, 42px 42px, auto;
}

.content-section {
  padding: 4rem 0;
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.service-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.service-summary {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.service-summary div {
  display: grid;
  gap: 0.2rem;
}

.service-summary strong {
  color: var(--navy);
}

.service-summary span {
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.seo-panel,
.faq-panel,
.sidebar-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 50px rgba(11, 31, 51, 0.06);
}

.seo-panel,
.faq-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.seo-panel p,
.faq-panel p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.sidebar-cta {
  position: sticky;
  top: 7.5rem;
  align-self: start;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(25, 183, 176, 0.12), transparent 42%),
    var(--navy);
  color: var(--white);
}

.sidebar-cta h2,
.sidebar-cta h3 {
  color: var(--white);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.detail-steps {
  counter-reset: service-step;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.detail-steps li {
  counter-increment: service-step;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  list-style: none;
}

.detail-steps li::before {
  content: counter(service-step, decimal-leading-zero);
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-list details p {
  margin: 0.75rem 0 0;
}

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

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

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

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

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav {
    order: 4;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border-top: 0 solid transparent;
    opacity: 0;
    transition: max-height 0.24s ease, opacity 0.18s ease, padding-top 0.24s ease, border-color 0.24s ease;
  }

  .site-header.menu-open .nav {
    max-height: 16rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line);
    opacity: 1;
  }

  .nav a {
    display: grid;
    place-items: center;
    min-height: 2.75rem;
  }

  .nav-dropdown,
  .nav-chevron {
    display: none;
  }

  .hero,
  .service-hero,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 34rem;
  }

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

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

  .sidebar-cta {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 4.25rem;
  }

  .site-header {
    inset: 0.5rem 0.5rem auto;
    width: calc(100% - 1rem);
    gap: 0.55rem;
  }

  .brand small,
  .header-phone {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .nav a {
    justify-content: start;
    padding-inline: 0.85rem;
  }

  .hero,
  .section,
  .footer {
    width: min(calc(100% - 1rem), var(--max));
  }

  .hero {
    gap: 2rem;
    padding-top: 7.25rem;
    padding-bottom: 2.5rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 13vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    overflow-wrap: anywhere;
  }

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

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

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 23rem;
  }

  .photo-card.interior {
    inset: 0 0 18% 0;
  }

  .photo-card.paving {
    width: 58%;
    height: 38%;
  }

  .hero-badge {
    left: 0.8rem;
    bottom: 1rem;
    max-width: calc(100% - 1.6rem);
  }

  .section {
    padding: 4.5rem 0;
  }

  .service-grid,
  .work-grid,
  .benefit-grid,
  .steps,
  .gallery-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

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

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

  .work-image {
    min-height: 8rem;
  }

  .subpage-main {
    padding-top: 6.8rem;
  }

  .service-icon {
    margin-bottom: 2.5rem;
  }

  .step {
    min-height: auto;
  }

  .step strong {
    margin-bottom: 2.5rem;
  }

  .gallery-item {
    min-height: 15rem;
  }

  input,
  select,
  textarea {
    font-size: 1rem;
    min-height: 3.1rem;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0.5rem 0.5rem;
    z-index: 45;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid rgba(220, 232, 239, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 48px rgba(11, 31, 51, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #062022;
  }
}
