:root {
  --navy: #0b1730;
  --blue: #1769ff;
  --blue-dark: #0f4fd1;
  --gray: #f4f7fb;
  --text: #1d2737;
  --muted: #667085;
  --white: #ffffff;
  --line: #e4e9f2;
  --shadow: 0 24px 70px rgba(11, 23, 48, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }

.top-special {
  width: 100%;
  padding: 12px 6vw;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 6vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand-logo {
  width: 58px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}
.brand-text strong { display: block; color: var(--navy); font-weight: 800; line-height: 1; }
.brand-text em { display: block; color: var(--blue); font-style: normal; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 4px; }

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
nav a:hover { color: var(--blue); }
.contact-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.phone-number {
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.call-link, .text-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}
.call-link { background: var(--navy); color: var(--white); }
.text-link { background: #eaf1ff; color: var(--blue-dark); }

.section-pad { padding: 84px 6vw; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: center;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--navy);
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--navy);
}
h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
}
.hero-text, .section-heading p, .split p, .about p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-text { max-width: 620px; }
.cta-row { margin-top: 28px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
}
.btn.primary { background: var(--blue); color: var(--white); box-shadow: 0 16px 28px rgba(23, 105, 255, 0.22); }
.btn.primary:hover { background: var(--blue-dark); }
.btn.secondary { background: var(--navy); color: var(--white); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.trust-row span, .city-list span {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.hero-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(11, 23, 48, 0.08);
}
.form-status { margin: 0; font-size: 14px; font-weight: 700; }
.form-status:empty { display: none; }
.form-status-success { color: #1a7f4e; }
.form-status-error { color: #c0392b; }
.hero-card { position: relative; }
.hero-card img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  max-height: 760px;
  object-fit: cover;
}

.section-heading { max-width: 760px; margin-bottom: 34px; }
.reviews-heading { max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; }
.services, .areas { background: var(--gray); }
.reviews { background: var(--white); }
.service-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-grid-four { grid-template-columns: repeat(4, 1fr); }
.service-card, .review-grid figure, .about-box {
  margin: 0;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(11, 23, 48, 0.05);
}
.service-card p, .review-grid blockquote, .review-grid figcaption, .area-note {
  color: var(--muted);
  line-height: 1.65;
}
.service-card.highlight {
  background: var(--navy);
  color: var(--white);
}
.service-card.highlight h3, .service-card.highlight p { color: var(--white); }
.mini-link { color: var(--white); font-weight: 900; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.trust-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.trust-card div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.trust-card strong { display: block; color: var(--white); margin-bottom: 6px; }
.trust-card span { color: rgba(255,255,255,0.7); }
.trust-card .badge-compact strong { font-size: 15px; }
.trust-card .badge-compact span { font-size: 13px; }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-note { margin-top: 22px; }

.about { background: var(--white); }
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 34px;
  align-items: center;
}
.about-box { max-width: none; height: 100%; }
.about-box p:last-child { margin-bottom: 0; }
.about-photo img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-height: 640px;
  object-fit: cover;
}

.review-grid blockquote { margin: 0; font-size: 15px; }
.review-grid figcaption { font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.stars { color: #f59e0b; letter-spacing: 1px; margin-bottom: 14px; font-size: 18px; }

form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: var(--navy); font-weight: 800; font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fbfcff;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,105,255,0.1); }
textarea { resize: vertical; }
form .btn { width: 100%; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px 6vw 90px;
  background: var(--navy);
  color: rgba(255,255,255,0.76);
}
.footer p { margin: 0; }
.footer a { color: var(--white); font-weight: 900; }
.footer .phone-number { color: rgba(255,255,255,0.72); }
.mobile-sticky {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.sticky-phone {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.mobile-sticky a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
}
.mobile-sticky a:nth-child(2) { background: var(--blue); }
.mobile-sticky a:last-child { background: var(--navy); }

@media (max-width: 1100px) {
  .site-header { flex-wrap: wrap; }
  nav { order: 3; width: 100%; justify-content: flex-start; }
}

@media (max-width: 980px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero, .split, .about-layout { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .hero-card img { max-height: 520px; }
  .service-grid, .review-grid, .review-grid-four { grid-template-columns: 1fr 1fr; }
  .about-photo img { max-height: 560px; }
  .trust-card { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .top-special { padding: 10px 4vw; font-size: 14px; }
  .site-header { padding: 14px 4vw; }
  .brand-logo { width: 50px; }
  .header-actions { display: none; }
  .section-pad { padding: 58px 4vw; }
  .hero { gap: 32px; }
  h1 { font-size: 45px; }
  .hero-text, .section-heading p, .split p, .about p { font-size: 16px; }
  .service-grid, .review-grid, .review-grid-four { grid-template-columns: 1fr; }
  .hero-form { padding: 20px; border-radius: 24px; }
  .cta-row.contact-row { align-items: stretch; }
  .cta-row .phone-number { width: 100%; }
  .cta-row .btn { flex: 1 1 150px; }
  .footer { flex-direction: column; align-items: flex-start; padding-bottom: 110px; }
  .footer-actions { align-items: flex-start; }
  .footer-actions .phone-number { width: 100%; }
  .mobile-sticky { display: grid; }
}
