:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --fg-primary: #f5f5f5;
  --fg-secondary: #999999;
  --fg-muted: #666666;
  --accent: #ff4d00;
  --accent-glow: #ff6a2a;
  --accent-dim: #ff4d0033;
  --radius: 12px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.heat-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(to top, transparent, var(--accent), transparent);
  opacity: 0.15;
}

.heat-1 { left: 15%; height: 60%; bottom: 0; }
.heat-2 { left: 50%; height: 80%; bottom: 0; opacity: 0.08; }
.heat-3 { right: 20%; height: 45%; bottom: 0; opacity: 0.12; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 520px;
  line-height: 1.7;
}

/* === PROBLEM === */
.problem {
  padding: 120px 0;
  border-top: 1px solid #1a1a1a;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.problem-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === HOW IT WORKS === */
.how {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.how .section-label {
  text-align: center;
  margin-bottom: 64px;
}

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

.step {
  text-align: center;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* === NICHES === */
.niches {
  padding: 120px 0;
  border-top: 1px solid #1a1a1a;
}

.niches .section-label {
  font-size: 13px;
  margin-bottom: 40px;
}

.niche-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.niche-tag {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-primary);
  transition: border-color 0.2s, background 0.2s;
}

.niche-tag:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.example-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.example-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.example {
  background: var(--bg-secondary);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--fg-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* === CLOSING === */
.closing {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0f0500 100%);
  text-align: center;
}

.closing-content {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
}

.stat-unit {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg-muted);
}

/* === FOOTER === */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--fg-secondary);
}

@media (max-width: 600px) {
  .footer-inner { flex-wrap: wrap; gap: 16px; }
  .footer-links { gap: 16px; }
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-brand-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg-primary);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-primary);
  background: var(--accent);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-primary);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid #1a1a1a;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-link {
  color: var(--fg-secondary);
  text-decoration: none;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.95rem;
}

.nav-mobile-cta {
  color: var(--accent);
  font-weight: 700;
  border-bottom: none;
  margin-top: 8px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--fg-muted);
  color: var(--fg-primary);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid #333;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--fg-muted);
  transform: translateY(-1px);
}

/* === HERO ACTIONS === */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 140px 0 80px;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.page-sub {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 500px;
  line-height: 1.7;
}

/* === PORTFOLIO === */
.portfolio-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}

.pstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pstat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
}

.pstat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pstat-divider {
  width: 1px;
  height: 40px;
  background: #2a2a2a;
}

.portfolio-grid-section {
  padding: 40px 0 120px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: #333;
}

.video-embed-placeholder {
  background: #111;
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 140px;
  height: 240px;
  background: #0a0a0a;
  border-radius: 20px;
  border: 2px solid #2a2a2a;
  overflow: hidden;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a0800 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.ph-heat-1, .ph-heat-2 {
  position: absolute;
  width: 1px;
  background: linear-gradient(to top, transparent, var(--accent), transparent);
  opacity: 0.2;
}

.ph-heat-1 { left: 30%; height: 70%; bottom: 0; }
.ph-heat-2 { right: 25%; height: 50%; bottom: 0; opacity: 0.12; }

.phone-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 10px;
  z-index: 2;
}

.phone-platform {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.phone-views {
  font-size: 8px;
  color: var(--fg-secondary);
  font-weight: 600;
  align-self: flex-end;
}

.phone-title {
  font-size: 8.5px;
  color: var(--fg-primary);
  font-weight: 600;
  line-height: 1.4;
  padding: 0 0 8px;
}

.video-meta {
  padding: 20px 20px 24px;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 8px;
}

.video-business {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--fg-primary);
}

.video-platform-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.video-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.video-views-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #222;
}

.vbar-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.vbar-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

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

.portfolio-cta {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid #1a1a1a;
}

.portfolio-cta-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--fg-primary);
}

/* === PRICING === */
.pricing-section {
  padding: 40px 0 120px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}

.package-card:hover {
  border-color: #333;
}

.package-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #1a0800 0%, var(--bg-card) 60%);
}

.package-card--featured:hover {
  border-color: var(--accent-glow);
}

.package-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.package-header {
  margin-bottom: 32px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.package-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-dollar {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  font-weight: 600;
  align-self: flex-start;
  margin-top: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.package-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-feature {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.4;
}

.feature-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.package-cta {
  width: 100%;
  text-align: center;
}

.pricing-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 80px;
}

.pricing-faq {
  border-top: 1px solid #1a1a1a;
  padding-top: 80px;
}

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

.faq-q {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-a {
  color: var(--fg-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* === CONTACT === */
.contact-section {
  padding: 40px 0 120px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.form-error-banner {
  background: rgba(255, 77, 0, 0.12);
  border: 1px solid var(--accent-dim);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--accent-glow);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--fg-muted);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  font-size: 1rem;
  padding: 16px 40px;
}

.contact-success {
  text-align: center;
  padding: 60px 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.success-body {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 14px;
  padding: 24px 28px;
}

.sidebar-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-steps {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-steps li {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.sidebar-body {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* === DASHBOARD === */
.dashboard-body {
  overflow-y: auto;
}

.demo-banner {
  background: var(--accent-dim);
  border-bottom: 1px solid var(--accent-dim);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.88rem;
  color: var(--fg-secondary);
  margin-top: 64px; /* below fixed nav */
}

.demo-banner a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 64px; /* nav height */
}

.dashboard-sidebar {
  width: 240px;
  background: var(--bg-secondary);
  border-right: 1px solid #1a1a1a;
  padding: 32px 24px;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.ds-client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.ds-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ds-info {
  min-width: 0;
}

.ds-business {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.ds-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ds-nav-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.ds-nav-item:hover, .ds-active {
  background: var(--bg-card);
  color: var(--fg-primary);
}

.ds-logout {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s;
}

.ds-logout:hover {
  color: var(--fg-secondary);
}

.dashboard-main {
  flex: 1;
  padding: 48px;
  min-width: 0;
}

.dash-section {
  margin-bottom: 64px;
}

.dash-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.calendar-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #222;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.calendar-table th {
  background: var(--bg-secondary);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid #222;
}

.calendar-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #1a1a1a;
  vertical-align: middle;
}

.cal-row:last-child td {
  border-bottom: none;
}

.cal-date {
  color: var(--fg-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.cal-title {
  color: var(--fg-primary);
  font-weight: 500;
  max-width: 280px;
}

.platform-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.platform-tiktok {
  background: rgba(0, 200, 180, 0.1);
  color: #00c8b4;
}

.platform-instagram-reel, .platform-instagram-reels {
  background: rgba(200, 80, 200, 0.1);
  color: #c850c0;
}

.status-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-published {
  background: rgba(80, 200, 100, 0.12);
  color: #50c864;
}

.status-filming {
  background: rgba(255, 200, 0, 0.12);
  color: #f0b800;
}

.status-planned {
  background: rgba(150, 150, 150, 0.12);
  color: var(--fg-muted);
}

.views-num {
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.views-pending {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

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

.metric-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 14px;
  padding: 24px;
}

.metric-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}

.metric-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--fg-primary);
}

.metric-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstat-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.mstat-lbl {
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-bar-wrap {
  background: #1a1a1a;
  border-radius: 100px;
  height: 4px;
  overflow: hidden;
}

.metric-bar {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent-glow));
  border-radius: 100px;
  min-width: 4px;
  transition: width 0.6s ease;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .dashboard-sidebar { width: 200px; }
  .dashboard-main { padding: 32px; }
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; padding: 80px 0 60px; }
  .hero-title { letter-spacing: -1px; }

  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .example-list { grid-template-columns: 1fr; }
  .closing { padding: 100px 0; }
  .stat-value { font-size: 2.8rem; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .video-grid { grid-template-columns: 1fr; }
  .portfolio-stats { gap: 24px; flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }

  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
  }
  .ds-nav { flex-direction: row; }
  .ds-logout { margin-left: auto; }
  .dashboard-main { padding: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .hero { padding: 60px 0 40px; }
  .problem, .how, .niches { padding: 80px 0; }
  .metric-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
}