:root {
  --green: #24865d;
  --green-dark: #16543a;
  --green-deep: #0f3c2a;
  --yellow: #f6c335;
  --yellow-soft: rgba(246, 195, 53, 0.16);
  --surface: #ffffff;
  --surface-2: #f6faf7;
  --surface-3: #eef5f1;
  --text: #193328;
  --muted: #66756d;
  --line: rgba(22, 84, 58, 0.12);
  --shadow-sm: 0 10px 25px rgba(17, 49, 35, 0.08);
  --shadow-md: 0 22px 50px rgba(17, 49, 35, 0.14);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1180px;
}

html[data-theme="dark"] {
  --surface: #09120e;
  --surface-2: #0d1713;
  --surface-3: #11201a;
  --text: #ecf5f0;
  --muted: #9bb0a5;
  --line: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 22px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(36, 134, 93, 0.12), transparent 38%),
    radial-gradient(circle at top right, rgba(246, 195, 53, 0.16), transparent 28%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.03em; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); max-width: 720px; }
.section-copy { max-width: 690px; margin-top: 18px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
}
.highlight { color: var(--green); }
.note { font-size: 0.98rem; color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 15px 24px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-outline {
  border-color: rgba(246,195,53,0.45);
  color: var(--green-deep);
  background: rgba(246,195,53,0.08);
}
.btn-block { width: 100%; }
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(22,84,58,0.08);
}
html[data-theme="dark"] .header { background: rgba(9, 18, 14, 0.75); }
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; }
.brand img { width: 50px; height: 50px; }
.brand small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.icon-btn, .menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.68);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}
.menu-toggle { display: none; }
.hero {
  padding: 72px 0 34px;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  opacity: .9;
}
.hero::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(246,195,53,0.28) 0%, rgba(246,195,53,0) 70%);
  top: -90px;
  right: -40px;
}
.hero::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(36,134,93,0.18) 0%, rgba(36,134,93,0) 72%);
  left: -100px;
  bottom: 10px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 5.7rem);
  max-width: 760px;
}
.hero-copy p {
  font-size: 1.08rem;
  max-width: 660px;
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.metric {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.metric strong { display: block; font-size: 1.2rem; margin-bottom: 8px; }
.hero-visual {
  position: relative;
  min-height: 650px;
}
.glass-card {
  position: absolute;
  border-radius: 32px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}
html[data-theme="dark"] .glass-card,
html[data-theme="dark"] .metric,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .trust-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .page-hero-card,
html[data-theme="dark"] .accordion,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .timeline-item,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .stat-band,
html[data-theme="dark"] .story-band,
html[data-theme="dark"] .logo-cloud,
html[data-theme="dark"] .cta-panel,
html[data-theme="dark"] .input,
html[data-theme="dark"] .icon-btn,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .btn-secondary {
  background: rgba(18, 31, 24, 0.72);
  border-color: rgba(255,255,255,0.08);
}
.phone-shell {
  width: min(360px, 100%);
  padding: 16px;
  right: 25px;
  top: 18px;
}
.phone-screen {
  border-radius: 28px;
  background: linear-gradient(180deg, var(--green-deep) 0%, #10291e 100%);
  color: #fff;
  padding: 24px;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.phone-screen::after {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(246,195,53,0.25), transparent 70%);
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .92rem;
  opacity: .88;
}
.balance-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
}
.balance-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.balance-value { font-size: 2.45rem; font-weight: 800; margin-top: 10px; letter-spacing: -0.04em; }
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246,195,53,0.16);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.action-chip {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}
.action-chip span { display: block; font-size: .85rem; margin-top: 8px; opacity: .9; }
.receipt-card {
  background: #fff;
  color: #12281f;
  border-radius: 24px;
  padding: 20px;
  margin-top: auto;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.receipt-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.receipt-line { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(18,40,31,0.08); color: #456154; }
.receipt-line:last-child { border-bottom: 0; }
.float-card {
  width: 230px;
  padding: 22px;
}
.float-top {
  top: 62px;
  left: 10px;
}
.float-bottom {
  bottom: 52px;
  left: 30px;
}
.stat-band, .story-band, .logo-cloud, .cta-panel, .page-hero-card, .accordion, .contact-card, .card, .feature-card, .trust-card, .timeline-item, .pricing-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.logo-cloud, .story-band, .stat-band, .cta-panel { padding: 28px; }
.logo-cloud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.logo-cloud-item {
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-weight: 700;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .trust-card, .card, .timeline-item, .pricing-card { padding: 28px; }
.feature-card h3, .trust-card h3, .card h3, .timeline-item h3, .pricing-card h3 { font-size: 1.35rem; margin: 16px 0 10px; }
.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(246,195,53,0.18), rgba(36,134,93,0.18));
  color: var(--green-deep);
  font-size: 1.5rem;
}
.trust-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.step-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
}
html[data-theme="dark"] .step-card { background: rgba(18, 31, 24, 0.78); border-color: rgba(255,255,255,0.08); }
.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(36,134,93,0.18);
  font-size: 3rem;
  font-weight: 800;
}
.step-card h3 { font-size: 1.55rem; margin: 18px 0 10px; }
.page-hero { padding: 52px 0 18px; }
.page-hero-card { padding: 42px; }
.page-hero-card h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); max-width: 800px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.story-band { display: flex; flex-direction: column; gap: 18px; }
.bullet-list { display: grid; gap: 14px; margin-top: 18px; }
.bullet-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}
.bullet-item strong { display: block; color: var(--text); margin-bottom: 4px; }
.check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  margin-top: 3px;
}
.timeline { display: grid; gap: 18px; }
.timeline-item { position: relative; overflow: hidden; }
.timeline-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--yellow), var(--green));
}
.accordion { padding: 10px; }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 18px;
  text-align: left;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-question span { transition: transform .2s ease; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 18px 24px;
  color: var(--muted);
  max-width: 860px;
}
.faq-item.open .faq-answer { display: block; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.contact-card { padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  background: rgba(255,255,255,0.72);
  color: var(--text);
  font: inherit;
}
textarea.input { min-height: 150px; resize: vertical; }
.contact-stack { display: grid; gap: 16px; margin-top: 24px; }
.contact-item {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(36,134,93,0.96), rgba(15,60,42,0.96));
  color: #fff;
}
.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .price-note { color: rgba(255,255,255,0.78); }
.price { font-size: 2.7rem; font-weight: 800; margin: 18px 0 6px; }
.list-clean { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; color: var(--muted); }
.list-clean li { display: flex; gap: 10px; }
.list-clean li::before { content: "•"; color: var(--green); font-weight: 900; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer { padding: 28px 0 50px; }
.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(36,134,93,0.96), rgba(15,60,42,0.96));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.footer-shell p, .footer-shell a, .footer-shell small { color: rgba(255,255,255,0.82); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.footer-links h4 { margin-bottom: 12px; font-size: 1rem; }
.footer-links a { display: block; margin-bottom: 10px; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .hero-grid, .contact-grid, .trust-strip, .cta-panel, .footer-shell, .story-grid { grid-template-columns: 1fr; }
  .grid-3, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 620px; max-width: 580px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    padding: 18px;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  html[data-theme="dark"] .nav-links { background: #101914; }
  .nav.open .nav-links { display: flex; }
  .nav-cta .btn-secondary { display: none; }
  .hero-grid, .grid-2, .grid-3, .metrics, .step-grid, .pricing-grid, .form-grid, .logo-cloud-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(2.6rem, 11vw, 4.3rem); }
  .phone-shell { position: relative; right: auto; top: auto; margin: 0 auto; }
  .float-card { position: relative; width: 100%; top: auto; left: auto; bottom: auto; margin-top: 16px; }
  .hero-visual { min-height: auto; }
  .page-hero-card, .cta-panel, .feature-card, .trust-card, .card, .timeline-item, .pricing-card, .contact-card, .story-band { padding: 24px; }
  .footer-links { grid-template-columns: 1fr; }
}
