:root {
  --primary: #135d66;
  --primary-dark: #0f3f46;
  --accent: #ffb703;
  --cream: #fff8ec;
  --bg: #f7faf9;
  --text: #102025;
  --muted: #5f7177;
  --card: #ffffff;
  --border: #dce8e7;
  --shadow: 0 18px 50px rgba(16, 32, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.topbar {
  background: var(--primary-dark);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--accent);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 250, 249, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 232, 231, 0.8);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary);
  color: white;
}

.brand-text {
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 600;
}

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

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: white !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--text);
}

.section {
  padding: 88px clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
  min-height: 680px;
  background:
    radial-gradient(circle at top left, rgba(255, 183, 3, 0.25), transparent 35%),
    linear-gradient(135deg, #fffdf8 0%, #eaf7f4 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 93, 102, 0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 880px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 30px rgba(19, 93, 102, 0.24);
}

.btn-secondary {
  background: white;
  border-color: var(--border);
  color: var(--primary-dark);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-list span {
  padding: 9px 12px;
  border-radius: 999px;
  background: white;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.hero-card {
  padding: 34px;
  border-radius: 34px;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(220, 232, 231, 0.8);
}

.hero-card-header,
.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #4a3300;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

.hero-card ul,
.price-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.hero-card li,
.price-card li {
  margin-bottom: 10px;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card,
.program-card,
.benefit-item,
.price-card,
.testimonial-card,
.gallery-placeholder {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(16, 32, 37, 0.06);
}

.program-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--cream);
  font-size: 28px;
  margin-bottom: 18px;
}

.solution,
.packages,
.lead-section {
  background: #eef8f5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
}

.feature-list strong {
  color: var(--primary);
  font-size: 22px;
}

.feature-list span {
  font-weight: 700;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.pill-grid span {
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-weight: 800;
  color: var(--primary-dark);
}

.price-card {
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-12px);
}

.price-card .for {
  font-weight: 700;
  color: var(--primary);
}

.gallery-grid {
  margin-bottom: 22px;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: linear-gradient(135deg, #ffffff, var(--cream));
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.testimonial-card {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card p {
  font-size: 21px;
  color: var(--text);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.timeline div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 900;
  margin-bottom: 14px;
}

.timeline p {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}

details p {
  margin-top: 12px;
  margin-bottom: 0;
}

.lead-box {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  background: #fbfdfc;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(19, 93, 102, 0.18);
  border-color: var(--primary);
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--primary-dark);
  color: white;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a {
  color: white;
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

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

  .nav {
    position: absolute;
    top: 79px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .split,
  .lead-box {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-text {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .hero {
    min-height: auto;
  }

  .grid.three,
  .grid.two,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer,
  .footer-links {
    flex-direction: column;
  }

  .lead-box {
    padding: 24px;
  }
}
