:root {
  --bg: #f4f7fb;
  --panel: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: #d7dee8;
  --blue: #0b4a8b;
  --cyan: #13a6bf;
  --yellow: #f5b642;
  --green: #0f8f68;
  --shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(215, 222, 232, 0.85);
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
nav,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  flex: 0 0 auto;
}

.brand-logo {
  width: 132px;
  height: 88px;
  object-fit: contain;
  background: transparent;
}

nav {
  gap: 20px;
  color: var(--muted);
  font-weight: 800;
}

nav a:hover {
  color: var(--blue);
}

.call-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.hero,
.section,
.quote-band,
footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section,
.quote-band {
  scroll-margin-top: 96px;
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 44px 0 56px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead,
.muted,
.services p,
.faq p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  color: #fff;
  background: var(--blue);
}

.secondary {
  color: var(--blue);
  background: #dceef6;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #0b4a38;
  background: #dff5ee;
  font-weight: 800;
}

.hero-media {
  margin: 0;
  border: 8px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section,
.quote-band {
  padding: 70px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.services,
.photo-grid,
.trust-cards,
.review-grid,
.faq {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.services article,
.lead-form,
.contact-card,
.photo-grid figure,
.trust-cards article,
.review-grid article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.services article,
details {
  padding: 20px;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  border-block: 1px solid var(--line);
}

.photo-section {
  padding-top: 28px;
}

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

.photo-grid figure {
  margin: 0;
  overflow: hidden;
}

.photo-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 14px 16px 16px;
  color: #344054;
  font-weight: 900;
  line-height: 1.35;
}

.trust-section {
  padding-top: 28px;
}

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

.trust-cards article {
  padding: 22px;
}

.trust-cards strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 20px;
}

.trust-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.reviews {
  padding-top: 34px;
}

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

.review-grid article {
  padding: 22px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.stars {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 0;
}

.review-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.steps li {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  margin-top: 22px;
  font-weight: 900;
}

.contact-card a {
  color: var(--blue);
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.whatsapp {
  color: #fff;
  background: #128c7e;
}

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

.quote-checklist li {
  position: relative;
  padding-left: 26px;
  color: #344054;
  font-size: 17px;
  line-height: 1.45;
}

.quote-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

summary {
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer strong,
footer a {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 0;
  }

  .section,
  .quote-band {
    scroll-margin-top: 0;
  }

  .site-header {
    position: static;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding-block: 10px 14px;
  }

  .hero,
  .quote-band,
  .split,
  .services,
  .photo-grid,
  .trust-cards,
  .review-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 96px;
    height: 62px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  nav a {
    font-size: 16px;
  }

  .call-link {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
