/* ── VARIABLES ── */
:root {
  --bg:          #000000;
  --surface:     #111111;
  --surface2:    #1A1A1A;
  --border:      #222222;
  --border-h:    #333333;
  --orange:      #FF6B2B;
  --orange-glow: rgba(255,107,43,0.12);
  --green:       #4CAF50;
  --red:         #CF6679;
  --text:        #FFFFFF;
  --text-muted:  #9E9E9E;
  --text-dim:    #555555;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 100px;
  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:  64px;
  --t:      0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; flex-shrink: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 700px; margin: 0 auto; padding: 0 24px; }
.divider { border: none; border-top: 1px solid var(--border); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible { opacity: 1; transform: none; transition: none; }
}

/* ── BUTTONS ── */
.btn-ghost {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: none;
  background: none;
  transition: color var(--t);
}
.btn-ghost:hover { color: var(--text); }

.btn-primary {
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  transition: background var(--t), transform 0.1s;
}
.btn-primary:hover { background: #FF7D45; }
.btn-primary:active { transform: scale(0.97); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo span { color: var(--orange); }

.nav-links {
  display: none;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
}
.nav-link:hover { color: var(--text); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

@media (min-width: 768px) {
  .nav-links { display: flex; align-items: center; }
}

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* ── HERO ── */
.hero { padding: 72px 0 80px; }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255,107,43,0.22);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(58px, 11vw, 84px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.btn-hero {
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 700;
  border: none;
  transition: all var(--t);
}
.btn-hero-primary { background: var(--orange); color: #fff; }
.btn-hero-primary:hover { background: #FF7D45; }
.btn-hero-secondary {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-hero-secondary:hover { color: var(--text); border-color: var(--border-h); }

.hero-note { font-size: 13px; color: var(--text-dim); }

.social-proof {
  display: flex;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  margin-top: 36px;
}
.stat-num {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ── HERO PHONE MOCKUP ── */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
}
.hero-phone {
  width: 300px;
  background: #111111;
  border: 1px solid #222222;
  border-radius: 38px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}
.hp-notch-row {
  height: 34px;
  background: #000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hp-notch {
  width: 88px;
  height: 22px;
  background: #000;
  border: 1px solid #222;
  border-radius: 0 0 16px 16px;
}
.hp-appbar {
  background: #111;
  padding: 12px 18px 0;
  border-bottom: 1px solid #2A2A2A;
}
.hp-appbar-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.hp-tabs {
  display: flex;
  margin-top: 6px;
}
.hp-tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
}
.hp-tab.active { color: #fff; border-bottom: 2px solid #FF6B2B; }
.hp-tab.inactive { color: #9E9E9E; border-bottom: 2px solid transparent; }

.hp-body { padding: 14px 16px; }

.hp-client {
  background: #1C1C1C;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hp-dot.green { background: #4CAF50; box-shadow: 0 0 8px rgba(76,175,80,0.45); }
.hp-dot.red   { background: #CF6679; box-shadow: 0 0 8px rgba(207,102,121,0.45); }
.hp-client-info { flex: 1; min-width: 0; }
.hp-client-name { font-size: 13px; font-weight: 700; color: #fff; }
.hp-client-user { font-size: 11px; color: #9E9E9E; margin-top: 2px; }
.hp-client-date { font-size: 10px; color: #555; margin-top: 3px; }
.hp-chevron { color: #555; }

.hp-fab {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  padding-right: 2px;
}
.hp-fab-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FF6B2B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,43,0.4);
}

.hp-bnav {
  background: #0A0A0A;
  border-top: 0.5px solid #2A2A2A;
  display: flex;
  padding: 7px 0 12px;
}
.hp-tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hp-tab-label { font-size: 9px; }
.hp-tab-label.active  { color: #FF6B2B; font-weight: 600; }
.hp-tab-label.inactive { color: #555; }

@media (min-width: 900px) {
  .hero { padding: 100px 0 96px; }
  .hero-layout {
    grid-template-columns: 1fr 400px;
    gap: 64px;
  }
  .hero-ctas { flex-direction: row; }
  .btn-hero { flex: 1; }
  .hero-phone-wrap { justify-content: flex-end; }
  .hero-phone { width: 320px; }
}

/* ── FEATURES ── */
.features-section { padding: 80px 0; }
.features-header { text-align: center; margin-bottom: 48px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t), transform var(--t);
}
.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--orange-glow);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-family: var(--font-d);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

@media (min-width: 640px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── HOW IT WORKS ── */
.steps-section { padding: 80px 0; }
.steps-header { text-align: center; margin-bottom: 48px; }

.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

@media (min-width: 900px) {
  .steps {
    flex-direction: row;
    gap: 0;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--border);
  }
  .step {
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 0 32px 0 0;
    border-bottom: none;
  }
  .step:last-child { padding-right: 0; }
  .step-num { position: relative; z-index: 1; }
}

/* ── PRICING ── */
.pricing-section { padding: 80px 0; }
.pricing-header { text-align: center; margin-bottom: 40px; }

.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pricing-top {
  background: linear-gradient(135deg, rgba(255,107,43,0.12), rgba(255,107,43,0.03));
  border-bottom: 1px solid var(--border);
  padding: 36px 32px;
  text-align: center;
}
.pricing-plan {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.price-currency { font-size: 20px; font-weight: 600; margin-top: 10px; color: var(--text-muted); }
.price-amount {
  font-family: var(--font-d);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
}
.price-period { font-size: 16px; color: var(--text-muted); margin-top: 50px; }
.pricing-tagline { font-size: 14px; color: var(--text-muted); }

.pricing-features { padding: 24px 32px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.pricing-feature:last-child { border-bottom: none; }
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(76,175,80,0.1);
  color: var(--green);
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.pricing-cta { padding: 0 32px 32px; }
.btn-pricing {
  width: 100%;
  padding: 16px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  border: none;
  transition: background var(--t);
}
.btn-pricing:hover { background: #FF7D45; }
.pricing-guarantee {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ── FAQ ── */
.faq-section { padding: 80px 0; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface2);
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t), background var(--t), color var(--t);
}
.faq-answer {
  display: none;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-glow);
  color: var(--orange);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(160deg, rgba(255,107,43,0.07) 0%, transparent 55%);
  border-top: 1px solid rgba(255,107,43,0.12);
  border-bottom: 1px solid rgba(255,107,43,0.12);
}
.final-cta h2 {
  font-family: var(--font-d);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.final-cta h2 em { font-style: normal; color: var(--orange); }
.final-cta p { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.btn-cta-large {
  display: inline-block;
  padding: 18px 44px;
  border-radius: var(--r-md);
  font-size: 17px;
  font-family: var(--font-b);
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  border: none;
  transition: background var(--t), transform 0.1s;
}
.btn-cta-large:hover { background: #FF7D45; }
.btn-cta-large:active { transform: scale(0.98); }
.cta-note { margin-top: 16px; font-size: 13px; color: var(--text-dim); }

/* ── FOOTER ── */
footer {
  padding: 44px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 900;
}
.footer-logo span { color: var(--orange); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t);
  display: flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--text); }
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: opacity var(--t);
}
.wa-link:hover { opacity: 0.88; }
.footer-copy { font-size: 12px; color: var(--text-dim); }

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
  .footer-links { justify-content: flex-start; }
}

/* ── APP SCREENS (desktop only) ── */
.screens-section { display: none; padding: 80px 0; overflow: hidden; }
@media (min-width: 900px) { .screens-section { display: block; } }
.screens-header { text-align: center; margin-bottom: 56px; }
.screens-row { display: flex; align-items: flex-end; justify-content: center; gap: 20px; }

.sw-l { animation: sw-l 5.5s ease-in-out infinite; }
.sw-c { animation: sw-c 5.5s ease-in-out infinite 0.9s; }
.sw-r { animation: sw-r 5.5s ease-in-out infinite 1.8s; }

@keyframes sw-l {
  0%, 100% { transform: rotate(-5deg) translateY(18px); }
  50%       { transform: rotate(-5deg) translateY(4px); }
}
@keyframes sw-c {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes sw-r {
  0%, 100% { transform: rotate(5deg) translateY(18px); }
  50%       { transform: rotate(5deg) translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .sw-l { animation: none; transform: rotate(-5deg) translateY(18px); }
  .sw-c { animation: none; }
  .sw-r { animation: none; transform: rotate(5deg) translateY(18px); }
}

.sframe {
  width: 196px;
  background: #111111;
  border: 1px solid #222222;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.03);
}
.sframe.featured {
  width: 228px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,107,43,0.14);
}
.sf-notch-row { height: 26px; background: #000; display: flex; align-items: flex-start; justify-content: center; }
.sf-notch { width: 66px; height: 17px; border: 1px solid #222; border-radius: 0 0 11px 11px; background: #111; }
