/* ===================================
   JINSOKU ENTERPRISES — STYLESHEET
   Quick Commerce Operations Partner
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS TOKENS ─── */
:root {
  --bg-dark:       #07080F;
  --bg-card:       #0E1020;
  --bg-card-alt:   #111428;
  --primary:       #00E676;
  --primary-dim:   rgba(0, 230, 118, 0.12);
  --secondary:     #7C3AED;
  --secondary-dim: rgba(124, 58, 237, 0.12);
  --accent:        #FF6D00;
  --accent-dim:    rgba(255, 109, 0, 0.12);
  --yellow:        #FFD60A;
  --yellow-dim:    rgba(255, 214, 10, 0.12);
  --text-primary:  #FFFFFF;
  --text-secondary:#94A3B8;
  --text-muted:    #4A5568;
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(255, 255, 255, 0.15);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --shadow-glow-green:  0 0 40px rgba(0, 230, 118, 0.2);
  --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.2);
  --shadow-glow-orange: 0 0 40px rgba(255, 109, 0, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 10px;
  opacity: 0.8;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00ffaa, #A78BFA);
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag.purple {
  background: var(--secondary-dim);
  border-color: rgba(124, 58, 237, 0.25);
  color: #A78BFA;
}

.section-tag.orange {
  background: var(--accent-dim);
  border-color: rgba(255, 109, 0, 0.25);
  color: var(--accent);
}

.section-tag.yellow {
  background: var(--yellow-dim);
  border-color: rgba(255, 214, 10, 0.25);
  color: var(--yellow);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.highlight-green  { color: var(--primary); }
.highlight-purple { color: #A78BFA; }
.highlight-orange { color: var(--accent); }
.highlight-yellow { color: var(--yellow); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #00B894);
  color: #07080F;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 230, 118, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 230, 118, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 100px;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.glass-card {
  background: rgba(14, 16, 32, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

/* ─── ANIMATED BACKGROUND MESH ─── */
.bg-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-mesh::before,
.bg-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: pulse-blob 8s ease-in-out infinite alternate;
}

.bg-mesh::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  top: -20%; left: -10%;
}

.bg-mesh::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  bottom: -10%; right: -5%;
  animation-delay: 4s;
}

@keyframes pulse-blob {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(30px, -30px); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────
   NAVBAR
────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(7, 8, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  letter-spacing: -1px;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--primary); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #00B894);
  color: #07080F !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 100px;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(0, 230, 118, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 230, 118, 0.45) !important;
}

.nav-cta::after { display: none !important; }

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

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(7, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 24px 24px;
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 999;
}

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

.mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); padding-left: 8px; }

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: 0;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--secondary), transparent 65%);
  top: -30%; left: -15%;
  animation: float-orb 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary), transparent 65%);
  bottom: -10%; right: 0%;
  animation: float-orb 9s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  top: 40%; right: 30%;
  opacity: 0.15;
  animation: float-orb 15s ease-in-out infinite;
}

@keyframes float-orb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -40px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,230,118,0.1), rgba(124,58,237,0.1));
  border: 1px solid rgba(0,230,118,0.3);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: badge-glow 3s ease-in-out infinite;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(0,230,118,0); }
  50%       { box-shadow: 0 0 20px rgba(0,230,118,0.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title .line-green {
  background: linear-gradient(90deg, var(--primary), #00B894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-gradient {
  background: linear-gradient(90deg, #A78BFA, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-platforms-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Logo Bar ── */
.platform-logobar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 6px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.plb-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 100px;
  transition: var(--transition);
  cursor: default;
}

.plb-item:hover { background: rgba(255,255,255,0.06); }

.plb-blinkit  { color: #99DE00; }
.plb-zepto    { color: #A78BFA; }
.plb-amazon   { color: #FF9900; }
.plb-instamart{ color: #FF5C00; }
.plb-flipkart { color: #2F6EFF; }

.plb-divider {
  width: 1px;
  height: 16px;
  background: var(--border-hover);
  flex-shrink: 0;
}

/* ──────────────────────────────────
   ABOUT
────────────────────────────────── */
#about {
  padding: 100px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.12;
  border-radius: 50%;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.about-stat-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-stat-item:hover {
  background: rgba(0,230,118,0.05);
  border-color: rgba(0,230,118,0.2);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
}

.about-floating-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #FF9500);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(255,109,0,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-text .section-subtitle {
  max-width: none;
  margin-bottom: 28px;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon-wrap {
  width: 38px; height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.fi-green  { background: var(--primary-dim); }
.fi-purple { background: var(--secondary-dim); }
.fi-orange { background: var(--accent-dim); }

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ──────────────────────────────────
   SERVICES
────────────────────────────────── */
#services {
  padding: 100px 0;
  position: relative;
}

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

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

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

.service-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }
.service-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.4); }

.sc-green:hover  { border-color: rgba(0,230,118,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,230,118,0.08); }
.sc-purple:hover { border-color: rgba(124,58,237,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.08); }
.sc-orange:hover { border-color: rgba(255,109,0,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,109,0,0.08); }
.sc-yellow:hover { border-color: rgba(255,214,10,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,214,10,0.08); }

.sc-green::before  { background: linear-gradient(90deg, var(--primary), #00B894); }
.sc-purple::before { background: linear-gradient(90deg, var(--secondary), #A78BFA); }
.sc-orange::before { background: linear-gradient(90deg, var(--accent), #FF9500); }
.sc-yellow::before { background: linear-gradient(90deg, var(--yellow), #FF9500); }

.service-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.si-green  { background: var(--primary-dim); box-shadow: 0 0 20px rgba(0,230,118,0.1); }
.si-purple { background: var(--secondary-dim); box-shadow: 0 0 20px rgba(124,58,237,0.1); }
.si-orange { background: var(--accent-dim); box-shadow: 0 0 20px rgba(255,109,0,0.1); }
.si-yellow { background: var(--yellow-dim); box-shadow: 0 0 20px rgba(255,214,10,0.1); }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.s-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid;
}

.st-green  { background: var(--primary-dim); border-color: rgba(0,230,118,0.2); color: var(--primary); }
.st-purple { background: var(--secondary-dim); border-color: rgba(124,58,237,0.2); color: #A78BFA; }
.st-orange { background: var(--accent-dim); border-color: rgba(255,109,0,0.2); color: var(--accent); }
.st-yellow { background: var(--yellow-dim); border-color: rgba(255,214,10,0.2); color: var(--yellow); }

/* ──────────────────────────────────
   PLATFORMS
────────────────────────────────── */
#platforms {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.platforms-bg-stripe {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04), transparent);
  pointer-events: none;
}

.platforms-header {
  text-align: center;
  margin-bottom: 60px;
}

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

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

.platforms-grid-single {
  display: flex;
  justify-content: center;
}

.platform-card-large {
  flex-direction: row;
  gap: 24px;
  padding: 40px 60px;
  max-width: 400px;
  width: 100%;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  transition: var(--transition);
  cursor: default;
  text-align: center;
}

.platform-card:hover { transform: translateY(-6px); }

.platform-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.platform-card:hover .platform-icon-wrap { transform: scale(1.1); }

.pc-blinkit  { border-color: rgba(153,222,0,0.2); }
.pc-blinkit:hover  { border-color: rgba(153,222,0,0.4); box-shadow: 0 20px 50px rgba(153,222,0,0.1); }
.pc-blinkit .platform-icon-wrap { background: rgba(153,222,0,0.1); }

.pc-zepto { border-color: rgba(124,58,237,0.2); }
.pc-zepto:hover { border-color: rgba(124,58,237,0.4); box-shadow: 0 20px 50px rgba(124,58,237,0.1); }
.pc-zepto .platform-icon-wrap { background: rgba(124,58,237,0.1); }

.pc-amazon { border-color: rgba(255,153,0,0.2); }
.pc-amazon:hover { border-color: rgba(255,153,0,0.4); box-shadow: 0 20px 50px rgba(255,153,0,0.1); }
.pc-amazon .platform-icon-wrap { background: rgba(255,153,0,0.1); }

.pc-instamart { border-color: rgba(255,92,0,0.2); }
.pc-instamart:hover { border-color: rgba(255,92,0,0.4); box-shadow: 0 20px 50px rgba(255,92,0,0.1); }
.pc-instamart .platform-icon-wrap { background: rgba(255,92,0,0.1); }

.pc-flipkart { border-color: rgba(47,110,255,0.2); }
.pc-flipkart:hover { border-color: rgba(47,110,255,0.4); box-shadow: 0 20px 50px rgba(47,110,255,0.1); }
.pc-flipkart .platform-icon-wrap { background: rgba(47,110,255,0.1); }

.platform-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.pn-blinkit   { color: #99DE00; }
.pn-zepto     { color: #A78BFA; }
.pn-amazon    { color: #FF9900; }
.pn-instamart { color: #FF5C00; }
.pn-flipkart  { color: #2F6EFF; }

.platform-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ──────────────────────────────────
   WHY CHOOSE US
────────────────────────────────── */
#why-us {
  padding: 100px 0;
  position: relative;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

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

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

.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.wc-1::after { background: radial-gradient(circle at 50% 100%, rgba(0,230,118,0.08), transparent 70%); }
.wc-2::after { background: radial-gradient(circle at 50% 100%, rgba(124,58,237,0.08), transparent 70%); }
.wc-3::after { background: radial-gradient(circle at 50% 100%, rgba(255,109,0,0.08), transparent 70%); }
.wc-4::after { background: radial-gradient(circle at 50% 100%, rgba(255,214,10,0.08), transparent 70%); }

.why-card:hover { transform: translateY(-6px); }
.why-card:hover::after { opacity: 1; }

.wc-1:hover { border-color: rgba(0,230,118,0.25); }
.wc-2:hover { border-color: rgba(124,58,237,0.25); }
.wc-3:hover { border-color: rgba(255,109,0,0.25); }
.wc-4:hover { border-color: rgba(255,214,10,0.25); }

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.wn-1 { background: linear-gradient(135deg, var(--primary), #00B894); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wn-2 { background: linear-gradient(135deg, var(--secondary), #A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wn-3 { background: linear-gradient(135deg, var(--accent), #FF9500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wn-4 { background: linear-gradient(135deg, var(--yellow), #FF9500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ──────────────────────────────────
   HOW IT WORKS
────────────────────────────────── */
#how-it-works {
  padding: 100px 0;
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 70px;
}

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

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

.how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0.4;
  z-index: 0;
}

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

.step-number-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  position: relative;
}

.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  border: 2px solid;
  transition: var(--transition);
}

.sn-1 { background: var(--primary-dim); border-color: var(--primary); color: var(--primary); box-shadow: 0 0 24px rgba(0,230,118,0.2); }
.sn-2 { background: var(--secondary-dim); border-color: var(--secondary); color: #A78BFA; box-shadow: 0 0 24px rgba(124,58,237,0.2); }
.sn-3 { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); box-shadow: 0 0 24px rgba(255,109,0,0.2); }

.step-card:hover .step-number { transform: scale(1.1); }

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ──────────────────────────────────
   TEAM
────────────────────────────────── */
#team {
  padding: 100px 0;
  position: relative;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

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

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

.team-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.team-avatar {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ta-1 { background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(0,184,148,0.1)); }
.ta-2 { background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(167,139,250,0.1)); }
.ta-3 { background: linear-gradient(135deg, rgba(255,109,0,0.15), rgba(255,149,0,0.1)); }
.ta-4 { background: linear-gradient(135deg, rgba(47,110,255,0.15), rgba(99,179,237,0.1)); }

.avatar-initials {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: white;
  position: relative;
  z-index: 1;
}

.ai-1 { background: linear-gradient(135deg, var(--primary), #00B894); box-shadow: 0 0 30px rgba(0,230,118,0.3); }
.ai-2 { background: linear-gradient(135deg, var(--secondary), #A78BFA); box-shadow: 0 0 30px rgba(124,58,237,0.3); }
.ai-3 { background: linear-gradient(135deg, var(--accent), #FF9500); box-shadow: 0 0 30px rgba(255,109,0,0.3); }
.ai-4 { background: linear-gradient(135deg, #2F6EFF, #63B3ED); box-shadow: 0 0 30px rgba(47,110,255,0.3); }

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.tr-1 { background: var(--primary-dim); color: var(--primary); }
.tr-2 { background: var(--secondary-dim); color: #A78BFA; }
.tr-3 { background: var(--accent-dim); color: var(--accent); }
.tr-4 { background: rgba(47,110,255,0.1); color: #2F6EFF; }

.team-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ──────────────────────────────────
   CONTACT
────────────────────────────────── */
#contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.06), transparent 70%);
  bottom: -20%; right: -10%;
  pointer-events: none;
}

.contact-solo {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-solo .section-tag { margin-bottom: 20px; }
.contact-solo .section-subtitle { margin: 0 auto 48px; }

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(0,230,118,0.08);
}

.contact-card .cd-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card .cd-content { flex: 1; }

.contact-card .cd-content h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-card .cd-content p {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-card-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-card:hover .contact-card-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

.cdi-green  { background: var(--primary-dim); }
.cdi-purple { background: var(--secondary-dim); }
.cdi-orange { background: var(--accent-dim); }

/* ──────────────────────────────────
   FOOTER
────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-dark), #050609);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ──────────────────────────────────
   RESPONSIVE
────────────────────────────────── */
@media (max-width: 1100px) {
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #hero { padding: 110px 0 70px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { padding: 100px 0 60px; }
  .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; }
  .hero-platforms { flex-direction: column; align-items: flex-start; gap: 12px; }
  .platform-logobar {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
    padding: 8px;
    gap: 4px;
  }
  .plb-divider { display: none; }
  .plb-item { padding: 6px 12px; font-size: 0.78rem; }

  /* Sections */
  #about, #services, #platforms, #why-us, #how-it-works, #contact { padding: 70px 0; }
  .section-title { font-size: 1.8rem; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  /* Hero */
  #hero { padding: 90px 0 50px; }
  .hero-title { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  /* Sections */
  #about, #services, #platforms, #why-us, #how-it-works, #contact { padding: 60px 0; }
  .section-title { font-size: 1.65rem; }

  /* Grids */
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Contact card text overflow */
  .contact-card .cd-content p { font-size: 0.82rem; word-break: break-all; }
}
