/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0D0D0F;
  --bg-alt: #131316;
  --bg-card: #1A1A1F;
  --fg: #F5F0E8;
  --fg-muted: #8A8680;
  --accent: #FF6B00;
  --accent-light: #FF8C33;
  --accent-dim: rgba(255, 107, 0, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === LAYOUT === */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Figtree', sans-serif;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  opacity: 0.08;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
  top: 50%;
  left: 40%;
  opacity: 0.05;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 100px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === PHONE MOCKUP === */
.hero-phone {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phone-mockup {
  width: 300px;
  background: #1C1C24;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,107,0,0.08);
}

.phone-notch {
  width: 80px;
  height: 28px;
  background: #111;
  border-radius: 14px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: #0F0F14;
  border-radius: 28px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 340px;
}

.sms-bubble {
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 240px;
  animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sms-bubble.incoming {
  background: #222230;
  color: var(--fg);
  align-self: flex-start;
  animation-delay: 0.3s;
}

.sms-bubble.outgoing {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  animation-delay: 0.8s;
}

.sms-bubble.system {
  background: transparent;
  padding: 0;
  animation-delay: 1.3s;
}

.sms-reactions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.reaction {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg-muted);
}

.review-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-link-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-link-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.review-link-text span {
  font-size: 12px;
  color: var(--fg-muted);
}

.phone-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 240px;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-icon {
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.step-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.weekly-report-callout {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.report-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.report-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.report-text strong {
  color: var(--fg);
}

/* === FEATURES === */
.features {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
  background: var(--bg-card);
  border-color: rgba(255, 107, 0, 0.25);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === NICHES === */
.niches {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.niches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.niche-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.2s, background 0.2s;
}

.niche-pill:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: var(--accent-dim);
}

.niches-cta {
  text-align: center;
  font-size: 15px;
  color: var(--fg-muted);
  padding: 0 24px;
}

/* === PRICING === */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 64px;
}

.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg-card);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 28px;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
  display: block;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
}

.per {
  font-size: 16px;
  color: var(--fg-muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
}

.plan-note {
  font-size: 13px;
  color: var(--fg-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-math {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.math-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}

.math-calc {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.math-calc strong {
  color: var(--accent);
}

.math-label {
  font-size: 12px;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.closing-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--fg);
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.closing-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

.closing-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 240px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-sub { margin: 0 auto 40px; }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider { display: none; }

  .hero-phone {
    order: -1;
    margin-bottom: 24px;
  }

  .phone-mockup { width: 260px; }

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

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

  .closing-points { grid-template-columns: 1fr; }

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

  .pricing-math { flex-direction: column; }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links { gap: 32px; }

  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 28px; }
  .closing-headline { font-size: 26px; }
}
