:root {
  --bg: #f7fbff;
  --paper: #ffffff;
  --soft: #eaf5ff;
  --soft-blue: #dff0ff;
  --blue: #1d74b7;
  --blue-dark: #0f3f66;
  --blue-deep: #082f49;
  --aqua: #38bdf8;
  --text: #102033;
  --muted: #5d7187;
  --border: #d7e7f5;
  --shadow: 0 18px 45px rgba(15, 63, 102, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.brand {
  font-weight: 950;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.045em;
  color: var(--blue-deep);
  line-height: 1;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 22px rgba(29, 116, 183, 0.22);
  flex: 0 0 auto;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
}

nav a {
  color: var(--muted);
  font-weight: 750;
}

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

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 50px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

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

h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.058em;
  margin-bottom: 22px;
  color: var(--blue-deep);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
  color: var(--blue-deep);
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--blue-deep);
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  padding: 14px 21px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(29, 116, 183, 0.22);
  transition: all 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(29, 116, 183, 0.28);
}

.button.secondary {
  background: white;
  color: var(--blue);
  border-color: var(--border);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--soft);
}

.button.light {
  background: white;
  color: var(--blue-deep);
  border-color: white;
  box-shadow: none;
}

.trust-row {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  background: var(--soft);
  color: var(--blue-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid var(--border);
}

.hero-image-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.image-note {
  padding: 16px 10px 6px;
  color: var(--muted);
  font-weight: 750;
}

.quick-help,
.section,
.how-it-works,
.local-section,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
}

.quick-help {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.quick-help p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.problem-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 21px;
  box-shadow: 0 12px 28px rgba(15, 63, 102, 0.06);
}

.problem-card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 18px;
  margin-bottom: 6px;
}

.problem-card span {
  color: var(--muted);
}

.problem-card:hover,
.service-card:hover {
  transform: translateY(-3px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.service-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 63, 102, 0.07);
}

.service-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.service-card div {
  padding: 20px;
}

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

.how-it-works {
  background: linear-gradient(180deg, #ffffff, #f0f8ff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

.how-it-works > .eyebrow,
.how-it-works > h2,
.steps {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.steps div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 18px;
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  max-width: 760px;
}

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

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.contact-card label {
  display: block;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
}

.contact-card textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 850;
  margin-top: 12px;
}

.local-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  border-radius: 32px;
  margin-top: 56px;
  margin-bottom: 60px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.local-section h2 {
  color: white;
}

.local-section .eyebrow,
.local-section p {
  color: rgba(255, 255, 255, 0.82);
}

.local-section p {
  max-width: 720px;
  margin-bottom: 0;
}

footer {
  background: var(--blue-deep);
  color: white;
  padding: 36px 22px;
  text-align: center;
}

footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    font-size: 28px;
  }

  .hero,
  .quick-help,
  .local-section {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    height: auto;
  }

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

  .local-section {
    display: block;
    border-radius: 24px;
  }

  .local-section .button {
    margin-top: 24px;
  }

  .contact-card {
    padding: 24px;
  }
}
