/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: #fafaf8; color: #1a1a1a; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --bg: #fafaf8;
  --bg-alt: #f2f0eb;
  --fg: #1a1a1a;
  --fg-muted: #6b7280;
  --green: #1a3a2a;
  --green-mid: #2d5c42;
  --amber: #f59e0b;
  --amber-light: #fde68a;
  --amber-dim: #fef3c7;
  --white: #ffffff;
  --border: #e5e2da;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 2px 6px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.08);
}

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,250,248,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; 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; }
.nav-wordmark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--green); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 28px; font-size: 0.9rem; font-weight: 500; color: var(--fg-muted); }
.nav-links a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 72px;
  background: linear-gradient(165deg, #f4f9f5 0%, #fafaf8 55%, #faf8f0 100%);
  border-bottom: 1px solid var(--border);
}
.hero-bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.10; pointer-events: none; }
.hero-orb-1 { width: 600px; height: 600px; background: var(--green); top: -200px; left: -150px; }
.hero-orb-2 { width: 500px; height: 500px; background: var(--amber); bottom: -150px; right: -100px; }
.hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--amber-dim); border: 1px solid var(--amber-light); color: #92400e; font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; letter-spacing: 0.02em; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); animation: pulse-dot 2.5s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.75); } }
.hero-headline { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--green); margin-bottom: 20px; }
.headline-accent { color: var(--fg); }
.hero-sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 28px; max-width: 460px; }
.hero-pitch-row { display: flex; flex-direction: column; gap: 10px; }
.pitch-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--green); }

/* ===== WIDGET MOCKUP ===== */
.hero-widget-mockup { position: relative; }
.widget-window { background: var(--white); border-radius: 16px; box-shadow: var(--card-shadow-hover); border: 1px solid var(--border); overflow: hidden; }
.widget-header { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: var(--green); }
.widget-header-dots { display: flex; gap: 5px; }
.widget-header-dots span { width: 9px; height: 9px; border-radius: 50%; }
.widget-header-dots span:first-child { background: #f87171; }
.widget-header-dots span:nth-child(2) { background: #facc15; }
.widget-header-dots span:nth-child(3) { background: #4ade80; }
.widget-header-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.widget-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.chat-msg { display: flex; align-items: flex-end; gap: 7px; }
.chat-msg.chat-outgoing { flex-direction: row-reverse; }
.chat-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: white; font-size: 0.62rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-bubble { padding: 9px 13px; border-radius: 13px; font-size: 0.82rem; line-height: 1.45; max-width: 76%; }
.incoming-bubble { background: var(--bg-alt); color: var(--fg); border-bottom-left-radius: 4px; }
.outgoing-bubble { background: var(--green); color: white; border-bottom-right-radius: 4px; }
.book-bubble { background: var(--amber-dim); color: #92400e; border: 1px solid var(--amber-light); }
.widget-input-row { display: flex; align-items: center; gap: 7px; padding: 9px 12px; background: var(--bg-alt); border-radius: 9px; margin-top: 4px; }
.widget-input { flex: 1; font-size: 0.78rem; color: var(--fg-muted); }
.widget-send { color: var(--green); }
.widget-callouts { position: absolute; bottom: -18px; left: -36px; display: flex; flex-direction: column; gap: 7px; }
.callout { display: flex; align-items: center; gap: 6px; background: white; border: 1px solid var(--border); border-radius: 20px; padding: 6px 11px; font-size: 0.7rem; font-weight: 500; color: var(--fg); box-shadow: var(--card-shadow); white-space: nowrap; }

/* ===== PROOF BAR ===== */
.proof-bar { background: var(--green); padding: 18px 24px; }
.proof-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.proof-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.proof-stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.proof-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--amber); letter-spacing: -0.02em; }
.stat-desc { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.proof-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.12); }

/* ===== SECTION COMMONS ===== */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.section-headline { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; color: var(--fg); max-width: 560px; line-height: 1.18; }
.section-header-center .section-headline { max-width: 100%; }
.section-sub { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; margin-top: 14px; max-width: 520px; }
.section-header-center .section-sub { max-width: 480px; margin: 14px auto 0; }

/* ===== WHAT WE DO ===== */
.what-we-do { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--card-shadow); transition: box-shadow 0.22s ease, transform 0.22s ease; }
.service-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.service-icon { width: 48px; height: 48px; background: #f0f7f2; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--green); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--fg); }
.service-card p { font-size: 0.87rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 16px; }
.service-detail { font-size: 0.78rem; font-weight: 600; color: var(--green); padding: 8px 12px; background: #f0f7f2; border-radius: 8px; border-left: 3px solid var(--amber); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-row { display: flex; align-items: flex-start; gap: 24px; }
.step { flex: 1; }
.step-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 800; color: var(--amber); letter-spacing: 0.1em; margin-bottom: 12px; }
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.step-body { font-size: 0.87rem; color: var(--fg-muted); line-height: 1.6; }
.step-connector { flex-shrink: 0; display: flex; align-items: center; padding-top: 24px; }

/* ===== OUTCOMES ===== */
.outcomes { padding: 80px 0; background: var(--green); color: white; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.outcomes-accent { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.outcomes-headline { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; color: white; margin-bottom: 16px; line-height: 1.15; }
.outcomes-body { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 32px; }
.outcome-list { display: flex; flex-direction: column; gap: 16px; }
.outcome-item { display: flex; align-items: flex-start; gap: 12px; }
.outcome-item svg { flex-shrink: 0; margin-top: 1px; }
.outcome-item strong { font-weight: 600; font-size: 0.9rem; color: white; }
.outcome-item span { font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px; }
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--amber); letter-spacing: -0.03em; margin-bottom: 6px; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.45; }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 28px; position: relative; box-shadow: var(--card-shadow); }
.pricing-card-featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green), var(--card-shadow); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; font-size: 0.7rem; font-weight: 700; padding: 5px 16px; border-radius: 100px; letter-spacing: 0.05em; white-space: nowrap; }
.pricing-tier-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.price-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--fg); letter-spacing: -0.03em; }
.price-period { font-size: 0.85rem; color: var(--fg-muted); }
.pricing-desc { font-size: 0.84rem; color: var(--fg-muted); line-height: 1.55; margin-bottom: 20px; }
.pricing-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--fg); line-height: 1.4; }
.pricing-features li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23fde68a'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-5' stroke='%2392400e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center; }
.pricing-cta { font-size: 0.76rem; color: var(--fg-muted); padding-top: 16px; border-top: 1px solid var(--border); }
.pricing-note { text-align: center; font-size: 0.83rem; color: var(--fg-muted); margin-top: 28px; }

/* ===== CLOSING ===== */
.closing { padding: 80px 24px; background: linear-gradient(165deg, #f4f9f5 0%, #fafaf8 100%); border-top: 1px solid var(--border); text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-icon { margin-bottom: 28px; display: flex; justify-content: center; }
.closing-headline { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--green); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 16px; }
.closing-sub { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; max-width: 500px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer { padding: 32px 24px; border-top: 1px solid var(--border); text-align: center; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
.footer-wordmark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--green); }
.footer-tagline { font-size: 0.84rem; color: var(--fg-muted); margin-bottom: 8px; }
.footer-copy { font-size: 0.76rem; color: #9ca3af; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-widget-mockup { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-connector { display: none; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-bar-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .proof-stats { gap: 14px; }
  .proof-divider { display: none; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .section-headline { font-size: 1.8rem; }
  .hero-headline { font-size: 2.2rem; }
}