/* ===== RESET & TOKENS ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #00C853;
  --teal: #00BCD4;
  --text: #1a1a1a;
  --text-sub: #555;
  --text-muted: #888;
  --bg: #ffffff;
  --card: #f7f7f7;
  --border: #eaeaea;
  --gradient: linear-gradient(135deg, var(--green), var(--teal));
  --radius: 14px;
  --max-w: 1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-style: italic; font-size: 13px;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-sub);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gradient); color: #fff !important;
  padding: 7px 18px; border-radius: 8px;
  font-weight: 600; font-size: 0.84rem;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text);
  margin: 5px 0; border-radius: 1px; transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 60px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; }
  .nav-cta { margin: 8px 24px; text-align: center; display: block; }
}

/* ===== HERO ===== */
.hero {
  padding: 150px 24px 90px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -250px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,200,83,0.07) 0%, rgba(0,188,212,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  padding: 5px 14px; border-radius: 20px;
  background: rgba(0,200,83,0.08);
  color: var(--green);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 650px; margin: 0 auto 18px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem; color: var(--text-sub);
  max-width: 460px; margin: 0 auto 36px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: #fff; padding: 14px 30px; border-radius: 12px;
  font-size: 1rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,200,83,0.25);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,200,83,0.32); }

/* ===== SECTIONS ===== */
.section {
  padding: 72px 24px;
  max-width: var(--max-w); margin: 0 auto;
}
.section-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.8px; line-height: 1.15;
  margin-bottom: 14px;
}
.section > p.section-desc {
  font-size: 1rem; color: var(--text-sub);
  max-width: 520px; margin-bottom: 40px;
}

/* ===== STEP CARDS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.05);
}
.step-num {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--gradient);
  color: #fff; font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-sub); line-height: 1.55; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.feature-card {
  padding: 24px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: #fff; font-size: 18px;
}
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.5; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING BANNER ===== */
.pricing-banner {
  padding: 56px 24px;
}
.pricing-inner {
  max-width: var(--max-w); margin: 0 auto;
  background: var(--gradient);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.pricing-inner h2 {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px;
}
.pricing-inner p {
  font-size: 1rem; opacity: 0.9; margin-top: 6px; max-width: 420px;
}
.pricing-cta {
  background: #fff; color: var(--text);
  padding: 12px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s;
  white-space: nowrap;
}
.pricing-cta:hover { transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.84rem; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 24px 80px;
  max-width: 760px; margin: 0 auto;
}
.legal-page h1 {
  font-size: 2rem; font-weight: 800; letter-spacing: -1px;
  margin-bottom: 6px;
}
.legal-meta {
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.15rem; font-weight: 700;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page p,
.legal-page ul { font-size: 0.92rem; color: var(--text-sub); margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--green); text-decoration: underline; }
.legal-page .caps {
  font-size: 0.88rem; text-transform: none; font-weight: 400;
}

/* ===== FAQ ===== */
.faq-list { max-width: 700px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q:hover { color: var(--green); }
.faq-arrow {
  transition: transform 0.25s;
  font-size: 1.2rem; color: var(--text-muted);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.92rem; color: var(--text-sub); line-height: 1.6;
}

/* ===== UTILITIES ===== */
@media (max-width: 600px) {
  .pricing-inner { padding: 32px 24px; text-align: center; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}
