/* ==========================================================================
   SpotnRides Super App Development - Diverse Editorial & Interactive Design
   (Eliminates repetitive card grids; uses Bento, Split Showcase, Timelines, Matrices)
   ========================================================================== */

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

:root {
  /* Core Light Palette */
  --bg-body: #ffffff;
  --bg-surface: #f8fafc;
  --bg-surface-subtle: #f1f5f9;
  --bg-surface-accent: #eef4ff;
  
  /* Brand Gradients & Accents (Vibrant Super App Purple #C083F4 & #9A35F3) */
  --primary: #9A35F3;
  --primary-hover: #861fe0;
  --primary-light: #f5ebff;
  --primary-glow: rgba(154, 53, 243, 0.35);
  --secondary: #C083F4;
  --accent-purple: #9A35F3;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  --gradient-brand: linear-gradient(135deg, #9A35F3 0%, #ab4bf7 50%, #C083F4 100%);
  --gradient-hero: radial-gradient(circle at 80% 15%, rgba(154, 53, 243, 0.15) 0%, rgba(192, 131, 244, 0.08) 40%, rgba(255, 255, 255, 0) 70%);
  --gradient-dark-banner: linear-gradient(135deg, #091024 0%, #0f1c3f 60%, #172a5e 100%);
  --gradient-cta: linear-gradient(135deg, #9A35F3 0%, #ab4bf7 50%, #C083F4 100%);

  /* Typography Colors */
  --text-main: #0b132b;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;

  /* Borders & Dividers */
  --border-light: rgba(15, 23, 42, 0.08);
  --border-focus: rgba(27, 95, 253, 0.4);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -4px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 60px -12px rgba(27, 95, 253, 0.18);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Fonts & Transitions */
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: var(--gradient-brand);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease-out;
}

h1 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
}

h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

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

.section {
  padding: 4.25rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-header.left-aligned {
  text-align: left;
  margin: 0 0 1.75rem 0;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.section-title {
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title.left-aligned {
  text-align: left;
  margin: 0 0 1.25rem 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--primary-glow);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface-accent);
  color: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 72px;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.brand-icon-box {
  width: 36px;
  height: 36px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
}

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

.nav-link-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
}

.nav-link-item:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle-btn {
  display: none;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section - Exact Match to Reference Design
   ========================================================================== */
.hero-wrap {
  padding-top: calc(3.5rem + 68px);
  padding-bottom: 3.5rem;
  background: url('images/hero-bg-spotnsuper.png') no-repeat center top / cover, linear-gradient(180deg, #faf7ff 0%, #f3ebff 40%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-glow-blob-1 {
  position: absolute;
  top: -10%;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(192, 131, 244, 0.28) 0%, rgba(154, 53, 243, 0.08) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(50px);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-glow-blob-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(154, 53, 243, 0.2) 0%, rgba(192, 131, 244, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-cityscape-left, .hero-cityscape-right {
  position: absolute;
  bottom: 0;
  width: 300px;
  height: 160px;
  opacity: 0.07;
  background-repeat: repeat-x;
  background-position: bottom;
  pointer-events: none;
}
.hero-cityscape-right {
  right: 0;
  width: 450px;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.1) translate(20px, 15px); opacity: 1; }
}

.hero-wrap .container {
  max-width: 1380px;
}

.hero-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Left Column Typography & Elements */
.hero-text-side {
  position: relative;
  z-index: 3;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.15rem;
  background: rgba(154, 53, 243, 0.08);
  border: 1px solid rgba(154, 53, 243, 0.25);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-main-title {
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.025em;
  margin-bottom: 1.35rem;
}

.hero-growth-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.growth-brush-underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
  pointer-events: none;
}

.hero-main-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.btn-hero-secondary,
.btn-hero-whatsapp {
  background: #25D366;
  border: 1.5px solid #20bd5a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.btn-hero-secondary:hover,
.btn-hero-whatsapp:hover {
  background: #1eb854;
  border-color: #1aa049;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-hero-whatsapp svg {
  flex-shrink: 0;
}

.hero-metrics-strip {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(154, 53, 243, 0.12);
}

.metric-strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.metric-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(154, 53, 243, 0.08);
  border: 1px solid rgba(154, 53, 243, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.metric-text-group {
  display: flex;
  flex-direction: column;
}

.metric-strip-number {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
  text-align:left;
}

.metric-strip-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.15rem;
  white-space: nowrap;
}

/* ==========================================================================
   Hero Visual Stage: Hero Panel Showcase Image
   ========================================================================== */
.hero-stage-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-showcase {
  position: relative;
  width: 100%;
  max-width: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-spotnsuper-panel-img,
.hero-turo-panel-img {
  width: 100%;
  height: auto;
  max-width: 820px;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(154, 53, 243, 0.18));
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: heroFloatPanel 6s ease-in-out infinite alternate;
}

.hero-spotnsuper-panel-img:hover,
.hero-turo-panel-img:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 25px 55px rgba(154, 53, 243, 0.28));
}

@keyframes heroFloatPanel {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Responsive Media Queries for Hero Section */
@media (max-width: 1024px) {
  .hero-wrap {
    padding-top: 100px;
    padding-bottom: 2.75rem;
  }
  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-badge-pill {
    margin: 0 auto 1rem auto;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    padding: 0.4rem 1.15rem;
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .hero-main-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-main-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .hero-cta-group {
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 1.75rem auto;
    gap: 0.85rem;
  }
  .hero-metrics-strip {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    width: 100%;
  }
  .hero-image-showcase {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-wrap {
    padding-top: 92px;
    padding-bottom: 2.25rem;
  }
  .hero-badge-pill {
    font-size: 0.7rem;
    padding: 0.35rem 0.95rem;
  }
  .hero-main-title {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem);
  }
  .hero-growth-wrap {
    white-space: normal;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .hero-cta-group .btn,
  .hero-cta-group .btn-hero-secondary,
  .hero-cta-group .btn-hero-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
  }
  .hero-metrics-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 320px;
    margin: 0 auto;
    padding-top: 1.25rem;
  }
  .metric-strip-item {
    justify-content: flex-start;
    background: #ffffff;
    padding: 0.75rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(154, 53, 243, 0.15);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    text-align: left;
  }
  .hero-image-showcase {
    max-width: 100%;
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-wrap {
    padding-top: 86px;
    padding-bottom: 2rem;
  }
  .hero-main-title {
    font-size: 1.75rem;
  }
  .hero-main-desc {
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   Section 2: What is Super App - Editorial Split
   ========================================================================== */
.editorial-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.checklist-clean {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}

.checklist-clean-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.checklist-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(154, 53, 243, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.architecture-hub-diagram {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hub-master-node {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.hub-satellites-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.hub-satellite-tag {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hub-satellite-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   Section 3: 12 Services - Interactive Master Hub (Left List + Right Live Preview)
   ========================================================================== */
/* ==========================================================================
   Section 3: 12 Services - Interactive Master Hub (H2)
   (Interactive Service Showcase: 12-Service Nav + Live Right Image Showcase)
   ========================================================================== */
.services-master-section {
  background: #f8fafc;
  padding: 56px 0;
}

.service-master-hub {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.02);
}

/* Left Single-Column Vertical List of 6 Service Navigation Tabs */
.service-cards-vertical-list,
.service-cards-grid-2col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: space-between;
}

.service-card-item {
  background: #ffffff;
  border: 1.5px solid #eef2f6;
  border-radius: 16px;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  outline: none;
  user-select: none;
  text-align: left;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.service-card-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.service-card-item:focus-visible {
  outline: 2px solid #1b5ffd;
  outline-offset: 2px;
}

/* Active State matching design */
.service-card-item.active {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.09);
  transform: translateX(3px);
}

/* Left Icon Box (Clean & Compact) */
.service-card-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.service-card-item:hover .service-card-icon-box {
  transform: scale(1.06);
}

.service-card-icon-box.bg-blue { background: #1b5ffd; }
.service-card-icon-box.bg-orange { background: #f97316; }
.service-card-icon-box.bg-green { background: #10b981; }
.service-card-icon-box.bg-purple { background: #8b5cf6; }
.service-card-icon-box.bg-amber { background: #f59e0b; }
.service-card-icon-box.bg-cyan { background: #06b6d4; }

/* Text Content Beside Icon */
.service-card-content-wrap {
  margin: 0;
  flex: 1;
}

.service-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
  font-family: var(--font-heading, sans-serif);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.service-card-tagline {
  font-size: 0.83rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
  font-weight: 500;
}

/* Right Dynamic Live Detail Showcase (ONE Reusable Panel) */
.service-preview-panel {
  background: linear-gradient(145deg, #edf6ff 0%, #f4f9ff 60%, #eaf4ff 100%);
  border: 1.5px solid rgba(191, 219, 254, 0.85);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-preview-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Dedicated Right Image Showcase */
.preview-image-side {
  width: 100%;
}

.preview-image-card {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(15, 23, 42, 0.04);
  background: #f1f5f9;
}

.preview-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.preview-image-card:hover .preview-hero-image {
  transform: scale(1.03);
}

.preview-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: liveBadgePulse 1.8s infinite;
}

@keyframes liveBadgePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Service Details Content Area */
.preview-content-side {
  display: flex;
  flex-direction: column;
}

.preview-badge-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 8px;
  align-self: flex-start;
  font-family: var(--font-heading, sans-serif);
}

.preview-service-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  color: #0b132b;
  line-height: 1.2;
  margin: 6px 0 10px;
  font-family: var(--font-heading, sans-serif);
  letter-spacing: -0.02em;
}

.preview-service-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 18px;
}

/* 4-Feature 2x2 Grid */
.preview-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin-bottom: 22px;
}

.preview-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1b5ffd;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(27, 95, 253, 0.35);
}

.preview-check-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}

.preview-actions-row {
  margin-top: auto;
}

.btn-preview-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b5ffd;
  color: #ffffff;
  border-radius: var(--radius-full, 9999px);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading, sans-serif);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(27, 95, 253, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-preview-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 95, 253, 0.48);
  background: #144fd9;
}

.btn-preview-launch svg {
  transition: transform 0.2s ease;
}

.btn-preview-launch:hover svg {
  transform: translateX(4px);
}

/* Decorative Dots Pattern */
.preview-dots-pattern {
  position: absolute;
  bottom: 20px;
  right: 20px;
  pointer-events: none;
  z-index: 1;
}

/* Smooth Fade + Slight Slide Animation */
.preview-animating {
  animation: servicePreviewFadeSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes servicePreviewFadeSlide {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hub Styles */
@media (max-width: 992px) {
  .service-master-hub {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }
  .service-cards-vertical-list,
  .service-cards-grid-2col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .service-card-item:hover,
  .service-card-item.active {
    transform: none;
  }
  .preview-checklist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .service-master-hub {
    padding: 16px;
    border-radius: 20px;
    gap: 16px;
  }
  
  .service-cards-vertical-list,
  .service-cards-grid-2col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .service-card-item {
    padding: 10px 14px;
    border-radius: 14px;
    gap: 12px;
  }

  .service-card-icon-box {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .service-card-icon-box svg {
    width: 18px;
    height: 18px;
  }

  .service-card-name {
    font-size: 0.98rem;
  }

  .service-card-tagline {
    font-size: 0.8rem;
  }

  .service-preview-panel {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .service-preview-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .preview-image-side {
    order: 1;
  }

  .preview-content-side {
    order: 2;
  }

  .preview-image-card {
    height: 190px;
  }

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

/* ==========================================================================
   Section 3.5: Custom Services Showcase (Horizontal Carousel)
   (Light Theme: White + Subtle Lavender & Pink Ambient Tints)
   ========================================================================== */
.custom-services-carousel-section {
  background: linear-gradient(180deg, #f8fafc 0%, #fbf8ff 50%, #fdf2f8 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}

.custom-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 32px;
}

.custom-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding: 8px 4px 16px;
  user-select: none;
}

.custom-carousel-viewport:active {
  cursor: grabbing;
}

.custom-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.custom-carousel-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: max-content;
}

/* Service Card (Desktop: 3 full cards + partial fourth card) */
.custom-service-card {
  width: 340px;
  flex: 0 0 340px;
  background: #ffffff;
  border: 1.5px solid rgba(226, 217, 243, 0.85);
  border-radius: 22px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05), 0 2px 8px rgba(236, 72, 153, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  word-break: break-word;
}

.custom-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.9);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.12), 0 4px 12px rgba(236, 72, 153, 0.06);
}

.custom-service-card:hover::before {
  opacity: 1;
}

/* Service Icon Box */
.custom-service-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
  color: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
}

.custom-service-card:hover .custom-service-icon-wrap {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.35);
}

/* Service Typography */
.custom-service-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1e1b4b;
  margin: 0 0 8px 0;
  font-family: var(--font-heading, sans-serif);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.custom-service-desc {
  font-size: 0.91rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
  font-weight: 450;
}

/* Carousel Footer Controls & Pagination */
.custom-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.custom-carousel-arrow {
  display: none !important;
}

.custom-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  padding: 0;
}

.custom-carousel-dot.active {
  width: 26px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* Responsive Media Queries for Custom Carousel */
@media (max-width: 992px) {
  .custom-carousel-track {
    gap: 18px;
  }
  .custom-service-card {
    width: 280px;
    flex: 0 0 280px;
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .custom-services-carousel-section {
    padding: 40px 0 44px;
  }
  .custom-carousel-wrapper {
    margin-top: 22px;
  }
  .custom-carousel-track {
    gap: 14px;
  }
  .custom-service-card {
    width: min(calc(100vw - 84px), 295px);
    flex: 0 0 min(calc(100vw - 84px), 295px);
    padding: 20px 16px;
    border-radius: 18px;
  }
  .custom-service-card:hover {
    transform: none;
  }
  .custom-service-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 14px;
  }
  .custom-service-title {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }
  .custom-service-desc {
    font-size: 0.86rem;
    line-height: 1.48;
  }
  .custom-carousel-footer {
    margin-top: 18px;
    gap: 14px;
  }
  .custom-carousel-dot {
    width: 8px;
    height: 8px;
  }
  .custom-carousel-dot.active {
    width: 22px;
  }
}

@media (max-width: 380px) {
  .custom-service-card {
    width: calc(100vw - 64px);
    flex: 0 0 calc(100vw - 64px);
    padding: 18px 14px;
  }
}

/* ==========================================================================
   Section 4: Tailored Services - Interactive Blue Sidebar Hub Layout
   ========================================================================== */
/* ==========================================================================
   Section 4: Tailored Services (H2)
   (Matches Reference Design: Dark Navy Left Nav with Active Blue Pill + Right Content & 3D Laptop Stage)
   ========================================================================== */
.tailored-hub-section {
  background: #f8fafc;
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}

.tailored-master-capsule {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  box-shadow: 0 25px 70px -15px rgba(12, 28, 64, 0.12), 0 0 0 1px rgba(0, 80, 200, 0.06);
  display: grid;
  grid-template-columns: 390px 1fr;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

/* Decorative Background Dot Grid Accents */
.tailored-dot-grid-tl {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100px;
  height: 90px;
  background-image: radial-gradient(#93c5fd 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.tailored-dot-grid-bl {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#93c5fd 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* Left Column: Dark Midnight Navy Sidebar */
.tailored-navy-sidebar {
  background: linear-gradient(180deg, #07132e 0%, #030a1b 100%);
  padding: 24px 18px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-top-right-radius: 36px;
  border-bottom-right-radius: 36px;
  position: relative;
  z-index: 2;
  box-shadow: 12px 0 35px rgba(3, 10, 27, 0.25);
}

.tailored-nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  padding: 10px 14px;
  border-radius: 14px;
  color: #e2e8f0;
  font-family: var(--font-heading, sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tailored-nav-pill:last-child {
  border-bottom: none;
}

/* Vertical Neon Glow Bar on Left */
.tailored-neon-bar {
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 32px;
  background: #00d2ff;
  border-radius: 4px;
  box-shadow: 0 0 12px #00d2ff, 0 0 4px #00d2ff;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tailored-pill-num {
  font-size: 12.5px;
  font-weight: 800;
  color: #94a3b8;
  font-family: var(--font-mono, monospace);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
}

.tailored-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.tailored-pill-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.tailored-pill-arrow {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: all 0.22s ease;
}

/* Inactive Hover */
.tailored-nav-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transform: translateX(2px);
}

.tailored-nav-pill:hover .tailored-pill-arrow {
  color: #ffffff;
  transform: translateX(2px);
}

/* Active State: Glowing Vibrant Electric Purple Capsule */
.tailored-nav-pill.active {
  background: linear-gradient(90deg, #9A35F3 0%, #C083F4 100%);
  box-shadow: 0 10px 28px rgba(154, 53, 243, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 700;
  transform: translateX(4px);
}

.tailored-nav-pill.active .tailored-neon-bar {
  opacity: 1;
  background: #C083F4;
  box-shadow: 0 0 12px #C083F4;
  transform: translateY(-50%) scaleY(1);
}

.tailored-nav-pill.active .tailored-pill-num {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 900;
}

.tailored-nav-pill.active .tailored-pill-icon {
  background: #9A35F3;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.tailored-nav-pill.active .tailored-pill-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

/* Right Column: Detail Content Panel */
.tailored-showcase-panel {
  padding: 38px 40px 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* Dot Grid (Top Right) */
.tailored-dot-grid-tr {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 90px;
  height: 40px;
  background-image: radial-gradient(#d8b4fe 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

.tailored-text-content {
  flex: 1;
  max-width: 360px;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.tailored-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f5ebff;
  color: #9A35F3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
  text-transform: uppercase;
}

.badge-dot-blue {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9A35F3;
  box-shadow: 0 0 8px rgba(154, 53, 243, 0.6);
}

.tailored-service-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  color: #0c1938;
  line-height: 1.2;
  margin: 0 0 16px;
  font-family: var(--font-heading, sans-serif);
  letter-spacing: -0.02em;
}

.text-blue-accent,
.text-purple-accent,
.text-green-accent {
  background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.tailored-service-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.68;
  margin: 0 0 28px;
}

.tailored-cta-wrap {
  margin-top: auto;
}

.btn-tailored-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%);
  color: #ffffff;
  border-radius: var(--radius-full, 9999px);
  padding: 12px 14px 12px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading, sans-serif);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(154, 53, 243, 0.4);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-tailored-cta:hover {
  background: linear-gradient(135deg, #861fe0 0%, #b36fed 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(154, 53, 243, 0.5);
}

.cta-circle-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease;
}

.btn-tailored-cta:hover .cta-circle-arrow {
  transform: translateX(3px);
}

/* Right 3D Visual Stage */
.tailored-3d-stage {
  position: relative;
  width: 250px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tailored-panel-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 35px rgba(154, 53, 243, 0.12));
  transition: transform 0.35s ease;
}

.tailored-showcase-panel:hover .tailored-panel-img {
  transform: translateY(-4px) scale(1.02);
}

.vector-plant-group {
  transform-origin: 94px 215px;
  animation: plantSwayVector 5s ease-in-out infinite alternate;
}

.editor-cursor {
  animation: blinkCursorVector 1s step-end infinite;
}

@keyframes floatCodeVector {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes floatGearVector {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-9px) rotate(3deg); }
}

@keyframes floatCloudVector {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-7px) rotate(-2deg); }
}

@keyframes floatCardVector {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-6px) rotate(1.5deg); }
}

@keyframes plantSwayVector {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1deg); }
}

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

/* Smooth Animation on Switching */
.tailored-animating {
  animation: tailoredFadeSlide 0.36s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tailoredFadeSlide {
  0% {
    opacity: 0;
    transform: translateX(12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Hub Styles */
@media (max-width: 992px) {
  .tailored-master-capsule {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .tailored-navy-sidebar {
    border-radius: 0;
    box-shadow: none;
    padding: 20px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .tailored-nav-pill:hover {
    transform: none;
  }
  .tailored-nav-pill.active {
    transform: none !important;
    box-shadow: 0 6px 18px rgba(154, 53, 243, 0.35);
  }
  .tailored-neon-bar {
    display: none;
  }
  .tailored-nav-pill.active .tailored-pill-arrow {
    width: 24px;
    height: 24px;
  }
  .tailored-dot-grid-tl,
  .tailored-dot-grid-bl,
  .tailored-dot-grid-tr {
    display: none;
  }
  .tailored-showcase-panel {
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-sizing: border-box;
  }
  .tailored-text-content {
    max-width: 100%;
    width: 100%;
  }
  .tailored-3d-stage {
    align-self: center;
    margin: 10px auto 0 auto;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .tailored-hub-section {
    padding: 38px 0 44px;
  }
  .tailored-master-capsule {
    border-radius: 18px;
  }
  .tailored-navy-sidebar {
    padding: 16px 10px;
    gap: 5px;
  }
  .tailored-nav-pill {
    padding: 8px 10px;
    font-size: 12.5px;
    gap: 8px;
    border-radius: 10px;
  }
  .tailored-pill-num {
    width: 24px;
    height: 24px;
    font-size: 11px;
    border-radius: 6px;
  }
  .tailored-pill-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }
  .tailored-pill-icon svg {
    width: 13px;
    height: 13px;
  }
  .tailored-pill-label {
    font-size: 12.5px;
  }
  .tailored-pill-arrow {
    width: 18px;
    height: 18px;
  }
  .tailored-nav-pill.active .tailored-pill-arrow {
    width: 22px;
    height: 22px;
  }
  .tailored-showcase-panel {
    padding: 22px 14px;
  }
  .tailored-service-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }
  .tailored-service-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .tailored-3d-stage {
    width: 100%;
    max-width: 240px;
  }
  .btn-tailored-cta {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .tailored-navy-sidebar {
    padding: 12px 6px;
    gap: 4px;
  }
  .tailored-nav-pill {
    padding: 7px 8px;
    font-size: 11.5px;
    gap: 6px;
    border-radius: 8px;
  }
  .tailored-pill-num {
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 5px;
  }
  .tailored-pill-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }
  .tailored-pill-icon svg {
    width: 11px;
    height: 11px;
  }
  .tailored-pill-label {
    font-size: 11.5px;
  }
  .tailored-pill-arrow {
    width: 15px;
    height: 15px;
  }
  .tailored-nav-pill.active .tailored-pill-arrow {
    width: 18px;
    height: 18px;
  }
}


/* ==========================================================================
   Section 5: Revenue Streams - High-Tech Dark Analytics & Monetization Streams
   (Matches Reference Design: Dark Midnight, Glow Ring Portal, Crisp Laptop Mockup & 4 Gradient Monetization Cards)
   ========================================================================== */
.revenue-monetization-section {
  background: #060b1e;
  background-image: 
    radial-gradient(circle at 12% 25%, rgba(0, 210, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(168, 85, 247, 0.14) 0%, transparent 45%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 210, 255, 0.15);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.revenue-ambient-glow-left {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.revenue-ambient-glow-right {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Top Section Header */
.revenue-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.revenue-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(27, 95, 253, 0.2);
  border: 1px solid rgba(0, 210, 255, 0.4);
  color: #38bdf8;
  font-family: var(--font-heading, sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full, 9999px);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
  margin-bottom: 18px;
}

.revenue-badge-spark {
  color: #00d2ff;
  font-size: 13px;
  animation: sparkPulse 2s ease-in-out infinite alternate;
}

.revenue-main-heading {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 16px;
  font-family: var(--font-heading, sans-serif);
  letter-spacing: -0.02em;
}

.revenue-grad-text {
  background: linear-gradient(135deg, #00d2ff 0%, #c084fc 60%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.revenue-main-subtitle {
  font-size: 15.5px;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

/* 2-Column Main Layout */
.revenue-modern-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Column: Glass Portal Card (Sticky on Desktop) */
.revenue-portal-card {
  background: rgba(8, 14, 34, 0.85);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 0 45px rgba(0, 160, 255, 0.16), 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 90px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 5;
}

.revenue-portal-glow-ring {
  position: absolute;
  top: 15px;
  left: 5%;
  width: 90%;
  height: 230px;
  background: radial-gradient(ellipse at center, rgba(0, 210, 255, 0.22) 0%, rgba(168, 85, 247, 0.16) 45%, transparent 75%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
}

/* Laptop / Panel Image Showcase Component */
.revenue-laptop-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.revenue-panel-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s ease;
}

.revenue-portal-card:hover .revenue-panel-img {
  transform: translateY(-4px);
}

.laptop-screen-frame {
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  padding: 6px 6px 0;
  overflow: hidden;
}

.laptop-camera-notch {
  width: 5px;
  height: 5px;
  background: #475569;
  border-radius: 50%;
  margin: 1px auto 4px;
}

.laptop-admin-ui {
  background: #f8fafc;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  font-family: var(--font-body, sans-serif);
  color: #0f172a;
}

/* Admin Top Bar */
.admin-ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.admin-ui-brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.admin-brand-icon {
  font-size: 11px;
  color: #1b5ffd;
}

.admin-brand-name {
  font-size: 10.5px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.admin-ui-search {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 9px;
  color: #64748b;
  width: 110px;
}

.admin-ui-profile {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-notif-dot {
  font-size: 9.5px;
}

.admin-avatar-pill {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5px 5px;
  font-size: 9px;
  font-weight: 700;
  color: #334155;
}

.admin-avatar-img {
  font-size: 9.5px;
}

.admin-avatar-arrow {
  font-size: 7.5px;
  color: #94a3b8;
}

/* Admin UI Body */
.admin-ui-body {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 180px;
}

.admin-ui-sidebar {
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  padding: 7px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  font-size: 8px;
  font-weight: 600;
  color: #64748b;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.admin-nav-item.active {
  background: #eff6ff;
  color: #1b5ffd;
  font-weight: 700;
}

.admin-ui-content {
  padding: 8px 10px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overview-title {
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
}

.overview-date-pill {
  font-size: 7.5px;
  font-weight: 700;
  color: #64748b;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5px 5px;
}

/* 4 Stat Metric Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.admin-stat-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 5px;
  padding: 4px 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.stat-card-label {
  font-size: 7px;
  color: #64748b;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}

.stat-card-val-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  margin-top: 1px;
}

.stat-card-num {
  font-size: 10px;
  font-weight: 800;
  color: #0f172a;
}

.stat-badge-green {
  font-size: 7px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 3px;
  padding: 0.5px 2.5px;
}

/* 2 Charts Grid */
.admin-charts-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 6px;
}

.admin-chart-box {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 5px;
  padding: 5px 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.chart-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.chart-title {
  font-size: 8px;
  font-weight: 800;
  color: #1e293b;
}

.chart-sub-filter {
  font-size: 6.5px;
  color: #94a3b8;
}

.chart-svg-wrap {
  width: 100%;
}

.chart-spline-svg {
  width: 100%;
  height: 40px;
  display: block;
}

.chart-x-labels {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Donut Chart */
.donut-chart-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}

.donut-svg-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donut-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.donut-bold {
  font-size: 7.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.donut-lbl {
  font-size: 5.5px;
  color: #64748b;
  line-height: 1;
}

.donut-legend-col {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
}

.legend-item {
  font-size: 6.5px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.legend-dot {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  display: inline-block;
}

.legend-pct {
  font-weight: 700;
  color: #0f172a;
  margin-left: 2px;
}

/* Laptop Keyboard Base */
.laptop-keyboard-base {
  height: 9px;
  background: linear-gradient(180deg, #94a3b8 0%, #475569 100%);
  border-radius: 0 0 8px 8px;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.laptop-thumb-notch {
  width: 44px;
  height: 3px;
  background: #1e293b;
  border-radius: 0 0 3px 3px;
  margin: 0 auto;
}

/* Content Under Laptop in Portal Card */
.portal-card-bottom-info {
  position: relative;
  z-index: 1;
}

.portal-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  border-radius: var(--radius-full, 9999px);
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.portal-pill-icon {
  font-size: 12px;
  color: #e879f9;
}

.portal-subheading-wrap {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 10px;
}

.portal-accent-vbar {
  width: 3.5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #00d2ff 0%, #b026ff 100%);
  flex-shrink: 0;
}

.portal-subheading {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  font-family: var(--font-heading, sans-serif);
  margin: 0;
  letter-spacing: -0.01em;
}

.portal-white-highlight {
  color: #ffffff;
}

.portal-desc-text {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

/* Right Column: 6 Monetization Stream Cards with Custom Scroll & Glowing Indicator */
.revenue-stream-list-col {
  display: flex;
  gap: 16px;
  align-items: stretch;
  position: relative;
}

.revenue-stream-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-height: 590px;
  overflow-y: auto;
  padding-right: 6px;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.revenue-stream-cards-stack::-webkit-scrollbar {
  display: none; /* WebKit */
}

/* Individual Item Card */
.revenue-item-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(9, 16, 38, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 22px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
}

.revenue-item-card:hover {
  background: rgba(14, 25, 58, 0.85);
  border-color: rgba(0, 210, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Highlighted Active State */
.revenue-item-card.active {
  background: linear-gradient(135deg, rgba(10, 24, 62, 0.95), rgba(20, 14, 48, 0.95));
  border-color: #00d2ff;
  box-shadow: 0 0 35px rgba(0, 210, 255, 0.25), 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Circular Number Badges */
.item-card-num-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-heading, sans-serif);
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.circle-01 {
  background: linear-gradient(135deg, #00d2ff 0%, #1b5ffd 55%, #6366f1 100%);
}

.circle-02 {
  background: linear-gradient(135deg, #1b5ffd 0%, #2563eb 50%, #1e40af 100%);
}

.circle-03 {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #5b21b6 100%);
}

.circle-04 {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #6b21a8 100%);
}

.circle-05 {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 50%, #0369a1 100%);
}

.circle-06 {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #b45309 100%);
}

/* Small Icon Beside Circle */
.item-card-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.revenue-item-card.active .item-card-icon-wrap {
  background: rgba(0, 210, 255, 0.15);
  color: #00d2ff;
}

.item-card-content {
  flex: 1;
}

.item-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.3;
  font-family: var(--font-heading, sans-serif);
  letter-spacing: -0.01em;
}

.revenue-item-card.active .item-card-title {
  color: #ffffff;
}

.item-card-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

.item-card-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.revenue-item-card:hover .item-card-arrow-btn {
  background: #1b5ffd;
  color: #ffffff;
  transform: translateX(3px);
  box-shadow: 0 0 12px rgba(27, 95, 253, 0.6);
}

.revenue-item-card.active .item-card-arrow-btn {
  background: rgba(0, 210, 255, 0.2);
  border: 1px solid rgba(0, 210, 255, 0.4);
  color: #00d2ff;
}

/* Glowing Right Progress Indicator Bar */
.revenue-side-track-bar {
  width: 4px;
  height: 590px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  overflow: hidden;
}

.revenue-side-track-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 120px;
  border-radius: 4px;
  background: linear-gradient(180deg, #00d2ff 0%, #a855f7 100%);
  box-shadow: 0 0 14px #00d2ff, 0 0 20px rgba(168, 85, 247, 0.6);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .revenue-modern-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .revenue-portal-card {
    position: static;
  }
  .revenue-stream-cards-stack {
    max-height: none;
    overflow-y: visible;
  }
  .revenue-side-track-bar {
    display: none;
  }
  .revenue-stream-list-col {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .revenue-monetization-section {
    padding: 38px 0;
  }
  .revenue-portal-card {
    padding: 18px 14px;
  }
  .admin-ui-body {
    grid-template-columns: 1fr;
  }
  .admin-ui-sidebar {
    display: none;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-charts-grid {
    grid-template-columns: 1fr;
  }
  .revenue-item-card {
    padding: 16px 14px;
    gap: 12px;
  }
  .item-card-num-circle {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .item-card-icon-wrap {
    display: none;
  }
  .item-card-title {
    font-size: 15.5px;
  }
  .revenue-side-track-bar {
    display: none;
  }
}

/* ==========================================================================
   Section 6: 4-Tabs & 5-Image Phone Carousel Layout (Exact User Spec)
   ========================================================================== */

/* ==========================================================================
   Section 6: Features We’ve Designed for a Future-Ready Multi-Service Business (Exact Reference Design)
   ========================================================================== */
.ecosystem-future-section {
  background: linear-gradient(180deg, #FAF8FF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.ecosystem-future-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 131, 244, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ecosystem-future-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 53, 243, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.future-badge {
  background: #F3E8FF;
  color: #9A35F3;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(154, 53, 243, 0.2);
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: inline-block;
}

.feature-showcase-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-tabs-pill-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  padding: 0.4rem;
  margin: 0 auto 1.15rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  flex-wrap: wrap;
}

.feature-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #475569;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.feature-tab-btn:hover {
  color: #9A35F3;
  background: rgba(192, 131, 244, 0.08);
}

.feature-tab-btn.active {
  background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(154, 53, 243, 0.35);
}

.feature-tab-btn svg {
  flex-shrink: 0;
}

/* Tab Panels */
.feature-tab-panel {
  display: none;
}

.feature-tab-panel.active {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

/* 6 Feature Cards in 3x2 Grid */
.feature-cards-3x2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  flex: 1;
}

.feature-spec-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 1.45rem 1.3rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 205px;
}

.feature-spec-card:hover {
  transform: translateY(-4px);
  border-color: #E9D5FF;
  box-shadow: 0 14px 28px rgba(154, 53, 243, 0.08);
}

.spec-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.feature-spec-card:hover .spec-icon-box {
  transform: scale(1.06);
}

.icon-purple { background: #8B5CF6; color: #ffffff; box-shadow: 0 4px 12px rgba(139, 92, 246, 0.28); }
.icon-mint   { background: #10B981; color: #ffffff; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.28); }
.icon-amber  { background: #F59E0B; color: #ffffff; box-shadow: 0 4px 12px rgba(245, 158, 11, 0.28); }
.icon-blue   { background: #0EA5E9; color: #ffffff; box-shadow: 0 4px 12px rgba(14, 165, 233, 0.28); }
.icon-rose   { background: #F43F5E; color: #ffffff; box-shadow: 0 4px 12px rgba(244, 63, 94, 0.28); }
.icon-violet { background: #7C3AED; color: #ffffff; box-shadow: 0 4px 12px rgba(124, 58, 237, 0.28); }

.spec-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.spec-card-desc {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.spec-card-action-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transition: all 0.25s ease;
}

.feature-spec-card:hover .spec-card-action-btn {
  transform: translateX(3px);
}

.action-purple { background: #F3E8FF; color: #8B5CF6; }
.action-mint   { background: #D1FAE5; color: #10B981; }
.action-amber  { background: #FEF3C7; color: #D97706; }
.action-blue   { background: #E0F2FE; color: #0284C7; }
.action-rose   { background: #FFE4E6; color: #E11D48; }
.action-violet { background: #EDE9FE; color: #7C3AED; }

/* Clean Image Carousel (No black background, no phone mockup frame) */
.feature-phone-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  flex-shrink: 0;
}

.feature-phone-frame-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.phone-carousel-viewport {
  width: 290px;
  height: 580px;
  overflow: hidden;
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-carousel-slide {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.carousel-phone-img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  /* filter: drop-shadow(0 15px 35px rgba(15, 23, 42, 0.12)); */
  transition: transform 0.3s ease;
}

.carousel-phone-img:hover {
  transform: scale(1.02);
}

/* Side-Flanked Carousel Arrows */
.carousel-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A35F3;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
}

.carousel-arrow-btn:hover {
  background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%);
  color: #ffffff;
  border-color: #9A35F3;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(154, 53, 243, 0.3);
}

.carousel-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E2E8F0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 99px;
  background: #9A35F3;
}

@media (max-width: 1280px) {
  .feature-cards-3x2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .feature-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-phone-showcase {
    order: -1;
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .ecosystem-future-section {
    padding: 38px 0 44px;
  }
  .feature-tabs-pill-bar {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.35rem;
    gap: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .feature-tabs-pill-bar::-webkit-scrollbar {
    display: none;
  }
  .feature-tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    gap: 0.45rem;
  }
  .feature-tab-panel.active {
    gap: 1.75rem;
  }
  .feature-phone-showcase {
    width: 100%;
    max-width: 320px;
    gap: 0.5rem;
  }
  .phone-carousel-viewport {
    width: 220px;
    height: 440px;
  }
  .carousel-phone-img {
    max-height: 440px;
  }
  .carousel-arrow-btn {
    width: 36px;
    height: 36px;
  }
  .carousel-arrow-btn svg {
    width: 15px;
    height: 15px;
  }
  .feature-cards-3x2-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
  }
  .feature-spec-card {
    min-height: auto;
    padding: 1.15rem 1.1rem;
    border-radius: 16px;
  }
  .spec-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
  }
  .spec-icon-box svg {
    width: 18px;
    height: 18px;
  }
  .spec-card-title {
    font-size: 0.98rem;
  }
  .spec-card-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 380px) {
  .feature-phone-showcase {
    gap: 4px;
    max-width: 100%;
  }
  .phone-carousel-viewport {
    width: 195px;
    height: 390px;
  }
  .carousel-phone-img {
    max-height: 390px;
  }
  .carousel-arrow-btn {
    width: 32px;
    height: 32px;
  }
  .carousel-arrow-btn svg {
    width: 13px;
    height: 13px;
  }
}

/* ==========================================================================
   Section 6.5: AI Future-Proof CTA Banner
   ========================================================================== */
.ai-future-cta-section {
  padding: 10px 0 40px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.ai-cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #9A35F3 70%, #C083F4 100%);
  border-radius: 28px;
  padding: 54px 44px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(154, 53, 243, 0.3), 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.ai-cta-ambient-blob-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
}

.ai-cta-ambient-blob-2 {
  position: absolute;
  bottom: -90px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.ai-cta-sparkle-1 {
  position: absolute;
  top: 36px;
  left: 60px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  pointer-events: none;
  animation: floatSparkle 4s ease-in-out infinite;
}

.ai-cta-sparkle-2 {
  position: absolute;
  bottom: 40px;
  right: 70px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  pointer-events: none;
  animation: floatSparkle 4s ease-in-out infinite 2s;
}

@keyframes floatSparkle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-8px) scale(1.15); opacity: 1; }
}

.ai-cta-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.ai-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.ai-cta-badge-icon {
  color: #ffffff;
  display: flex;
  align-items: center;
}

.ai-cta-title {
  font-size: 2.35rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 16px 0;
  font-family: var(--font-heading, sans-serif);
  letter-spacing: -0.02em;
}

.ai-cta-desc {
  font-size: 1.05rem;
  color: #ffffff;
  opacity: 0.94;
  line-height: 1.65;
  margin: 0 auto 30px;
  max-width: 720px;
  font-weight: 400;
}

.ai-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-ai-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 999px;
  background: #ffffff;
  color: #6d28d9;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-heading, sans-serif);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-ai-cta-primary span {
  position: relative;
  z-index: 2;
}

.btn-ai-cta-primary svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-ai-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), 0 0 24px rgba(255, 255, 255, 0.5);
  background: #ffffff;
  color: #4c1d95;
}

.btn-ai-cta-primary:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .ai-future-cta-section {
    padding: 10px 0 28px;
  }
  .ai-cta-banner-card {
    padding: 36px 20px;
    border-radius: 22px;
  }
  .ai-cta-title {
    font-size: 1.65rem;
    margin-bottom: 12px;
  }
  .ai-cta-desc {
    font-size: 0.94rem;
    margin-bottom: 24px;
  }
  .btn-ai-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 0.92rem;
  }
  .ai-cta-sparkle-1,
  .ai-cta-sparkle-2 {
    display: none;
  }
}

/* ==========================================================================
   Section 7: AI Features (Apptunix-Style 3x2 Grid with Glowing Corner Accents)
   (Matches Reference: Header with Spark Badge + 6 Feature Cards with Arrow Actions)
   ========================================================================== */
.ai-features-section {
  background: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Ambient Elements */
.ai-ambient-glow-left {
  position: absolute;
  top: -80px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.ai-ambient-dots-right {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(59, 130, 246, 0.28) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.ai-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: #eef2ff;
  border: 1px solid rgba(79, 70, 229, 0.18);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1b5ffd;
  margin-bottom: 1.15rem;
  font-family: var(--font-heading);
}

.ai-badge-spark {
  color: #1b5ffd;
  font-size: 0.9rem;
}

.ai-main-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1.15rem;
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
}

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

.ai-main-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}

/* 4 AI Feature Cards Grid */
.ai-features-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

/* Feature Card */
.ai-feature-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 24px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.035);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.ai-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 95, 253, 0.1);
  border-color: #93c5fd;
}

.ai-card-purple:hover { border-color: #c4b5fd; box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1); }
.ai-card-green:hover { border-color: #86efac; box-shadow: 0 20px 40px rgba(21, 128, 61, 0.1); }
.ai-card-cyan:hover { border-color: #7dd3fc; box-shadow: 0 20px 40px rgba(2, 132, 199, 0.1); }
.ai-card-amber:hover { border-color: #fcd34d; box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1); }

/* Card Top Row */
.ai-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.ai-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.ai-feature-card:hover .ai-icon-circle {
  transform: scale(1.08);
}

.icon-blue {
  background: radial-gradient(circle at 35% 35%, #e0f2fe 0%, #bae6fd 60%, #7dd3fc 100%);
  color: #0284c7;
}

.icon-purple {
  background: radial-gradient(circle at 35% 35%, #ede9fe 0%, #ddd6fe 60%, #c4b5fd 100%);
  color: #7c3aed;
}

.icon-green {
  background: radial-gradient(circle at 35% 35%, #dcfce7 0%, #bbf7d0 60%, #86efac 100%);
  color: #15803d;
}

.icon-amber {
  background: radial-gradient(circle at 35% 35%, #fef3c7 0%, #fde68a 60%, #fcd34d 100%);
  color: #d97706;
}

.icon-cyan {
  background: radial-gradient(circle at 35% 35%, #e0f2fe 0%, #bae6fd 60%, #38bdf8 100%);
  color: #0369a1;
}

.icon-violet {
  background: radial-gradient(circle at 35% 35%, #f3e8ff 0%, #e9d5ff 60%, #d8b4fe 100%);
  color: #6d28d9;
}

.ai-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f6ff;
  color: #1b5ffd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.ai-feature-card:hover .ai-arrow-btn {
  background: #1b5ffd;
  color: #ffffff;
  transform: translateX(3px);
}

/* Card Body */
.ai-card-body {
  position: relative;
  z-index: 2;
  flex: 1;
}

.ai-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.ai-card-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* Bottom Badge */
.ai-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 18px;
  width: fit-content;
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
}

.badge-blue {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
}

.badge-violet {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid #ede9fe;
}

.badge-spark-icon {
  font-size: 0.85rem;
}

/* Corner Glow Accents */
.ai-card-corner-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.ai-feature-card:hover .ai-card-corner-glow {
  opacity: 1;
  transform: scale(1.2);
}

.glow-blue { background: radial-gradient(circle, rgba(56, 189, 248, 0.45) 0%, transparent 70%); }
.glow-purple { background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, transparent 70%); }
.glow-green { background: radial-gradient(circle, rgba(74, 222, 128, 0.45) 0%, transparent 70%); }
.glow-amber { background: radial-gradient(circle, rgba(251, 191, 36, 0.45) 0%, transparent 70%); }
.glow-cyan { background: radial-gradient(circle, rgba(6, 182, 212, 0.45) 0%, transparent 70%); }
.glow-violet { background: radial-gradient(circle, rgba(192, 132, 252, 0.45) 0%, transparent 70%); }

@media (max-width: 1024px) {
  .ai-features-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .ai-features-section {
    padding: 38px 0;
  }
  .ai-main-title {
    font-size: 2rem;
  }
  .ai-features-grid-3x2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ai-feature-card {
    padding: 22px 20px;
    min-height: auto;
  }
}

/* ==========================================================================
   Section 8: White Label Super App Development (2-Column Image Layout)
   ========================================================================== */
.whitelabel-showcase-section {
  background: #ffffff;
  padding: 3.5rem 0 2.5rem;
}

.whitelabel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.whitelabel-content-col .section-title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.25;
  color: var(--text-main);
}

.whitelabel-content-col .section-lead-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.whitelabel-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Right Image Showcase */
.whitelabel-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.08));
  transition: transform 0.35s ease;
}

.whitelabel-image-wrap:hover {
  transform: translateY(-6px);
}

.whitelabel-feature-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   Section 9: High-Performance Potential Full-Width CTA Banner
   ========================================================================== */
.cta-gradient-banner {
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.35);
}

.cta-gradient-banner h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cta-gradient-banner p {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.65;
  max-width: 620px;
}

/* ==========================================================================
   Section 10: Powerful Benefits - Staggered Zig-Zag Editorial List
   ========================================================================== */
.benefits-staggered-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-row-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-row-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.benefit-row-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.benefit-row-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Section 11: 6-Stage Process - 2-Column Sticky Layout & Vertical Green Timeline
   ========================================================================== */
.dev-process-section {
  background: #ffffff;
  padding: 3.75rem 0;
}

.dev-process-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: flex-start;
}

/* Left Sticky Overview Column */
.process-left-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.process-main-heading {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.process-lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
}

.process-cta-wrap {
  margin: 0.25rem 0 0.5rem;
}

.process-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.75rem;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-pill-btn:hover {
  border-color: #22c55e;
  color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.18);
}

.process-pill-btn svg {
  transition: transform 0.25s ease;
}

.process-pill-btn:hover svg {
  transform: translateX(4px);
}

/* Left Visual Showcase Card */
.process-visual-card {
  background: transparent;
  border: none;
  border-radius: 28px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.process-showcase-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.08));
  transition: transform 0.35s ease;
}

.process-visual-card:hover .process-showcase-img {
  transform: translateY(-4px);
}

.process-decor-doodle {
  position: absolute;
  font-size: 1.6rem;
  z-index: 5;
  user-select: none;
}

.doodle-idea {
  top: 16px;
  left: 145px;
  animation: floatSlow 3.2s ease-in-out infinite;
}

.doodle-rocket {
  top: 45px;
  right: 22px;
  animation: floatSlow 3.8s ease-in-out infinite 0.6s;
}

.process-card-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

/* Mini Phone Frame Mockup */
.process-phone-frame {
  width: 170px;
  height: 250px;
  background: #0f172a;
  border-radius: 24px 24px 0 0;
  padding: 6px 6px 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  flex-shrink: 0;
}

.process-phone-notch {
  width: 44px;
  height: 10px;
  background: #0f172a;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 3px;
}

.process-phone-screen {
  background: #ffffff;
  border-radius: 18px 18px 0 0;
  height: calc(100% - 13px);
  padding: 0.65rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  overflow: hidden;
}

.mini-app-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%);
}

.mini-greeting {
  display: flex;
  flex-direction: column;
}

.mini-title {
  font-size: 0.62rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.mini-sub {
  font-size: 0.5rem;
  color: #94a3b8;
}

.mini-promo-banner {
  background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%);
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-badge {
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-text {
  font-size: 0.48rem;
  opacity: 0.95;
}

.mini-services-title {
  font-size: 0.55rem;
  font-weight: 800;
  color: #334155;
  margin-top: 2px;
}

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

.mini-service-box {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 6px;
  padding: 4px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.mini-service-icon {
  font-size: 0.75rem;
}

.mini-service-box span:last-child {
  font-size: 0.45rem;
  color: #64748b;
  font-weight: 700;
}

/* Dev Visual */
.process-dev-visual {
  position: relative;
  width: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dev-character-img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px 20px 0 0;
  display: block;
}

.dev-floating-status {
  position: absolute;
  bottom: 12px;
  right: -5px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.status-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C083F4;
  box-shadow: 0 0 8px #C083F4;
}

/* Right Vertical Connected Timeline Column */
.process-timeline-column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.85rem;
  padding-left: 0.5rem;
}

.timeline-vertical-line {
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 30px;
  width: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.timeline-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}

.timeline-step-item:hover {
  transform: translateX(4px);
}

.timeline-badge-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(154, 53, 243, 0.35);
  border: 4px solid #ffffff;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.timeline-step-item:hover .timeline-badge-circle {
  transform: scale(1.1);
  background: linear-gradient(135deg, #861fe0 0%, #b36fed 100%);
}

.timeline-step-body {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

.timeline-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.45rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.timeline-step-item:hover .timeline-step-title {
  color: #9A35F3;
}

.timeline-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Responsive Rules for Process Section */
@media (max-width: 992px) {
  .dev-process-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .process-left-sticky {
    position: static;
  }
  .process-visual-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .dev-process-section {
    padding: 2.5rem 0;
  }
  .process-timeline-column {
    gap: 2rem;
    padding-left: 0;
  }
  .timeline-step-item {
    gap: 1rem;
  }
  .timeline-badge-circle {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  .timeline-vertical-line {
    left: 21px;
  }
  .timeline-step-title {
    font-size: 1.08rem;
  }
  .timeline-step-desc {
    font-size: 0.9rem;
  }
  .process-card-content {
    flex-direction: column;
    align-items: center;
  }
  .process-phone-frame {
    width: 150px;
    height: 220px;
  }
  .process-dev-visual {
    width: 150px;
  }
  .dev-character-img {
    height: 190px;
  }
}

/* ==========================================================================
   Section 12: Super App Purple CTA Showcase Banner
   ========================================================================== */
.grasp-cta-section {
  padding: 0.5rem 0 3rem;
}

.grasp-banner-card {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 45%, #9A35F3 75%, #C083F4 100%);
  border-radius: 32px;
  padding: 2.75rem 3.25rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(154, 53, 243, 0.45);
}

/* Background Geometric Triangle Shape (as in reference) */
.grasp-bg-triangle {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 380px;
  height: 380px;
  border: 14px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

.grasp-text-col {
  position: relative;
  z-index: 2;
}

.grasp-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.grasp-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.grasp-btn-wrap {
  display: flex;
  align-items: center;
}

.grasp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grasp-btn:hover {
  background: #ffffff;
  color: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Right Visual Mockup Column */
.grasp-visual-col {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grasp-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grasp-phone-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

.grasp-phone-wrap:hover .grasp-phone-img {
  transform: scale(1.04) translateY(-4px);
}

/* Floating Service Bubble Badges */
.grasp-float-bubble {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  z-index: 3;
  animation: floatBubble 4s ease-in-out infinite alternate;
}

.bubble-1 {
  top: 15px;
  left: -28px;
  animation-delay: 0s;
}

.bubble-2 {
  top: 90px;
  right: -32px;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: 80px;
  left: -32px;
  animation-delay: 2s;
}

.bubble-4 {
  bottom: 20px;
  right: -24px;
  animation-delay: 1.5s;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.05);
  }
}

/* ==========================================================================
   Section 13: Compliance Standards (Apptunix-Style Regulatory Showcase)
   (Matches Reference: Flanking Lines Badge + Frosted Capsule + 4 Feature Cards)
   ========================================================================== */
.compliance-section {
  background: #ffffff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

/* Ambient Background Glow Elements */
.compliance-ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-top-left {
  top: -60px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0) 70%);
  filter: blur(24px);
}

.orb-bottom-right {
  bottom: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, rgba(168, 85, 247, 0) 70%);
  filter: blur(28px);
}

.compliance-ambient-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.circle-bottom-left {
  bottom: 20px;
  left: -60px;
  width: 220px;
  height: 220px;
  border: 1.5px solid rgba(56, 189, 248, 0.3);
}

.compliance-header-wrap {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Flanking Lines Badge */
.compliance-badge-line-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}

.flank-line {
  width: 44px;
  height: 2px;
  border-radius: 2px;
}

.flank-left {
  background: linear-gradient(90deg, transparent, #38bdf8);
}

.flank-right {
  background: linear-gradient(90deg, #818cf8, transparent);
}

.compliance-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: #eef2ff;
  border: 1px solid rgba(79, 70, 229, 0.15);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #4f46e5;
  font-family: var(--font-heading);
}

.compliance-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
}

.compliance-main-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1.15rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.compliance-grad-text {
  background: linear-gradient(135deg, #1b5ffd 0%, #8b5cf6 60%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compliance-main-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* Frosted Capsule Frame */
.compliance-capsule-frame {
  position: relative;
  z-index: 2;
  background: rgba(224, 238, 255, 0.55);
  border: 1.5px solid rgba(191, 219, 254, 0.85);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 16px 40px -10px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.compliance-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.compliance-card-item {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 235px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.compliance-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
  border-color: #93c5fd;
}

.compliance-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comp-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
}

.compliance-card-item:hover .comp-icon-box {
  transform: scale(1.08);
}

.comp-icon-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.comp-icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.comp-icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.comp-icon-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.comp-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f6ff;
  color: #1b5ffd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.compliance-card-item:hover .comp-arrow-btn {
  background: #1b5ffd;
  color: #ffffff;
  transform: translateX(3px);
}

.comp-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin: 18px 0;
  font-family: var(--font-heading);
}

.comp-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  font-family: var(--font-heading);
}

.badge-blue {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
}

.badge-green {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #d1fae5;
}

.badge-purple {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid #ede9fe;
}

.badge-cyan {
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #e0f2fe;
}

@media (max-width: 1024px) {
  .compliance-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .compliance-section {
    padding: 36px 0;
  }
  .compliance-main-title {
    font-size: 2rem;
  }
  .compliance-capsule-frame {
    padding: 14px;
    border-radius: 20px;
  }
  .compliance-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .compliance-card-item {
    min-height: auto;
    padding: 18px 16px;
  }
  .comp-card-title {
    font-size: 0.98rem;
    margin: 12px 0;
  }
}

/* ==========================================================================
   Section 13: Top Clone Scripts - Comparison Cards
   ========================================================================== */
.clones-showcase-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.clone-showcase-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clone-showcase-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.clone-badge-brand {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #9A35F3 0%, #d946ef 50%, #C083F4 100%);
  box-shadow: 0 6px 18px rgba(154, 53, 243, 0.3);
}

.gojek-grad { background: linear-gradient(135deg, #9A35F3 0%, #d946ef 50%, #C083F4 100%); }
.grab-grad { background: linear-gradient(135deg, #9A35F3 0%, #ec4899 50%, #f43f5e 100%); }
.careem-grad { background: linear-gradient(135deg, #7c3aed 0%, #c026d3 50%, #e879f9 100%); }

.clone-item-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.clone-item-text {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.clone-item-text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.btn-clone-btn,
.btn-gojek,
.btn-grab,
.btn-careem {
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #9A35F3 0%, #c026d3 45%, #C083F4 100%);
  box-shadow: 0 6px 18px rgba(154, 53, 243, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-heading);
}

.btn-clone-btn svg,
.btn-gojek svg,
.btn-grab svg,
.btn-careem svg {
  transition: transform 0.25s ease;
}

.btn-clone-btn:hover,
.btn-gojek:hover,
.btn-grab:hover,
.btn-careem:hover {
  background: linear-gradient(135deg, #861fe0 0%, #a21caf 45%, #b36fed 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(154, 53, 243, 0.48);
  color: #ffffff;
}

.btn-clone-btn:hover svg,
.btn-gojek:hover svg,
.btn-grab:hover svg,
.btn-careem:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Section 14 & 15: Why Choose Us & Super App Package
   ========================================================================== */
.why-spotn-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-highlight-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-highlight-pill:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--bg-surface-accent);
}

.why-symbol {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.why-title-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

/* ==========================================================================
   Section 16: Super App Package Deliverables (Apptunix-Style Design)
   (Matches Reference: Header with 3D Phone Mockup + 5 Horizontal Deliverable Bars)
   ========================================================================== */
.package-deliverables-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.pkg-header-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 32px auto;
}

.pkg-badge-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #9A35F3;
  border: 1.5px solid rgba(154, 53, 243, 0.35);
  background: rgba(154, 53, 243, 0.08);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  box-shadow: 0 2px 10px rgba(154, 53, 243, 0.12);
}

.pkg-main-heading {
  font-size: 2.65rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.pkg-purple-text, .pkg-pink-text, .pkg-blue-text, .gradient-pink-text {
  background: linear-gradient(135deg, #9A35F3 0%, #ab4bf7 50%, #C083F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pkg-main-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* Right Side 3D Phone Perspective Mockup */
.pkg-header-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}

.pkg-visual-blob {
  position: absolute;
  width: 320px;
  height: 240px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, #C083F4 0%, #9A35F3 55%, #7c22d6 100%);
  opacity: 0.9;
  filter: blur(1px);
  box-shadow: 0 20px 50px rgba(154, 53, 243, 0.35);
  z-index: 1;
}

.pkg-phone-3d-wrapper {
  position: relative;
  z-index: 2;
  transform: perspective(900px) rotateY(-20deg) rotateX(12deg) rotateZ(-3deg);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkg-phone-3d-wrapper:hover {
  transform: perspective(900px) rotateY(-12deg) rotateX(6deg) rotateZ(0deg) scale(1.03);
}

.pkg-3d-phone {
  width: 175px;
  height: 270px;
  background: #1e293b;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.4), inset 0 0 0 2px #475569;
}

.pkg-phone-screen {
  width: 100%;
  height: 100%;
  background: #0f172a;
  border-radius: 24px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pkg-screen-notch {
  width: 42px;
  height: 4.5px;
  background: #334155;
  border-radius: 4px;
  margin-bottom: 16px;
}

.pkg-app-tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.pkg-tile-item {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pkg-tile-item:hover, .pkg-tile-item.active {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.pkg-tile-item.tile-brand-purple, .pkg-tile-item.tile-pink, .pkg-tile-item.tile-blue { background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%); }
.pkg-tile-item.tile-yellow { background: #f59e0b; }
.pkg-tile-item.tile-red { background: #f43f5e; }
.pkg-tile-item.tile-fuchsia, .pkg-tile-item.tile-green { background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%); }
.pkg-tile-item.tile-purple {
  background: linear-gradient(135deg, #7c22d6 0%, #581c87 100%);
  grid-column: span 2;
  aspect-ratio: auto;
  height: 38px;
}

/* 5 Deliverable Bars Stack */
.pkg-bars-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.pkg-bar-item {
  display: flex;
  align-items: center;
  padding: 12px 24px 12px 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.pkg-bar-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(154, 53, 243, 0.12);
  border-color: rgba(154, 53, 243, 0.35);
}

.pkg-bar-item.active {
  background: linear-gradient(90deg, #7c22d6 0%, #9A35F3 45%, #C083F4 100%);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(154, 53, 243, 0.35);
  transform: translateY(-2px);
}

.pkg-bar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
}

.pkg-bar-item:hover .pkg-bar-icon-box {
  transform: scale(1.05);
}

.pkg-icon-brand, .pkg-icon-pink, .pkg-icon-blue { background: linear-gradient(135deg, #9A35F3 0%, #C083F4 100%); }
.pkg-icon-yellow { background: #f59e0b; }
.pkg-icon-red { background: #f43f5e; }
.pkg-icon-fuchsia, .pkg-icon-green { background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%); }
.pkg-icon-purple { background: linear-gradient(135deg, #7c22d6 0%, #581c87 100%); }

.pkg-bar-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: #94a3b8;
  margin-left: 20px;
  font-family: var(--font-heading);
  transition: color 0.2s ease;
}

.pkg-bar-item.active .pkg-bar-num {
  color: rgba(255, 255, 255, 0.85);
}

.pkg-bar-divider {
  width: 1px;
  height: 28px;
  background: #e2e8f0;
  margin: 0 20px;
  transition: background 0.2s ease;
}

.pkg-bar-item.active .pkg-bar-divider {
  background: rgba(255, 255, 255, 0.25);
}

.pkg-bar-title-wrap {
  flex: 1;
}

.pkg-bar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  font-family: var(--font-heading);
  transition: color 0.2s ease;
}

.pkg-bar-item.active .pkg-bar-title {
  color: #ffffff;
}

.pkg-bar-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(154, 53, 243, 0.08);
  color: #9A35F3;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.platform-pipe {
  opacity: 0.4;
}

.pkg-bar-item.active .pkg-bar-platform-badge {
  background: rgba(15, 23, 42, 0.25);
  color: #ffffff;
}

@media (max-width: 992px) {
  .pkg-header-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .pkg-main-subtitle {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .package-deliverables-section {
    padding: 36px 0;
  }
  .pkg-main-heading {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .pkg-bars-stack {
    gap: 12px;
  }
  .pkg-bar-item {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 6px;
    padding: 12px 14px;
    border-radius: 16px;
  }
  .pkg-bar-icon-box {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .pkg-bar-icon-box svg {
    width: 20px;
    height: 20px;
  }
  .pkg-bar-num {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-left: 0;
    font-size: 0.95rem;
    font-weight: 800;
  }
  .pkg-bar-divider {
    grid-column: 3;
    grid-row: 1 / span 2;
    margin: 0;
    height: 28px;
  }
  .pkg-bar-title-wrap {
    grid-column: 4;
    grid-row: 1;
    min-width: 0;
  }
  .pkg-bar-title {
    font-size: 1rem;
    line-height: 1.3;
    word-break: break-word;
  }
  .pkg-bar-platform-badge {
    grid-column: 4;
    grid-row: 2;
    justify-self: start;
    padding: 4px 10px;
    font-size: 0.72rem;
    gap: 6px;
    margin-left: 0;
    border-radius: 20px;
  }
  .pkg-bar-platform-badge svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 400px) {
  .pkg-bar-item {
    column-gap: 8px;
    row-gap: 5px;
    padding: 10px 12px;
  }
  .pkg-bar-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .pkg-bar-icon-box svg {
    width: 18px;
    height: 18px;
  }
  .pkg-bar-num {
    font-size: 0.88rem;
  }
  .pkg-bar-title {
    font-size: 0.92rem;
  }
  .pkg-bar-platform-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    gap: 4px;
  }
}

/* ==========================================================================
   Section 17: Modern Horizontal Tech Marquee
   ========================================================================== */
.tech-marquee-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 0;
  background: #ffffff;
}

.tech-marquee-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech-marquee-wrapper {
  display: flex;
  width: max-content;
  user-select: none;
}

.tech-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
  animation: techMarqueeScroll 40s linear infinite;
  will-change: transform;
}

.tech-marquee-wrapper:hover .tech-marquee-track {
  animation-play-state: paused;
}

@keyframes techMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.tech-marquee-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.75rem 1.6rem 0.75rem 0.85rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.tech-marquee-card:hover {
  transform: translateY(-4px);
  border-color: #C083F4;
  box-shadow: 0 10px 25px rgba(154, 53, 243, 0.16);
  background: #faf5ff;
}

.tech-marquee-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tech-marquee-card:hover .tech-marquee-icon-box {
  background: #ffffff;
  border-color: #e9d5ff;
  box-shadow: 0 4px 10px rgba(154, 53, 243, 0.12);
}

.tech-marquee-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.tech-marquee-card:hover .tech-marquee-img {
  transform: scale(1.12);
}

.tech-marquee-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.tech-marquee-card:hover .tech-marquee-name {
  color: #9A35F3;
}

@media (max-width: 768px) {
  .tech-marquee-section {
    padding: 3.5rem 0 4rem;
  }
  .tech-marquee-track {
    gap: 1rem;
    padding-right: 1rem;
    animation-duration: 30s;
  }
  .tech-marquee-card {
    padding: 0.6rem 1.25rem 0.6rem 0.7rem;
    gap: 0.75rem;
  }
  .tech-marquee-icon-box {
    width: 38px;
    height: 38px;
    padding: 0.45rem;
  }
  .tech-marquee-name {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Section 17: FAQ Accordion
   ========================================================================== */
.faq-clean-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-row-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-row-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.45rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-icon-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.faq-row-item.active .faq-icon-indicator {
  transform: rotate(45deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-body-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.85rem;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-row-item.active .faq-body-drawer {
  padding-bottom: 1.5rem;
  margin-bottom:30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-editorial {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2rem;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-about-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 1.25rem 0 1.75rem;
  max-width: 340px;
}

.footer-social-strip {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.925rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ==========================================================================
   Modal Dialog & Toast Notification
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-box-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  width: 100%;
  max-width: 560px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: var(--transition);
}

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

.modal-close-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
}

.modal-close-icon:hover {
  background: var(--primary);
  color: #fff;
}

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

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

.form-input-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.toast-message {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #ffffff;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-xl);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.toast-message.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-wrap .reveal-on-scroll,
.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints (Desktop, Laptop, Tablet, Mobile)
   ========================================================================== */

/* Laptop & Tablet Landscape (<= 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }
  .hero-grid-2col {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
  .editorial-split {
    gap: 2.5rem;
  }
  .whitelabel-layout {
    gap: 2.5rem;
  }
  .grasp-banner-card {
    padding: 3.5rem 3rem;
    gap: 2.5rem;
  }
}

/* Tablet Portrait & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  h1 {
    font-size: clamp(2.2rem, 3.8vw, 3rem);
  }
  h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  }

  /* Hero Section */
  .hero-wrap {
    padding-top: calc(68px + 3rem);
    padding-bottom: 3.5rem;
  }
  .hero-grid-2col {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  .hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text-side p {
    max-width: 650px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-metrics-strip {
    justify-content: center;
    width: 100%;
    max-width: 600px;
  }

  /* Editorial Split */
  .editorial-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .architecture-hub-diagram {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  /* 12-Service Master Hub */
  .service-master-hub {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  .service-cards-grid-2col {
    grid-template-rows: auto;
    height: auto;
    gap: 10px;
  }
  .service-nav-list {
    max-height: 280px;
  }

  /* Tailored Services (Section 4) */
  .tailored-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Monetization Table (Section 5) */
  .monetization-row {
    grid-template-columns: 60px 1fr;
    gap: 0.75rem 1rem;
    padding: 1.35rem 1.5rem;
  }
  .stream-name {
    font-size: 1.1rem;
  }
  .stream-desc {
    grid-column: span 2;
    padding-right: 0;
  }
  .stream-tag {
    grid-column: span 2;
    justify-self: start;
  }

  /* Feature Carousel (Section 6) */
  .feature-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .feature-cards-2x3-grid {
    order: 2;
  }
  .feature-phone-column {
    order: 1;
  }

  /* AI Bento Grid (Section 7) */
  .ai-bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .bento-span-2 {
    grid-column: span 2;
  }

  /* White Label Section (Section 8) */
  .whitelabel-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .whitelabel-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .whitelabel-content-col .section-title {
    text-align: center;
  }
  .whitelabel-content-col .section-lead-text {
    max-width: 650px;
  }
  .whitelabel-actions {
    justify-content: center;
  }

  /* Benefits List & Dev Pipeline (Sections 10 & 11) */
  .benefits-staggered-list {
    grid-template-columns: 1fr;
  }
  .dev-pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Grasp Idea Emerald CTA Banner (Section 12) */
  .grasp-banner-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3.5rem 2.5rem;
    gap: 3rem;
  }
  .grasp-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .grasp-desc {
    max-width: 600px;
  }
  .grasp-btn-wrap {
    justify-content: center;
  }

  /* Clone Apps Showcase */
  .clones-showcase-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Compliance & Why SpotnRides */
  .compliance-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-spotn-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-deliverables-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  /* CTA Banners */
  .cta-dark-banner, .cta-gradient-banner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  /* Footer */
  .footer-main-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Tablet Portrait & Large Mobile (<= 768px) */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  /* Navigation & Mobile Drawer */
  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-160%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-link-item {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  }
  .nav-actions .btn-secondary {
    display: none; /* Hide Live demo on small tablet/mobile header to keep it uncluttered */
  }

  /* Hero Adjustments */
  .hero-wrap {
    padding-top: calc(68px + 2.25rem);
    padding-bottom: 3rem;
  }
  .hero-badge-pill {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
    max-width: 100%;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 1rem;
    white-space: normal;
  }
  .hero-metrics-strip {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .metric-strip-item {
    align-items: center;
    text-align: center;
  }
  .device-frame {
    width: min(320px, 100%);
  }

  /* Section 3 (Service Master Hub) */
  .service-nav-list {
    grid-template-columns: repeat(2, 1fr);
    max-height: 260px;
  }
  .service-preview-panel {
    padding: 2rem 1.5rem;
  }
  .preview-service-title {
    font-size: 1.75rem;
  }

  /* Section 6 (Feature Cards) */
  .feature-cards-2x3-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gold-device-frame {
    width: min(310px, 100%);
    height: min(560px, 70vh);
  }

  /* Section 7 (AI Bento Grid) */
  .ai-bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-span-2 {
    grid-column: span 1;
  }
  .bento-cell {
    padding: 2rem 1.5rem;
  }

  /* Section 11 (Pipeline) */
  .dev-pipeline-grid {
    grid-template-columns: 1fr;
  }

  /* Section 14 (Deliverables) */
  .package-deliverables-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section 16 (Tech Stack Nav) */
  .tech-tabs-line-nav {
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 0.5rem 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tech-tabs-line-nav::-webkit-scrollbar {
    display: none;
  }

  /* Footer Grid */
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Small Tablets & Mobile Devices (<= 640px) */
@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: clamp(2rem, 6.5vw, 2.5rem);
  }
  h2 {
    font-size: clamp(1.65rem, 5.5vw, 2.1rem);
  }

  /* Buttons Full Width on Small Screens when needed */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }

  /* Section 3 (Service Nav) */
  .service-nav-list {
    grid-template-columns: 1fr;
  }

  /* Section 4 (Tailored Services) */
  .tailored-services-grid {
    grid-template-columns: 1fr;
  }

  /* Section 12 (Grasp Emerald Card) */
  .grasp-banner-card {
    padding: 2.75rem 1.5rem;
    border-radius: 24px;
  }
  .grasp-phone-wrap {
    width: min(220px, 100%);
    height: 330px;
  }
  .grasp-float-bubble {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
  .bubble-1 {
    left: -10px;
    top: 10px;
  }
  .bubble-2 {
    right: -10px;
    top: 80px;
  }
  .bubble-3 {
    left: -10px;
    bottom: 70px;
  }
  .bubble-4 {
    right: -10px;
    bottom: 15px;
  }

  /* Section 16 (Tech Stack Cards) */
  .tech-cards-flex-row.active {
    gap: 1.25rem 0.9rem;
  }
  .tech-apptunix-item {
    width: 82px;
  }
  .tech-apptunix-card {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    padding: 0.75rem;
  }
  .tech-apptunix-icon {
    font-size: 1.75rem;
    width: 36px;
    height: 36px;
  }
  .tech-apptunix-name {
    font-size: 0.8rem;
  }

  /* Section 17 (FAQ) */
  .faq-question-btn {
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
  }
  .faq-body-drawer {
    padding: 0 1.25rem;
  }

  /* Modal */
  .modal-box-card {
    padding: 2rem 1.35rem;
    border-radius: var(--radius-lg);
  }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  .section {
    padding: 2.25rem 0;
  }
  .container {
    padding: 0 1rem;
  }

  .navbar {
    height: 70px;
  }
  .nav-links {
    top: 70px;
  }
  .brand-logo {
    font-size: 1.25rem;
  }
  .brand-icon-box {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .nav-actions .btn-primary {
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
  }

  .hero-wrap {
    padding-top: calc(68px + 1.75rem);
    padding-bottom: 2.5rem;
  }
  .hero-badge-pill {
    font-size: 0.68rem;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.03em;
  }
  .hero-metrics-strip {
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Section 3 (Service Cards) */
  .service-cards-grid-2col {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  /* Section 5 (Monetization Table) */
  .monetization-row {
    padding: 1.1rem 1rem;
  }
  .stream-icon {
    font-size: 1.5rem;
  }

  /* Other 1-Column Stacks */
  .compliance-trust-bar {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }
  .why-spotn-row {
    grid-template-columns: 1fr;
  }
  .package-deliverables-strip {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Toast Notification */
  .toast-message {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    font-size: 0.85rem;
  }
}

/* Ultra Small Screens (<= 360px) */
@media (max-width: 360px) {
  .hero-text-side h1 {
    font-size: 1.75rem;
  }
  .tech-apptunix-item {
    width: 72px;
  }
  .tech-apptunix-card {
    width: 68px;
    height: 68px;
  }
}

/* ==========================================================================
   Floating Action Icons (WhatsApp, Teams, Email)
   ========================================================================== */
@keyframes pr{0%{transform:scale(.85);opacity:.7}80%{transform:scale(1.7);opacity:0}100%{transform:scale(1.7);opacity:0}}
@keyframes pr2{0%{transform:scale(.85);opacity:.5}80%{transform:scale(1.9);opacity:0}100%{transform:scale(1.9);opacity:0}}

.floating-icons{
  position:fixed;
  right:20px;
  top:70%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:9999;
}
.floating-icons a{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  position:relative;
  transition:transform .9s;
  will-change:transform;
}
.floating-icons a:hover{transform:scale(1.12)}

/* Pulse rings — GPU accelerated */
.floating-icons a::before,
.floating-icons a::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:50%;
  opacity:0;
  will-change:transform,opacity;
  backface-visibility:hidden;
}
.floating-icons a::before{animation:pr 1.6s linear infinite}
.floating-icons a::after{animation:pr2 1.6s linear infinite;animation-delay:.4s}

/* WhatsApp */
.floating-icons .wa{background:#25D366}
.floating-icons .wa::before,.floating-icons .wa::after{border:4px solid #25D366}
.floating-icons .wa::after{border-width:3px}

/* Teams */
.floating-icons .tms{background:#6264A7}
.floating-icons .tms::before,.floating-icons .tms::after{border:4px solid #6264A7}
.floating-icons .tms::after{border-width:3px}

/* Email */
.floating-icons .eml{background:#1A73E8}
.floating-icons .eml::before,.floating-icons .eml::after{border:4px solid #1A73E8}
.floating-icons .eml::after{border-width:3px}

/* Mobile Floating */
@media(max-width:768px){
  .floating-icons{right:14px;bottom:24px;top:auto;transform:none;gap:10px}
  .floating-icons a{width:38px;height:38px}
}

/* ==========================================================================
   Header 26 Navigation
   ========================================================================== */
.container26{ max-width:1200px; margin:0 auto; padding:0 24px; width:100%; box-sizing:border-box; }
@media (max-width:768px){
  .container26{ padding:0 16px; }
}
@media (max-width:480px){
  .container26{ padding:0 12px; }
}

.header26{
  position:fixed; top:0; left:0; right:0; width:100%;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:1000;
  transition:box-shadow .25s ease;
}
.header26.scrolled{ box-shadow:0 4px 16px rgba(18,10,46,.12); }

.nav26{ display:flex; align-items:center; gap:24px; height:68px; position:relative; justify-content:space-between; }
.nav-logo26{ display:flex; align-items:center; flex-shrink:0; }
.nav-logo26 img{ height:100%; width:auto; max-width:160px; object-fit:contain; display:block; }

.links26{ display:flex; align-items:center; list-style:none; gap:4px; margin-left:auto; }
.links26 > li{ position:relative; }

.nav-link26{
  display:flex; align-items:center; gap:4px; padding:8px 14px; border-radius:6px;
  font-size:16px; font-weight:500; color:var(--text-main, #0f172a); white-space:nowrap; transition:color .2s;
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.nav-link26:hover, .dropdown-toggle26:hover{ color:var(--primary, #4f46e5); }
.caret26{ font-size:20px; transition:transform .2s; }

.dropdown-menu26{
  list-style:none; position:absolute; top:calc(100% + 8px); left:0;
  min-width:max-content; max-width:calc(100vw - 32px);
  background:#fff; border:1px solid #e2e8f0; border-radius:10px;
  box-shadow:0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.05);
  padding:8px; opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:all .2s ease; z-index:1100;
}
.dropdown-menu26 li a{
  display:block; padding:9px 12px; border-radius:6px; font-size:13.5px; font-weight:500;
  color:#0f172a; font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.dropdown-menu26 li a:hover{ background:#f8fafc; color:var(--primary, #4f46e5); }

@media (min-width:901px){
  .has-dropdown26:hover .dropdown-menu26,
  .has-dropdown26.open .dropdown-menu26{ opacity:1; visibility:visible; transform:translateY(0); }
  .has-dropdown26:hover .caret26, .has-dropdown26.open .caret26{ transform:rotate(180deg); }
  .mobile-only-action26{ display:none; }
}

.nav-actions26{ display:flex; align-items:center; gap:10px; flex-shrink:0; }

.btn26nav{
  display:inline-flex; align-items:center; gap:8px; padding:10px 22px; border-radius:8px;
  font-family:inherit; font-weight:600; font-size:14px; cursor:pointer;
  border:2px solid transparent; transition:all .22s ease; white-space:nowrap;
}
.bt-primary26{ background:var(--gradient-brand, linear-gradient(135deg, #9A35F3 0%, #C083F4 100%)); color:#fff; box-shadow:0 6px 18px rgba(154, 53, 243, 0.35); }
.bt-primary26:hover{ background:linear-gradient(135deg, #861fe0 0%, #b36fed 100%); transform:translateY(-1px); box-shadow:0 8px 22px rgba(154, 53, 243, 0.45); }

.nav-toggle26{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:36px; height:36px; background:none; border:none; cursor:pointer; margin-left:8px; flex-shrink:0;
}
.nav-toggle26 span{ display:block; width:22px; height:2px; border-radius:2px; transition:all .3s; background:#111827; }
.nav-toggle26.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle26.active span:nth-child(2){ opacity:0; }
.nav-toggle26.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:900px){
  .nav-actions26{ display:none !important; }
  .nav-toggle26{ display:flex; }

  .links26{
    display:none; flex-direction:column; align-items:stretch; gap:2px;
    position:fixed; top:68px; left:0; right:0; max-height:calc(100vh - 68px);
    overflow-y:auto; background:#0A0F2C;
    padding:12px 16px 24px; box-shadow:0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.05);
    margin-left:0; z-index:999;
  }
  .links26.open{ display:flex; }

  .links26 .nav-link26{ padding:12px 10px; justify-content:space-between; color:rgba(255,255,255,.85); }
  .links26 .nav-link26:hover, .links26 .dropdown-toggle26:hover{ color:#fff; }

  .dropdown-menu26{
    position:static; display:none; opacity:1; visibility:visible; transform:none;
    background:rgba(255,255,255,.06); border:none; box-shadow:none;
    margin:0 0 6px; padding:4px 0 4px 14px; max-width:100%;
  }
  .dropdown-menu26 li a{ color:rgba(255,255,255,.75); }
  .dropdown-menu26 li a:hover{ background:rgba(255,255,255,.08); color:#fff; }
  .has-dropdown26.open .dropdown-menu26{ display:block; }
  .has-dropdown26.open .caret26{ transform:rotate(180deg); }

  .mobile-only-action26{ display:block; margin-top:10px; }
  .mobile-only-action26 .btn26nav{ width:100%; justify-content:center; }
}
@media (max-width:480px){
  .nav-logo26 img{ height:100%; max-width:130px; }
}

/* ==========================================================================
   Demo Form Section
   ========================================================================== */
.demo-form-section{ padding:48px 0; background:#F8FAFC; }
.demo-form-section .container{ max-width:1180px; margin:0 auto; padding:0 24px; }
.demo-form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }

.demo-info .sec-label{
  display:inline-block; font-size:13px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase;
  color:var(--primary, #4f46e5); background:var(--primary-light, #e0e7ff); padding:6px 14px; border-radius:20px; margin-bottom:16px;
}
.demo-info .sec-title{
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  font-weight: 800;
  color: var(--text-main, #0f172a);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 1.15rem;
}
.demo-info p{ font-size:15px; color:#4b5563; line-height:1.7; margin:0 0 24px; }
.demo-points{ list-style:none; padding:0; margin:0; }
.demo-points li{
  display:flex; align-items:center; gap:10px; font-size:15px; font-weight:500; color:#1f2937;
  padding:10px 0; border-bottom:1px solid #e5e7eb;
}
.demo-points li:last-child{ border-bottom:none; }
.demo-points .check{
  display:flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:50%;
  background:#22c55e; color:#fff; font-size:12px; font-weight:700; flex-shrink:0;
}

.demo-form-card{
  background:#fff; border-radius:16px; border:1px solid #e5e7eb; box-shadow:0 10px 30px rgba(17,24,39,0.06); padding:36px 32px;
}
.form-heading{ font-size:18px; font-weight:700; color:var(--text-main, #0f172a); margin:0 0 20px; text-align:left; }
.form-field{ margin-bottom:16px; position:relative; }
.form-control{
  width:100%; height:48px; padding:0 16px; font-size:14px; color:var(--text-main, #0f172a); background:#F9FAFB;
  border:1px solid #e5e7eb; border-radius:8px; outline:none; box-sizing:border-box;
  transition:border-color 0.2s, box-shadow 0.2s, background 0.2s; font-family:inherit;
}
textarea.form-control{ height:auto; padding:12px 16px; resize:vertical; font-family:inherit; }
.form-control:focus{ border-color:var(--primary, #4f46e5); box-shadow:0 0 0 3px rgba(77,38,230,0.14); background:#fff; }
.error{ display:block; color:#e24b4a; font-size:12px; margin-top:4px; }
.btn-submit{
  width:100%; height:50px; display:flex; align-items:center; justify-content:center; gap:8px;
  background:linear-gradient(135deg, #9A35F3 0%, #C083F4 100%); color:#fff; font-size:15px; font-weight:700; border:none; border-radius:8px;
  box-shadow:0 8px 20px rgba(154, 53, 243, 0.35); cursor:pointer; transition:all 0.2s ease, transform 0.1s; font-family:inherit;
}
.btn-submit:hover{ background:linear-gradient(135deg, #861fe0 0%, #b36fed 100%); box-shadow:0 10px 25px rgba(154, 53, 243, 0.45); }
.btn-submit:active{ transform:scale(0.98); }

@media (max-width:900px){
  .demo-form-grid{ grid-template-columns:1fr; gap:36px; }
}
@media (max-width:480px){
  .demo-form-section{ padding:36px 0; }
  .demo-form-card{ padding:28px 20px; }
}

/* ==========================================================================
   Demo Request Popup Modal
   ========================================================================== */
.demo-modal-overlay{
  position:fixed; top:0; left:0; right:0; bottom:0; width:100%; height:100%;
  background:rgba(15,23,42,0.75); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center; padding:24px; z-index:99999;
  opacity:0; visibility:hidden; transition:opacity 0.25s ease, visibility 0.25s ease;
  overflow-y:auto;
}
.demo-modal-overlay.active{ opacity:1; visibility:visible; }
.demo-modal{
  background:#fff; border-radius:20px; width:100%; max-width:880px; max-height:90vh; overflow-y:auto;
  position:relative; box-shadow:0 30px 60px rgba(0,0,0,0.35); margin:auto;
  transform:scale(0.94) translateY(15px); opacity:0;
  transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.demo-modal-overlay.active .demo-modal{ transform:scale(1) translateY(0); opacity:1; }
.demo-modal-close{
  position:absolute; top:16px; right:16px; width:36px; height:36px; border-radius:50%; border:none;
  background:#F1F5F9; color:#475569; display:flex; align-items:center; justify-content:center; cursor:pointer;
  z-index:10; transition:background 0.2s, color 0.2s, transform 0.2s;
}
.demo-modal-close:hover{ background:#FEE2E2; color:#DC2626; transform:rotate(90deg); }
.demo-modal-grid{ display:grid; grid-template-columns:1fr 1.2fr; }

.demo-modal-side{
  background:linear-gradient(160deg, #3b0764 0%, #9A35F3 55%, #C083F4 100%);
  color:#fff; padding:40px 32px; display:flex; flex-direction:column; justify-content:center;
  border-radius:20px 0 0 20px; position:relative; overflow:hidden;
}
.demo-modal-side::before{
  content:""; position:absolute; top:-60px; right:-60px; width:200px; height:200px;
  background:rgba(32,14,105,.36); border-radius:50%; filter:blur(10px);
}
.dms-badge{
  display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:0.03em;
  text-transform:uppercase; background:rgba(255,255,255,0.15); padding:6px 14px; border-radius:20px;
  width:fit-content; margin-bottom:18px;
}
.badge-pulse{
  width:8px; height:8px; border-radius:50%; background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,0.7); animation:pulseDot 1.6s infinite;
  animation-play-state:paused;
}
.demo-modal-overlay.active .badge-pulse{ animation-play-state:running; }
@keyframes pulseDot{
  0%{ box-shadow:0 0 0 0 rgba(34,197,94,0.6); }
  70%{ box-shadow:0 0 0 8px rgba(34,197,94,0); }
  100%{ box-shadow:0 0 0 0 rgba(34,197,94,0); }
}
.demo-modal-side h3{ color:#ffffff; font-size:24px; font-weight:800; line-height:1.3; margin:0 0 12px; }
.demo-modal-side p{ font-size:14px; color:rgba(255,255,255,0.85); line-height:1.6; margin:0 0 24px; }
.dms-points{ list-style:none; padding:0; margin:0 0 28px; }
.dms-points li{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:500; padding:8px 0; }
.dms-points .check{
  display:flex; align-items:center; justify-content:center; width:20px; height:20px; border-radius:50%;
  background:#22c55e; font-size:11px; font-weight:700; flex-shrink:0;
}
.dms-stats{ display:flex; gap:24px; border-top:1px solid rgba(255,255,255,0.2); padding-top:20px; }
.dms-stats div{ display:flex; flex-direction:column; }
.dms-stats strong{ font-size:18px; font-weight:800; }
.dms-stats span{ font-size:11px; color:rgba(255,255,255,0.7); }

.demo-modal-form{ padding:40px 36px; }
.demo-modal-form .form-heading{ font-size:22px; font-weight:800; color:var(--text-main, #0f172a); margin:0 0 6px; text-align:left; }
.demo-modal-form .form-subheading{ font-size:13px; color:#6b7280; margin:0 0 22px; }
.form-field-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:4px; }
.demo-modal-form .form-control{ height:46px; }

@media (max-width:760px){
  .demo-modal-grid{ grid-template-columns:1fr; }
  .demo-modal-side{ border-radius:20px 20px 0 0; padding:28px 24px; }
  .dms-stats{ display:none; }
  .demo-modal-form{ padding:28px 24px; }
  .form-field-row{ grid-template-columns:1fr; }
}
@media (max-width:480px){
  .demo-modal{ border-radius:16px; }
  .demo-modal-side, .demo-modal-form{ padding:24px 20px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ftcontainer{ max-width:1200px; margin:0 auto; padding:0 24px; }
.footer{
  background:#0f172a; color:rgba(255,255,255,.7); padding:48px 0 0;
  background-image:
    linear-gradient(90deg, transparent, rgba(146,121,255,.069) 50%, rgba(22,75,235,.069) 100%, transparent 95%),
    linear-gradient(90deg, transparent, rgba(255,121,197,.069) 50%, rgba(22,75,235,.069) 100%, transparent 95%);
}
.footer-top{ display:grid; grid-template-columns:2fr 2fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .nav-logo{ display:inline-block; margin-bottom:16px; }
.footer-brand .nav-logo img{ height:36px; width:auto; max-width:180px; object-fit:contain; display:block; }
.footer-brand p{ font-size:14px; line-height:1.75; margin-bottom:20px; color:rgba(255,255,255,.6); }

.contact-list{ list-style:none; display:flex; flex-direction:column; gap:14px; margin:0; padding:0; }
.contact-list li a{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; line-height:1.5; color:rgba(255,255,255,.6); transition:color .2s; }
.contact-list li a:hover{ color:#fff; }
.contact-list .icon-img{ width:18px; height:18px; object-fit:contain; flex-shrink:0; margin-top:2px; }

.ft-links h4{ font-size:13px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px; }
.ft-links ul{ list-style:none; display:flex; flex-direction:column; gap:10px; margin:0; padding:0; }
.ft-links a{ font-size:14px; color:rgba(255,255,255,.55); transition:color .2s; }
.ft-links a:hover{ color:#fff; }

.ft-socials{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.soc-link{ width:32px; height:32px; border-radius:8px; display:flex; align-items:center; justify-content:center; transition:transform .2s; flex-shrink:0; }
.soc-link:hover{ transform:translateY(-2px); }
.soc-link img{ width:20px; height:20px; object-fit:contain; }

.footer-bottom{ display:flex; flex-direction:column; align-items:center; gap:10px; padding:20px 0 28px; border-top:1px solid rgba(255,255,255,.06); text-align:center; }
.footer-bottom p{ font-size:12.5px; line-height:1.6; color:rgba(255,255,255,.45); max-width:960px; }
.footer-bottom p:first-child{ font-size:13px; color:rgba(255,255,255,.7); }

@media(max-width:1024px){ .footer-top{ grid-template-columns:1fr 1fr; row-gap:36px; } }
@media(max-width:640px){ .footer{ padding:36px 0 0; } .footer-top{ grid-template-columns:1fr; gap:32px; } }



