/* === TYPOGRAPHY & RESET === */
:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --border: #222222;
  --amber: #F59E0B;
  --amber-dim: rgba(245,158,11,0.12);
  --amber-glow: rgba(245,158,11,0.06);
  --text: #E8E8E8;
  --text-muted: #888888;
  --text-dim: #555555;
  --red: #EF4444;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
  font-weight: 800;
}

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 4px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.hero-brand {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Visual */
.hero-right { position: relative; }

.hero-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 10px;
}

.art-glow {
  position: absolute;
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.art-svg { width: 100%; max-width: 320px; }

/* Sparks */
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  animation: spark 3s ease-in-out infinite;
}
.spark-1 { top: 30%; left: 20%; animation-delay: 0.5s; }
.spark-2 { top: 45%; right: 25%; animation-delay: 1.2s; }
.spark-3 { bottom: 35%; left: 35%; animation-delay: 0.8s; }
.spark-4 { top: 20%; right: 30%; animation-delay: 1.8s; }
@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

/* Stat pill */
.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50px;
  padding: 12px 20px;
  margin-top: 20px;
}

.pill-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
}

.pill-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* === SECTION SHARED === */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* === HOW IT WORKS === */
.hiw { padding: 100px 40px; }
.hiw-inner { max-width: 1120px; margin: 0 auto; }

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.hiw-step { padding: 0 20px; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}

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

.hiw-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--border), rgba(245,158,11,0.3), var(--border));
  margin-top: 40px;
  flex-shrink: 0;
}

/* === SERVICES === */
.services {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner { max-width: 1120px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-card {
  background: var(--bg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.service-card:hover { border-color: rgba(245,158,11,0.3); }

.service-card-maint { opacity: 0.7; }

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

.service-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 20px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

/* === PRICING === */
.pricing { padding: 100px 40px; }
.pricing-inner { max-width: 1120px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.price-card-featured {
  background: var(--surface-2);
  border-color: rgba(245,158,11,0.35);
}

.price-featured-label {
  position: absolute;
  top: -1px;
  left: 32px;
  transform: translateY(-50%);
  background: var(--amber);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.price-tier {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--amber);
}

.price-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
}

.pricing-add-ons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.add-ons-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.add-on-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.add-on {
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
a.add-on:hover { border-color: rgba(245,158,11,0.3); color: var(--amber); }

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: 1120px; margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
}

/* === CLOSING === */
.closing { padding: 100px 40px; }
.closing-inner { max-width: 1120px; margin: 0 auto; text-align: center; }

.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cstat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
}

.cstat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

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

/* === FOOTER === */
.footer { padding: 60px 40px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1120px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 320px; }
.footer-logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }

.footer-col-head {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-dim);
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-brand { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .hiw-connector { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .closing-stats { gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* === NAV BOOK BUTTON === */
.nav-book-btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #000;
  background: var(--amber);
  border-radius: 8px;
  padding: 8px 18px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}
.nav-book-btn:hover { opacity: 0.85; }

/* === PRICE CTA === */
.price-cta {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
  background: var(--amber);
  border-radius: 12px;
  padding: 14px 32px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.price-cta:hover { opacity: 0.85; }

@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .hiw, .services, .pricing, .testimonials, .closing { padding: 72px 24px; }
  .nav { padding: 16px 24px; }
  .service-card, .price-card, .testimonial { padding: 24px; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
  .closing-stats { flex-direction: column; gap: 20px; }
  .cstat-sep { width: 40px; height: 1px; }
}