:root {
  --blue: #3ba4e5;
  --blue-dark: #1951ac;
  --teal-light: #90e9eb;
  --ink: #1b2733;
  --ink-soft: #4a5563;
  --bg-soft: #eefbfb;
  --white: #ffffff;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #e7eef4;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
}

.brand-text small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.nav .btn { padding: 10px 18px; font-size: 14px; }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

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

html { scroll-behavior: smooth; }

section[id] {
  scroll-margin-top: 76px;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  padding: 64px 0 56px;
  text-align: center;
}

.badge-hero {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 16px;
  color: var(--blue-dark);
}

.hero p.lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-line {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-line-light {
  color: #cfe3f8;
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }

section h2 {
  font-size: 28px;
  text-align: center;
  margin: 0 0 8px;
  color: var(--ink);
}

section p.section-lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px 20px;
  font-size: 15px;
}

.service-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  margin-right: 8px;
}

.alt-bg { background: var(--bg-soft); }

.trust-list {
  list-style: none;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.trust-list li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.chip {
  background: var(--white);
  border: 1.5px solid var(--blue);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
}

.contact-band {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.contact-band h2 { color: var(--white); }
.contact-band p.section-lead { color: #cfe3f8; }

.contact-band .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.contact-band .btn-primary {
  background: var(--white);
  color: var(--blue-dark);
}

footer {
  text-align: center;
  padding: 28px 0;
  font-size: 13px;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .nav .brand-text { font-size: 14px; }
  .nav .badge { width: 50px; height: 50px; }
  .badge-hero { width: 100px; height: 100px; }
  .nav-links { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
