/* ============================================
   Innovate Media - Agency Website
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #09090b;
  color: #e4e4e7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8b5cf6;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fafafa;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: #a1a1aa;
  line-height: 1.7;
  max-width: 600px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fafafa;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #a1a1aa;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fafafa;
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: box-shadow 0.3s, transform 0.2s;
}

.nav-cta:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fafafa;
  padding: 8px;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: #fafafa;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fafafa;
  font-size: 32px;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366f1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: #fafafa;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #a1a1aa;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  transition: box-shadow 0.3s, transform 0.2s;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fafafa;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-proof-item {
  text-align: center;
}

.hero-proof-value {
  font-size: 28px;
  font-weight: 800;
  color: #fafafa;
}

.hero-proof-label {
  font-size: 13px;
  color: #71717a;
  font-weight: 500;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: linear-gradient(180deg, #09090b 0%, #0c0a14 100%);
}

.problem-header {
  text-align: center;
  margin-bottom: 64px;
}

.problem-header .section-subtitle {
  margin: 0 auto;
}

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

.problem-card {
  background: linear-gradient(145deg, #18181b 0%, #111113 100%);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-4px);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.7;
}

.problem-stat {
  font-size: 36px;
  font-weight: 900;
  color: #ef4444;
  margin-bottom: 4px;
}

/* ============================================
   VALUE / WHY WEBSITES MATTER
   ============================================ */
.value {
  background: #09090b;
}

.value-header {
  text-align: center;
  margin-bottom: 64px;
}

.value-header .section-subtitle {
  margin: 0 auto;
}

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

.value-card {
  background: linear-gradient(145deg, #18181b 0%, #111113 100%);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 20px;
  transition: border-color 0.3s, transform 0.25s;
}

.value-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-4px);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.value-card-icon.purple { background: rgba(99, 102, 241, 0.1); }
.value-card-icon.blue { background: rgba(59, 130, 246, 0.1); }
.value-card-icon.green { background: rgba(34, 197, 94, 0.1); }
.value-card-icon.orange { background: rgba(249, 115, 22, 0.1); }

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.7;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
  border-top: 1px solid rgba(99, 102, 241, 0.08);
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 14px;
  color: #71717a;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: #09090b;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: linear-gradient(145deg, #18181b 0%, #111113 100%);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  transition: border-color 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.2);
}

.service-card.featured {
  border-color: rgba(99, 102, 241, 0.15);
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #a78bfa);
}

.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.service-icon.purple { background: rgba(99, 102, 241, 0.1); }
.service-icon.blue { background: rgba(59, 130, 246, 0.1); }
.service-icon.green { background: rgba(34, 197, 94, 0.1); }
.service-icon.orange { background: rgba(249, 115, 22, 0.1); }
.service-icon.pink { background: rgba(236, 72, 153, 0.1); }
.service-icon.cyan { background: rgba(6, 182, 212, 0.1); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  font-size: 13px;
  color: #a1a1aa;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: #6366f1;
  font-weight: 700;
  font-size: 14px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: linear-gradient(180deg, #09090b 0%, #0c0a14 100%);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #a78bfa, #c4b5fd);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, #18181b, #111113);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #8b5cf6;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.7;
}

/* ============================================
   SOCIAL PROOF / RESULTS
   ============================================ */
.results {
  background: #09090b;
}

.results-header {
  text-align: center;
  margin-bottom: 64px;
}

.results-header .section-subtitle {
  margin: 0 auto;
}

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

.result-card {
  background: linear-gradient(145deg, #18181b 0%, #111113 100%);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.3s;
}

.result-card:hover {
  border-color: rgba(99, 102, 241, 0.15);
}

.result-card-trade {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b5cf6;
  margin-bottom: 16px;
}

.result-card-quote {
  font-size: 15px;
  color: #d4d4d8;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.result-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(99, 102, 241, 0.04);
  border-radius: 12px;
}

.result-metric-val {
  font-size: 20px;
  font-weight: 800;
  color: #fafafa;
}

.result-metric-label {
  font-size: 11px;
  color: #71717a;
  font-weight: 500;
}

.result-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.result-name {
  font-size: 14px;
  font-weight: 600;
  color: #fafafa;
}

.result-biz {
  font-size: 12px;
  color: #71717a;
}

/* ============================================
   WHY IT MATTERS (URGENCY)
   ============================================ */
.urgency {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(249, 115, 22, 0.04) 100%);
  border-top: 1px solid rgba(239, 68, 68, 0.06);
  border-bottom: 1px solid rgba(239, 68, 68, 0.06);
}

.urgency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.urgency h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fafafa;
  line-height: 1.15;
  margin-bottom: 20px;
}

.urgency-desc {
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 32px;
}

.urgency-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.urgency-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #d4d4d8;
  line-height: 1.6;
}

.urgency-list li .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.urgency-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.urgency-stat {
  background: linear-gradient(145deg, #18181b, #111113);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.urgency-stat-val {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
}

.urgency-stat-val.red { color: #ef4444; }
.urgency-stat-val.orange { color: #f97316; }
.urgency-stat-val.yellow { color: #eab308; }
.urgency-stat-val.purple { color: #8b5cf6; }

.urgency-stat-label {
  font-size: 12px;
  color: #71717a;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: #09090b;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  color: #fafafa;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #a78bfa;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #71717a;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(99, 102, 241, 0.15);
  color: #8b5cf6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fafafa;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 17px;
  color: #a1a1aa;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.footer-copy {
  font-size: 13px;
  color: #52525b;
}

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

.footer-links a {
  font-size: 13px;
  color: #71717a;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fafafa;
}

/* ============================================
   ANIMATIONS (scroll)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }

  .problem-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }

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

  .urgency-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  section { padding: 80px 0; }
  .hero { padding: 130px 0 80px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .hero-proof { gap: 24px; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .urgency-right { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .final-cta-btns { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; text-align: center; }
}
