:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-alt: #ebf2f8;
  --text: #152332;
  --muted: #4a6275;
  --primary: #0d7869;
  --primary-strong: #095f53;
  --accent: #f2b134;
  --border: #d4e1ec;
  --shadow: 0 18px 45px rgba(9, 43, 71, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 5% -20%, #fff6d8 0%, transparent 42%),
    radial-gradient(circle at 95% 4%, #d9eef4 0%, transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: "Sora", "Avenir Next", "Trebuchet MS", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  font-family: "Fraunces", "Georgia", serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  z-index: 200;
}

.topbar {
  background: #0f2434;
  color: #f4f8fc;
  font-size: 0.88rem;
}

.topbar-inner {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  padding: 0.55rem 0;
}

.topbar a {
  font-weight: 600;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(245, 248, 251, 0.9);
  border-bottom: 1px solid rgba(212, 225, 236, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
  max-width: 320px;
}

.logo > span:last-child {
  display: grid;
  gap: 0.08rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--primary), #15a08e);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
}

.logo strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.16;
}

.logo small {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #1f3649;
  font-weight: 500;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-weight: 600;
  color: #1f3649;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 11px;
  border: 1px solid transparent;
  padding: 0.72rem 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(140deg, var(--primary), #14a28f);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(13, 120, 105, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(140deg, var(--primary-strong), #0f8b7c);
}

.button-ghost {
  border-color: var(--border);
  background: #ffffff;
  color: #1f3649;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #b9cddd;
  box-shadow: 0 8px 20px rgba(21, 35, 50, 0.1);
}

.header-cta {
  white-space: nowrap;
}

.hero {
  padding: clamp(2.6rem, 5vw, 4.6rem) 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr minmax(320px, 0.9fr);
  gap: clamp(1.4rem, 3.5vw, 2.5rem);
  align-items: start;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.74rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  max-width: 18ch;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  color: var(--muted);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.4rem;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  color: #23384b;
  font-weight: 500;
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
}

.hero-points li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.quote-card > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

form {
  display: grid;
  gap: 0.72rem;
}

label {
  font-size: 0.86rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  border: 1px solid #c7d8e8;
  border-radius: 10px;
  background: #fdfefe;
  color: #1a2f42;
  font: inherit;
  padding: 0.72rem 0.75rem;
}

input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(13, 120, 105, 0.25);
  border-color: var(--primary);
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.form-message {
  min-height: 1.25em;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-message.success {
  color: #0e7d2f;
}

.form-message.error {
  color: #a72f24;
}

.trust-strip {
  padding: 0.25rem 0 1.6rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.trust-grid > div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.trust-grid dt {
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.trust-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(2.4rem, 5vw, 4.2rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(235, 242, 248, 0.65), rgba(235, 242, 248, 0.4));
  border-top: 1px solid rgba(212, 225, 236, 0.6);
  border-bottom: 1px solid rgba(212, 225, 236, 0.6);
}

.section h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  max-width: 24ch;
}

.cards {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.95rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.card h3 {
  font-size: 1.25rem;
}

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

.steps {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.steps article {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(13, 120, 105, 0.13);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.steps h3 {
  font-size: 1.1rem;
}

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

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

.price-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.price-card.featured {
  border-color: rgba(13, 120, 105, 0.45);
  box-shadow: 0 14px 28px rgba(13, 120, 105, 0.16);
  transform: translateY(-3px);
}

.badge {
  justify-self: start;
  margin: 0;
  background: rgba(13, 120, 105, 0.15);
  color: var(--primary-strong);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.price {
  margin: 0;
  color: #132d44;
  font-weight: 700;
  font-size: 1.65rem;
}

.price-card ul {
  display: grid;
  gap: 0.48rem;
}

.price-card li {
  color: var(--muted);
  position: relative;
  padding-left: 1.1rem;
}

.price-card li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  top: 0.53rem;
  left: 0;
}

.pricing-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.review-card p {
  color: #283f53;
  font-size: 0.96rem;
}

.review-card strong {
  color: #1a3247;
  font-size: 0.86rem;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

.faq-wrap > div:first-child {
  display: grid;
  gap: 0.85rem;
}

.faq-wrap > div:first-child p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.area-chips li {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.86rem;
  color: #2a4358;
}

.final-cta {
  padding: clamp(2.3rem, 5vw, 3.6rem) 0;
}

.final-cta-inner {
  background: linear-gradient(145deg, #0f2434, #173951);
  color: #f0f7fb;
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1rem;
  align-items: center;
}

.final-cta-inner p {
  color: #cbe0ee;
}

.final-cta .eyebrow {
  color: #8de3d5;
}

.final-cta-actions {
  display: grid;
  gap: 0.75rem;
}

.final-cta .button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #f0f7fb;
}

.site-footer {
  border-top: 1px solid rgba(212, 225, 236, 0.9);
  padding: 1.1rem 0 5rem;
  background: #eff5fa;
}

.footer-inner {
  display: grid;
  gap: 0.35rem;
  color: #2a4156;
  font-size: 0.87rem;
}

.footer-inner a {
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration: underline;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
}

.mobile-cta a {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.75rem;
}

.mobile-cta a:first-child {
  border: 1px solid var(--border);
  color: #1d374b;
  background: #ffffff;
}

.mobile-cta a:last-child {
  background: linear-gradient(140deg, var(--primary), #14a28f);
  color: #ffffff;
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

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

  .hero h1 {
    max-width: 20ch;
  }

  .trust-grid,
  .cards-services,
  .cards-pricing,
  .cards-reviews,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-wrap,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.35rem);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(8, 31, 49, 0.14);
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 2rem;
  }

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

  .trust-grid,
  .cards-services,
  .cards-pricing,
  .cards-reviews,
  .steps,
  .final-cta-actions {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 1rem;
  }

  .site-footer {
    padding-bottom: 5.6rem;
  }

  .mobile-cta {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
