:root {
  --navy-950: #07111d;
  --navy-900: #0c1826;
  --navy-800: #162638;
  --yellow: #f7df1e;
  --yellow-soft: #fff8bd;
  --green: #168a49;
  --text: #15202d;
  --muted: #586474;
  --line: #e3e8ef;
  --soft: #f5f7fa;
  --white: #ffffff;
  --danger: #a93226;
  --radius: 22px;
  --radius-small: 15px;
  --shadow: 0 18px 50px rgba(7, 17, 29, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

:focus-visible {
  outline: 3px solid #1f7ad1;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
}

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

.wrap,
.section {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.topbar {
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.93rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 7px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  font-weight: 900;
  line-height: 1.12;
  text-decoration: none;
}

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

.brand-text {
  display: grid;
  gap: 4px;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.desktop-nav a {
  color: #263444;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--navy-950);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 900;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(82vw, 310px);
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid rgba(7, 17, 29, 0.1);
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--yellow);
  color: #11150c;
  box-shadow: 0 8px 20px rgba(7, 17, 29, 0.13);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--navy-950);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.94rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(75, 108, 143, 0.68), transparent 36%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -130px -210px auto;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(247, 223, 30, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding-block: 66px 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(247, 223, 30, 0.38);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(247, 223, 30, 0.11);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5.1vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.hero .intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: #e6edf5;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

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

.location-line {
  margin: 18px 0 0;
  color: #cbd7e5;
  font-size: 0.94rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.trust-item {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.075);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  color: var(--white);
}

.trust-item span {
  color: #ced9e5;
  font-size: 0.9rem;
  line-height: 1.42;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 18 / 13;
  object-fit: cover;
}

.hero-card-content {
  padding: 22px 24px 24px;
}

.hero-card-content strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.hero-card-content p {
  margin: 0;
  color: var(--muted);
}

.quick-help {
  position: relative;
  z-index: 5;
  margin-top: -33px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 150px;
  display: block;
  padding: 24px;
  border-right: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card:hover {
  background: var(--soft);
}

.quick-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.quick-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding-block: 78px;
}

.section-compact {
  padding-block: 55px;
}

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

.dark-section {
  background: var(--navy-950);
  color: var(--white);
}

.dark-section .lead,
.dark-section .section-kicker {
  color: #cbd7e5;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  max-width: 900px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.9rem, 3.4vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.dark-section h2 {
  color: var(--white);
}

h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.28rem;
  line-height: 1.22;
}

p,
ul {
  margin-top: 0;
}

.lead {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.09rem;
}

.cards-3,
.cards-2 {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(7, 17, 29, 0.055);
}

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

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card ul,
.plain-list {
  padding-left: 1.2rem;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 1.25rem;
  font-weight: 900;
}

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

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

.split-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-box {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 34px;
}

.price-promise {
  border: 1px solid #e7d75c;
  border-radius: var(--radius);
  padding: 30px;
  background: var(--yellow-soft);
}

.price-promise h3 {
  font-size: 1.48rem;
}

.price-facts {
  display: grid;
  gap: 12px;
}

.fact {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 16px 18px;
  background: var(--white);
}

.fact strong,
.fact span {
  display: block;
}

.fact span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.step {
  position: relative;
  min-height: 86px;
  padding: 4px 0 4px 72px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 900;
}

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

.service-area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  margin-top: 34px;
}

.town-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.town-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 15px 16px;
  background: var(--white);
  font-weight: 900;
}

.area-note {
  border-left: 6px solid var(--yellow);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  padding: 22px 24px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(7, 17, 29, 0.05);
}

.area-note p:last-child {
  margin-bottom: 0;
}

.notice {
  margin-top: 28px;
  border-left: 6px solid var(--yellow);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  padding: 20px 22px;
  background: #fffbe2;
}

.notice p:last-child {
  margin-bottom: 0;
}

.faq {
  max-width: 940px;
  margin-top: 30px;
}

.faq details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 0 20px;
  background: var(--white);
}

.faq details[open] {
  box-shadow: 0 8px 24px rgba(7, 17, 29, 0.055);
}

.faq summary {
  cursor: pointer;
  padding: 18px 34px 18px 0;
  color: var(--navy-950);
  font-weight: 900;
}

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

.cta-band {
  padding-block: 44px;
  background: var(--yellow);
  color: var(--navy-950);
}

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

.cta-inner h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.cta-inner p {
  max-width: 760px;
  margin: 10px 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  background: var(--navy-950);
  color: #cbd7e5;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 34px;
  padding-block: 48px 104px;
}

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

.footer h2 {
  font-size: 1.45rem;
}

.footer h3 {
  font-size: 1rem;
}

.footer p,
.footer li {
  font-size: 0.92rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 7px;
}

.footer a {
  color: var(--white);
}

.footer-note {
  color: #9fb0c2;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7, 17, 29, 0.28);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.mobile-actions {
  display: none;
  position: fixed;
  right: 12px;
  bottom: 10px;
  left: 12px;
  z-index: 95;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(7, 17, 29, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(7, 17, 29, 0.22);
  backdrop-filter: blur(10px);
}

.mobile-actions a {
  flex: 1;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(125deg, var(--navy-950), var(--navy-800));
}

.page-hero .section {
  padding-block: 58px;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dbe5ef;
}

.legal-content {
  max-width: 900px;
}

.legal-section + .legal-section {
  margin-top: 44px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.legal-section h3 {
  margin-top: 24px;
  font-size: 1.1rem;
}

.legal-section address {
  font-style: normal;
}

.legal-section p,
.legal-section li {
  color: #465464;
}

.back-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .hero-grid,
  .split,
  .price-box,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-card {
    max-width: 760px;
  }

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

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

  .cta-inner {
    grid-template-columns: 1fr;
  }
}

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

  .wrap,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar p {
    display: none;
  }

  .navbar {
    min-height: 70px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .brand-text small {
    display: none;
  }

  .hero-grid {
    padding-block: 42px 58px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.5rem);
  }

  .hero .intro {
    font-size: 1.05rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-grid,
  .quick-grid,
  .cards-3,
  .cards-2,
  .town-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quick-help {
    margin-top: 0;
  }

  .quick-help .section {
    width: 100%;
  }

  .quick-grid {
    border-radius: 0;
    border-inline: 0;
  }

  .quick-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 57px;
  }

  .section-compact {
    padding-block: 42px;
  }

  .card,
  .price-promise {
    padding: 23px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-inner {
    padding-bottom: 118px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
