:root {
  --bg: #090b10;
  --panel: #111722;
  --panel-2: #161f2c;
  --text: #f5f7fb;
  --muted: #b9c1cf;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e3263f;
  --cyan: #46d8f6;
  --amber: #f7b733;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

body::before,
body::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
}

body::before {
  background: url("/assets/hero-mobile-klima.jpg") center / cover no-repeat;
  opacity: 0.34;
  z-index: -2;
}

body::after {
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.9), rgba(9, 11, 16, 0.58)),
    radial-gradient(circle at top right, rgba(70, 216, 246, 0.16), transparent 36%);
  z-index: -1;
}

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

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

.site-header {
  align-items: center;
  background: rgba(9, 11, 16, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  margin-top: 4px;
  max-width: 260px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .nav-cta {
  background: var(--red);
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  padding: 10px 16px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 99px;
  display: block;
  height: 2px;
  width: 24px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 130px clamp(18px, 4vw, 56px) 56px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.95) 0%, rgba(7, 9, 13, 0.7) 56%, rgba(7, 9, 13, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 11, 16, 1) 0%, rgba(9, 11, 16, 0) 36%);
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.5rem, 7vw, 5.75rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 680px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-align: center;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-badges,
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.hero-badges a,
.area-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  padding: 9px 12px;
}

.quick-contact {
  background: rgba(9, 11, 16, 0.62);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--text);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-contact a {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px clamp(18px, 4vw, 56px);
}

.quick-contact strong,
.quick-contact span {
  display: block;
}

.quick-contact strong {
  color: var(--cyan);
  font-size: 0.82rem;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.quick-contact span {
  font-size: 1.2rem;
  font-weight: 900;
}

.section {
  background: rgba(9, 11, 16, 0.48);
  padding: 92px clamp(18px, 4vw, 56px);
}

.split {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(280px, 0.75fr) 1.55fr;
}

.split > div:first-child p,
.section-heading p,
.area p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-grid article,
.price-card,
.boundary-card,
.contact-panel,
.faq-list details,
.steps li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-grid article {
  min-height: 202px;
  padding: 24px;
}

.service-summary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 24px;
  padding: 20px;
}

.service-summary strong,
.service-summary span {
  display: block;
}

.service-summary strong {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.service-summary span {
  color: var(--muted);
}

.service-mini-prices {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.service-mini-prices span {
  background: rgba(227, 38, 63, 0.16);
  border: 1px solid rgba(227, 38, 63, 0.28);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  padding: 12px 14px;
}

.service-links,
.seo-link-row,
.service-page-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-links {
  margin-top: 18px;
}

.service-links a,
.seo-link-row a,
.service-page-links a,
.footer-links a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 850;
  padding: 10px 12px;
}

.seo-link-row,
.service-page-links {
  justify-content: center;
  margin: 22px auto 0;
  max-width: 980px;
}

@media (min-width: 981px) {
  .service-grid {
    margin-top: 118px;
  }
}

.service-grid p,
.price-card p,
.steps span,
.faq-list p {
  color: var(--muted);
}

.service-icon {
  color: var(--amber);
  display: block;
  font-weight: 950;
  margin-bottom: 28px;
}

.boundary {
  background: rgba(14, 18, 26, 0.56);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 72px;
}

.boundary-card {
  padding: 34px;
}

.boundary-card ul {
  color: var(--muted);
  margin: 0;
  padding-left: 20px;
}

.boundary-card li + li {
  margin-top: 10px;
}

.boundary-card.yes {
  border-top: 4px solid var(--cyan);
}

.boundary-card.no {
  border-top: 4px solid var(--amber);
}

.info-strip {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(227, 38, 63, 0.12), rgba(70, 216, 246, 0.08)),
    rgba(9, 11, 16, 0.58);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
}

.info-copy p {
  color: var(--muted);
}

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

.info-points span {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  min-height: 88px;
  padding: 22px;
}

.pricing {
  background: rgba(9, 11, 16, 0.58);
  color: var(--text);
}

.section-heading {
  margin: 0 auto 38px;
  max-width: 820px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
}

.pricing .section-heading p {
  color: var(--muted);
}

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

.price-card {
  background: rgba(17, 23, 34, 0.88);
  border-color: var(--line);
  color: var(--text);
  min-height: 220px;
  padding: 26px;
}

.price-card.featured {
  border-top: 5px solid var(--red);
}

.price-card strong {
  color: var(--red);
  display: block;
  font-size: 2rem;
  font-weight: 950;
  margin-top: 22px;
}

.price-card span {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 4px;
}

.pricing-note {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
  margin: 20px auto 0;
  max-width: 980px;
  padding: 18px 20px;
}

.process {
  background: rgba(14, 18, 26, 0.56);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  min-height: 230px;
  padding: 26px;
}

.steps li::before {
  color: var(--cyan);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: block;
  font-weight: 950;
  margin-bottom: 34px;
}

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

.seo-facts {
  background:
    linear-gradient(135deg, rgba(76, 218, 244, 0.08), rgba(227, 38, 63, 0.08)),
    rgba(9, 11, 16, 0.58);
}

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

.fact-card {
  background: rgba(17, 23, 34, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 238px;
  padding: 26px;
}

.fact-card span {
  color: var(--amber);
  display: block;
  font-weight: 950;
  margin-bottom: 28px;
}

.fact-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

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

.seo-callout {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  margin: 20px auto 0;
  max-width: 980px;
  padding: 18px 20px;
}

.service-page-hero {
  min-height: 68vh;
}

.service-page-hero .hero-inner {
  max-width: 850px;
}

.service-page-hero h1 {
  max-width: 900px;
}

.service-page {
  background: rgba(9, 11, 16, 0.58);
}

.service-page .section-heading {
  margin-left: 0;
  margin-right: 0;
  max-width: 920px;
  text-align: left;
}

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

.service-page-card {
  background: rgba(17, 23, 34, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 230px;
  padding: 26px;
}

.service-page-card strong {
  color: var(--cyan);
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 22px;
  text-transform: uppercase;
}

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

.service-page-card ul {
  margin: 0;
  padding-left: 20px;
}

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

.service-page-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(227, 38, 63, 0.2), rgba(70, 216, 246, 0.12)),
    rgba(17, 23, 34, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
  padding: 26px;
}

.service-page-cta p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-price-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.service-price-list div {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 18px;
}

.service-price-list span {
  color: var(--muted);
  font-weight: 800;
}

.service-price-list strong {
  color: var(--red);
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 950;
}

.area {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
}

.area-panel {
  background: rgba(17, 23, 34, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.area-panel strong,
.area-panel span {
  display: block;
}

.area-panel strong {
  color: var(--cyan);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 12px;
}

.area-panel span {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 800;
}

.gallery-section {
  background: rgba(14, 18, 26, 0.56);
}

.media-showcase {
  display: grid;
  gap: 28px;
}

.media-row {
  display: grid;
  gap: 14px;
}

.media-row-heading {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.media-row-title {
  display: grid;
  gap: 6px;
}

.media-row-heading span {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 950;
}

.media-row-heading small {
  color: var(--muted);
  font-weight: 750;
  max-width: 520px;
  text-align: left;
}

.rail-controls {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.rail-controls button {
  align-items: center;
  background: rgba(72, 224, 255, 0.14);
  border: 1px solid rgba(72, 224, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.55rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 42px;
}

.rail-controls button:hover {
  background: rgba(72, 224, 255, 0.24);
  transform: translateY(-1px);
}

.media-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 10px;
  position: relative;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(72, 224, 255, 0.7) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  touch-action: pan-x;
}

.media-rail::-webkit-scrollbar {
  height: 10px;
}

.media-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.media-rail::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--cyan), var(--red));
  border-radius: 999px;
}

.gallery-card {
  background: rgba(17, 23, 34, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.photo-rail .gallery-card {
  flex: 0 0 min(330px, 78vw);
  height: 360px;
}

.video-rail .gallery-card {
  flex: 0 0 min(282px, 76vw);
  min-height: auto;
}

.gallery-card img,
.gallery-card video {
  display: block;
  background: #05070b;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-card video {
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
}

.gallery-card figcaption {
  background: linear-gradient(0deg, rgba(4, 6, 10, 0.92), rgba(4, 6, 10, 0.08));
  bottom: 0;
  left: 0;
  padding: 80px 18px 18px;
  position: absolute;
  right: 0;
}

.video-card figcaption {
  background: rgba(4, 6, 10, 0.94);
  border-top: 1px solid var(--line);
  bottom: auto;
  left: auto;
  min-height: 112px;
  padding: 14px;
  position: static;
  right: auto;
}

.gallery-card strong,
.gallery-card span {
  display: block;
}

.gallery-card strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 950;
  margin-bottom: 6px;
}

.gallery-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

.gallery-card .panel-content-scroll-text {
  line-height: 1.4;
  max-height: 96px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.video-rail .panel-content-card.video-card {
  display: flex;
  flex-direction: column;
  height: min(650px, calc(100vh - 112px));
  max-height: 650px;
}

.video-rail .panel-content-card.video-card .panel-content-media {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  object-fit: cover;
  width: 100%;
}

.video-rail .panel-content-card.video-card figcaption {
  display: grid;
  flex: 0 0 auto;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: 178px;
  min-height: 128px;
}

.video-rail .panel-content-card.video-card .panel-content-scroll-text {
  max-height: none;
  min-height: 0;
}

.photo-rail .panel-content-card.photo-card {
  display: flex;
  flex-direction: column;
  height: 430px;
  max-height: 430px;
}

.photo-rail .panel-content-card.photo-card .panel-content-media {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  object-fit: cover;
  width: 100%;
}

.photo-rail .panel-content-card.photo-card figcaption {
  background: rgba(4, 6, 10, 0.94);
  border-top: 1px solid var(--line);
  bottom: auto;
  display: grid;
  flex: 0 0 auto;
  grid-template-rows: auto minmax(0, 1fr);
  left: auto;
  max-height: 172px;
  min-height: 126px;
  padding: 14px;
  position: static;
  right: auto;
}

.photo-rail .panel-content-card.photo-card .panel-content-scroll-text {
  max-height: none;
  min-height: 0;
}

.gallery-card .panel-content-scroll-text::-webkit-scrollbar {
  width: 6px;
}

.gallery-card .panel-content-scroll-text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.gallery-card .panel-content-scroll-text::-webkit-scrollbar-thumb {
  background: rgba(72, 224, 255, 0.72);
  border-radius: 999px;
}

.faq {
  background: rgba(9, 11, 16, 0.58);
  color: var(--text);
}

.faq .section-heading p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 920px;
}

.faq-list details {
  background: rgba(17, 23, 34, 0.88);
  border-color: var(--line);
  box-shadow: var(--shadow);
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

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

.contact-section {
  display: flex;
  justify-content: center;
  padding: 92px clamp(18px, 4vw, 56px);
  text-align: center;
}

.contact-panel {
  max-width: 760px;
  padding: 34px;
  width: 100%;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  text-align: left;
}

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

label {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.9) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%,
    calc(100% - 45px) 50%;
  background-repeat: no-repeat;
  background-size:
    7px 7px,
    7px 7px,
    1px 28px;
  cursor: pointer;
  padding-right: 58px;
}

textarea {
  resize: vertical;
}

.form-disclaimer {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--red);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  padding: 12px 14px;
}

.form-estimate {
  background: linear-gradient(135deg, rgba(223, 39, 53, 0.18), rgba(76, 218, 244, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  gap: 7px;
  padding: 16px;
}

.form-estimate[hidden] {
  display: none;
}

.form-estimate span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-estimate strong {
  color: var(--white);
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.1;
}

.form-estimate p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.45;
  margin: 0;
}

.form-help-box {
  background: rgba(76, 218, 244, 0.09);
  border: 1px solid rgba(76, 218, 244, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 6px;
  padding: 13px 14px;
}

.form-help-box strong {
  color: var(--white);
  font-size: 0.95rem;
}

.form-help-box p {
  margin: 0;
}

.hidden-field {
  display: none;
}

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

.form-status {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  margin: 4px 0 0;
  min-height: 22px;
}

.form-status.is-success {
  color: #8ef1c9;
}

.form-status.is-error {
  color: #ffb0a6;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer img {
  height: 34px;
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 10px;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.82rem;
  padding: 7px 9px;
}

.panel-content-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.panel-content-note strong {
  display: block;
  margin-bottom: 6px;
}

.panel-content-note p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 18px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    background: rgba(9, 11, 16, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    left: 0;
    padding: 18px;
    position: fixed;
    right: 0;
    top: 63px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .main-nav .nav-cta {
    justify-self: start;
    padding: 10px 16px;
  }

  .split,
  .boundary,
  .info-strip,
  .area,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .brand img {
    height: 34px;
  }

  .brand span {
    font-size: 0.64rem;
    max-width: 210px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 42px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 9, 13, 0.96) 0%, rgba(7, 9, 13, 0.82) 58%, rgba(7, 9, 13, 0.45) 100%),
      linear-gradient(0deg, rgba(9, 11, 16, 1) 0%, rgba(9, 11, 16, 0.18) 48%);
  }

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

	  .quick-contact,
	  .service-grid,
	  .facts-grid,
	  .service-page-grid,
	  .info-points,
	  .price-grid,
  .form-split-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .media-row-heading {
    align-items: start;
    display: grid;
  }

  .rail-controls {
    justify-content: end;
  }

  .media-row-heading small {
    max-width: none;
    text-align: left;
  }

  .rail-controls button {
    height: 38px;
    width: 38px;
  }

  .photo-rail .gallery-card {
    flex-basis: 82vw;
    height: 380px;
  }

  .video-rail .gallery-card {
    flex-basis: 78vw;
  }

  .video-rail .panel-content-card.video-card,
  .photo-rail .panel-content-card {
    flex-basis: 86vw;
  }

  .video-rail .panel-content-card.video-card {
    height: min(650px, calc(100vh - 92px));
  }

  .video-rail .panel-content-card.video-card figcaption {
    max-height: 190px;
    min-height: 146px;
  }

  .photo-rail .panel-content-card.photo-card {
    height: min(520px, calc(100vh - 120px));
    max-height: 520px;
  }

  .photo-rail .panel-content-card.photo-card figcaption {
    max-height: 190px;
    min-height: 148px;
  }

  .gallery-card .panel-content-scroll-text {
    font-size: 0.86rem;
    line-height: 1.45;
    max-height: 126px;
  }

  .quick-contact a,
  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .service-grid article,
  .service-page-card,
  .price-card,
  .boundary-card,
  .contact-panel,
	  .steps li {
	    min-height: 0;
	    padding: 22px;
	  }

	  .fact-card {
	    min-height: 0;
	    padding: 22px;
	  }

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

  .service-price-list div {
    align-items: start;
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
	}
