:root {
  --navy-950: #031426;
  --navy-900: #061B35;
  --navy-800: #08284D;
  --navy-700: #0A2B55;
  --blue-700: #005BEA;
  --blue-600: #006BFF;
  --blue-500: #0A73FF;
  --blue-400: #2491FF;
  --sky-100: #EAF4FF;
  --sky-50: #F4F9FF;
  --white: #FFFFFF;
  --text-main: #071B35;
  --text-muted: #53677F;
  --border: #DDE7F3;
  --gold: #FFB800;
  --gradient-hero: linear-gradient(135deg, #031426 0%, #061B35 38%, #08284D 68%, #005BEA 100%);
  --gradient-blue: linear-gradient(135deg, #005BEA 0%, #0A73FF 100%);
  --gradient-dark-blue: linear-gradient(135deg, #061B35 0%, #0A2B55 65%, #005BEA 100%);
  --shadow-lg: 0 18px 45px rgba(3, 20, 38, 0.18);
  --shadow-card: 0 10px 30px rgba(3, 20, 38, 0.08);
  --radius: 16px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-main);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid rgba(36, 145, 255, 0.85);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(3, 20, 38, 0.9);
  box-shadow: 0 12px 36px rgba(3, 20, 38, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.logo-mark {
  display: grid;
  grid-template-columns: repeat(2, 16px);
  grid-template-rows: repeat(2, 16px);
  gap: 3px;
}

.logo-mark span {
  display: block;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  box-shadow: 0 0 16px rgba(36, 145, 255, 0.3);
}

.logo-text strong {
  display: block;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  color: var(--white);
}

.logo-text small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn,
.phone-button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn {
  padding: 14px 23px;
  font-size: 14px;
}

.phone-button {
  padding: 13px 20px;
  color: var(--white);
  background: var(--gradient-blue);
  box-shadow: 0 12px 32px rgba(0, 91, 234, 0.34);
}

.btn-primary,
.link-button {
  color: var(--white);
  background: var(--gradient-blue);
  box-shadow: 0 14px 34px rgba(0, 91, 234, 0.28);
}

.btn-white {
  color: var(--navy-800);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(3, 20, 38, 0.14);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn:hover,
.phone-button:hover,
.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 91, 234, 0.36);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

body.nav-open .menu-toggle .icon-menu {
  display: none;
}

body.nav-open .menu-toggle .icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: 810px;
  padding: 150px 0 110px;
  color: var(--white);
  background: var(--gradient-hero);
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 26%, rgba(36, 145, 255, 0.42), transparent 11%),
    radial-gradient(circle at 45% 70%, rgba(36, 145, 255, 0.28), transparent 12%),
    linear-gradient(90deg, rgba(3, 20, 38, 0.18) 0%, rgba(3, 20, 38, 0.04) 48%, rgba(3, 20, 38, 0.04) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -2%;
  right: -2%;
  bottom: -1px;
  height: 72px;
  background: var(--white);
  clip-path: polygon(0 38%, 49% 92%, 100% 18%, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--blue-400);
}

.eyebrow-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.hero-title {
  margin: 0;
  max-width: 600px;
  font-size: 70px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title .accent {
  display: inline-block;
  color: var(--blue-500);
}

.hero-lead {
  max-width: 560px;
  margin: 22px 0 28px;
  color: #DDEBFF;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(920px, 92vw);
  margin-top: 10px;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(3, 20, 38, 0.72), rgba(3, 20, 38, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(3, 20, 38, 0.22);
  backdrop-filter: blur(8px);
}

.hero-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-benefit:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-benefit .icon {
  width: 42px;
  height: 42px;
  color: var(--white);
}

.hero-benefit strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-benefit span {
  display: block;
  margin-top: 4px;
  color: rgba(221, 235, 255, 0.86);
  font-size: 12px;
  line-height: 1.35;
}

.hero-stat {
  position: absolute;
  z-index: 3;
  right: max(44px, calc((100vw - 1240px) / 2));
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 210px;
  padding: 23px 26px;
  color: var(--white);
  background: var(--gradient-blue);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  box-shadow: 0 20px 42px rgba(0, 54, 145, 0.36);
  transform: skewX(-8deg);
}

.hero-stat > * {
  transform: skewX(8deg);
}

.hero-stat .icon {
  width: 50px;
  height: 50px;
}

.hero-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.hero-stat span {
  display: block;
  margin-top: 3px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 82px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-sky {
  background: linear-gradient(180deg, var(--sky-50), var(--white));
}

.section-dark {
  color: var(--white);
  background: var(--gradient-dark-blue);
}

.section-head {
  margin-bottom: 30px;
}

.section-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--text-main);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.section-dark .section-title,
.section-dark .section-kicker {
  color: var(--white);
}

.section-lead {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--text-muted);
}

.section-dark .section-lead {
  color: rgba(221, 235, 255, 0.82);
}

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

.service-card,
.value-card,
.stat-box,
.process-card,
.review-card,
.price-card,
.gallery-card,
.detail-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 184px;
  padding: 24px 18px 20px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.detail-card:hover,
.gallery-card:hover {
  border-color: rgba(0, 91, 234, 0.32);
  box-shadow: 0 18px 42px rgba(3, 20, 38, 0.12);
  transform: translateY(-4px);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--blue-600);
  transition: transform 180ms ease;
}

.service-card:hover .icon {
  transform: translateY(-2px) scale(1.04);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy-800);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.why-strip {
  margin: 20px 0 0;
  padding: 34px 40px;
  color: var(--white);
  background: var(--gradient-dark-blue);
  box-shadow: var(--shadow-lg);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.why-strip-inner {
  display: grid;
  grid-template-columns: 200px repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.why-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.why-item .icon {
  width: 34px;
  height: 34px;
  color: #B9DDFF;
}

.why-item strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-item span {
  display: block;
  margin-top: 3px;
  color: rgba(221, 235, 255, 0.82);
  font-size: 12px;
  line-height: 1.35;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 48px;
  align-items: center;
}

.comparison {
  position: relative;
  min-height: 315px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.comparison-panel {
  position: relative;
  min-height: 315px;
  overflow: hidden;
}

.comparison-panel img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  object-fit: cover;
}

.comparison-service {
  min-height: clamp(440px, 43vw, 560px);
}

.comparison-service .comparison-panel,
.comparison-service .comparison-panel img {
  min-height: clamp(440px, 43vw, 560px);
}

.comparison-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 13px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-panel.after .comparison-label {
  left: auto;
  right: 14px;
  background: var(--blue-600);
}

.comparison-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--gradient-blue);
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 15px 34px rgba(0, 91, 234, 0.28);
  transform: translate(-50%, -50%);
}

.comparison-handle .icon {
  width: 27px;
  height: 27px;
}

.process-wrap {
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 38px;
  align-items: center;
}

.process-title {
  margin: 0;
  color: var(--navy-800);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

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

.process-card {
  position: relative;
  min-height: 132px;
  padding: 24px 20px 20px 84px;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -35px;
  width: 24px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-600) 0 5px, transparent 5px 9px);
  transform: translateY(-50%);
  opacity: 0.8;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -41px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue-600);
  border-right: 2px solid var(--blue-600);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.8;
}

.process-card:last-child::after {
  display: none;
}

.process-card:last-child::before {
  display: none;
}

.process-number {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  background: var(--sky-100);
  border-radius: 50%;
  font-weight: 900;
}

.process-card .icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 42px;
  height: 42px;
  color: var(--blue-600);
}

.process-card h3 {
  margin: 0 0 7px;
  color: var(--navy-800);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.testimonials {
  border-radius: 12px;
  padding: 36px 42px 30px;
  background:
    radial-gradient(circle at 13% 20%, rgba(36, 145, 255, 0.22), transparent 28%),
    var(--gradient-dark-blue);
  box-shadow: var(--shadow-lg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 205px;
  gap: 18px;
  align-items: stretch;
}

.review-card {
  padding: 22px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}

.review-card blockquote {
  margin: 13px 0 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.45;
}

.review-card cite {
  color: #DDEBFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.google-card {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  text-align: center;
}

.google-g {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  background: conic-gradient(from 210deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.google-score {
  display: block;
  margin: 10px 0 8px;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.google-card small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.coverage-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
  border-radius: 12px;
  padding: 42px;
  background:
    radial-gradient(circle at 13% 20%, rgba(36, 145, 255, 0.2), transparent 28%),
    var(--gradient-dark-blue);
  box-shadow: var(--shadow-lg);
}

.coverage-copy .section-title {
  margin-bottom: 0;
}

.coverage-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.coverage-highlights span {
  display: grid;
  gap: 3px;
  min-height: 78px;
  padding: 15px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.coverage-highlights strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.coverage-map-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(3, 20, 38, 0.2);
}

.slovakia-map {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(0, 91, 234, 0.07) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(0, 91, 234, 0.07) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(135deg, #F4F9FF 0%, #FFFFFF 100%);
}

.slovakia-map-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.region-shapes path {
  fill: #DCEEFF;
  stroke: var(--blue-600);
  stroke-width: 5;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 18px rgba(3, 20, 38, 0.12));
}

.region-shapes path:nth-child(even) {
  fill: #CFE7FF;
}

.region-labels text {
  fill: var(--navy-800);
  font-size: 32px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: central;
}

.coverage-rings circle {
  fill: none;
  stroke: rgba(0, 91, 234, 0.22);
  stroke-width: 4;
  stroke-dasharray: 10 14;
}

.coverage-rings circle:first-child {
  stroke: rgba(0, 91, 234, 0.38);
  stroke-width: 5;
  stroke-dasharray: none;
}

.coverage-lines path {
  fill: none;
  stroke: rgba(0, 91, 234, 0.42);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 14 15;
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gradient-blue);
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 12px 28px rgba(0, 91, 234, 0.32);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin .icon {
  width: 19px;
  height: 19px;
  transform: rotate(45deg);
}

.pin-topolcany {
  left: 36.7%;
  top: 58.4%;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FFB800 0%, #FF7A00 100%);
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.38);
}

.pin-topolcany::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 2px solid rgba(255, 184, 0, 0.46);
  border-radius: 50%;
  animation: windtechMapPulse 1800ms ease-out infinite;
}

.map-location-card {
  position: absolute;
  left: 39.5%;
  top: 44%;
  z-index: 3;
  width: min(220px, 46%);
  padding: 14px 16px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 91, 234, 0.16);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(3, 20, 38, 0.14);
}

.map-location-card::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: inherit;
  border-right: 1px solid rgba(0, 91, 234, 0.16);
  border-bottom: 1px solid rgba(0, 91, 234, 0.16);
  transform: rotate(45deg);
}

.map-location-card span,
.map-location-card small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 850;
  text-transform: uppercase;
}

.map-location-card strong {
  display: block;
  margin: 2px 0 4px;
  color: var(--navy-800);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
}

.map-location-card small {
  color: var(--blue-700);
  text-transform: none;
}

.coverage-region-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-region-list li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 30px;
  color: var(--navy-800);
  background: var(--sky-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.coverage-region-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--blue-600);
  border-radius: 50%;
  transform: translateY(-50%);
}

.location-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  padding: 86px 0 96px;
  color: var(--text-main);
  background:
    linear-gradient(90deg, rgba(0, 91, 234, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(rgba(0, 91, 234, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, #F4F9FF 0%, #FFFFFF 58%, #EAF4FF 100%);
}

.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(36, 145, 255, 0.13), transparent 28%),
    radial-gradient(circle at 78% 74%, rgba(0, 91, 234, 0.12), transparent 31%);
  pointer-events: none;
}

.location-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.location-title {
  margin: 0;
  color: var(--navy-800);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.location-map {
  width: min(100%, 1080px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 91, 234, 0.12);
  border-radius: 12px;
  box-shadow: 0 26px 64px rgba(3, 20, 38, 0.16);
}

.location-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.location-map-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.location-map-glow {
  fill: url("#location-glow");
}

.location-contours path {
  fill: none;
  stroke: rgba(221, 235, 255, 0.28);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 18;
}

.location-country-shadow {
  fill: rgba(0, 91, 234, 0.22);
  filter: url("#location-shadow");
}

.location-country-fill {
  fill: url("#location-land");
  opacity: 0.96;
}

.location-country-stroke {
  fill: none;
  stroke: url("#location-stroke");
  stroke-width: 6;
  stroke-linejoin: round;
}

.location-range {
  fill: none;
  stroke: rgba(0, 107, 255, 0.42);
  stroke-width: 4;
  stroke-dasharray: 10 15;
}

.location-range-soft {
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 3;
  stroke-dasharray: none;
}

.location-range-wide {
  stroke: rgba(36, 145, 255, 0.26);
}

.location-inner-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 4;
  stroke-linecap: round;
}

.location-inner-line-alt {
  stroke: rgba(0, 107, 255, 0.34);
}

.location-inner-line-soft {
  stroke: rgba(255, 184, 0, 0.3);
  stroke-width: 3;
}

.location-pin-wave {
  fill: rgba(255, 184, 0, 0.12);
  stroke: rgba(255, 184, 0, 0.52);
  stroke-width: 2;
  animation: windtechMapPulse 2100ms ease-out infinite;
  transform-origin: center;
}

.location-pin-wave-two {
  animation-delay: 580ms;
}

.location-pin-shape {
  fill: #FFB800;
  stroke: var(--white);
  stroke-width: 9;
  filter: drop-shadow(0 18px 24px rgba(255, 122, 0, 0.35));
}

.location-pin-core {
  fill: #FF7A00;
}

.location-pin-dot {
  fill: var(--white);
}

.cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  margin: 0 auto;
  padding: 28px 44px;
  color: var(--white);
  background: var(--gradient-blue);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.cta-panel .icon-main {
  width: 58px;
  height: 58px;
  color: var(--white);
}

.cta-panel h2,
.cta-panel h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-panel p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-actions .btn-outline {
  min-width: 190px;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(36, 145, 255, 0.18), transparent 30%),
    var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr;
  gap: 48px;
  padding: 46px 0 34px;
}

.footer-brand p,
.footer-list a,
.footer-contact a,
.footer-contact span {
  color: rgba(221, 235, 255, 0.8);
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.footer-list a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-link {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(221, 235, 255, 0.72);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
  padding: 152px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 145, 255, 0.25), transparent 28%),
    var(--gradient-dark-blue);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 520px;
  height: 360px;
  background: url("/assets/img/hero-window-hq-lossless.webp") center / cover no-repeat;
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(1px);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 770px;
}

.page-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.page-hero p {
  margin: 18px 0 0;
  max-width: 700px;
  color: #DDEBFF;
  font-size: 19px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.rich-text h2 {
  margin: 0 0 16px;
  color: var(--navy-800);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.rich-text p {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.image-card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.value-grid,
.stats-grid,
.price-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

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

.value-card {
  padding: 26px;
}

.value-card .icon,
.stat-box .icon {
  width: 40px;
  height: 40px;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.value-card h3,
.stat-box h3,
.price-card h3 {
  margin: 0 0 8px;
  color: var(--navy-800);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.value-card p,
.stat-box p,
.price-card p {
  margin: 0;
  color: var(--text-muted);
}

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

.stat-box {
  padding: 26px;
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--blue-700);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.stat-box p {
  margin-top: 10px;
  font-weight: 800;
}

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

.detail-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-card-image {
  height: 205px;
  overflow: hidden;
  background: var(--sky-100);
}

.detail-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.detail-card:hover .detail-card-image img {
  transform: scale(1.04);
}

.detail-card-body {
  padding: 26px;
}

.detail-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--navy-800);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.detail-card h2 .icon {
  width: 30px;
  height: 30px;
  color: var(--blue-600);
}

.detail-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

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

.gallery-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card-body {
  padding: 22px;
}

.gallery-card h3 {
  margin: 0 0 8px;
  color: var(--navy-800);
  font-size: 19px;
  font-weight: 900;
}

.gallery-card p {
  margin: 0 0 10px;
  color: var(--text-muted);
}

.references-showcase {
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 107, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 44%, #f8fbff 100%);
}

.references-showcase-head {
  width: min(100%, 780px);
  margin: 0 auto 36px;
  text-align: center;
}

.references-showcase-head .section-lead {
  margin-inline: auto;
}

.reference-gallery {
  gap: 24px;
}

.reference-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(3, 20, 38, 0.09);
}

.reference-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue-100);
}

.reference-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 20, 38, 0.03) 55%, rgba(3, 20, 38, 0.28) 100%);
}

.reference-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.reference-card:hover .reference-card-photo img {
  transform: scale(1.025);
}

.reference-card-tag {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 35, 76, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.reference-card .gallery-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.reference-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.reference-card p {
  margin-bottom: 16px;
  line-height: 1.55;
}

.reference-card-note {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: auto;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
}

.reference-card-note .icon {
  width: 17px;
  height: 17px;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.comparison-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.comparison-card .comparison {
  min-height: 250px;
  border-radius: 0;
  box-shadow: none;
}

.comparison-card .comparison-panel,
.comparison-card .comparison-panel img {
  min-height: 250px;
}

.comparison-card-body {
  padding: 22px;
}

.comparison-card-body h3 {
  margin: 0 0 8px;
  color: var(--navy-800);
  font-size: 20px;
  font-weight: 900;
}

.comparison-card-body p {
  margin: 0;
  color: var(--text-muted);
}

.notice-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 24px;
  color: var(--navy-800);
  background: var(--sky-100);
  border: 1px solid #CBE3FF;
  border-radius: var(--radius);
}

.notice-box .icon {
  width: 30px;
  height: 30px;
  color: var(--blue-600);
}

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

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
}

.price-card strong {
  color: var(--blue-700);
  font-size: 22px;
  white-space: nowrap;
}

.price-list-section {
  background:
    radial-gradient(circle at 94% 7%, rgba(41, 133, 255, 0.08), transparent 24%),
    linear-gradient(180deg, var(--white) 0%, #f7faff 100%);
}

.price-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.price-search {
  display: flex;
  align-items: center;
  width: min(100%, 620px);
  min-height: 56px;
  padding: 0 18px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #c9d9ec;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(18, 66, 112, 0.08);
}

.price-search:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(41, 133, 255, 0.12), 0 10px 28px rgba(18, 66, 112, 0.08);
}

.price-search .icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.price-search input {
  width: 100%;
  min-width: 0;
  padding: 15px 0 15px 12px;
  color: var(--navy-900);
  font: inherit;
  border: 0;
  outline: 0;
  background: transparent;
}

.price-search input::placeholder {
  color: #71849a;
}

.price-results {
  flex: 0 0 auto;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
}

.price-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
}

.price-category-nav a {
  padding: 9px 13px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid #d5e1ef;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.price-category-nav a:hover {
  color: var(--blue-700);
  background: var(--sky-100);
  border-color: #9cc7fb;
  transform: translateY(-1px);
}

.price-catalog {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.price-category {
  scroll-margin-top: 104px;
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  background: var(--white);
  border: 1px solid #dfe8f3;
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(17, 54, 91, 0.07);
}

.price-category[hidden] {
  display: none;
}

.price-category-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.price-category-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--blue-700));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(24, 112, 219, 0.22);
}

.price-category-icon .icon {
  width: 25px;
  height: 25px;
}

.price-category-head div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.price-category-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.15;
}

.price-category-head p {
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.price-table {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e8f1;
  border-radius: 14px;
}

.price-table-head,
.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(155px, auto);
  align-items: center;
  gap: 22px;
}

.price-table-head {
  padding: 10px 16px;
  color: #5d7187;
  background: #f3f7fc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table-head span:last-child {
  text-align: right;
}

.price-row {
  min-height: 62px;
  padding: 11px 16px;
  border-top: 1px solid #e7edf5;
}

.price-table-head + .price-row {
  border-top: 0;
}

.price-row[hidden] {
  display: none;
}

.price-row div {
  min-width: 0;
}

.price-row strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
  line-height: 1.35;
}

.price-row small {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.price-row b {
  color: var(--blue-700);
  font-size: 16px;
  text-align: right;
  white-space: nowrap;
}

.price-row-free {
  background: linear-gradient(90deg, #effcf4 0%, #e4f9ec 100%);
  box-shadow: inset 4px 0 0 #16a34a;
}

.price-row-free strong {
  color: #126b32;
}

.price-row-free small {
  color: #39724f;
}

.price-row-free b {
  display: inline-flex;
  justify-self: end;
  padding: 5px 11px;
  color: #08752d;
  background: #ccf3da;
  border: 1px solid #8cdda9;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.price-empty {
  margin-top: 34px;
  padding: 42px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid #dfe8f3;
  border-radius: 20px;
}

.price-empty[hidden] {
  display: none;
}

.price-empty .icon {
  width: 36px;
  height: 36px;
  color: var(--blue-600);
}

.price-empty h2 {
  margin: 12px 0 7px;
  color: var(--navy-900);
}

.price-empty p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: var(--text-muted);
}

.price-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  padding: 14px 18px;
  color: #5d7187;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dfe8f3;
  border-radius: 14px;
  font-size: 12px;
}

.price-legend p {
  margin: 0;
}

.price-legend strong {
  color: var(--navy-800);
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.factor-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy-800);
  font-weight: 800;
}

.factor-list .icon {
  color: var(--blue-600);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 58%, var(--blue-700) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(3, 20, 38, 0.18);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 46px 46px;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel .section-kicker,
.contact-panel .section-title {
  color: var(--white);
}

.contact-panel-head p {
  margin: 14px 0 0;
  color: rgba(235, 244, 255, 0.82);
}

.contact-primary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 28px 0 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact-primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-primary-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 13px;
}

.contact-primary-icon .icon {
  width: 28px;
  height: 28px;
}

.contact-primary strong,
.contact-detail-item strong {
  display: block;
  line-height: 1.2;
}

.contact-primary strong {
  color: rgba(235, 244, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-primary small {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.1;
  font-weight: 900;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.contact-detail-item .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 11px;
}

.contact-detail-item small {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: rgba(235, 244, 255, 0.8);
  font-size: 14px;
  line-height: 1.35;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
}

.contact-list .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--blue-600);
  background: var(--sky-100);
  border-radius: 11px;
}

.contact-list strong {
  display: block;
  color: var(--navy-800);
  line-height: 1.2;
}

.contact-list small {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 17px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(10, 115, 255, 0.12);
  outline: none;
}

.form-status {
  display: none;
  padding: 13px 15px;
  color: #0B5A2A;
  background: #E9FBEF;
  border: 1px solid #BCEBC9;
  border-radius: 10px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.map-placeholder {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 91, 234, 0.08) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(0, 91, 234, 0.08) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(135deg, #EAF4FF, #FFFFFF);
  box-shadow: var(--shadow-card);
}

.map-pin-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--gradient-blue);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
}

.map-pin-card .icon {
  width: 28px;
  height: 28px;
}

.fade-up {
  opacity: 1;
  transform: none;
}

html.motion .fade-up {
  opacity: 1;
  transform: none;
}

html.motion .fade-up.in-view {
  animation: windtechFadeUp 480ms ease both;
}

@keyframes windtechFadeUp {
  from {
    opacity: 0.35;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes windtechMapPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

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

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* Interactive services page */
body.service-dialog-open {
  overflow: hidden;
}

.service-page-hero .page-hero-content {
  max-width: 880px;
}

.service-finder {
  position: relative;
  overflow: hidden;
  padding: 54px 0 58px;
  background:
    linear-gradient(90deg, rgba(0, 91, 234, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(rgba(0, 91, 234, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.service-finder::before,
.service-finder::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.service-finder::before {
  top: -230px;
  right: -170px;
  background: radial-gradient(circle, rgba(0, 107, 255, 0.14), transparent 68%);
}

.service-finder::after {
  bottom: -260px;
  left: -180px;
  background: radial-gradient(circle, rgba(36, 145, 255, 0.13), transparent 68%);
}

.service-finder > .container,
.service-catalog > .container {
  position: relative;
  z-index: 1;
}

.service-finder-head,
.service-catalog-head {
  width: min(100%, 820px);
  text-align: center;
}

.service-finder-head {
  margin: 0 auto 24px;
}

.service-catalog-head {
  margin: 0 auto 40px;
}

.service-finder-head .section-kicker {
  margin-bottom: 5px;
  font-size: 12px;
}

.service-finder-head .section-title {
  font-size: 30px;
}

.service-finder-head .section-lead {
  margin-top: 9px;
  font-size: 14px;
}

.service-finder-head .section-lead,
.service-catalog-head .section-lead {
  margin-inline: auto;
}

.service-problem-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.service-problem-tab {
  display: grid;
  min-width: 0;
  min-height: 108px;
  align-content: start;
  justify-items: start;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(0, 91, 234, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-800);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 8px 20px rgba(3, 20, 38, 0.065);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-problem-tab:hover {
  border-color: rgba(0, 107, 255, 0.32);
  box-shadow: 0 12px 26px rgba(3, 20, 38, 0.1);
  transform: translateY(-2px);
}

.service-problem-tab:focus-visible,
.wind-service-more:focus-visible,
.service-dialog-close:focus-visible {
  outline: 3px solid rgba(0, 107, 255, 0.26);
  outline-offset: 3px;
}

.service-problem-tab .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1px;
  padding: 7px;
  border-radius: 9px;
  background: var(--blue-100);
  color: var(--blue-700);
  transition: color 180ms ease, background 180ms ease;
}

.service-problem-tab > span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.service-problem-tab > small {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.3;
  transition: color 180ms ease;
}

.service-problem-tab.is-active {
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 13px 28px rgba(0, 91, 234, 0.23);
  transform: translateY(-2px);
}

.service-problem-tab.is-active .icon {
  background: rgba(255, 255, 255, 0.17);
  color: var(--white);
}

.service-problem-tab.is-active > small {
  color: rgba(255, 255, 255, 0.78);
}

.service-solution-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  margin-top: 14px;
  padding: 17px 20px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(67, 161, 255, 0.22), transparent 34%),
    radial-gradient(circle at 92% 110%, rgba(0, 31, 89, 0.38), transparent 46%),
    linear-gradient(118deg, #063878 0%, #0759b8 54%, #0a72d7 100%);
  border: 1px solid rgba(127, 195, 255, 0.24);
  border-radius: 14px;
  box-shadow: 0 17px 42px rgba(3, 20, 38, 0.19);
}

.service-solution-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
}

.service-solution-icon .icon {
  width: 23px;
  height: 23px;
}

.service-solution-copy {
  min-width: 0;
}

.service-solution-label {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-200);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-solution-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.15;
}

.service-solution-card p {
  max-width: 800px;
  margin: 5px 0 0;
  color: rgba(235, 244, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.service-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.service-solution-tags span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
}

.service-solution-link {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
  white-space: nowrap;
}

.service-catalog {
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 107, 255, 0.08), transparent 25%),
    var(--white);
}

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

.wind-service-card {
  display: flex;
  min-width: 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(3, 20, 38, 0.09);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(3, 20, 38, 0.09);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.wind-service-card:hover {
  border-color: rgba(0, 107, 255, 0.22);
  box-shadow: 0 24px 50px rgba(3, 20, 38, 0.14);
  transform: translateY(-6px);
}

.wind-service-card:target {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(0, 107, 255, 0.12), 0 24px 50px rgba(3, 20, 38, 0.14);
}

.wind-service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--blue-100);
}

.wind-service-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 20, 38, 0.54));
}

.wind-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.wind-service-card:hover .wind-service-image img {
  transform: scale(1.045);
}

.wind-service-number {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9px;
  background: rgba(3, 20, 38, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.wind-service-icon {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 13px;
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 91, 234, 0.3);
}

.wind-service-icon .icon {
  width: 23px;
  height: 23px;
}

.wind-service-body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.wind-service-type {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wind-service-card h3 {
  margin: 8px 0 9px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.18;
}

.wind-service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.wind-service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--blue-700);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.wind-service-more .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.wind-service-more:hover .icon {
  transform: translateX(4px);
}

.service-bottom-cta {
  background: linear-gradient(180deg, #ffffff, #edf6ff);
}

.service-dialog {
  width: min(940px, calc(100% - 32px));
  max-width: none;
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 20px;
  background: var(--white);
  color: var(--text-main);
  box-shadow: 0 34px 100px rgba(3, 20, 38, 0.34);
}

.service-dialog::backdrop {
  background: rgba(3, 20, 38, 0.72);
  backdrop-filter: blur(7px);
}

.service-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 560px;
}

.service-dialog-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(3, 20, 38, 0.72);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(9px);
}

.service-dialog-close .icon {
  width: 22px;
  height: 22px;
}

.service-dialog-image {
  min-height: 100%;
  overflow: hidden;
  background: var(--blue-100);
}

.service-dialog-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.service-dialog-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 48px 42px 38px;
}

.service-dialog-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-dialog-content h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.service-dialog-content p {
  margin: 17px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-dialog-content ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-dialog-content li {
  position: relative;
  padding-left: 27px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.service-dialog-content li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
}

.service-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.service-dialog-phone {
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .service-problem-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .service-solution-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .service-solution-icon {
    width: 46px;
    height: 46px;
  }

  .service-solution-link {
    grid-column: 2;
    justify-self: start;
  }

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

  .service-dialog-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .service-dialog-content {
    padding: 42px 30px 32px;
  }
}

@media (max-width: 680px) {
  .service-finder {
    padding: 42px 0 46px;
  }

  .service-finder-head {
    margin-bottom: 20px;
  }

  .service-catalog-head {
    margin-bottom: 28px;
  }

  .service-finder-head .section-title {
    font-size: 27px;
  }

  .service-problem-tabs {
    grid-template-columns: none;
    grid-auto-columns: minmax(145px, 46vw);
    grid-auto-flow: column;
    gap: 7px;
    padding-bottom: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-color: rgba(0, 107, 255, 0.34) transparent;
    scrollbar-width: thin;
  }

  .service-problem-tab {
    min-height: 106px;
    padding: 10px;
    scroll-snap-align: start;
  }

  .service-problem-tab .icon {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  .service-problem-tab > span {
    font-size: 13px;
  }

  .service-solution-card {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 16px;
  }

  .service-solution-icon {
    display: none;
  }

  .service-solution-link {
    grid-column: 1;
    justify-self: start;
    width: auto;
  }

  .wind-service-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .wind-service-body {
    padding: 20px 18px 18px;
  }

  .service-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 16px;
  }

  .service-dialog-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-dialog-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .service-dialog-image img {
    min-height: 0;
  }

  .service-dialog-content {
    padding: 27px 20px 24px;
  }

  .service-dialog-content h2 {
    padding-right: 30px;
    font-size: 28px;
  }

  .service-dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-dialog-actions .btn {
    width: 100%;
  }

  .service-dialog-phone {
    padding: 8px 0 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-problem-tab,
  .wind-service-card,
  .wind-service-image img,
  .wind-service-more .icon {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 20px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-inner {
    width: 56%;
  }

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

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

  .why-title {
    grid-column: 1 / -1;
  }

  .why-item {
    padding-left: 0;
    border-left: 0;
  }

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

  .google-card {
    grid-column: span 2;
  }

  .coverage-panel {
    grid-template-columns: 1fr;
  }

  .location-title {
    font-size: 42px;
  }

  .process-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 32px, 1240px);
  }

  .logo {
    min-width: 0;
  }

  .logo-text strong {
    font-size: 22px;
  }

  .logo-text small {
    font-size: 9px;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(3, 20, 38, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 14px;
  }

  .nav-link::after {
    left: 14px;
    right: 14px;
  }

  .header-actions .phone-button {
    display: none;
  }

  .main-nav .mobile-phone {
    display: inline-flex;
    margin-top: 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 0;
    padding: 120px 0 92px;
  }

  .hero-bg img {
    object-position: 58% top;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(3, 20, 38, 0.92) 0%, rgba(3, 20, 38, 0.72) 58%, rgba(3, 20, 38, 0.35) 100%),
      radial-gradient(circle at 62% 32%, rgba(36, 145, 255, 0.34), transparent 18%);
  }

  .hero-inner {
    width: 100%;
    max-width: 670px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
    width: 100%;
  }

  .hero-benefit:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-stat {
    position: relative;
    right: auto;
    bottom: auto;
    width: fit-content;
    margin: 28px 16px 0 auto;
  }

  .split-grid,
  .content-grid,
  .contact-grid,
  .price-category {
    grid-template-columns: 1fr;
  }

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

  .process-card::after {
    display: none;
  }

  .process-card::before {
    display: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .value-grid,
  .stats-grid,
  .gallery-grid,
  .price-grid,
  .references-comparisons,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 961px) {
  .main-nav .mobile-phone {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 104px 0 80px;
  }

  .hero-title {
    font-size: 42px;
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-benefits,
  .services-grid,
  .why-strip-inner,
  .process-grid,
  .testimonial-grid,
  .value-grid,
  .stats-grid,
  .gallery-grid,
  .price-grid,
  .references-comparisons,
  .detail-grid,
  .form-row,
  .factor-list,
  .coverage-highlights,
  .coverage-region-list {
    grid-template-columns: 1fr;
  }

  .hero-benefit,
  .hero-benefit:nth-child(3) {
    padding: 0;
    border-left: 0;
  }

  .hero-stat {
    width: min(100%, 280px);
    margin-left: 0;
    transform: none;
  }

  .hero-stat > * {
    transform: none;
  }

  .contact-panel {
    padding: 24px 18px;
  }

  .contact-primary {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .contact-primary-icon {
    width: 46px;
    height: 46px;
  }

  .contact-primary-icon .icon {
    width: 24px;
    height: 24px;
  }

  .contact-primary small {
    font-size: clamp(20px, 6vw, 23px);
    white-space: nowrap;
  }

  .contact-detail-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 12px;
  }

  .contact-detail-item .icon {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .contact-detail-item small {
    font-size: 12px;
    overflow-wrap: normal;
  }

  .section-title,
  .rich-text h2 {
    font-size: 29px;
  }

  .why-strip {
    padding: 30px 24px;
    clip-path: none;
    border-radius: 12px;
  }

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

  .comparison-handle {
    top: 50%;
  }

  .process-title {
    font-size: 28px;
  }

  .testimonials {
    padding: 28px 20px;
  }

  .coverage-panel {
    padding: 28px 18px;
    gap: 26px;
  }

  .coverage-map-card {
    padding: 14px;
  }

  .slovakia-map {
    padding: 10px;
  }

  .region-labels text {
    font-size: 38px;
  }

  .map-pin {
    width: 32px;
    height: 32px;
    border-width: 3px;
  }

  .map-pin .icon {
    width: 16px;
    height: 16px;
  }

  .pin-topolcany {
    width: 38px;
    height: 38px;
  }

  .map-location-card {
    left: 42%;
    top: 38%;
    width: min(190px, 54%);
    padding: 11px 12px;
  }

  .map-location-card strong {
    font-size: 19px;
  }

  .location-section {
    padding: 66px 0 74px;
  }

  .location-shell {
    gap: 24px;
  }

  .location-title {
    font-size: 34px;
  }

  .location-map {
    width: 100%;
  }

  .google-card {
    grid-column: auto;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  .cta-panel h2,
  .cta-panel h3 {
    font-size: 24px;
  }

  .page-hero {
    padding: 120px 0 58px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .price-card {
    display: grid;
  }

  .price-tools {
    display: grid;
  }

  .price-results {
    padding-left: 2px;
  }

  .price-category {
    gap: 20px;
    padding: 18px;
    border-radius: 16px;
  }

  .price-table-head {
    display: none;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .price-row:first-of-type {
    border-top: 0;
  }

  .price-row b {
    text-align: left;
  }

  .price-row-free b {
    justify-self: start;
  }
}

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

  .hero-title {
    font-size: 36px;
  }

  .logo-mark {
    grid-template-columns: repeat(2, 13px);
    grid-template-rows: repeat(2, 13px);
  }

  .logo-text strong {
    font-size: 19px;
  }

  .btn,
  .phone-button {
    padding-inline: 16px;
  }
}

/* WhatsApp contact widget */
.whatsapp-widget {
  --whatsapp-green: #25d366;
  --whatsapp-dark: #075e54;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 14px;
  font-family: inherit;
}

.whatsapp-launcher {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(7, 94, 84, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-launcher-ring {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(37, 211, 102, 0.23);
  border-radius: inherit;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-launcher-badge {
  position: absolute;
  top: -4px;
  right: -3px;
  display: grid;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ef3f3f;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.whatsapp-launcher:hover {
  background: #20bd5a;
  box-shadow: 0 14px 36px rgba(7, 94, 84, 0.38);
  transform: translateY(-2px);
}

.whatsapp-launcher:focus-visible,
.whatsapp-close:focus-visible,
.whatsapp-cta:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.38);
  outline-offset: 3px;
}

.whatsapp-launcher svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-panel {
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(7, 94, 84, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 44, 61, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.97);
  transform-origin: right bottom;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.whatsapp-widget.is-open .whatsapp-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.whatsapp-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 16px;
  background: var(--whatsapp-dark);
  color: #fff;
}

.whatsapp-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--whatsapp-green);
}

.whatsapp-avatar svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-heading {
  display: grid;
  flex: 1;
  line-height: 1.25;
}

.whatsapp-heading strong {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.whatsapp-heading small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.whatsapp-close {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease;
}

.whatsapp-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-panel-body {
  padding: 20px 18px;
  background:
    linear-gradient(rgba(239, 234, 226, 0.88), rgba(239, 234, 226, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(7, 94, 84, 0.12) 0 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
}

.whatsapp-message {
  display: grid;
  max-width: 92%;
  gap: 8px;
  padding: 11px 13px;
  border-radius: 4px 14px 14px 14px;
  background: #fff;
  color: #25353d;
  box-shadow: 0 3px 12px rgba(31, 52, 63, 0.08);
}

.whatsapp-message p {
  margin: 0;
  color: #25353d;
  font-size: 14px;
  line-height: 1.5;
}

.whatsapp-message small {
  color: #718189;
  font-size: 13px;
}

.whatsapp-panel-footer {
  padding: 14px 18px 18px;
  background: #fff;
}

.whatsapp-cta {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 15px;
  border: 0;
  border-radius: 11px;
  background: var(--whatsapp-green);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
  transition: background 160ms ease, transform 160ms ease;
}

.whatsapp-cta:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
}

.whatsapp-cta svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

@media (max-width: 680px) {
  .whatsapp-widget {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-panel {
    width: calc(100vw - 24px);
  }

  .whatsapp-launcher {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-launcher-ring {
    animation: none;
  }

  .whatsapp-launcher,
  .whatsapp-panel,
  .whatsapp-cta {
    transition: none;
  }
}


/* SEO service landing pages */
.service-card-link { display: block; color: inherit; text-decoration: none; }
.footer-services { grid-template-columns: 1fr; }
.breadcrumb-wrap { background: #f4f8fc; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; gap: 10px; align-items: center; min-height: 48px; color: var(--text-muted); font-size: 14px; }
.breadcrumb a { color: var(--blue-600); font-weight: 700; }
.service-detail-hero .page-hero-content { max-width: 850px; }
.service-detail-hero .hero-actions { margin-top: 28px; }
.service-detail-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.service-detail-copy p { margin: 20px 0 0; color: var(--text-muted); font-size: 17px; line-height: 1.75; }
.service-detail-image { margin: 0; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.service-detail-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.service-detail-image figcaption { padding: 13px 18px; color: var(--text-muted); font-size: 13px; }
.service-two-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.service-rich-card { padding: 34px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.service-rich-card h2 { margin: 8px 0 22px; color: var(--navy-800); font-size: 26px; line-height: 1.2; }
.service-check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.service-check-list li { position: relative; padding-left: 29px; color: var(--text-muted); line-height: 1.55; }
.service-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue-600); font-weight: 900; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 52px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 6px 18px rgba(3, 20, 38, .05); }
.faq-list summary { position: relative; padding: 20px 52px 20px 22px; color: var(--navy-800); cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 15px; color: var(--blue-600); font-size: 26px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 22px 22px; color: var(--text-muted); line-height: 1.65; }
.seo-service-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.seo-service-link { display: flex; min-height: 112px; flex-direction: column; justify-content: space-between; padding: 22px; color: var(--navy-800); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.seo-service-link:hover { transform: translateY(-3px); border-color: rgba(0, 91, 234, .35); box-shadow: 0 14px 32px rgba(3, 20, 38, .11); }
.seo-service-link strong { font-size: 16px; }
.seo-service-link span { color: var(--blue-600); font-size: 13px; font-weight: 800; }
.seo-service-link.is-current { border-color: var(--blue-600); background: #eef6ff; }
@media (max-width: 980px) {
  .service-detail-layout, .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .seo-service-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .service-two-columns, .seo-service-links { grid-template-columns: 1fr; }
  .service-rich-card { padding: 25px 20px; }
  .service-detail-copy p { font-size: 16px; }
  .breadcrumb { overflow-x: auto; white-space: nowrap; }
}
