:root {
  --bg: #ffffff;
  --text: #0f1b2d;
  --muted: #5b6b80;
  --brand: #17b37b;
  --brand-dark: #0f8f63;
  --accent: #eaf8f1;
  --shadow: 0 24px 48px rgba(13, 22, 33, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

img {
  max-width: 100%;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(15, 27, 45, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

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

.logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(23, 179, 123, 0.25);
}

.brand-name {
  font-size: 1.25rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-weight: 600;
  color: #46566d;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1b2a3a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 28px rgba(23, 179, 123, 0.22);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(23, 179, 123, 0.3);
}

.button.ghost {
  background: #fff;
  border-color: #e1e7ef;
  color: #1c2a3c;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1d2a3a;
  margin: 5px 0;
}

.mobile-panel {
  display: none;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(15, 27, 45, 0.08);
}

.mobile-nav {
  display: grid;
  gap: 12px;
  font-weight: 600;
  color: #46566d;
}

.mobile-cta {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

body.menu-open .mobile-panel {
  display: block;
}

.hero {
  padding: 60px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(23, 179, 123, 0.2);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-copy h1 span {
  color: var(--brand);
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
  color: #1d2a3a;
}

.pill-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(23, 179, 123, 0.15);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.quote-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-top {
  height: 6px;
  background: linear-gradient(90deg, #17b37b, #1fcf8a);
}

.quote-body {
  padding: 28px;
}

.quote-body h2 {
  margin: 0 0 6px;
}

.quote-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
}

.quote-form textarea {
  min-height: 92px;
  resize: vertical;
}

.quote-form button {
  width: 100%;
}

.quote-form small {
  text-align: center;
  color: #7a8798;
}

.stats {
  background: radial-gradient(circle at top, #17344b 0%, #0d1e2c 55%, #091521 100%);
  color: #fff;
  padding: 36px 0 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}

.stat {
  padding: 12px 18px;
}

.stat-icon {
  font-size: 1.5rem;
  display: inline-block;
  background: rgba(18, 255, 186, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.stat h3 {
  margin: 0;
  font-size: 2rem;
}

.stat p {
  margin: 6px 0 0;
  color: #c7d3df;
}

.site-footer {
  padding: 40px 0 24px;
  background: #0d1b2a;
  color: #c5d1dd;
}

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

.site-footer h4,
.site-footer h5 {
  color: #fff;
  margin: 0 0 10px;
}

.site-footer a {
  display: block;
  color: #c5d1dd;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.9rem;
}

.icon-phone {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
}

.icon-phone::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-top: none;
  border-left: none;
  border-radius: 2px;
  right: 2px;
  bottom: 2px;
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

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

  .quote-card {
    max-width: 520px;
  }

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

@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
