/* ===== TOKENS ===== */
:root {
  --dark:        #f7f6f2;
  --dark-2:      #eeecea;
  --card:        #ffffff;
  --card-2:      #f7f6f2;
  --border:      #e2deda;
  --border-light:#ccc9c3;
  --slate:       #3d4d5e;
  --slate-light: #5a6e82;
  --orange:      #e85d04;
  --orange-h:    #cc5003;
  --orange-glow: rgba(232,93,4,0.12);
  --orange-dim:  rgba(232,93,4,0.07);
  --text:        #18181b;
  --muted:       #6b6866;
  --faint:       #a09d99;
  --white:       #fff;

  --font:        'Inter', system-ui, sans-serif;
  --font-display:'Barlow Condensed', system-ui, sans-serif;

  --r:   12px;
  --r-sm: 8px;
  --r-lg:18px;
  --max-w: 1200px;
  --hh: 72px;

  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
blockquote { font-style: normal; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--dark-2);
}
.section-accent {
  background: linear-gradient(160deg, #f0ede7 0%, #f5f0ea 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  transition: background .18s var(--ease), transform .12s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-h); transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-light);
  transition: border-color .18s, color .18s, transform .12s var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}
.btn-ghost.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--hh);
  background: rgba(247,246,242,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.header.header-scrolled {
  background: rgba(247,246,242,.98);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--hh);
}

/* Logo */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.footer-brand .logo-img { height: 32px; }
.logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -.01em;
}
.logo-fix   { color: var(--slate); }
.logo-guide { color: var(--orange); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.nav a:hover { color: var(--text); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s;
}
.header-phone:hover { color: var(--text); }
.header-phone svg { color: var(--orange); }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: calc(var(--hh) + 64px) 0 80px;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,93,4,.08) 0%, transparent 70%),
              var(--dark);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.07;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

/* Chat mockup */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.chat-mockup {
  width: 100%;
  max-width: 400px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.10), 0 0 0 1px var(--border);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--card-2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.chat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--orange);
}
.chat-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,.12);
  border-radius: 20px;
  padding: 2px 10px;
  letter-spacing: .04em;
}
.chat-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: var(--card-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--orange);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-choices {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chat-choices button {
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.chat-choices button:hover {
  background: var(--orange);
  color: var(--white);
}
.chat-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: var(--card-2);
}
.chat-input-mock {
  flex: 1;
  font-size: 13px;
  color: var(--faint);
  padding: 8px 12px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.chat-send-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.chat-label {
  font-size: 12px;
  color: var(--faint);
  text-align: center;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: start;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  position: relative;
  transition: border-color .2s, transform .2s var(--ease);
}
.step-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  color: var(--faint);
}

/* ===== WIDGET SECTION ===== */
.widget-frame {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 4px;
  box-shadow: 0 0 40px rgba(232,93,4,.10), 0 8px 32px rgba(0,0,0,.08);
  max-width: 860px;
  margin: 0 auto;
}
.widget-note {
  text-align: center;
  font-size: 13px;
  color: var(--faint);
  margin-top: 20px;
}

/* ===== NICHES ===== */
.niches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.niche-coming-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.niche-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}
.niche-live {
  border-color: var(--orange);
  background: linear-gradient(135deg, #ffffff 0%, #fff8f4 100%);
  box-shadow: 0 0 32px var(--orange-glow), 0 4px 16px rgba(0,0,0,.06);
}
.niche-soon {
  opacity: .65;
}
.niche-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.niche-icon {
  width: 52px; height: 52px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.niche-icon-muted {
  background: var(--dark-2);
  border-color: var(--border);
  color: var(--faint);
}
.niche-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.niche-badge.live {
  background: rgba(232,93,4,.15);
  color: var(--orange);
  border: 1px solid rgba(232,93,4,.3);
}
.niche-badge.soon {
  background: var(--dark-2);
  color: var(--faint);
  border: 1px solid var(--border);
}
.niche-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.niche-card p { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.niche-soon p { margin-bottom: 0; }
.niche-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.niche-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.niche-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ===== RESULTS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.testimonial-card blockquote::before { content: '"'; }
.testimonial-card blockquote::after  { content: '"'; }
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial-author strong { font-size: 14px; color: var(--text); }
.testimonial-author span  { font-size: 13px; color: var(--muted); }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-light); }
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-left p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 36px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--faint);
  width: 52px;
  flex-shrink: 0;
}
.contact-value { font-size: 15px; color: var(--text); font-weight: 500; }
a.contact-value:hover { color: var(--orange); }
.contact-note {
  font-size: 13px;
  color: var(--faint);
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--dark-2);
}

/* Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group input.invalid,
.form-group select.invalid { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  font-size: 15px;
  color: #4ade80;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: #1e1c1a;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 280px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s;
}
.footer-phone:hover { color: var(--white); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-soon {
  font-size: 14px;
  color: var(--faint);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--faint);
}
.footer-bottom strong { color: var(--muted); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  :root { --hh: 64px; }
  .section { padding: 72px 0; }

  .nav { display: none; flex-direction: column; gap: 0; position: absolute; top: var(--hh); left: 0; right: 0; background: rgba(247,246,242,.99); border-bottom: 1px solid var(--border); padding: 8px 0 16px; }
  .nav.nav-open { display: flex; }
  .nav a { padding: 12px 24px; font-size: 16px; }

  .nav-toggle { display: flex; }
  .header-actions { display: none; }

  .hero { padding: calc(var(--hh) + 48px) 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-visual { order: -1; }
  .chat-mockup { max-width: 360px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }

  .niches-grid { grid-template-columns: 1fr; }
  .niche-coming-group { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  .hero-ctas { flex-direction: column; }
  .btn-ghost.btn-lg, .btn-primary.btn-lg { width: 100%; justify-content: center; }

  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }

  .niche-coming-group { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
