:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --accent: #155eef;
  --accent-dark: #0f46c7;
  --accent-soft: #e8f0ff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  order: 1;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
}

.brand-mark img {
  display: block;
  width: 28px;
  height: 28px;
}

.brand strong {
  display: block;
}

.brand strong span {
  display: inline;
}

.header-call {
  order: 2;
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-call svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--accent-dark);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-toggle-button {
  display: inline-grid;
  order: 3;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-button span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle:focus-visible + .nav-toggle-button {
  outline: 3px solid var(--accent-soft);
  outline-offset: 3px;
}

.site-nav {
  display: none;
  order: 4;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.nav-toggle:checked ~ .site-nav {
  display: flex;
}

.site-nav a {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 560;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.section {
  padding-block: 96px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 110px;
  background: #080d18;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 13, 24, 0.84) 0%, rgba(8, 13, 24, 0.72) 38%, rgba(8, 13, 24, 0.24) 68%, rgba(8, 13, 24, 0.06) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid,
.contact-grid,
.offer-grid,
.split {
  display: grid;
  gap: 28px;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 13, 24, 0.48);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 660px;
  font-size: 1.08rem;
}

.hero .eyebrow {
  color: #bfdbfe;
}

.hero h1,
.hero .hero-lead {
  color: #ffffff;
}

.hero .hero-lead {
  color: #e5eefc;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: #ffffff;
  color: #ffffff;
}

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

.button {
  display: inline-flex;
  gap: 8px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: #ffffff;
  color: #ffffff;
}

.card,
.step,
.faq-list article,
.contact-card,
.equipment-list li,
.area-map {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.check-list,
.equipment-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.usp-band {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fafc 0%, var(--surface-muted) 100%);
  padding-block: 96px;
}

.usp-grid {
  display: grid;
  gap: 14px;
}

.usp-grid article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.usp-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.usp-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.usp-content,
.usp-content strong,
.usp-content span {
  display: block;
}

.usp-content strong {
  margin-bottom: 4px;
  line-height: 1.25;
}

.usp-content span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.google-rating {
  display: grid;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.google-rating .stars {
  color: #f59e0b;
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1;
}

.google-rating strong,
.google-rating span {
  display: block;
}

.google-rating span {
  color: var(--muted);
  font-size: 0.95rem;
}

.google-rating a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 620;
  text-decoration: none;
}

.google-rating a::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
}

.section-muted {
  background: var(--surface-muted);
}

.text-block {
  max-width: 720px;
}

.tip-card {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.tip-label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tip-label svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: #facc15;
  stroke: #a16207;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tip-label span {
  display: block;
}

.tip-card h2 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.tip-card p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 620;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
}

.google-rating a:hover,
.google-rating a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.section-heading {
  max-width: 740px;
  margin: 0 0 42px;
  text-align: left;
}

.section-heading-left {
  margin-inline: 0;
}

.card-grid,
.steps,
.faq-list {
  display: grid;
  gap: 16px;
}

.card,
.step,
.faq-list article,
.equipment-list li {
  padding: 22px;
}

.card p,
.step p,
.faq-list p,
.equipment-list p {
  margin-bottom: 0;
}

.steps {
  position: relative;
  counter-reset: step;
}

.steps::before {
  content: "";
  display: none;
}

.step span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.12rem;
  font-weight: 850;
}

.equipment-list {
  list-style: none;
}

.offer-intro {
  display: grid;
  gap: 24px;
}

.offer-visual {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  max-height: 300px;
  object-fit: cover;
}

.equipment-list {
  position: relative;
  gap: 0;
  padding-left: 26px;
}

.equipment-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 6px;
  width: 2px;
  background: var(--border);
}

.equipment-list li {
  position: relative;
  padding: 0 0 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.equipment-list li:last-child {
  padding-bottom: 0;
}

.equipment-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -26px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--accent);
  border-radius: 999px;
  background: var(--surface-muted);
}

.area-layout {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.area-copy {
  display: grid;
  align-content: center;
}

.area-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.area-points li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.area-points li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.area-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.area-map iframe,
.google-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.contact-section {
  background: var(--text);
  color: #ffffff;
}

.contact-section p {
  color: #d1d5db;
}

.contact-section .eyebrow {
  color: #9cc0ff;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-style: normal;
}

.contact-card a {
  color: #ffffff;
  font-weight: 800;
}

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

.social-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
}

.social-icon span {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.google-map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.google-map-card a {
  display: block;
  padding: 14px 18px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.google-map-card a:hover,
.google-map-card a:focus-visible {
  color: var(--accent);
}

.site-footer {
  padding-block: 24px;
  background: #0b1220;
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  gap: 6px;
}

.footer-inner p {
  margin-bottom: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(203, 213, 225, 0.16);
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.heart {
  color: #ef4444;
  font-weight: 900;
}

@media (min-width: 680px) {
  body {
    font-size: 17px;
  }

  .section {
    padding-block: 150px;
  }

  .hero {
    padding-block: 150px;
  }

  .usp-band {
    padding-block: 150px;
  }

  .google-rating {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

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

  .area-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  }

  .google-map-card {
    grid-column: 1 / -1;
  }

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

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

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

@media (min-width: 960px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 22px;
  }

  .nav-toggle-button {
    display: none;
  }

  .site-nav {
    display: flex;
    order: 2;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .header-call {
    order: 3;
  }

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

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

  .steps {
    gap: 20px;
    margin-top: 18px;
  }

  .steps::before {
    position: absolute;
    top: 48px;
    right: 8%;
    left: 8%;
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--border));
  }

  .step {
    position: relative;
    padding-top: 30px;
    border-top: 4px solid var(--accent-soft);
  }

  .step span {
    position: relative;
    z-index: 1;
    margin-top: -60px;
    border: 6px solid var(--bg);
  }

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

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .brand strong {
    display: grid;
    font-size: 0.92rem;
    line-height: 1.05;
  }

  .brand strong span {
    display: block;
  }

  .header-call {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .nav-toggle-button {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-block: 56px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(8, 13, 24, 0.88) 0%, rgba(8, 13, 24, 0.74) 100%);
  }

  .hero-content {
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .footer-credit {
    display: grid;
    justify-content: start;
  }
}
