:root {
  --blue: #04a8e8;
  --blue-dark: #0286bd;
  --yellow: #ffc600;
  --yellow-dark: #e3ad00;
  --black: #000;
  --ink: #030303;
  --muted: #5e6670;
  --surface: #f5f5f5;
  --line: #e3e3e3;
  --white: #fff;
  --whatsapp: #26a69a;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.42;
  margin: 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.container {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 24px;
}

.skip-link {
  background: var(--white);
  left: 16px;
  padding: 12px 16px;
  position: absolute;
  top: -80px;
  z-index: 30;
}

.skip-link:focus {
  top: 16px;
}

.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 16px;
}

.top-bar-inner {
  align-items: center;
  display: flex;
  gap: 26px;
  min-height: 92px;
}

.top-bar a {
  font-weight: 700;
  text-decoration: none;
}

.top-location::before {
  color: var(--yellow);
  content: "●";
  margin-right: 16px;
}

.top-phone::before {
  content: "☎";
  margin-right: 10px;
}

.top-social {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.top-social a {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  height: 24px;
  justify-content: center;
}

.top-social svg {
  display: block;
  fill: currentColor;
  filter: drop-shadow(1px 1px 0 var(--blue));
  height: 18px;
  width: 18px;
}

.top-social a:hover {
  color: var(--yellow);
}

.main-nav {
  background: var(--white);
  border-bottom: 1px solid #eeeeee;
}

.main-nav .container {
  max-width: none;
}

.nav-shell {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: auto 1fr auto;
  min-height: 104px;
}

.logo-link {
  align-items: center;
  display: flex;
  text-decoration: none;
}

.logo-link img {
  display: block;
  height: auto;
  width: clamp(210px, 18vw, 320px);
}

.desktop-menu {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
  justify-content: center;
}

.desktop-menu a,
.desktop-menu button {
  background: transparent;
  border: 0;
  color: #656b73;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  padding: 16px 0;
  position: relative;
  text-decoration: none;
}

.desktop-menu .is-active {
  color: var(--yellow-dark);
}

.desktop-menu .is-active::after {
  background: var(--yellow);
  bottom: 3px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.menu-group {
  position: relative;
}

.menu-group button::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  content: "";
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}

.sub-menu {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  min-width: 290px;
  padding: 12px;
  position: absolute;
  top: 100%;
  z-index: 15;
}

.menu-group:hover .sub-menu,
.menu-group:focus-within .sub-menu {
  display: grid;
}

.sub-menu a {
  color: var(--ink);
  font-size: 16px;
  padding: 10px 12px;
}

.sub-menu a:hover {
  background: rgba(4, 168, 232, 0.08);
}

.nav-call,
.call-button,
.button-primary {
  background: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  color: var(--black);
  display: inline-flex;
  font-size: 22px;
  justify-content: center;
  min-height: 72px;
  min-width: 290px;
  padding: 20px 28px;
  text-align: center;
  text-decoration: none;
}

.nav-call:hover,
.call-button:hover,
.button-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

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

.hero {
  background: var(--blue);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  min-height: 625px;
}

.hero-copy {
  align-self: center;
  justify-self: end;
  max-width: 930px;
  padding: 60px 58px;
}

.hero-kicker,
.hero-subtitle {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 24px;
}

.hero h1 {
  color: var(--yellow);
  font-size: 36px;
  line-height: 1.04;
  margin: 0 0 20px;
  max-width: 790px;
  text-shadow: 4px 5px 4px rgba(0, 0, 0, 0.28);
}

.hero p {
  font-size: 18px;
  line-height: 1.42;
  max-width: 820px;
}

.hero-subtitle {
  max-width: 780px;
}

.call-button {
  margin-left: 28%;
  margin-top: 26px;
}

.hero-visual {
  min-height: 625px;
  overflow: hidden;
}

.hero-visual img {
  display: block;
  height: 100%;
  min-height: 625px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.section {
  padding: 90px 0;
}

.intro-section {
  background: var(--white);
}

.local-seo-section {
  background: #f7f7f7;
}

.local-seo-section h2 {
  color: var(--blue);
  margin-bottom: 28px;
  text-align: center;
  text-transform: uppercase;
}

.text-columns,
.two-columns,
.contact-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-columns {
  max-width: 1140px;
}

.section p,
.section li,
details p {
  font-size: 18px;
}

.blue-section {
  background: var(--blue);
}

.blue-section h2,
.contact-section h2 {
  color: var(--yellow);
  font-size: 32px;
  line-height: 1.02;
  margin: 0 0 28px;
  text-align: center;
  text-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

.review-layout {
  display: grid;
  gap: 34px;
}

.reviews-title {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 820px;
}

.reviews-body {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reviews-slider {
  background: #f4f4f4;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px 0 28px;
}

.review-summary {
  align-items: center;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 28px 20px;
  padding-bottom: 18px;
}

.review-summary strong,
.review-author strong {
  display: block;
  font-size: 21px;
}

.review-summary span,
.review-author span:not(.avatar) {
  display: block;
}

.stars {
  color: #eeb000;
  font-size: 30px;
  letter-spacing: 0;
  white-space: nowrap;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  animation: reviews-scroll 42s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}

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

.review-card {
  background: var(--white);
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  color: var(--ink);
  display: grid;
  flex: 0 0 320px;
  gap: 16px;
  min-height: 220px;
  padding: 20px;
  text-decoration: none;
}

.review-card:first-child {
  margin-left: 28px;
}

.review-card p {
  margin: 0;
}

.google-logo {
  display: inline-flex;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
}

.google-logo span:nth-child(1),
.google-logo span:nth-child(4) {
  color: #4285f4;
}

.google-logo span:nth-child(2),
.google-logo span:nth-child(6) {
  color: #db4437;
}

.google-logo span:nth-child(3) {
  color: #f4b400;
}

.google-logo span:nth-child(5) {
  color: #0f9d58;
}

.review-text {
  display: -webkit-box;
  min-height: 76px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-author {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.review-author small {
  color: #6f7378;
  display: block;
  font-size: 15px;
}

.avatar {
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  flex: 0 0 52px;
  font-size: 21px;
  font-weight: 800;
  height: 52px;
  line-height: 1;
  place-items: center;
  text-align: center;
  width: 52px;
}

.avatar::first-letter {
  line-height: 1;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.cards-section {
  background: var(--white);
}

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

.service-card {
  background: var(--yellow);
  border-radius: 36px;
  box-shadow: 10px 12px 16px rgba(0, 0, 0, 0.35);
  padding: 36px 26px 44px;
}

.service-icon {
  color: var(--blue);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 26px;
}

.service-card h2 {
  color: var(--blue);
  font-size: 32px;
  line-height: 1.08;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.service-card li + li {
  margin-top: 14px;
}

.section-kicker,
.mini-kicker {
  font-weight: 800;
  text-align: center;
}

.about-section .section-kicker {
  color: var(--white);
  font-size: 18px;
}

.about-section .text-columns {
  margin-top: 32px;
}

.price-section {
  background: var(--white);
}

.price-section > .container > h2 {
  color: var(--blue);
  font-size: 32px;
  margin: 0 0 36px;
  text-align: center;
  text-transform: uppercase;
}

.dark {
  color: var(--black);
}

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

.price-grid article,
.feature-grid article {
  background: #f8f8f8;
  border-radius: 28px;
  box-shadow: 8px 12px 16px rgba(0, 0, 0, 0.26);
  padding: 34px 26px;
}

.price-grid article:nth-child(3),
.price-grid article:nth-child(4) {
  grid-column: 1 / -1;
}

.price-grid article:nth-child(2),
.price-grid article:nth-child(4) {
  background: var(--blue);
}

.price-grid article:nth-child(2) h3,
.price-grid article:nth-child(4) h3 {
  color: var(--yellow);
}

.price-grid h3 {
  color: var(--yellow-dark);
  font-size: 24px;
  line-height: 1.08;
  margin: 0 0 16px;
}

.security-section {
  background: var(--blue);
}

.security-section .container {
  max-width: 1180px;
}

.security-section h2,
.feature-grid h2 {
  color: var(--blue);
  font-size: 32px;
  line-height: 1.08;
  margin: 0 0 24px;
}

.security-section h2 {
  color: var(--yellow);
  text-align: center;
  text-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

.security-section li + li,
.feature-grid li + li {
  margin-top: 12px;
}

.feature-section {
  background: #f7f7f7;
}

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

.feature-grid article:nth-child(3) {
  grid-column: 1 / -1;
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(4) {
  background: var(--blue);
}

.feature-grid article:nth-child(2) h2,
.feature-grid article:nth-child(4) h2 {
  color: var(--yellow);
}

.feature-grid article:nth-child(2) strong,
.feature-grid article:nth-child(4) strong {
  color: var(--yellow);
}

.zones-section .area-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.area-list li {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  font-weight: 800;
  padding: 12px 14px;
  text-align: center;
}

.contact-section {
  background: var(--blue);
  text-align: center;
}

.contact-section .contact-grid {
  align-items: center;
  margin-top: 42px;
  text-align: left;
}

.nap-box p {
  margin: 0 0 22px;
}

.map-embed {
  background: var(--white);
  min-height: 286px;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  height: 286px;
  width: 100%;
}

.faq-section {
  background: var(--white);
}

.faq-section h2 {
  color: var(--blue);
  font-size: 32px;
  text-align: center;
}

details {
  background: #f8f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 12px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  background: #333;
  color: var(--white);
  padding: 42px 0;
}

.footer-inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
}

.footer-inner p {
  color: var(--blue);
  font-weight: 800;
  margin: 0;
}

.footer-inner a,
.footer-button,
.button-text {
  color: inherit;
}

.footer-call {
  border: 2px solid var(--blue);
  color: var(--blue) !important;
  padding: 14px 30px;
  text-decoration: none;
}

.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-button,
.button-text {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
}

.whatsapp-button {
  align-items: center;
  background: var(--whatsapp);
  border-radius: 5px;
  bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.24);
  color: var(--white);
  display: inline-flex;
  font-size: 22px;
  font-weight: 800;
  gap: 12px;
  left: 18px;
  padding: 10px 24px;
  position: fixed;
  text-decoration: none;
  z-index: 25;
}

.whatsapp-button svg {
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
}

.cookie-banner {
  bottom: 18px;
  left: 18px;
  max-width: 620px;
  position: fixed;
  right: 18px;
  z-index: 40;
}

.cookie-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.cookie-actions,
.cookie-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cookie-preferences {
  border-top: 1px solid var(--line);
  display: grid;
  padding-top: 18px;
}

.button {
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  text-decoration: none;
}

.button-outline {
  background: var(--white);
  border-color: var(--blue);
}

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

.legal-page {
  padding: 70px 0;
}

.legal-content {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 24px;
}

.legal-content section {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 28px;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 92px;
}

.brand,
.phone-link {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-menu,
  .nav-call {
    display: none;
  }

  .mobile-menu-toggle {
    align-items: center;
    background: var(--yellow);
    border: 0;
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    position: relative;
    width: 54px;
  }

  .mobile-menu-toggle span {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }

  .mobile-menu-toggle::before,
  .mobile-menu-toggle::after,
  .mobile-menu-toggle span::before {
    background: var(--black);
    content: "";
    height: 3px;
    position: absolute;
    width: 24px;
  }

  .mobile-menu-toggle::before {
    transform: translateY(-8px);
  }

  .mobile-menu-toggle::after {
    transform: translateY(8px);
  }

  .mobile-menu {
    background: var(--white);
    display: none;
    padding-bottom: 18px;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
    text-decoration: none;
  }

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

  .hero-copy {
    justify-self: stretch;
    max-width: none;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    min-height: 380px;
  }

  .text-columns,
  .two-columns,
  .contact-grid,
  .price-grid,
  .reviews-body,
  .feature-grid,
  .service-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .site-footer nav {
    justify-items: center;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    padding: 18px 24px;
  }

  .top-social {
    margin-left: 0;
  }

  .hero-copy {
    padding: 42px 24px;
  }

  .hero p,
  .text-columns p,
  .price-grid p,
  .contact-section p,
  .zones-section p,
  .faq-section p,
  .service-card p,
  .service-card li {
    font-size: 18px;
  }

  .call-button {
    margin-left: 0;
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

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

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

  .review-card {
    flex-basis: 280px;
  }

  .whatsapp-button {
    font-size: 18px;
    max-width: calc(100% - 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider-track {
    animation: none;
  }
}
