/* ==========================================================================
   ZIKO MASTER DESIGN SYSTEM — ULTRA PREMIUM & ATTRACTIVE EDITION
   Brand: ziko (A Unit of LK Enterprise)
   Aesthetics: Modern • Premium • Friendly • Local • Trustworthy • Tech-Driven
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand Core Colors */
  --ziko-orange: #FF6A00;
  --ziko-orange-dark: #EA580C;
  --ziko-orange-light: #FFF5EE;
  --ziko-orange-glow: rgba(255, 106, 0, 0.28);
  --ziko-gradient: linear-gradient(135deg, #FF7A00 0%, #FF451A 100%);
  --ziko-gradient-radial: radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.16) 0%, transparent 65%);
  --ziko-gradient-soft: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
  --ziko-gradient-dark: linear-gradient(135deg, #111827 0%, #070A0F 100%);
  --ziko-accent-cyan: #06B6D4;

  /* Category Accent Colors */
  --cat-food: #FF6A00;
  --cat-food-bg: #FFF3EB;
  --cat-grocery: #10B981;
  --cat-grocery-bg: #ECFDF5;
  --cat-meat: #E11D48;
  --cat-meat-bg: #FFF1F2;
  --cat-medicine: #0EA5E9;
  --cat-medicine-bg: #F0F9FF;
  --cat-salon: #8B5CF6;
  --cat-salon-bg: #F5F3FF;
  --cat-services: #3B82F6;
  --cat-services-bg: #EFF6FF;
  --cat-appointments: #F59E0B;
  --cat-appointments-bg: #FFFBEB;

  /* Neutrals */
  --bg-main: #FAFAF8;
  --bg-surface: #FFFFFF;
  --bg-warm-cream: #FAF6F0;
  --bg-light-orange: #FFF8F4;
  --bg-dark: #0F172A;
  --bg-darker: #080B10;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-glass: rgba(255, 255, 255, 0.9);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -4px rgba(15, 23, 42, 0.07), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 24px 50px -12px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-glow: 0 16px 44px rgba(255, 106, 0, 0.3);
  --shadow-mockup: 0 35px 80px -15px rgba(15, 23, 42, 0.3), 0 0 35px rgba(255, 106, 0, 0.18);

  /* Sizing & Radius */
  --container-max: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 9999px;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, Menlo, Monaco, Consolas, monospace;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-spacing {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.text-center {
  text-align: center;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ziko-orange-light);
  color: var(--ziko-orange);
  border: 1px solid rgba(255, 106, 0, 0.25);
  box-shadow: 0 2px 10px rgba(255, 106, 0, 0.08);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ziko-orange);
  box-shadow: 0 0 10px var(--ziko-orange);
}

.section-heading-h2 {
  font-size: clamp(2.15rem, 4.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.975rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ziko-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.45);
  filter: brightness(1.06);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: var(--shadow-md);
}

.btn-outline-orange {
  background: transparent;
  color: var(--ziko-orange);
  border: 1.5px solid var(--ziko-orange);
}

.btn-outline-orange:hover {
  background: var(--ziko-orange-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--text-main);
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: #FFFFFF;
  color: var(--ziko-orange);
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: #FFF9F5;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* --- Top Utility Bar (LK Enterprise & Direct Contact) --- */
.top-utility-bar {
  background: #0F172A;
  color: #94A3B8;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.parent-company-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E2E8F0;
  font-weight: 600;
}

.parent-company-tag strong {
  color: #FFA366;
}

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-contact-links a {
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.top-contact-links a:hover {
  color: #FFA366;
}

/* ==========================================================================
   1. HEADER
   ========================================================================== */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.8rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.brand-logo-text {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-main);
  line-height: 1;
}

.brand-sub-badge {
  font-size: 0.62rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--ziko-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ziko-orange);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: transparent;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav-overlay {
  position: fixed;
  top: 4.8rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-overlay .nav-link {
  font-size: 1.15rem;
  padding: 0.5rem 0;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background: var(--ziko-gradient-radial), var(--bg-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-h1 {
  font-size: clamp(2.85rem, 5.5vw, 4.45rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-h1 .highlight {
  background: var(--ziko-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-location-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.hero-trust-line {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ziko-orange);
  box-shadow: 0 0 6px var(--ziko-orange);
}

/* Smartphone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 320px;
  perspective: 1200px;
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #0B0E14;
  border-radius: 48px;
  padding: 12px;
  box-shadow: var(--shadow-mockup);
  position: relative;
  overflow: hidden;
  border: 4px solid #232D3F;
  transform: rotate(-1.5deg) rotateY(3deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame:hover {
  transform: translateY(-8px) rotate(0deg);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-speaker {
  width: 36px;
  height: 3px;
  background: #2D3748;
  border-radius: 3px;
}

.phone-camera {
  width: 8px;
  height: 8px;
  background: #1E293B;
  border-radius: 50%;
  border: 1px solid #334155;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 38px;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  padding: 1.25rem;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

/* Floating Badges on Hero */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
  animation: floatHeroCard 4.5s ease-in-out infinite alternate;
}

.floating-card-1 { top: 7%; left: -20%; animation-delay: 0s; }
.floating-card-2 { bottom: 25%; left: -24%; animation-delay: 1.2s; }
.floating-card-3 { top: 20%; right: -20%; animation-delay: 0.6s; }
.floating-card-4 { bottom: 8%; right: -22%; animation-delay: 1.8s; }

.fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.fc-text h4 {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

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

@keyframes floatHeroCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   3. FLOATING CATEGORY STRIP
   ========================================================================== */
.category-strip-section {
  padding-top: 1.85rem;
  padding-bottom: 2.35rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #FFFFFF;
}

.category-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.cat-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.cat-pill-food { background: var(--cat-food-bg); color: var(--cat-food); }
.cat-pill-grocery { background: var(--cat-grocery-bg); color: var(--cat-grocery); }
.cat-pill-meat { background: var(--cat-meat-bg); color: var(--cat-meat); }
.cat-pill-medicine { background: var(--cat-medicine-bg); color: var(--cat-medicine); }
.cat-pill-salon { background: var(--cat-salon-bg); color: var(--cat-salon); }
.cat-pill-services { background: var(--cat-services-bg); color: var(--cat-services); }
.cat-pill-appointments { background: var(--cat-appointments-bg); color: var(--cat-appointments); }

/* ==========================================================================
   4. WHAT IS ZIKO? SECTION
   ========================================================================== */
.what-is-ziko {
  background: #FFFFFF;
}

.what-ziko-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.network-diagram-box {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.net-node-customer {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  max-width: 200px;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.net-connector-line {
  width: 2px;
  height: 25px;
  background: var(--ziko-orange);
  margin: 0 auto;
}

.net-middle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.net-node-mid {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.net-node-ziko {
  background: var(--ziko-gradient);
  color: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  font-weight: 900;
  font-size: 1.15rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-glow);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   5. EVERYTHING YOU NEED (8 Cards)
   ========================================================================== */
.everything-need-section {
  background: var(--bg-warm-cream);
}

.cards-8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.card-item-8 {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.card-item-8:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 106, 0, 0.35);
}

.ci8-icon {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.card-item-8 h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.card-item-8 p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   6. HOW IT WORKS (Progression)
   ========================================================================== */
.how-it-works-section {
  background: #FFFFFF;
}

.how-journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.steps-v-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-v-card {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-main);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-v-card.active {
  background: #FFFFFF;
  border-color: var(--ziko-orange);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.step-v-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: #94A3B8;
  font-family: var(--font-mono);
  transition: color 0.3s ease;
}

.step-v-card.active .step-v-num {
  color: var(--ziko-orange);
}

.step-v-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.step-v-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Progression Mockup */
.journey-mockup-frame {
  width: 310px;
  height: 590px;
  background: #0B0E14;
  border-radius: 44px;
  padding: 10px;
  box-shadow: var(--shadow-mockup);
  position: relative;
  margin: 0 auto;
  border: 3px solid #232D3F;
}

.journey-screen {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 34px;
  padding: 1.5rem 1.15rem;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
}

.journey-screen.active {
  display: flex;
}

/* ==========================================================================
   7. APP EXPERIENCE (4 Primary Phones)
   ========================================================================== */
.app-experience-section {
  background: var(--bg-main);
}

.phones-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.phone-card-container {
  text-align: center;
}

.phone-card-mock {
  background: #0B0E14;
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
  border: 3px solid #232D3F;
}

.phone-card-mock:hover {
  transform: translateY(-8px);
}

.phone-card-screen {
  background: #FFFFFF;
  border-radius: 28px;
  height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.phone-caption-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.phone-caption-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   8. CUSTOMER SECTION
   ========================================================================== */
.customer-section {
  background: var(--ziko-gradient-soft);
  position: relative;
  overflow: hidden;
}

.customer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.checklist-10-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.check-icon {
  color: #10B981;
  font-weight: 900;
}

.customer-mock-stack {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-phone-1 {
  position: absolute;
  left: 5%;
  top: 10%;
  width: 250px;
  height: 460px;
  background: #0B0E14;
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-6deg);
  z-index: 1;
  border: 2px solid #232D3F;
}

.stack-phone-2 {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 250px;
  height: 460px;
  background: #0B0E14;
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-mockup);
  transform: rotate(4deg);
  z-index: 2;
  border: 2px solid #232D3F;
}

/* ==========================================================================
   9. LOCAL BUSINESS SECTION
   ========================================================================== */
.business-section {
  background: #FFFFFF;
}

.business-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}

.biz-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.6rem;
  transition: all 0.3s ease;
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 106, 0, 0.35);
  background: #FFFFFF;
}

.biz-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.biz-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.biz-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   10. BUILT FOR LOCAL (Dark Differentiation Hub)
   ========================================================================== */
.built-local-section {
  background: var(--bg-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.built-local-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.25) 0%, transparent 70%);
}

.local-connected-box {
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.nodes-4-orbital {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.orbital-node {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
}

.orbital-node h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 0.5rem;
}

.orbital-node p {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 0.35rem;
}

.core-ziko-orbit {
  background: var(--ziko-gradient);
  border-radius: var(--radius-pill);
  padding: 1.1rem 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 900;
  font-size: 1.3rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   11. DELIVERY PARTNER SECTION
   ========================================================================== */
.delivery-section {
  background: var(--bg-warm-cream);
}

.rider-features-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}

.rider-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.6rem;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.rider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ziko-orange);
}

.rider-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.rider-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   12. FRANCHISE / AREA PARTNER SECTION
   ========================================================================== */
.franchise-section {
  background: var(--bg-light-orange);
}

.franchise-numbers-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.f-num-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 106, 0, 0.18);
  box-shadow: var(--shadow-sm);
}

.f-big-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ziko-orange);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.f-num-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.f-num-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.franchise-starter-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.f-tree-diagram {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   13. BUSINESS ECOSYSTEM
   ========================================================================== */
.ecosystem-flow-section {
  background: #FFFFFF;
}

.eco-circular-diagram {
  background: var(--bg-main);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  border: 1px solid var(--border-subtle);
  margin-top: 3.5rem;
  text-align: center;
}

/* ==========================================================================
   14. LAUNCH AREA (Jhikira, Howrah)
   ========================================================================== */
.launch-section {
  background: var(--bg-warm-cream);
}

.launch-map-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  background: #E5E9EE;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  margin-top: 3.5rem;
}

.map-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-pin-pulse {
  position: relative;
  z-index: 5;
  text-align: center;
}

.map-pin-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ziko-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 0 10px rgba(255, 106, 0, 0.2), 0 0 0 22px rgba(255, 106, 0, 0.1);
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4), 0 0 0 10px rgba(255, 106, 0, 0.2); }
  70% { box-shadow: 0 0 0 22px rgba(255, 106, 0, 0), 0 0 0 40px rgba(255, 106, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0), 0 0 0 0 rgba(255, 106, 0, 0); }
}

/* ==========================================================================
   15. WHY ZIKO?
   ========================================================================== */
.why-section {
  background: #FFFFFF;
}

.why-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-card-box {
  background: var(--bg-main);
  padding: 2.25rem 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.why-card-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 106, 0, 0.35);
  background: #FFFFFF;
}

.why-card-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   16 & 17. VISION & WHY LOCAL
   ========================================================================== */
.vision-dark-section {
  background: var(--bg-darker);
  color: #FFFFFF;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.why-local-white-section {
  background: #FFFFFF;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.why-local-statement {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.local-pillars-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.local-pillar-box {
  background: var(--bg-main);
  padding: 1.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.local-pillar-box h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.local-pillar-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   18. SCREENSHOT SHOWCASE
   ========================================================================== */
.screenshots-showcase-section {
  background: var(--bg-warm-cream);
  overflow: hidden;
}

.screens-5-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  padding: 2rem 0.5rem 2.5rem;
  scrollbar-width: none;
}

.screens-5-track::-webkit-scrollbar {
  display: none;
}

.screen-5-item {
  flex: 0 0 255px;
  background: #0B0E14;
  border-radius: 36px;
  padding: 9px;
  box-shadow: var(--shadow-mockup);
  transition: transform 0.3s ease;
  border: 2px solid #232D3F;
}

.screen-5-item:hover {
  transform: translateY(-8px);
}

.screen-5-inner {
  background: #FFFFFF;
  border-radius: 28px;
  height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

/* ==========================================================================
   19. JOIN THE ECOSYSTEM (4 Cards)
   ========================================================================== */
.join-ecosystem-section {
  background: #FFFFFF;
}

.join-4-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.join-big-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.65rem;
  border: 1.5px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.join-big-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ziko-orange);
  background: #FFFFFF;
}

.jbc-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.join-big-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.join-big-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   20. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--bg-warm-cream);
}

.faq-accordion-list {
  max-width: 820px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-card-item.open {
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-trigger-btn {
  width: 100%;
  padding: 1.35rem 1.65rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.faq-symbol {
  font-size: 1.3rem;
  color: var(--ziko-orange);
  transition: transform 0.3s ease;
}

.faq-card-item.open .faq-symbol {
  transform: rotate(45deg);
}

.faq-body-content {
  padding: 0 1.65rem 1.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq-card-item.open .faq-body-content {
  display: block;
}

/* ==========================================================================
   21. FINAL CTA BANNER
   ========================================================================== */
.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-cta-banner {
  background: var(--ziko-gradient);
  border-radius: var(--radius-xl);
  padding: 5.5rem 3rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.final-cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
}

.final-cta-banner h2 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.final-cta-banner p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.cta-3-buttons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   22. FOOTER
   ========================================================================== */
.footer-dark-hub {
  background: #080B10;
  color: #94A3B8;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid-4col {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-summary h3 {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.footer-mother-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #FFA366;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.footer-tagline-text {
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #CBD5E1;
  margin-bottom: 0.5rem;
}

.footer-contact-item a:hover {
  color: var(--ziko-orange);
}

.footer-col-nav h5 {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: #94A3B8;
}

.footer-nav-list a:hover {
  color: var(--ziko-orange);
}

.footer-bottom-line {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   MOBILE BOTTOM BAR & MODALS
   ========================================================================== */
.mobile-sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.75rem 1.25rem;
  z-index: 990;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  justify-content: space-between;
  align-items: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-main);
  font-size: 0.925rem;
  color: var(--text-main);
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ziko-orange);
  background: #FFFFFF;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .what-ziko-grid, .customer-grid, .vision-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content { margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-line { justify-content: center; }
  .checklist-10-grid { justify-content: center; }
  
  .phones-4-grid, .business-cards-4, .nodes-4-orbital, .rider-features-4, .why-4-grid, .local-pillars-4, .join-4-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .franchise-numbers-3 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .mobile-sticky-bottom-bar {
    display: flex;
  }

  .top-utility-bar {
    display: none;
  }

  .phone-mockup-wrapper { width: 290px; }
  .phone-frame { width: 290px; height: 580px; }
  
  .floating-card-1 { left: -4%; }
  .floating-card-2 { left: -4%; }
  .floating-card-3 { right: -4%; }
  .floating-card-4 { right: -4%; }

  .how-journey-grid {
    grid-template-columns: 1fr;
  }

  .phones-4-grid, .business-cards-4, .nodes-4-orbital, .rider-features-4, .why-4-grid, .local-pillars-4, .join-4-cards-grid {
    grid-template-columns: 1fr;
  }

  .checklist-10-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-4col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-line {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
