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

:root {
  --ink: #0f0f12;
  --ink-2: #1a1a1f;
  --sand: #f4ede6;
  --sand-2: #e8dfd4;
  --amber: #e8a83a;
  --amber-dim: rgba(232, 168, 58, 0.15);
  --amber-glow: rgba(232, 168, 58, 0.08);
  --text-muted: rgba(244, 237, 230, 0.55);
  --text-muted-dark: rgba(15, 15, 18, 0.55);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

body {
  background: var(--ink);
  color: var(--sand);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(244, 237, 230, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--sand);
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(232, 168, 58, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--sand);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* === PHONE FRAME === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 280px;
  background: #1e1e24;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 0 0 1px rgba(244, 237, 230, 0.08), 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(232, 168, 58, 0.08);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #0f0f12;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 16px;
}

.phone-screen {
  background: var(--ink);
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.missed-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(232, 168, 58, 0.08);
  border: 1px solid rgba(232, 168, 58, 0.2);
  border-radius: 12px;
}

.call-icon {
  flex-shrink: 0;
}

.call-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber);
  display: block;
}

.call-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: auto;
}

.text-back {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: var(--sand);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.text-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-from {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}

.text-msg {
  font-size: 0.7rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: 2px;
}

.text-time {
  font-size: 0.6rem;
  color: var(--text-muted-dark);
  margin-top: 4px;
}

.booked-apt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(232, 168, 58, 0.1);
  border: 1px solid rgba(232, 168, 58, 0.15);
  border-radius: 12px;
}

.booked-icon {
  width: 28px;
  height: 28px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booked-content {
  display: flex;
  flex-direction: column;
}

.booked-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber);
}

.booked-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* === PROBLEM === */
.problem {
  padding: 120px 40px;
  background: var(--ink-2);
  border-top: 1px solid rgba(244, 237, 230, 0.05);
}

.problem-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 60px;
  align-items: start;
}

.problem-label,
.services-label,
.pricing-label,
.stats-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.problem-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  grid-column: 1;
}

.problem-body {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 40px;
  border-left: 1px solid rgba(244, 237, 230, 0.08);
}

.stat-block {
  padding: 24px;
  background: rgba(232, 168, 58, 0.04);
  border: 1px solid rgba(232, 168, 58, 0.12);
  border-radius: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === SERVICES === */
.services {
  padding: 120px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--ink-2);
  padding: 40px 32px;
  border: 1px solid rgba(244, 237, 230, 0.05);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(232, 168, 58, 0.2);
}

.service-card--primary {
  grid-column: 1 / 3;
  background: rgba(232, 168, 58, 0.04);
  border-color: rgba(232, 168, 58, 0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-icon {
  margin-bottom: 8px;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--sand);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === STATS === */
.stats {
  padding: 80px 40px;
  background: var(--ink-2);
  border-top: 1px solid rgba(244, 237, 230, 0.05);
  border-bottom: 1px solid rgba(244, 237, 230, 0.05);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.stats-quote {
  margin-bottom: 64px;
  max-width: 700px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sand);
  line-height: 1.5;
  margin-bottom: 16px;
}

.quote-source {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 237, 230, 0.06);
}

.stats-item {
  background: var(--ink-2);
  padding: 40px 32px;
}

.stats-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stats-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* === PRICING === */
.pricing {
  padding: 120px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(244, 237, 230, 0.06);
}

.pricing-card {
  background: var(--ink);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: rgba(232, 168, 58, 0.04);
  border: 1px solid rgba(232, 168, 58, 0.2);
}

.pricing-card-header {
  margin-bottom: 32px;
}

.pricing-tier {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.pricing-setup {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--sand);
  letter-spacing: -0.03em;
}

.pricing-setup-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-amount--recurring {
  margin-top: 4px;
}

.pricing-monthly {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--sand);
}

.pricing-monthly-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.6;
}

.pricing-divider {
  height: 1px;
  background: rgba(244, 237, 230, 0.06);
  margin: 32px 0;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  position: relative;
  padding: 140px 40px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(244, 237, 230, 0.05);
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(232, 168, 58, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.closing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-niche {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.niche-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.niche-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.niche-tag {
  padding: 6px 14px;
  background: rgba(232, 168, 58, 0.08);
  border: 1px solid rgba(232, 168, 58, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  padding: 40px;
  border-top: 1px solid rgba(244, 237, 230, 0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--sand);
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-sep {
  opacity: 0.3;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--primary {
    grid-column: 1 / -1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding: 120px 24px 80px;
  }
  .problem-inner {
    grid-template-columns: 1fr;
  }
  .problem-visual {
    grid-column: 1;
    grid-row: auto;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(244, 237, 230, 0.08);
    padding-top: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    padding: 16px 24px;
  }
  .problem, .services, .pricing, .closing {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer {
    padding: 32px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .phone-frame {
    width: 240px;
  }
  .hero-headline {
    font-size: 2.4rem;
  }
}