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

:root {
  --bg: #0A0A0A;
  --bg-2: #111114;
  --bg-card: #141418;
  --accent: #FF5C1A;
  --accent-dim: rgba(255, 92, 26, 0.12);
  --accent-glow: rgba(255, 92, 26, 0.3);
  --text: #FFFFFF;
  --text-2: #A8B4C4;
  --text-3: #5A6275;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(255,92,26,0.35);
}

html { scroll-behavior: smooth; }

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

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; }

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mark-line {
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.mark-line:nth-child(2) { width: 12px; }
.mark-line:nth-child(3) { width: 7px; }

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.brand-media {
  color: var(--accent);
  margin-left: 2px;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-glow {
  position: absolute;
  top: -20%;
  right: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,92,26,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.headline-accent { color: var(--accent); }

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

.hero-cta { }

.cta-label {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-3);
  border: 1px dashed var(--border);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ─── WIDGET CARD ───────────────────────────────────────── */
.widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 60px rgba(255,92,26,0.08), 0 30px 60px rgba(0,0,0,0.5);
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E676;
  box-shadow: 0 0 6px #00E676;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.widget-time {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.widget-title {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.widget-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.metric-item { text-align: center; }

.metric-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 0.03em;
}

.metric-label {
  font-size: 0.65rem;
  color: var(--text-3);
  margin-top: 0.15rem;
}

.widget-leads { display: flex; flex-direction: column; gap: 0.6rem; }

.lead-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.lead-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), #FF8C00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.lead-info { flex: 1; min-width: 0; }

.lead-name {
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-service {
  font-size: 0.65rem;
  color: var(--text-3);
  margin-top: 0.1rem;
}

.lead-status {
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.lead-status.confirmed {
  background: rgba(0,230,118,0.1);
  color: #00E676;
  border: 1px solid rgba(0,230,118,0.2);
}

.lead-status.pending {
  background: rgba(255,92,26,0.1);
  color: var(--accent);
  border: 1px solid rgba(255,92,26,0.15);
}

/* ─── PROBLEM ───────────────────────────────────────────── */
.problem {
  padding: 7rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.problem-label, .features-label, .pricing-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.problem-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 3rem;
  color: var(--text-2);
}

.problem-headline strong { color: var(--text); }

.problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-2);
  align-items: flex-start;
}

.problem-item strong { color: var(--text); }

.problem-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.problem-statement {
  font-size: 1rem;
  color: var(--text-3);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

/* ─── FEATURES ──────────────────────────────────────────── */
.features {
  padding: 7rem 0;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.features-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 3.5rem;
  text-align: center;
}

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

.feature-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 30px rgba(255,92,26,0.06);
}

.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── NUMBERS ───────────────────────────────────────────── */
.numbers {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.numbers-ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.ornament-diamond {
  color: var(--accent);
  font-size: 0.7rem;
  opacity: 0.5;
}

.numbers-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.num-item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.num-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}

.num-unit {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 0.4rem;
  display: block;
  margin-top: 0.2rem;
}

.num-desc {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.4;
  max-width: 140px;
  margin: 0 auto;
}

.num-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── PRICING ───────────────────────────────────────────── */
.pricing {
  padding: 7rem 0;
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.pricing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--border-accent);
  box-shadow: 0 0 40px rgba(255,92,26,0.1);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.card-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 1.2rem;
  color: var(--text-3);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.card-tagline {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.card-cta {
  font-size: 0.75rem;
  color: var(--text-3);
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid var(--border);
  text-align: center;
}

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

.setup-label {
  color: var(--text-2);
  font-weight: 500;
}

/* ─── MANIFESTO ─────────────────────────────────────────── */
.manifesto {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.manifesto-quote {
  margin-bottom: 2rem;
}

.manifesto-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.02em;
}

.manifesto-sub {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.manifesto-sub p {
  font-size: 0.95rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-3);
}

.footer-contact {
  font-size: 0.8rem;
  color: var(--text-2);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-sep { color: var(--text-3); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-3);
  margin-top: 0.5rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .widget-card { margin-top: 1rem; }

  .problem-list {
    grid-template-columns: 1fr;
  }

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

  .numbers-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .num-item {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .num-divider { display: none; }

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

  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-tagline { display: none; }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .num-item {
    flex: 0 0 100%;
  }

  .metric-val {
    font-size: 1.5rem;
  }
}
