/* =========================================================
   AdaptJitsu — Spring Green Light Theme
   Accent: #22C55E  |  Supporting: #16A34A / #BBF7D0 / #0A2212
   Background: #F8FAF6  |  Text: #12160F
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #12160F;
  background-color: #F8FAF6;
  overflow-x: hidden;
}

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

a {
  color: #16A34A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0A2212;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTERFLY NAVIGATION ---------- */
.butterfly-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4EFE0;
  box-shadow: 0 2px 12px rgba(18, 22, 15, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #12160F;
  text-decoration: none;
}

.wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0A2212;
}

/* CSS-drawn butterfly */
.butterfly {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 32px;
  flex-shrink: 0;
}

.wing {
  position: absolute;
  background-color: #22C55E;
  box-shadow: inset 0 0 0 1px rgba(10, 34, 18, 0.06);
}

.wing-tl {
  top: 6px;
  left: 2px;
  width: 15px;
  height: 12px;
  border-radius: 90% 20% 70% 40%;
  background: linear-gradient(135deg, #4ADE80, #22C55E);
}

.wing-tr {
  top: 6px;
  right: 2px;
  width: 15px;
  height: 12px;
  border-radius: 20% 90% 40% 70%;
  background: linear-gradient(225deg, #4ADE80, #22C55E);
}

.wing-bl {
  top: 17px;
  left: 5px;
  width: 11px;
  height: 9px;
  border-radius: 90% 30% 80% 40%;
  background: linear-gradient(135deg, #16A34A, #22C55E);
}

.wing-br {
  top: 17px;
  right: 5px;
  width: 11px;
  height: 9px;
  border-radius: 30% 90% 40% 80%;
  background: linear-gradient(225deg, #16A34A, #22C55E);
}

.bfly-body {
  position: absolute;
  top: 4px;
  left: 16px;
  width: 2px;
  height: 24px;
  background-color: #0A2212;
  border-radius: 2px;
}

.antenna {
  position: absolute;
  top: 0;
  width: 1.5px;
  height: 7px;
  background-color: #0A2212;
  border-radius: 2px;
}

.antenna::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -1.5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0A2212;
}

.antenna-l {
  left: 11px;
  transform: rotate(-24deg);
  transform-origin: bottom center;
}

.antenna-r {
  right: 11px;
  transform: rotate(24deg);
  transform-origin: bottom center;
}

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

.nav-links a {
  color: #33422E;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
}

.nav-links a:hover {
  color: #16A34A;
}

.nav-cta {
  display: inline-block;
  background-color: #22C55E;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #16A34A;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background-color: #16A34A;
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #0A2212;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- HERO: WATER DROP ---------- */
.drop-hero {
  background: linear-gradient(180deg, #F0FBF2 0%, #F8FAF6 100%);
  padding: 80px 0 72px;
  border-bottom: 1px solid #E4EFE0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  color: #16A34A;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0A2212;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #33422E;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 9px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #22C55E;
  color: #FFFFFF;
  border: 1px solid #16A34A;
}

.btn-primary:hover {
  background-color: #16A34A;
  color: #FFFFFF;
}

.btn-ghost {
  background-color: transparent;
  color: #16A34A;
  border: 2px solid #16A34A;
}

.btn-ghost:hover {
  background-color: #BBF7D0;
  color: #0A2212;
}

.btn-light {
  background-color: #FFFFFF;
  color: #0A2212;
  border: 1px solid #FFFFFF;
}

.btn-light:hover {
  background-color: #BBF7D0;
  color: #0A2212;
}

.hero-note {
  font-size: 0.9rem;
  color: #55654C;
}

/* Water drop visual */
.drop-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

.drop-shape {
  position: relative;
  width: 150px;
  height: 150px;
  background: linear-gradient(160deg, #86EFAC 0%, #22C55E 45%, #16A34A 100%);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 24px 60px rgba(22, 163, 74, 0.35), 0 0 0 10px rgba(187, 247, 208, 0.35);
  z-index: 2;
}

.drop-highlight {
  position: absolute;
  top: 28px;
  left: 34px;
  width: 20px;
  height: 42px;
  background-color: #ECFDF5;
  border-radius: 50%;
  transform: rotate(30deg);
}

.drop-dot {
  position: absolute;
  bottom: 32px;
  right: 28px;
  width: 12px;
  height: 12px;
  background-color: #BBF7D0;
  border-radius: 50%;
}

.ripple {
  position: absolute;
  border: 2px solid rgba(34, 197, 94, 0.5);
  border-radius: 50%;
  z-index: 1;
}

.ripple-1 {
  bottom: 24px;
  width: 180px;
  height: 46px;
}

.ripple-2 {
  bottom: 6px;
  width: 260px;
  height: 56px;
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.ripple-3 {
  bottom: -14px;
  width: 340px;
  height: 66px;
  border: 2px solid rgba(34, 197, 94, 0.15);
}

/* ---------- STATEMENT BAND ---------- */
.statement-band {
  background-color: #0A2212;
  padding: 72px 0;
}

.statement-text {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #BBF7D0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- STAT COLUMNS ---------- */
.stats-section {
  padding: 84px 0;
  background-color: #F8FAF6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-col {
  text-align: center;
  padding: 36px 28px;
  background-color: #FFFFFF;
  border: 1px solid #E4EFE0;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(18, 22, 15, 0.05);
}

.stat-num {
  display: block;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #16A34A;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0A2212;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.92rem;
  color: #55654C;
}

/* ---------- PROCESS LIST ---------- */
.process-section {
  padding: 84px 0;
  background-color: #F0FBF2;
  border-top: 1px solid #E4EFE0;
  border-bottom: 1px solid #E4EFE0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0A2212;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.08rem;
  color: #33422E;
}

.process-list {
  list-style: none;
  counter-reset: step;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 44px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 29px;
  width: 2px;
  height: calc(100% - 52px);
  background-color: #BBF7D0;
}

.process-step:last-child::before {
  display: none;
}

.step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #22C55E;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  border: 3px solid #BBF7D0;
  position: relative;
  z-index: 2;
}

.step-body h3 {
  font-size: 1.25rem;
  color: #0A2212;
  margin-bottom: 6px;
}

.step-body p {
  color: #33422E;
  font-size: 1rem;
}

/* ---------- COMPARISON TABLE ---------- */
.compare-section {
  padding: 84px 0;
  background-color: #F8FAF6;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(18, 22, 15, 0.06);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #E4EFE0;
  font-size: 0.95rem;
}

.compare-table thead th {
  background-color: #0A2212;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
}

.compare-table thead th:first-child {
  background-color: #16A34A;
}

.compare-table tbody th {
  background-color: #F0FBF2;
  color: #0A2212;
  font-weight: 700;
  white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- HORIZONTAL SCROLL PROGRAMS ---------- */
.programs-section {
  padding: 84px 0;
  background-color: #0A2212;
}

.programs-section .section-title {
  color: #FFFFFF;
}

.programs-section .section-lead {
  color: #BBF7D0;
}

.programs-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  max-width: 1160px;
  margin: 0 auto;
}

.program-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  border-top: 4px solid #22C55E;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-tag {
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16A34A;
  background-color: #BBF7D0;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-title {
  font-size: 1.3rem;
  color: #0A2212;
}

.card-text {
  color: #33422E;
  font-size: 0.95rem;
  flex-grow: 1;
}

.card-meta {
  font-size: 0.85rem;
  color: #16A34A;
  font-weight: 700;
}

/* ---------- TABBED GOALS ---------- */
.goals-section {
  padding: 84px 0;
  background-color: #F0FBF2;
  border-top: 1px solid #E4EFE0;
}

.tabs {
  max-width: 820px;
  margin: 0 auto;
}

.tab-bar {
  display: flex;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid #E4EFE0;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 24px;
}

.tab-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background-color: transparent;
  color: #33422E;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tab-btn:hover {
  background-color: #F0FBF2;
}

.tab-btn.is-active {
  background-color: #22C55E;
  color: #FFFFFF;
}

.tab-panels {
  background-color: #FFFFFF;
  border: 1px solid #E4EFE0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(18, 22, 15, 0.05);
}

.tab-panel h3 {
  font-size: 1.3rem;
  color: #0A2212;
  margin-bottom: 10px;
}

.tab-panel p {
  color: #33422E;
  font-size: 1rem;
  margin-bottom: 16px;
}

.tab-panel ul {
  color: #33422E;
  padding-left: 22px;
  margin: 0;
}

.tab-panel li {
  margin-bottom: 8px;
}

/* ---------- APPROACH ---------- */
.approach-section {
  padding: 84px 0;
  background-color: #F8FAF6;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.approach-lead {
  font-size: 1.05rem;
  color: #33422E;
  margin-bottom: 18px;
}

.approach-principles {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.principle {
  background-color: #FFFFFF;
  border: 1px solid #E4EFE0;
  border-left: 4px solid #22C55E;
  border-radius: 12px;
  padding: 22px 24px;
}

.principle h3 {
  font-size: 1.15rem;
  color: #0A2212;
  margin-bottom: 6px;
}

.principle p {
  color: #33422E;
  font-size: 0.95rem;
}

/* ---------- SPLIT CTA BAND ---------- */
.cta-band {
  background-color: #22C55E;
  padding: 72px 0;
}

.cta-split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0A2212;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 1.05rem;
  color: #0A2212;
}

.cta-action {
  display: flex;
  justify-content: flex-end;
}

/* ---------- CONTACT ---------- */
.contact-section {
  padding: 84px 0;
  background-color: #F8FAF6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #0A2212;
  margin-bottom: 18px;
}

.contact-line {
  margin-bottom: 12px;
  color: #33422E;
  font-size: 1rem;
}

.contact-label {
  display: inline-block;
  min-width: 82px;
  font-weight: 700;
  color: #0A2212;
}

.contact-form {
  background-color: #FFFFFF;
  border: 1px solid #E4EFE0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(18, 22, 15, 0.05);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-weight: 700;
  color: #0A2212;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D4E4CE;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #12160F;
  background-color: #F8FAF6;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #22C55E;
  outline-offset: 1px;
  border-color: #22C55E;
}

.form-status {
  margin-top: 14px;
  font-weight: 600;
  color: #16A34A;
  min-height: 1.2em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: #0A2212;
  border-top: 4px solid #22C55E;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: #BBF7D0;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-col p {
  color: #C7D9C0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: #C7D9C0;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #1E3B2A;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #8AA887;
  font-size: 0.85rem;
}

/* ---------- SCROLL REVEAL ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub {
    max-width: 620px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .drop-visual {
    height: 260px;
  }

  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-action {
    justify-content: center;
  }

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

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E4EFE0;
    box-shadow: 0 12px 24px rgba(18, 22, 15, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 340px;
  }

  .nav-links a {
    padding: 16px 24px;
    border-top: 1px solid #F0FBF2;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .statement-text {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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