:root {
  --teal-900: #0f4c47;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --warm-50: #fffbf5;
  --warm-100: #fef3e2;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 76, 71, 0.12);
  --radius: 16px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal-900);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.1rem;
}

.logo span {
  color: var(--teal-600);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--teal-700);
}

.nav-cta {
  background: var(--teal-700);
  color: var(--white) !important;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--teal-900);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-900);
  border-radius: 2px;
}

.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(20, 184, 166, 0.18), transparent 40%),
    linear-gradient(180deg, var(--teal-50) 0%, var(--warm-50) 100%);
  padding: 4.5rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--slate-900);
  margin: 0 0 1.25rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-900);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-900);
  border-color: var(--teal-600);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-stats li {
  font-size: 0.92rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--teal-900);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--warm-50);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--slate-900);
  margin: 0 0 1rem;
}

.section-head p:last-child {
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.card-body h3 {
  margin: 0 0 0.5rem;
  color: var(--slate-900);
  font-size: 1.1rem;
}

.card-body p {
  margin: 0;
  font-size: 0.95rem;
}

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

.trust-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--teal-700);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--slate-500);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-700);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-900);
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--slate-900);
}

.step p {
  margin: 0;
  font-size: 0.92rem;
}

.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.region-tag {
  background: var(--teal-100);
  color: var(--teal-900);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.quote p {
  margin: 0 0 1rem;
  font-style: italic;
}

.quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--slate-500);
}

.cta-band {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--teal-900);
  flex-shrink: 0;
}

.site-footer {
  background: var(--slate-900);
  color: #cbd5e1;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  color: var(--white);
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
}

.address-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.address-list li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.address-list strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  border: 0;
}

.form-success {
  display: none;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: #99f6e4;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.form-success.visible {
  display: block;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--slate-200);
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .cards,
  .testimonials,
  .steps,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}
