:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9e0e8;
  --paper: #ffffff;
  --mist: #f5f8fb;
  --blue: #0f6f9f;
  --blue-dark: #084d71;
  --red: #d5252c;
  --green: #16803d;
  --shadow: 0 18px 50px rgba(10, 25, 41, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.58;
}

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

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

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topbar span {
  color: #c7d2de;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 224, 232, 0.9);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 8px;
  font-weight: 900;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #273241;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(213, 37, 44, 0.28);
}

.btn-primary:hover {
  background: #b91f25;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 18, 31, 0.9) 0%, rgba(6, 18, 31, 0.68) 46%, rgba(6, 18, 31, 0.22) 100%),
    url("hero-autoglas.png") center/cover no-repeat;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #d8e8f2;
  font-size: 0.9rem;
  font-weight: 750;
}

.breadcrumb a {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #d9edf8;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 24px;
  color: #edf5fa;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  gap: 10px;
  margin-top: 28px;
}

.hero-point {
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero-point strong {
  display: block;
  margin-bottom: 5px;
}

.hero-point span {
  color: #d9e6ef;
  font-size: 0.94rem;
}

section {
  padding: 78px 0;
}

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

.section-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-title {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.07;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-copy {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.05rem;
}

.content-grid,
.steps-grid,
.faq-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.content-box,
.step,
.faq-box,
.service-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.content-box h3,
.step h3,
.faq-box h3,
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.content-box p,
.step p,
.faq-box p,
.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #314052;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px #dff3e7;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.info-panel {
  padding: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--ink));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-panel p {
  color: #d9e6ef;
}

.info-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.service-card {
  display: block;
  min-height: 100%;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 159, 0.45);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.service-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--blue-dark));
}

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

.cta-box p {
  max-width: 760px;
  margin-bottom: 0;
  color: #d9e6ef;
}

.footer {
  padding: 44px 0 96px;
  color: #dbe4ed;
  background: #0d1521;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer p {
  color: #b8c4d0;
}

.footer-links {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b8c4d0;
}

.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  display: none;
  box-shadow: 0 14px 34px rgba(213, 37, 44, 0.36);
}

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

  .hero-points,
  .content-grid,
  .steps-grid,
  .faq-grid,
  .service-grid,
  .footer-inner,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    display: none;
  }

  .nav-inner {
    min-height: 64px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero-content {
    padding: 52px 0 48px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .hero-points {
    display: none;
  }

  section {
    padding: 62px 0;
  }

  .mobile-call {
    display: inline-flex;
  }
}
