/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE APP DEVELOPMENT â€” SERVICE PAGE
   Accent: Orange / Coral (#f97316, #fb923c)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #02060d;
  --bg-soft: #081225;
  --text: #e5edf8;
  --muted: #8a9bb5;
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-glow: rgba(249, 115, 22, 0.15);
  --teal: #06b6d4;
  --card: rgba(6, 14, 30, 0.75);
  --border: rgba(255, 255, 255, 0.06);
  --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;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* â”€â”€ TOPBAR â€” inherited from style.css â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO â€” Two Column with Phone Mockup
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  text-align: left;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 30% 60%, rgba(249, 115, 22, 0.08), transparent),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(6, 182, 212, 0.06), transparent),
    var(--bg);
}

.hero-glow-1 {
  position: absolute;
  top: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(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 Badges */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge i { font-size: 14px; }

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat strong {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.hero-stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* â”€â”€ PHONE MOCKUP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
}

.hero-visual.visible {
  opacity: 1;
  transform: translateY(0);
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #0a0a14;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(180deg, #0d1b2a, #0a0f1e);
  border-radius: 28px;
  height: calc(100% - 8px);
  margin-top: -14px;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  flex-shrink: 0;
}

.app-title-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.app-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.app-status {
  font-size: 10px;
  color: #22c55e;
}

.app-header > i {
  font-size: 18px;
  color: var(--muted);
}

.app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: cardPulse 3s ease-in-out infinite;
}

.app-card-1 { animation-delay: 0s; }
.app-card-2 { animation-delay: 1.5s; }

@keyframes cardPulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.06); }
  50% { border-color: rgba(249, 115, 22, 0.2); }
}

.app-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.app-card-1 .app-card-icon { background: rgba(249, 115, 22, 0.15); color: var(--accent); }
.app-card-2 .app-card-icon { background: rgba(6, 182, 212, 0.15); color: var(--teal); }

.app-card-icon i { font-size: 18px; }

.app-card-label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.app-card-value {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-family: "Sora", sans-serif;
}

.app-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 4px;
}

.chart-svg {
  width: 100%;
  height: 60px;
}

.chart-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2s ease forwards 1s;
}

.chart-area {
  opacity: 0;
  animation: fadeArea 1s ease forwards 2.5s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeArea {
  to { opacity: 1; }
}

.app-nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.app-nav-bar i {
  font-size: 18px;
  color: var(--muted);
  transition: color 0.2s;
}

.app-nav-center {
  font-size: 28px !important;
  color: var(--accent) !important;
}

/* Floating badges */
.float-badge {
  position: absolute;
  padding: 8px 16px;
  background: rgba(6, 14, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-badge i { font-size: 14px; }

.fb-1 {
  top: 15%;
  left: -20px;
  color: var(--accent);
  animation: floatBadge 3s ease-in-out infinite;
}

.fb-2 {
  bottom: 25%;
  right: -30px;
  color: var(--teal);
  animation: floatBadge 3s ease-in-out infinite 1s;
}

.fb-3 {
  top: 50%;
  right: -20px;
  color: #facc15;
  animation: floatBadge 3s ease-in-out infinite 2s;
}

.fb-1 i { color: var(--accent); }
.fb-2 i { color: var(--teal); }
.fb-3 i { color: #facc15; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GENERIC SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sec {
  padding: 80px 0;
  position: relative;
}

.sec-dark {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(249, 115, 22, 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(90deg, var(--accent), var(--teal));
  -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;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PLATFORM CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s, box-shadow 0.3s;
}

.platform-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.platform-card:nth-child(1) { transition-delay: 0s; }
.platform-card:nth-child(2) { transition-delay: 0.1s; }
.platform-card:nth-child(3) { transition-delay: 0.2s; }

.platform-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.platform-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.1);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  transition: background 0.3s, transform 0.3s;
}

.platform-icon i {
  font-size: 28px;
  color: var(--accent);
}

.platform-icon.android {
  background: rgba(61, 220, 132, 0.1);
}

.platform-icon.android i { color: #3ddc84; }

.platform-icon.cross {
  background: rgba(6, 182, 212, 0.1);
}

.platform-icon.cross i { color: var(--teal); }

.platform-card:hover .platform-icon {
  transform: scale(1.1);
}

.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.platform-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.platform-tags span {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURES GRID
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.feature-icon i {
  font-size: 24px;
  color: var(--accent);
  transition: color 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(6, 182, 212, 0.12);
}

.feature-card:hover .feature-icon i {
  color: var(--teal);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.4s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TECH MARQUEE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.marquee-wrap {
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.tech-chip:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.06);
}

.tech-chip img {
  width: 26px;
  height: 26px;
}

.tech-chip span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VERTICAL TIMELINE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--teal), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.tl-left {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.tl-right {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.tl-marker {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}

.tl-marker span {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

.timeline-item:hover .tl-marker {
  background: var(--accent);
  border-color: var(--accent);
}

.timeline-item:hover .tl-marker span {
  color: #fff;
}

.tl-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(16px);
}

.tl-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.tl-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tl-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tl-card h3 i {
  color: var(--accent);
  font-size: 18px;
}

.tl-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Timeline stagger */
.timeline-item:nth-child(2) .tl-card { transition-delay: 0s; }
.timeline-item:nth-child(3) .tl-card { transition-delay: 0.08s; }
.timeline-item:nth-child(4) .tl-card { transition-delay: 0.16s; }
.timeline-item:nth-child(5) .tl-card { transition-delay: 0.24s; }
.timeline-item:nth-child(6) .tl-card { transition-delay: 0.32s; }
.timeline-item:nth-child(7) .tl-card { transition-delay: 0.4s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CAPABILITY GRID
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cap-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(16px);
}

.cap-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.cap-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cap-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s;
}

.cap-card:hover i {
  transform: scale(1.15);
}

.cap-card h4 {
  font-size: 14px;
  font-weight: 700;
}

.cap-card:nth-child(1) { transition-delay: 0s; }
.cap-card:nth-child(2) { transition-delay: 0.05s; }
.cap-card:nth-child(3) { transition-delay: 0.1s; }
.cap-card:nth-child(4) { transition-delay: 0.15s; }
.cap-card:nth-child(5) { transition-delay: 0.2s; }
.cap-card:nth-child(6) { transition-delay: 0.25s; }
.cap-card:nth-child(7) { transition-delay: 0.3s; }
.cap-card:nth-child(8) { transition-delay: 0.35s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY GRID
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(16px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-3px);
}

.why-card > i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0.06s; }
.why-card:nth-child(3) { transition-delay: 0.12s; }
.why-card:nth-child(4) { transition-delay: 0.18s; }
.why-card:nth-child(5) { transition-delay: 0.24s; }
.why-card:nth-child(6) { transition-delay: 0.3s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BANNER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-banner {
  padding: 80px 0;
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(249, 115, 22, 0.08), transparent),
    var(--bg);
}

.cta-banner-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.12);
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-icon i {
  font-size: 26px;
  color: var(--accent);
}

.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-banner-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: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  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: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 0;
}

.footer-social a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  border-color: rgba(249, 115, 22, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-content { text-align: center; }
  .hero-content .breadcrumb { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }

  .platform-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline-line { left: 24px; }
  .tl-left, .tl-right { padding-left: 72px; padding-right: 0; justify-content: flex-start; }
  .tl-marker { left: 24px; }
}

@media (max-width: 768px) {
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: clamp(30px, 7vw, 44px); }

  .phone-mockup { width: 240px; height: 480px; }

  .sec { padding: 56px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 24px; }

  .cta-banner { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 32px); }
  .hero { padding: 120px 0 48px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { 
    flex-direction: row; 
    gap: 20px; 
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .hero-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }
  .hero-stat strong {
    font-size: 24px;
  }
  .hero-stat span {
    font-size: 12px;
  }

  .phone-mockup { width: 220px; height: 440px; }

  .platform-grid { max-width: 100%; }
  .capability-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .float-badge { display: none; }

  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-secondary { width: 100%; justify-content: center; }
}
