@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07080F;
  --surface: rgba(255,255,255,0.05);
  --surface-hover: rgba(255,255,255,0.09);
  --border: rgba(255,255,255,0.10);
  --accent: #00D68F;
  --accent-dim: rgba(0,214,143,0.15);
  --accent-glow: rgba(0,214,143,0.35);
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.55);
  --text-sub: rgba(255,255,255,0.35);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,214,143,0.3); border-radius: 3px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,8,15,0.75);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: #000000;
}

.nav-logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.nav-logo-text {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

.nav-links {
  display: flex; gap: 4px;
  list-style: none;
}

.nav-link {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.18s;
  letter-spacing: -0.1px;
}

.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active { color: var(--accent); background: var(--accent-dim); }

.nav-cta {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  color: #000;
  background: var(--accent);
  text-decoration: none;
  transition: all 0.18s;
  letter-spacing: -0.1px;
}

.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

[data-nav-badge] {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.18s;
}
[data-nav-badge]:hover { border-color: rgba(0,214,143,0.3); color: var(--text); background: var(--surface-hover); }

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

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-burger:hover { background: var(--surface); }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(7,8,15,0.97);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  z-index: 99;
  overflow-y: auto;
  flex-direction: column;
  padding: 16px 20px 40px;
}
.nav-mobile.open { display: flex; }

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}
.nav-mobile-link {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px; font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-mobile-link:hover { color: var(--text); background: var(--surface); }
.nav-mobile-link.active { color: var(--accent); background: var(--accent-dim); }

.nav-mobile-sep {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-actions [data-nav-badge] {
  text-align: center;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}
.nav-mobile-actions .nav-cta {
  text-align: center;
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 12px;
}

/* ── HERO ── */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

/* ── PHONE MOCKUP ── */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
}

.pulse-ring {
  position: absolute;
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  margin-top: -150px; margin-left: -150px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: pulse-out 3s ease-out infinite;
}
.pulse-ring:nth-child(2) { animation-delay: 1s; }
.pulse-ring:nth-child(3) { animation-delay: 2s; }

@keyframes pulse-out {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.phone-glow {
  position: absolute;
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,214,143,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.phone-mockup {
  width: 220px; height: 440px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-notch { width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.2); margin: 0 auto 4px; }
.phone-label { font-size: 11px; color: var(--text-sub); text-align: center; margin-bottom: 4px; }

.phone-live {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,214,143,0.1);
  border: 1px solid rgba(0,214,143,0.2);
  border-radius: 20px;
  padding: 6px 12px;
}

.phone-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.phone-live-text { font-size: 11px; color: var(--accent); font-weight: 600; }

.phone-stat {
  background: rgba(0,214,143,0.1);
  border: 1px solid rgba(0,214,143,0.2);
  border-radius: 12px;
  padding: 12px;
}

.phone-stat-num { font-size: 28px; font-weight: 800; color: var(--accent); letter-spacing: -1px; }
.phone-stat-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.phone-bars { margin-top: 4px; display: flex; flex-direction: column; gap: 6px; }
.phone-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.phone-bar.accent { background: var(--accent); width: 60%; }
.phone-bar.short { width: 40%; }

.phone-estimate {
  margin-top: auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
}

.phone-est-label { font-size: 10px; color: var(--text-sub); margin-bottom: 4px; }
.phone-est-amount { font-size: 22px; font-weight: 800; letter-spacing: -1px; }
.phone-est-badge { font-size: 10px; color: var(--accent); margin-top: 2px; }

/* ── GLASS ── */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-hover {
  transition: all 0.22s ease;
}
.glass-hover:hover {
  background: var(--surface-hover);
  border-color: rgba(0,214,143,0.2);
  transform: translateY(-2px);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,214,143,0.2);
  margin-bottom: 20px;
}

/* ── TYPOGRAPHY ── */
.h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.0;
}

.h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
}

.h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.accent { color: var(--accent); }

/* ── SECTION ── */
.section {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 32px;
}

/* ── STORE BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(0,214,143,0.3);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  border: 1px solid transparent;
  color: #000;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); border-color: transparent; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); transform: translateY(-1px); }

/* ── STATS ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.stat-item {
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.stat-num {
  font-size: 36px; font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
}

.stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── FEATURES ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feat-card {
  padding: 28px;
  border-radius: 20px;
}

.feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,214,143,0.15);
}

.feat-icon i { color: var(--accent); font-size: 22px; }
.badge i { font-size: 13px; }
.btn i { font-size: 16px; }
.step-num i { font-size: 18px; color: var(--accent); }
.cta-box > i { font-size: 40px; color: var(--accent); margin-bottom: 16px; display: block; }
.info-box i { font-size: 24px; color: var(--accent); flex-shrink: 0; }

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 36px;
  border-radius: 20px;
  position: relative;
}

.testimonial-quote-mark {
  font-size: 56px;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 13px; color: var(--text-sub); margin-top: 2px; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.pricing-card {
  padding: 36px;
  border-radius: 24px;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(0,214,143,0.12), rgba(0,214,143,0.04));
  border-color: rgba(0,214,143,0.35);
}

.pricing-tag {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-tag.featured-tag { color: var(--accent); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 4px;
  line-height: 1;
}
.pricing-amount .price-num {
  font-size: 52px; font-weight: 800;
  letter-spacing: -3px;
}
.pricing-amount .price-month {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px;
}

.pricing-per {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.pricing-feature:last-of-type { border-bottom: none; }

.check { color: var(--accent); font-size: 15px; font-weight: 700; }

/* ── INTEGRATIONS ── */
.integ-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.integ-chip {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px; font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}

.integ-chip:hover {
  border-color: rgba(0,214,143,0.3);
  color: var(--text);
  background: var(--surface-hover);
}

/* ── FAQ ── */
.faq-category {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 40px 0 16px;
}

.faq-category:first-child { margin-top: 0; }

.faq-item {
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.2px;
  transition: color 0.15s;
  font-family: inherit;
}

.faq-q:hover { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-chevron.open { transform: rotate(180deg); }

.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  display: none;
}

.faq-a.open { display: block; }

.faq-a ol, .faq-a ul {
  padding-left: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── FOOTER ── */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 64px 32px 40px;
  margin-top: 40px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-row {
  display: flex; align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: #000000;
}

.footer-logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.footer-logo-text { font-weight: 700; font-size: 18px; letter-spacing: -0.5px; }

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-apps { display: flex; gap: 10px; margin-top: 20px; align-items: center; }

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  border: none;
  transition: opacity 0.18s;
}
.app-badge:hover { opacity: 0.85; }
.app-badge i { font-size: 22px; flex-shrink: 0; }
.app-badge-labels { display: flex; flex-direction: column; line-height: 1.2; font-family: system-ui, -apple-system, sans-serif; }
.app-badge-sub  { font-size: 9px;  font-weight: 400; letter-spacing: 0.1px; }
.app-badge-name { font-size: 15px; font-weight: 700; letter-spacing: -0.3px; }

.app-badge-android {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--text); }
.footer-link.current { color: var(--accent); }

.footer-copy {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-sub);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy a { color: var(--text-sub); text-decoration: none; }
.footer-copy a:hover { color: var(--text-muted); }

/* ── INFO BOX ── */
.info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 14px;
  margin-top: 20px;
}

.info-box-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  counter-reset: step;
}

.step {
  padding: 28px;
  border-radius: 20px;
  position: relative;
}

.step-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,214,143,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── CTA SECTION ── */
.cta-box {
  padding: 56px 48px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,214,143,0.1), rgba(0,214,143,0.03));
  border-color: rgba(0,214,143,0.25) !important;
  margin-top: 80px;
}

.cta-box .h2 { margin-bottom: 12px; }
.cta-box p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .phone-wrap { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .h1 { letter-spacing: -2px; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .hero-inner { padding: 0 20px; }
  .cta-box { padding: 36px 24px; }
}
