/* ===== VARIABLES ===== */
:root {
  --primary: #10b981;
  --primary-hover: #059669;
  --primary-light: #d1fae5;
  --text: #1a1a2e;
  --text-mid: #4a4a68;
  --text-light: #8888a4;
  --bg: #fafaf9;
  --bg-white: #ffffff;
  --bg-warm: #f5f0eb;
  --border: #e8e4df;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 10px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ===== UTILITIES ===== */
.container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-hover); }
.btn--small { padding: 8px 18px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1da851; }
.btn--fb { background: #0084FF; color: #fff; }
.btn--fb:hover { background: #006acc; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 250, 249, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 56px; max-width: 820px; }
.nav__logo { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.5px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 640px) {
  .nav__links { display: none; position: absolute; top: 56px; left: 0; right: 0; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 14px; }
  .nav__links--open { display: flex; }
  .nav .btn--small { display: none; }
  .nav__toggle { display: flex; }
}

/* ===== HERO ===== */
.hero { padding: 120px 0 60px; }
.hero__eyebrow { font-size: 0.85rem; font-weight: 500; color: var(--primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px; }
.hero__sub { font-size: 1.1rem; color: var(--text-mid); max-width: 540px; margin-bottom: 28px; line-height: 1.7; }
.hero__cta { margin-bottom: 40px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__stat { font-size: 0.9rem; color: var(--text-light); }
.hero__stat-num { font-family: var(--font-mono); font-weight: 700; color: var(--text); }
.hero__stat-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* ===== WHAT WE DO ===== */
.what { padding: 64px 0; }
.what h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.what__sub { color: var(--text-mid); font-size: 1rem; margin-bottom: 32px; }
.what__grid { display: flex; flex-direction: column; gap: 0; }
.what__item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.what__item:first-child { border-top: 1px solid var(--border); }
.what__emoji { font-size: 1.6rem; flex-shrink: 0; width: 40px; text-align: center; padding-top: 2px; }
.what__item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.what__item p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 6px; }
.what__from { font-family: var(--font-mono); font-size: 0.8rem; color: var(--primary); font-weight: 700; }

/* ===== HOW ===== */
.how { padding: 48px 0; background: var(--bg-warm); border-radius: 16px; margin: 0 auto; max-width: 820px; }
.how .container { max-width: 720px; }
.how__flow { display: flex; align-items: flex-start; gap: 16px; justify-content: center; }
.how__step { flex: 1; text-align: center; }
.how__circle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--primary);
  color: #fff; font-weight: 700; font-size: 0.9rem; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 12px;
}
.how__step p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
.how__step strong { color: var(--text); }
.how__arrow { color: var(--border); font-size: 1.4rem; padding-top: 4px; flex-shrink: 0; }

@media (max-width: 640px) {
  .how__flow { flex-direction: column; align-items: center; }
  .how__arrow { transform: rotate(90deg); }
}

/* ===== PRICING ===== */
.pricing { padding: 64px 0; }
.pricing h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.pricing__sub { color: var(--text-mid); margin-bottom: 32px; font-size: 1rem; }
.pricing__card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px; max-width: 440px;
}
.pricing__top { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.pricing__from { font-size: 0.9rem; color: var(--text-light); }
.pricing__amount { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700; color: var(--primary); }
.pricing__perks { margin-bottom: 28px; }
.pricing__perks li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text-mid);
}
.pricing__perks li::before { content: "\2713\0020"; color: var(--primary); font-weight: 700; }

/* ===== FAQ ===== */
.questions { padding: 64px 0; }
.questions h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; }
.faq__list { max-width: 620px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  padding: 18px 0; font-weight: 600; font-size: 0.95rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--text-light); }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { padding: 0 0 18px; color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; }

/* ===== CTA ===== */
.cta { padding: 80px 0; text-align: center; }
.cta h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.cta p { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 28px; }

/* ===== FOOTER ===== */
.footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__brand { font-weight: 700; font-size: 1rem; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 0.85rem; color: var(--text-light); transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.footer__copy { font-size: 0.8rem; color: var(--text-light); }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; text-align: center; }
}

/* ===== PRINT ===== */
@media print {
  .nav, .cta, .footer { display: none; }
  body { color: #000; background: #fff; }
}
