@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --brand: #0D6B4E;
  --brand-2: #167b5a;
  --ink: #0f1a17;
  --text: #2f4841;
  --muted: #637f76;
  --line: #d8e5e0;
  --bg: #f7fbf9;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(9, 28, 21, 0.07);
  --shadow-md: 0 12px 30px rgba(9, 28, 21, 0.12);
  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  background: #eaf4f1;
  border-bottom: 1px solid var(--line);
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.top-strip p {
  font-size: 11px;
  font-weight: 700;
  color: #2a473f;
}

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

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand-name,
h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
}

.brand-name {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  color: #355149;
  padding: 6px 8px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  background: #f3faf7;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 107, 78, .22);
}

.btn-primary:hover {
  background: var(--brand-2);
}

.btn-ghost,
.top-strip a {
  background: #fff;
  color: var(--brand);
  border: 1.5px solid rgba(13, 107, 78, .35);
}

.top-strip a {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  content: "";
}

.menu-btn span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-btn span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  z-index: 140;
  background: #f7fbf9;
  padding: 18px 22px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-close {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 26, 23, .18);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  color: #2b463e;
}

.hero {
  padding: 58px 0 44px;
  background:
    radial-gradient(1000px 320px at 88% -10%, rgba(13, 107, 78, .16), transparent 60%),
    linear-gradient(180deg, #fbfefd 0%, #f2f9f6 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}

.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.14;
  margin-bottom: 10px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.lead {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions,
.section-actions,
.cta-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points,
.list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.hero-points li,
.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  color: #3d574f;
}

.hero-points li::before,
.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: .5em;
}

.hero-card,
.card,
.faq-item,
.location-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hero-card {
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.hero-card-body,
.card {
  padding: 16px;
}

.hero-card-body p,
.card p {
  font-size: 14px;
  color: var(--muted);
}

.section {
  padding: 68px 0;
}

.trust-grid,
.steps-grid,
.benefits-grid,
.faq-grid,
.service-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.trust-grid,
.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.trust-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafdfc;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #304d44;
  text-align: center;
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.location-links a {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #355148;
}

.location-links a:hover {
  background: #f3faf7;
  color: var(--brand);
}

.faq-item {
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
  padding: 0 16px;
}

.faq-a p {
  padding-bottom: 14px;
  font-size: 14px;
  color: var(--muted);
}

.cta-box {
  margin-top: 18px;
  border: 1px solid rgba(13, 107, 78, .18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #eaf6f2 0%, #f7fcfa 100%);
  padding: 18px;
}

.footer {
  margin-top: 24px;
  background: #162521;
  color: rgba(255, 255, 255, .82);
}

.footer-inner {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 8px;
}

.footer a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 7px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 12px 0 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 130;
  background: rgba(15, 26, 23, .94);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 8px;
  gap: 8px;
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  border-radius: 10px;
  padding: 10px;
}

.sticky-cta .s-text {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}

.sticky-cta .s-book {
  background: var(--brand);
  color: #fff;
}

body.menu-open {
  overflow: hidden;
  padding-bottom: 0 !important;
}

body.menu-open .sticky-cta {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-links,
  .nav .btn {
    display: none;
  }

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

  .hero-grid,
  .trust-grid,
  .steps-grid,
  .benefits-grid,
  .faq-grid,
  .service-grid,
  .location-links,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .mobile-menu {
    min-height: 100dvh;
  }

  .top-strip p {
    display: none;
  }

  .hero-actions,
  .section-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .sticky-cta {
    display: flex;
  }
}
