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

:root {
  --bg: #0C1217;
  --surface: #141E28;
  --surface-2: #1C2A3A;
  --accent: #E8831A;
  --accent-dim: rgba(232, 131, 26, 0.15);
  --teal: #00C9A7;
  --teal-dim: rgba(0, 201, 167, 0.12);
  --text: #F0F4F8;
  --text-muted: #8A9AAB;
  --border: rgba(255,255,255,0.07);
  --radius: 10px;
  --radius-sm: 6px;
}

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

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

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.15; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 18, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner { max-width: 1100px; margin: 0 auto; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.3rem; letter-spacing: -0.01em; color: var(--text); }
.nav-logo-accent { color: var(--accent); }
.nav-tagline { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* === HERO === */
.hero {
  padding: 130px 24px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,131,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,167,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em { color: var(--accent); font-style: italic; }
.hero-lede {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  max-width: 420px; margin-bottom: 40px;
}
.hero-stats { display: flex; gap: 32px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; max-width: 90px; line-height: 1.3; }

/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.hero-card-main { padding: 20px; }
.hero-card-mini { padding: 16px 20px; }
.card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.card-dot { width: 8px; height: 8px; border-radius: 50%; }
.card-dot-green { background: var(--teal); box-shadow: 0 0 6px var(--teal); }
.card-label { font-size: 0.75rem; color: var(--text-muted); flex: 1; }
.card-status { font-size: 0.7rem; font-weight: 600; color: var(--teal); background: var(--teal-dim); padding: 2px 8px; border-radius: 20px; }
.card-body { }
.card-caller { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.card-request { font-size: 0.88rem; color: var(--text); font-style: italic; margin-bottom: 12px; }
.card-action { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--teal); background: var(--teal-dim); padding: 10px 12px; border-radius: var(--radius-sm); }
.card-action-icon { font-size: 1rem; flex-shrink: 0; }
.mini-header { margin-bottom: 12px; }
.mini-items { display: flex; flex-direction: column; gap: 8px; }
.mini-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; padding: 8px 12px; border-radius: var(--radius-sm); }
.mini-item-ok { background: rgba(0,201,167,0.08); color: var(--text-muted); }
.mini-item-warn { background: rgba(232,131,26,0.1); color: var(--text); }
.mini-icon { font-size: 0.9rem; flex-shrink: 0; }

/* === PROOF BAR === */
.proof { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 24px; }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-grid { display: flex; align-items: center; gap: 0; }
.proof-item { flex: 1; text-align: center; padding: 8px 20px; }
.proof-stat { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.proof-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.proof-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* === SECTION COMMON === */
.section-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text); margin-bottom: 60px; max-width: 560px; }

/* === FEATURES === */
.features { padding: 100px 24px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s; }
.feature-card:hover { border-color: rgba(232,131,26,0.3); }
.feature-icon { width: 48px; height: 48px; background: var(--surface-2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-title { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 10px; color: var(--text); }
.feature-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* === WORKFLOW === */
.workflow { padding: 100px 24px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.workflow-inner { max-width: 1100px; margin: 0 auto; }
.workflow-steps { display: flex; gap: 0; }
.step { flex: 1; position: relative; padding: 0 32px 0 0; }
.step:first-child { padding-left: 0; }
.step-number { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--accent); opacity: 0.25; line-height: 1; margin-bottom: 16px; }
.step-title { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.step-connector { position: absolute; right: 0; top: 20px; width: 32px; height: 1px; background: var(--border); }

/* === PRICING === */
.pricing { padding: 100px 24px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr; max-width: 560px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.pricing-card-featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(232,131,26,0.1); }
.pricing-header { margin-bottom: 28px; }
.pricing-plan { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount { font-family: 'DM Serif Display', serif; font-size: 3.5rem; color: var(--text); }
.price-period { font-size: 1rem; color: var(--text-muted); }
.pricing-tagline { font-size: 0.9rem; color: var(--text-muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.feature-check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-note { font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 20px; }
.pricing-qualifier { font-size: 0.82rem; color: var(--text-muted); margin-top: 20px; }

/* === CLOSING === */
.closing { padding: 100px 24px; background: var(--bg); }
.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closing-headline { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 24px; }
.closing-sub { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.closing-cta { }
.closing-cta-text { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--accent); font-style: italic; }

/* === FOOTER === */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--text); }
.footer-logo-accent { color: var(--accent); }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .proof-grid { flex-direction: column; gap: 24px; }
  .proof-divider { width: 60px; height: 1px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 16px 60px; }
  .features { padding: 60px 16px; }
  .workflow { padding: 60px 16px; }
  .pricing { padding: 60px 16px; }
  .closing { padding: 60px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-tagline { display: none; }
}