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

:root {
  --bg: #F5F0EB;
  --bg-alt: #EDE8E0;
  --dark: #1A1A2E;
  --accent: #FF8C00;
  --accent-dark: #E07800;
  --text: #1A1A2E;
  --text-muted: #6B6B7B;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== NAV ===== */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  background: rgba(245, 240, 235, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: -0.03em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 48px 100px;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Hero Art */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.spark-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 0, 0.2);
}
.ring-1 { width: 200px; height: 200px; animation: pulse 3s ease-in-out infinite; }
.ring-2 { width: 300px; height: 300px; animation: pulse 3s ease-in-out infinite 0.5s; }
.ring-3 { width: 400px; height: 400px; animation: pulse 3s ease-in-out infinite 1s; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}
.spark-bolt {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 200px;
  animation: float 4s ease-in-out infinite;
}
.spark-bolt svg { width: 100%; height: 100%; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--dark);
  padding: 100px 48px;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.problem h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 64px;
  max-width: 600px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.problem-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.problem-icon svg { width: 100%; height: 100%; stroke: var(--accent); }
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 48px;
  background: var(--bg);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.services h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 80px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.service-row--odd { direction: rtl; }
.service-row--odd > * { direction: ltr; }
.service-tag {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.service-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.service-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Content Art */
.service-art-box {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-content-grid {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 160px;
}
.art-bar {
  background: var(--accent);
  border-radius: 4px;
  width: 40px;
  opacity: 0.7;
}
.art-bar--1 { height: 60px; }
.art-bar--2 { height: 100px; }
.art-bar--3 { height: 80px; }
.art-bar--4 { height: 130px; opacity: 1; }

/* Chat Art */
.chat-window {
  background: #1E1E2E;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.chat-header {
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.chat-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
}
.chat-bubble {
  padding: 10px 14px;
  margin: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 80%;
}
.chat-bubble--incoming {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
}
.chat-bubble--outgoing {
  background: rgba(255, 140, 0, 0.2);
  color: var(--accent);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble.booked {
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
}

/* Website Art */
.browser-mock {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}
.browser-bar {
  background: #F0F0F0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CCC;
}
.browser-url {
  background: #E8E8E8;
  border-radius: 4px;
  padding: 3px 12px;
  font-size: 11px;
  color: #888;
}
.browser-content { padding: 0; }
.mock-hero {
  height: 120px;
  background: linear-gradient(135deg, #1A1A2E 0%, #FF8C00 100%);
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}
.mock-card {
  height: 80px;
  background: var(--bg-alt);
  border-radius: 8px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--dark);
  padding: 100px 48px;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-quote {
  border-left: 4px solid var(--accent);
  padding-left: 32px;
  margin-bottom: 48px;
}
.manifesto-quote p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.manifesto-body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ===== CLOSING ===== */
.closing {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.closing p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.closing-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.closing-price {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
}
.closing-per {
  font-size: 24px;
  color: var(--text-muted);
  font-weight: 500;
}
.closing-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 400px;
}
.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { display: none; }
  .hero h1 { font-size: 48px; }
  .problem-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 40px; }
  .service-row--odd { direction: ltr; }
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .problem, .services, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { flex-direction: row; align-items: baseline; gap: 8px; }
  .closing-price { font-size: 52px; }
}