:root {
  --ink: #101828;
  --muted: #667085;
  --line: #d9e2ec;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --brand: #0e7ccf;
  --brand-dark: #064b87;
  --accent: #18a058;
  --warning: #f5a524;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

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

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

main {
  padding-top: var(--header-height);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 4px;
  background: rgba(6, 20, 34, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  box-shadow: 0 0 18px rgba(24, 160, 88, 0.45);
  transition: width 90ms linear;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

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

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

.site-header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: calc(var(--header-height) - 4px);
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(217, 226, 236, 0.8);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0);
  backdrop-filter: blur(18px) saturate(135%);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(217, 226, 236, 0.92);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand img {
  width: clamp(152px, 16vw, 220px);
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus {
  color: var(--brand);
}

.mobile-nav-cta {
  display: none;
}

.menu-button {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 0 16px;
  color: #ffffff;
  background: var(--brand);
}

.button {
  padding: 0 18px;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(14, 124, 207, 0.22);
}

.button.secondary {
  color: var(--brand-dark);
  background: #ffffff;
  border-color: var(--line);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - 112px));
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #07111f;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.78) 46%, rgba(7, 17, 31, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.08) 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 0 clamp(22px, 4vh, 46px) clamp(18px, 6vw, 72px);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(40px, 5.2vw, 64px);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 24px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-weight: 800;
  font-size: 20px;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 16px;
  background: #ffffff;
  color: var(--brand-dark);
  font-weight: 800;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 660px;
}

.section h2 {
  font-size: clamp(32px, 4.3vw, 56px);
}

.section-heading p:not(.eyebrow),
.split-content > p,
.contact-panel p {
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: var(--soft);
}

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

.service-card,
.warranty-grid article,
.review-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-card {
  padding: 26px;
  min-height: 350px;
}

.service-card.featured {
  background: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
  box-shadow: var(--shadow);
}

.card-icon,
.warranty-grid i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand);
}

.service-card h3,
.steps h3,
.warranty-grid h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.service-card p,
.service-card li,
.steps p,
.warranty-grid p,
.review-grid blockquote {
  color: var(--muted);
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.service-keywords {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.service-keywords article,
.service-keywords a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-keywords a {
  display: block;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-keywords a:hover,
.service-keywords a:focus-visible {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-keywords h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 17px;
}

.service-keywords p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.steps div {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  grid-row: span 2;
  color: var(--brand);
  font-weight: 800;
  font-size: 22px;
}

.steps h3,
.steps p {
  margin: 0;
}

.warranty {
  background: #0c1726;
  color: #ffffff;
}

.warranty .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.warranty-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.warranty-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: calc(var(--header-height) + 52px) clamp(18px, 5vw, 72px) 56px;
  background: linear-gradient(135deg, #07111f 0%, #0e2236 100%);
  color: #ffffff;
}

.page-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent);
}

.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.page-hero .hero-actions {
  margin-top: 26px;
}

.page-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.page-hero .hero-grid h1 {
  margin-top: 0;
}

.page-hero .hero-illustration {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero .hero-illustration svg {
  display: block;
  width: 100%;
  height: auto;
}

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

.related-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.related-services a:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.related-services a.is-current {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--soft);
}

.related-services i {
  color: var(--brand);
}

.page-hero .error-code {
  margin: 0 0 4px;
  font-size: clamp(72px, 14vw, 150px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.glossary-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.glossary-group h3 {
  margin: 0;
  font-size: 18px;
}

.glossary-group h3 a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 700;
}

.glossary-group h3 a:hover {
  color: var(--brand);
}

.glossary-group h3 i {
  color: var(--brand);
}

.glossary-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.glossary-terms li {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.seo-content {
  background: var(--soft);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: clamp(21px, 3vw, 26px);
}

.legal-content > h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--brand);
  font-weight: 600;
}

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

.keyword-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.keyword-grid article {
  padding: 24px;
}

.keyword-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.keyword-grid p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  max-width: 1120px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.google-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
}

.google-rating-main,
.review-source {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-rating-main strong {
  display: block;
  font-size: 20px;
}

.google-rating p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.google-symbol {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.google-symbol svg {
  width: 26px;
  height: 26px;
}

.google-symbol.small {
  width: 32px;
  height: 32px;
}

.google-symbol.small svg {
  width: 18px;
  height: 18px;
}

.review-grid figure {
  margin: 0;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
}

.stars {
  color: var(--warning);
  font-weight: 800;
  letter-spacing: 0;
}

.review-grid blockquote {
  min-height: 98px;
  margin: 18px 0;
  font-size: 17px;
}

.review-grid figcaption {
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  padding-top: 0;
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 32px;
  padding: clamp(34px, 6vw, 64px);
  color: #ffffff;
  background: var(--brand-dark);
  border-radius: 8px 0 0 8px;
}

.contact-panel .eyebrow {
  color: #88e0aa;
}

.contact-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel address {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 700;
}

.contact iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 0 8px 8px 0;
}

.whatsapp-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
  background: var(--soft);
}

.whatsapp-form-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.whatsapp-form-copy h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.whatsapp-form-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.whatsapp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08);
}

.whatsapp-form label {
  display: grid;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: none;
}

.whatsapp-form input,
.whatsapp-form select {
  min-height: 46px;
  padding: 0 13px;
}

.whatsapp-form textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px 13px;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14, 124, 207, 0.12);
}

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

.floating-quote {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(14, 124, 207, 0.34);
  font-weight: 800;
  animation: floatingPulse 1.9s ease-in-out infinite;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

@keyframes floatingPulse {
  0%,
  100% {
    box-shadow:
      0 16px 38px rgba(14, 124, 207, 0.34),
      0 0 0 0 rgba(14, 124, 207, 0.34);
  }

  50% {
    box-shadow:
      0 18px 42px rgba(14, 124, 207, 0.42),
      0 0 0 12px rgba(14, 124, 207, 0);
  }
}

.floating-quote:hover,
.floating-quote:focus {
  background: var(--brand-dark);
  box-shadow: 0 18px 42px rgba(14, 124, 207, 0.44);
  transform: translateY(-2px);
}

.floating-quote svg {
  width: 24px;
  height: 24px;
}

.floating-quote span {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  width: max-content;
  max-width: 170px;
  padding: 9px 12px;
  color: #ffffff;
  background: #061422;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.22);
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.floating-quote span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #061422;
  transform: translateY(-50%) rotate(45deg);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: calc(clamp(18px, 4vw, 34px) + 58px + 12px);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--brand);
  background: #ffffff;
  border: 1px solid rgba(14, 124, 207, 0.22);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.16);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms ease,
    background 180ms ease,
    color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--brand);
  color: #ffffff;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.floating-quote:hover span,
.floating-quote:focus span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.site-footer {
  background: #061422;
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(160px, 0.8fr));
  gap: clamp(34px, 6vw, 78px);
  max-width: 1220px;
  margin: 0 auto;
  padding: 72px clamp(18px, 5vw, 36px) 64px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #ffffff;
}

.footer-logo img {
  width: min(240px, 100%);
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: #c9d6e4;
  font-size: 16px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c9d6e4;
  font-size: 16px;
}

.footer-column a:hover,
.footer-column a:focus,
.highlight-link,
.footer-bottom strong {
  color: #00df8f;
}

.footer-contact i {
  color: #00df8f;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px clamp(18px, 5vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c9d6e4;
  font-size: 14px;
}

.footer-bottom a {
  color: #c9d6e4;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 200;
  width: min(420px, calc(100% - 28px));
  padding: 18px 20px;
  background: #0b2236;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

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

.cookie-banner p {
  margin: 0 0 14px;
  color: #c9d6e4;
  font-size: 13.5px;
  line-height: 1.6;
}

.cookie-banner a {
  color: #6fc3ff;
  font-weight: 600;
}

.cookie-banner .button {
  width: 100%;
  min-height: 42px;
}

svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .floating-quote {
    animation: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .menu-button {
    position: relative;
    z-index: 40;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #ffffff;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    width: min(82vw, 340px);
    height: 100vh;
    padding: 86px 24px 24px;
    color: var(--ink);
    background: #ffffff;
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(16, 24, 40, 0.18);
    transform: translateX(105%);
    transition: transform 220ms ease;
    visibility: hidden;
  }

  .nav::before {
    content: "Menu";
    position: absolute;
    top: 28px;
    left: 24px;
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 800;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav > a:not(.mobile-nav-cta) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    margin-top: auto;
    color: #ffffff;
    background: var(--brand);
    border-radius: 8px;
    font-weight: 800;
  }

  .hero-content {
    margin-left: clamp(18px, 5vw, 44px);
  }

  .trust-strip,
  .service-grid,
  .service-keywords,
  .warranty-grid,
  .keyword-grid,
  .review-grid,
  .contact,
  .whatsapp-form-section,
  .split {
    grid-template-columns: 1fr;
  }

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

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

  .contact-panel,
  .contact iframe {
    border-radius: 8px;
  }

  .whatsapp-form-copy {
    position: static;
  }

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

  .footer-brand {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: calc(100vh - 96px);
  }

  .brand img {
    width: clamp(136px, 48vw, 180px);
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 17, 31, 0.97) 0%, rgba(7, 17, 31, 0.74) 58%, rgba(7, 17, 31, 0.34) 100%);
  }

  .hero-media img {
    object-position: 66% top;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
  }

  .hero-stats div {
    padding: 10px;
  }

  .hero-stats dt {
    font-size: 15px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .trust-strip div {
    justify-content: flex-start;
  }

  .service-card,
  .warranty-grid article,
  .review-grid figure {
    padding: 22px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-actions .button {
    width: 100%;
  }

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

  .floating-quote {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(14px + 54px + 10px);
    width: 42px;
    height: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .faq-list,
  .related-services {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
