/* ══════════════════════════════════════════════════════════════
   DIGITAL MARKETING — Amber + Emerald Palette
   ══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #020810;
  --bg-soft: #0a1128;
  --bg-alt: #060e1e;
  --text: #e5edf8;
  --muted: #8a9bb5;
  --accent: #f59e0b;          /* Amber */
  --accent-2: #10b981;        /* Emerald */
  --accent-glow: rgba(245, 158, 11, 0.15);
  --card: rgba(10, 17, 40, 0.8);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(245, 158, 11, 0.2);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── HERO — 2 Column with Dashboard Mockup ──────────────────── */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(170deg, rgba(2, 8, 16, 0.92) 0%, rgba(2, 8, 16, 0.82) 40%, rgba(2, 8, 16, 0.94) 100%),
    radial-gradient(ellipse 800px 500px at 20% 50%, rgba(245, 158, 11, 0.1), transparent),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(16, 185, 129, 0.07), transparent),
    url('https://images.unsplash.com/photo-1432888622747-4eb9a8efeb07?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-left {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}
.hero-left.visible { opacity: 1; transform: translateY(0); }

.hero-right {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
}
.hero-right.visible { opacity: 1; transform: translateX(0); }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; opacity: 0.5; }
.breadcrumb > span { color: var(--accent); font-weight: 600; }

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: rgba(10, 17, 40, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(245, 158, 11, 0.06);
  padding: 24px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.dash-period {
  font-size: 11px;
  color: var(--muted);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.dash-metric strong {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}

.dash-metric:nth-child(1) strong { color: var(--accent); }
.dash-metric:nth-child(2) strong { color: var(--accent-2); }
.dash-metric:nth-child(3) strong { color: #60a5fa; }

.dash-metric span {
  font-size: 11px;
  color: var(--muted);
}

.dash-chart {
  height: 100px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 12px 16px;
  height: 100%;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent), rgba(245, 158, 11, 0.3));
  min-height: 8px;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes barGrow {
  to { transform: scaleY(1); }
}

.dash-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
.dash-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; background: linear-gradient(180deg, var(--accent-2), rgba(16, 185, 129, 0.3)); }
.dash-bar:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.dash-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; background: linear-gradient(180deg, var(--accent-2), rgba(16, 185, 129, 0.3)); }
.dash-bar:nth-child(5) { height: 55%; animation-delay: 0.5s; }
.dash-bar:nth-child(6) { height: 90%; animation-delay: 0.6s; background: linear-gradient(180deg, var(--accent), rgba(245, 158, 11, 0.3)); }
.dash-bar:nth-child(7) { height: 70%; animation-delay: 0.7s; background: linear-gradient(180deg, var(--accent-2), rgba(16, 185, 129, 0.3)); }
.dash-bar:nth-child(8) { height: 95%; animation-delay: 0.8s; }

/* Floating Badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 17, 40, 0.9);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge i { color: var(--accent); font-size: 16px; }

.badge-1 { top: -10px; right: -10px; animation-delay: 0s; }
.badge-2 { bottom: 30%; left: -30px; animation-delay: 1.3s; }
.badge-3 { bottom: -10px; right: 20%; animation-delay: 2.6s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  padding: 32px 0;
  background: rgba(245, 158, 11, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(3) { transition-delay: 0.1s; }
.stat-item:nth-child(5) { transition-delay: 0.2s; }
.stat-item:nth-child(7) { transition-delay: 0.3s; }

.stat-item strong {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.stat-item span { font-size: 13px; color: var(--muted); font-weight: 500; }

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── GENERIC SECTION ────────────────────────────────────────── */
.sec { padding: 80px 0; position: relative; }

.sec-alt {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(245, 158, 11, 0.04), transparent),
    var(--bg-soft);
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.sec-head.visible { opacity: 1; transform: translateY(0); }

.kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.sec-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── BENTO GRID (Services) ──────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.bento-card.visible { opacity: 1; transform: translateY(0); }

.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.06s; }
.bento-card:nth-child(3) { transition-delay: 0.12s; }
.bento-card:nth-child(4) { transition-delay: 0.18s; }
.bento-card:nth-child(5) { transition-delay: 0.24s; }
.bento-card:nth-child(6) { transition-delay: 0.3s; }

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(16, 185, 129, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover::before { opacity: 1; }

.bento-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.bento-card:hover .bento-inner {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.bento-card.bento-wide { grid-column: span 2; }

.bento-inner i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
  transition: color 0.3s;
}
.bento-card:hover .bento-inner i { color: var(--accent-2); }

.bento-inner h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bento-inner p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.bento-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 20px;
}

/* ── TECH / TOOLS MARQUEE ───────────────────────────────────── */
.tech-marquee-wrap {
  overflow: hidden;
  padding: 0 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tech-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.tech-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.tech-chip:hover {
  border-color: var(--border-accent);
  background: rgba(245, 158, 11, 0.06);
}
.tech-chip img { width: 24px; height: 24px; }
.tech-chip span { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; }

/* ── PERFORMANCE / RESULTS SECTION ──────────────────────────── */
.perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.perf-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s, transform 0.6s;
}
.perf-left.visible { opacity: 1; transform: translateX(0); }

.perf-left h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.perf-left h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.perf-left > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.perf-meters { display: flex; flex-direction: column; gap: 20px; }

.perf-meter { display: flex; align-items: center; gap: 16px; }

.perf-meter-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.perf-meter-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.perf-meter-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 160px;
}
.perf-meter-info strong {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.perf-meter-info span { font-size: 13px; color: var(--muted); }

.perf-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s 0.15s, transform 0.6s 0.15s;
}
.perf-right.visible { opacity: 1; transform: translateX(0); }

.perf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.perf-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.perf-card i {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.perf-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.perf-card p { font-size: 13px; color: var(--muted); }

/* ── HORIZONTAL TIMELINE (Process) ──────────────────────────── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding-top: 40px;
}

.timeline-line {
  position: absolute;
  top: 47px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.2;
}

.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}
.tl-step.visible { opacity: 1; transform: translateY(0); }

.tl-step:nth-child(2) { transition-delay: 0s; }
.tl-step:nth-child(3) { transition-delay: 0.08s; }
.tl-step:nth-child(4) { transition-delay: 0.16s; }
.tl-step:nth-child(5) { transition-delay: 0.24s; }
.tl-step:nth-child(6) { transition-delay: 0.32s; }
.tl-step:nth-child(7) { transition-delay: 0.4s; }

.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-soft);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-step:hover .tl-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.25);
}

.tl-content { max-width: 160px; }

.tl-num {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

.tl-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.tl-content p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s;
}
.faq-item.visible { opacity: 1; transform: translateY(0); }

.faq-item[open] { border-color: var(--border-accent); }

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }

.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-item:nth-child(3) { transition-delay: 0.12s; }
.faq-item:nth-child(4) { transition-delay: 0.18s; }
.faq-item:nth-child(5) { transition-delay: 0.24s; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CHANNELS GRID ──────────────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.channel-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s, box-shadow 0.3s;
}
.channel-card.visible { opacity: 1; transform: translateY(0); }
.channel-card:nth-child(1) { transition-delay: 0s; }
.channel-card:nth-child(2) { transition-delay: 0.06s; }
.channel-card:nth-child(3) { transition-delay: 0.12s; }
.channel-card:nth-child(4) { transition-delay: 0.18s; }

.channel-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.channel-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.channel-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.channel-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 520px; margin: 0 auto; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.bento-wide { grid-column: span 2; }
  .perf-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .timeline-line { display: none; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-badge { display: none; }
  .stats-row { gap: 24px; }
  .stat-divider { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-wide { grid-column: span 1; }
  .perf-right { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 24px; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .sec { padding: 60px 0; }
  .dash-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .stats-row { 
    flex-direction: row; 
    gap: 20px; 
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .stat-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }
  .stat-item strong {
    font-size: 24px;
  }
  .stat-item span {
    font-size: 12px;
  }
  .perf-right { grid-template-columns: 1fr; }
  .perf-meter-info { min-width: 100px; }
  .timeline { grid-template-columns: 1fr; gap: 20px; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { width: 100%; justify-content: center; }
  .channels-grid { grid-template-columns: 1fr; }
}
