:root {
  --green: #0EA766;
  --green-dark: #087a4a;
  --ink: #14231C;
  --muted: #5C6B62;
  --bg: #F7FAF6;
  --card: #ffffff;
  --border: #E7EFE9;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 30px rgba(20, 60, 40, 0.08);
  --shadow-lg: 0 20px 45px rgba(20, 60, 40, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3 {
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 0;
}

h2 {
  font-size: clamp(24px, 3.2vw, 32px);
}

h3 {
  font-size: 18px;
}

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

a { color: var(--green-dark); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-muted {
  background: linear-gradient(180deg, #ffffff 0%, #EFFBF4 100%);
}

.section-lead {
  max-width: 640px;
  font-size: 17px;
  margin: -8px 0 36px;
}

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

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--green);
}

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

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 13px 28px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  background: var(--ink);
  color: #fff;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 10px 24px rgba(14, 167, 102, 0.35);
}

.cta-primary:hover {
  box-shadow: 0 14px 30px rgba(14, 167, 102, 0.45);
}

.cta-ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--border);
}

.cta-ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.header-cta {
  background: var(--ink);
  padding: 10px 20px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: #CDF1DF;
  top: -160px;
  left: -120px;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: #E3F4EA;
  top: -80px;
  right: -100px;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #DFF3E7;
  bottom: -160px;
  left: 30%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow);
  margin: 0 0 22px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin: 0 0 18px;
}

.hero h1 .hl {
  color: var(--green);
  position: relative;
}

.hero-lead {
  font-size: clamp(16px, 2vw, 19px);
  margin: 0 auto 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.stat-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.stat-pill strong {
  color: var(--green-dark);
  font-size: 18px;
}

.stat-pill span {
  font-size: 12px;
  color: var(--muted);
}

/* Feature cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-card h3 {
  margin-bottom: 6px;
}

.feature-card p {
  margin: 0;
  font-size: 14.5px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Pricing cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 16px 36px rgba(14, 167, 102, 0.25);
}

.price-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.price-card h3 {
  min-height: 44px;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
}

.price-amount span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.price-note {
  margin: 4px 0 0;
  font-size: 13px;
}

.note-list {
  padding-left: 20px;
  max-width: 780px;
}

.note-list li {
  color: var(--muted);
  margin-bottom: 8px;
}

/* Contact */
.contact {
  padding-top: 70px;
  padding-bottom: 90px;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-card {
  background: linear-gradient(135deg, #0EA766 0%, #087a4a 100%);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-card h2,
.contact-card p,
.contact-card b {
  color: #fff;
}

.contact-card a:not(.cta-button) {
  color: #fff;
  text-decoration: underline;
}

.contact-card .cta-primary {
  background: #fff;
  color: var(--green-dark);
  box-shadow: none;
}

.contact-card .cta-primary:hover {
  background: #EFFBF4;
}

/* Floating mobile call button */
.mobile-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(14, 167, 102, 0.45);
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 36px;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 24px;
  }

  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero {
    padding: 50px 0 50px;
  }

  .card-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .price-card {
    padding: 22px;
  }

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

  .price-card h3 {
    min-height: 0;
  }

  .mobile-call {
    display: block;
  }

  body {
    padding-bottom: 78px;
  }

  .contact-card {
    padding: 24px;
    border-radius: var(--radius);
  }
}
