/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WEB DEVELOPMENT â€” DISTINCT DESIGN (Violet + Cyan 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: #8b5cf6;          /* Violet */
  --accent-2: #06b6d4;        /* Cyan */
  --accent-glow: rgba(139, 92, 246, 0.15);
  --card: rgba(10, 17, 40, 0.8);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(139, 92, 246, 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;
}

/* â”€â”€ TOPBAR â€” inherited from style.css â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Topbar styles come from ../../css/style.css */

/* â”€â”€ HERO â€” 2 Column with Browser 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(139, 92, 246, 0.12), transparent),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(6, 182, 212, 0.08), transparent),
    url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?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), #7c3aed);
  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(139, 92, 246, 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(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.06);
}

/* Browser Mockup */
.browser-mockup {
  background: rgba(10, 17, 40, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(139, 92, 246, 0.06);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-url i { color: #28ca42; font-size: 10px; }

.browser-body { padding: 20px; }

.mock-nav {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  margin-bottom: 20px;
}

.mock-hero-block { margin-bottom: 20px; }

.mock-text-lg {
  width: 70%;
  height: 18px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
  border-radius: 4px;
  margin-bottom: 10px;
}

.mock-text-sm {
  width: 55%;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  margin-bottom: 14px;
}

.mock-btn {
  width: 80px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 5px;
  opacity: 0.7;
}

.mock-cards { display: flex; gap: 10px; }
.mock-card {
  flex: 1;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* 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(139, 92, 246, 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(139, 92, 246, 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; }

/* Gradient border effect */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 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 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 30s 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(139, 92, 246, 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 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: 140px;
}
.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(139, 92, 246, 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(139, 92, 246, 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.12s; }
.faq-item:nth-child(5) { transition-delay: 0.18s; }

/* â”€â”€ 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(139, 92, 246, 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;
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  padding: 64px 0 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo { height: 100px; margin-bottom: 14px; }
.footer-col p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col a i { margin-right: 6px; }

.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--border-accent);
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   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; }
  .footer-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; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sec { padding: 60px 0; }
}

@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: column; gap: 16px; }
  .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; }
}
