/* ==========================================================================
   eStoreWala - Main Design System & Stylesheet
   Matching Desktop & Mobile UI/UX Designs
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-purple: #6366f1;
  --primary-purple-dark: #4f46e5;
  --primary-purple-light: #e0e7ff;
  --primary-pink: #ec4899;
  --primary-pink-light: #fce7f3;
  --primary-orange: #f97316;
  --primary-orange-light: #ffedd5;
  --primary-blue: #3b82f6;
  --primary-blue-light: #dbeafe;
  --primary-green: #10b981;
  --primary-green-light: #d1fae5;
  
  /* Gradients */
  --gradient-cta: linear-gradient(100deg, #6366f1 0%, #ec4899 50%, #f97316 100%);
  --gradient-banner: linear-gradient(110deg, #7c3aed 0%, #c026d3 40%, #ea580c 100%);
  --gradient-text: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f97316 100%);
  --gradient-subtle: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);

  /* Neutrals */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-page: #fdfcff;
  --bg-white: #ffffff;
  --bg-slate: #f8fafc;
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 16px 40px rgba(99, 102, 241, 0.12);
  --shadow-hover: 0 20px 48px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-doodle: 'Caveat', cursive, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 76px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-page);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-purple {
  background: #ede9fe;
  color: #6d28d9;
}

.badge-green {
  background: #dcfce7;
  color: #15803d;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
}

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

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

.brand-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

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

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

.nav-link.active {
  color: var(--text-dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-purple);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--gradient-cta);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
  transition: all 0.25s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

.btn-cta-primary .arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

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

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--border-light);
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}

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

.mobile-drawer .nav-link {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* ==========================================================================
   HOMEPAGE: Hero Section
   ========================================================================== */
.home-hero {
  position: relative;
  padding: 44px 0 48px;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 28px;
}

.hero-content {
  max-width: 480px;
  text-align: left;
}

.hero-title {
  font-size: 3.45rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 18px;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 28px;
  font-weight: 500;
  max-width: 375px;
  text-align: left;
}

.hero-content .btn-cta-primary {
  padding: 12px 30px;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(236, 72, 153, 0.35);
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.desktop-hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 660px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-studio-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.06));
  transition: transform 0.3s ease;
}

.hero-studio-img:hover {
  transform: translateY(-2px);
}
.floating-badge {
  position: absolute;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.badge-socials {
  left: -20px;
  top: 25%;
  animation-delay: 0.5s;
}

.badge-socials img {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
}

.badge-followers {
  right: -10px;
  top: 10%;
  animation-delay: 1s;
}

.badge-followers img {
  width: 165px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
}

.badge-doodle-arrow {
  right: 5px;
  top: 38%;
  animation-delay: 1.5s;
}

.badge-doodle-arrow img {
  width: 130px;
  height: auto;
}

.badge-product {
  right: 15px;
  bottom: 8%;
  animation-delay: 0.8s;
}

.badge-product img {
  width: 125px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.14));
}

/* ==========================================================================
   HOMEPAGE: 4 Features Value Proposition Strip
   ========================================================================== */
.features-section {
  padding: 20px 0 60px;
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffffff;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.icon-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.icon-orange {
  background: #ffedd5;
  color: #ea580c;
}

.icon-pink {
  background: #fce7f3;
  color: #db2777;
}

.icon-infinity {
  background: #ede9fe;
  color: #6366f1;
  font-size: 1.6rem;
}

.feature-icon-circle svg {
  width: 26px;
  height: 26px;
  display: block;
}

.bullet-icon-box svg {
  width: 20px;
  height: 20px;
  display: block;
}

.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.svg-inline {
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.mockup-sidebar-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.bottom-nav-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.whatsapp-icon-round svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.feature-stat {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.feature-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   HOMEPAGE: Simple Steps Big Rewards (4-step Flow)
   ========================================================================== */
.how-it-works-preview {
  padding: 40px 0 80px;
}

.section-header-centered {
  text-align: left;
  margin-bottom: 40px;
}

.section-header-centered .badge-pill {
  margin-bottom: 12px;
}

.section-heading-lg {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.steps-flow-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-card {
  flex: 1;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.step-badge-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.badge-step-1 { background: #6366f1; }
.badge-step-2 { background: #3b82f6; }
.badge-step-3 { background: #ec4899; }
.badge-step-4 { background: #8b5cf6; }

.step-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.step-card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 10px;
  padding: 8px;
  overflow: hidden;
}

.step-card-visual img {
  width: 100%;
  height: 100%;
  max-height: 110px;
  object-fit: contain;
}

.step-connector-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  font-size: 1.4rem;
  padding: 0 4px;
  font-weight: 800;
}

/* Mobile View for Steps: Accordion / Interactive List */
.steps-accordion-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.mobile-step-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-step-item:hover {
  background: #fdfcff;
  border-color: var(--primary-purple-light);
}

.mobile-step-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mobile-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.mobile-step-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HOMEPAGE: Gradient Banner CTA
   ========================================================================== */
.cta-banner-section {
  padding: 20px 0 80px;
}

.desktop-banner-wrapper {
  display: block;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.22);
  transition: all 0.3s ease;
}

.desktop-banner-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(236, 72, 153, 0.3);
}

.banner-full-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.mobile-banner-wrapper {
  display: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
}

.mobile-banner-wrapper:hover {
  transform: translateY(-2px);
}

.banner-mobile-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HOW IT WORKS PAGE: Hero & Section Setup
   ========================================================================== */
.hiw-hero {
  text-align: center;
  padding: 50px 0 40px;
  position: relative;
}

.hiw-hero-badge {
  margin-bottom: 16px;
}

.hiw-hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hiw-hero-title .title-create {
  color: var(--text-dark);
}

.hiw-hero-title .title-share {
  color: #6366f1;
}

.hiw-hero-title .title-earn {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hiw-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Playful floating hero doodles */
.hiw-doodle-left {
  position: absolute;
  left: 2%;
  top: 18%;
  width: 135px;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.12));
}

.hiw-doodle-right {
  position: absolute;
  right: 3%;
  top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.hiw-doodle-profit-img {
  width: 145px;
  margin-bottom: 6px;
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.12));
}

.hiw-social-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.hiw-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ffffff;
}

.icon-yt { background: #ef4444; }
.icon-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.icon-tk { background: #000000; }

/* ==========================================================================
   HOW IT WORKS PAGE: 6 Alternating Steps Layout
   ========================================================================== */
.hiw-steps-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 30px 0 80px;
}

.step-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}

.step-row.reverse {
  grid-template-columns: 1fr 1.15fr;
}

.step-row.reverse .step-mockup-col {
  order: 2;
}

.step-row.reverse .step-text-col {
  order: 1;
}

/* Step Text & Bullets Column */
.step-text-col {
  display: flex;
  flex-direction: column;
}

.step-num-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.step-01 { background: #6366f1; box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35); }
.step-02 { background: #ec4899; box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35); }
.step-03 { background: #f97316; box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35); }
.step-04 { background: #3b82f6; box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35); }
.step-05 { background: #10b981; box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35); }
.step-06 { background: #8b5cf6; box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35); }

.step-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.step-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bullet-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.box-purple { background: #ede9fe; color: #6d28d9; }
.box-pink   { background: #fce7f3; color: #db2777; }
.box-orange { background: #ffedd5; color: #ea580c; }
.box-blue   { background: #dbeafe; color: #2563eb; }
.box-green  { background: #d1fae5; color: #059669; }
.box-violet { background: #f3e8ff; color: #7e22ce; }

.bullet-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.bullet-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   DEVICE MOCKUP CHASSIS (MacBook Desktop Frame & Phone Mobile Frame)
   ========================================================================== */
.step-mockup-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-row.reverse .step-mockup-col {
  padding-right: 70px;
}

/* Playful Doodle Callouts around mockups */
.mockup-doodle-img {
  position: absolute;
  z-index: 25;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.14));
  transition: all 0.3s ease;
}

.doodle-step1 {
  width: 140px;
  right: -55px;
  top: 25px;
}

.doodle-step2 {
  width: 145px;
  right: -15px;
  top: 65px;
}

.doodle-step4 {
  width: 125px;
  right: -15px;
  top: 65px;
}

.doodle-step6 {
  width: 145px;
  right: -25px;
  top: 145px;
}

/* Realistic MacBook Chassis (Apple Silver Gray) */
.laptop-chassis {
  width: 100%;
  max-width: 580px;
  background: #e2e8f0;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px 16px 4px 4px;
  padding: 8px 8px 12px 8px;
  box-shadow: 0 20px 45px -10px rgba(100, 116, 139, 0.2), 0 0 0 1px rgba(203, 213, 225, 0.8);
  position: relative;
}

/* Laptop Lid Top Bar */
.laptop-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 8px 8px;
}

.laptop-traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.laptop-camera-notch {
  width: 5px;
  height: 5px;
  background: #94a3b8;
  border-radius: 50%;
}

/* Laptop Screen Content Container */
.laptop-screen {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  aspect-ratio: 16 / 10;
  position: relative;
  display: flex;
}

/* Laptop Bottom Base Hinge */
.laptop-chassis::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -4%;
  width: 108%;
  height: 8px;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
  border: 1px solid #cbd5e1;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Inside Mockup UI Styles */
.mockup-ui-split {
  display: flex;
  width: 100%;
  height: 100%;
}

.mockup-sidebar {
  width: 88px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.62rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.mockup-sidebar-logo {
  height: 16px;
  margin-bottom: 6px;
}

.mockup-sidebar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.mockup-sidebar-item.active {
  background: #ede9fe;
  color: var(--primary-purple);
  font-weight: 700;
}

.mockup-body {
  flex: 1;
  padding: 14px 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font-size: 0.72rem;
}

.mockup-body-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.mockup-header-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Phone Chassis for Mobile Views (Sleek Silver Gray) */
.phone-chassis {
  width: 100%;
  max-width: 290px;
  background: #e2e8f0;
  border: 2px solid #cbd5e1;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 20px 45px -10px rgba(100, 116, 139, 0.22), 0 0 0 1px rgba(203, 213, 225, 0.8);
  margin: 0 auto;
  position: relative;
}

.phone-screen {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hide/Show Mockup depending on screen size */
.desktop-mockup-wrapper {
  display: block;
  width: 100%;
}

.mobile-mockup-wrapper {
  display: none;
}

/* ==========================================================================
   HOW IT WORKS PAGE: ON-SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/* Base transition properties on step components */
.js-has-scroll-anim .step-row {
  opacity: 1; /* Keep parent container visible to prevent layout shift */
}

/* Step Mockup Column (Laptop & Phone Frames) */
.js-has-scroll-anim .step-row:not(.is-in-view) .step-mockup-col {
  opacity: 0;
  transform: translate3d(-40px, 30px, 0) scale(0.96);
  filter: blur(4px);
  pointer-events: none;
}

.js-has-scroll-anim .step-row.reverse:not(.is-in-view) .step-mockup-col {
  transform: translate3d(40px, 30px, 0) scale(0.96);
}

.step-row .step-mockup-col {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.step-row.is-in-view .step-mockup-col {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

/* Playful Doodle Callouts (Elastic Pop Stagger) */
.js-has-scroll-anim .step-row:not(.is-in-view) .mockup-doodle-img {
  opacity: 0;
  transform: scale(0.55) rotate(-10deg);
}

.step-row .mockup-doodle-img {
  transition: opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.38s,
              transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.38s;
  will-change: transform, opacity;
}

.step-row.is-in-view .mockup-doodle-img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Step Content Column (Badge, Titles, Bullets) */
.js-has-scroll-anim .step-row:not(.is-in-view) .step-text-col {
  opacity: 0;
  transform: translate3d(35px, 20px, 0);
}

.js-has-scroll-anim .step-row.reverse:not(.is-in-view) .step-text-col {
  transform: translate3d(-35px, 20px, 0);
}

.step-row .step-text-col {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: transform, opacity;
}

.step-row.is-in-view .step-text-col {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Step Number Pill Bounce */
.js-has-scroll-anim .step-row:not(.is-in-view) .step-num-pill {
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
}

.step-row .step-num-pill {
  transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
              transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
  will-change: transform, opacity;
}

.step-row.is-in-view .step-num-pill {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Step Title & Subtitle Fade & Slide */
.js-has-scroll-anim .step-row:not(.is-in-view) .step-title {
  opacity: 0;
  transform: translateY(18px);
}

.step-row .step-title {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.step-row.is-in-view .step-title {
  opacity: 1;
  transform: translateY(0);
}

.js-has-scroll-anim .step-row:not(.is-in-view) .step-subtitle {
  opacity: 0;
  transform: translateY(18px);
}

.step-row .step-subtitle {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.26s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.26s;
}

.step-row.is-in-view .step-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Bullet Points Entry */
.js-has-scroll-anim .step-row:not(.is-in-view) .bullet-item {
  opacity: 0;
  transform: translateX(20px);
}

.js-has-scroll-anim .step-row.reverse:not(.is-in-view) .bullet-item {
  transform: translateX(-20px);
}

.step-row .bullet-item {
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.step-row.is-in-view .bullet-item {
  opacity: 1;
  transform: translateX(0);
}

.step-row.is-in-view .bullet-item:nth-child(1) { transition-delay: 0.32s; }
.step-row.is-in-view .bullet-item:nth-child(2) { transition-delay: 0.44s; }
.step-row.is-in-view .bullet-item:nth-child(3) { transition-delay: 0.56s; }

/* Generic Scroll Reveal for CTA Banner and Feature Strip */
.js-has-scroll-anim .scroll-reveal:not(.is-in-view) {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
}

.scroll-reveal {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.is-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   HOMEPAGE SCROLL REVEAL SUB-ELEMENTS
   -------------------------------------------------------------------------- */
/* Hero section split */
.js-has-scroll-anim .home-hero:not(.is-in-view) .hero-content {
  opacity: 0;
  transform: translate3d(-35px, 0, 0);
}

.home-hero .hero-content {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.home-hero.is-in-view .hero-content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-has-scroll-anim .home-hero:not(.is-in-view) .hero-visual-wrapper {
  opacity: 0;
  transform: translate3d(35px, 15px, 0) scale(0.96);
}

.home-hero .hero-visual-wrapper {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  will-change: transform, opacity;
}

.home-hero.is-in-view .hero-visual-wrapper {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* 4 Value Proposition Feature Cards Stagger */
.js-has-scroll-anim .features-section:not(.is-in-view) .feature-item {
  opacity: 0;
  transform: translateY(28px) scale(0.95);
}

.feature-item {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.features-section.is-in-view .feature-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.features-section.is-in-view .feature-item:nth-child(1) { transition-delay: 0.1s; }
.features-section.is-in-view .feature-item:nth-child(2) { transition-delay: 0.22s; }
.features-section.is-in-view .feature-item:nth-child(3) { transition-delay: 0.34s; }
.features-section.is-in-view .feature-item:nth-child(4) { transition-delay: 0.46s; }

/* Homepage How It Works 4-Step Cards Flow Stagger */
.js-has-scroll-anim .how-it-works-preview:not(.is-in-view) .section-header-centered {
  opacity: 0;
  transform: translateY(20px);
}

.how-it-works-preview .section-header-centered {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-it-works-preview.is-in-view .section-header-centered {
  opacity: 1;
  transform: translateY(0);
}

.js-has-scroll-anim .how-it-works-preview:not(.is-in-view) .step-card {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
}

.step-card {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.how-it-works-preview.is-in-view .step-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.how-it-works-preview.is-in-view .step-card:nth-child(1) { transition-delay: 0.12s; }
.how-it-works-preview.is-in-view .step-card:nth-child(3) { transition-delay: 0.26s; }
.how-it-works-preview.is-in-view .step-card:nth-child(5) { transition-delay: 0.40s; }
.how-it-works-preview.is-in-view .step-card:nth-child(7) { transition-delay: 0.54s; }

.js-has-scroll-anim .how-it-works-preview:not(.is-in-view) .step-connector-arrow {
  opacity: 0;
  transform: scale(0.5);
}

.step-connector-arrow {
  transition: opacity 0.5s ease 0.35s,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s;
}

.how-it-works-preview.is-in-view .step-connector-arrow {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Step Accordion items */
.js-has-scroll-anim .how-it-works-preview:not(.is-in-view) .mobile-step-item {
  opacity: 0;
  transform: translateY(18px);
}

.mobile-step-item {
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-it-works-preview.is-in-view .mobile-step-item {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works-preview.is-in-view .mobile-step-item:nth-child(1) { transition-delay: 0.1s; }
.how-it-works-preview.is-in-view .mobile-step-item:nth-child(2) { transition-delay: 0.2s; }
.how-it-works-preview.is-in-view .mobile-step-item:nth-child(3) { transition-delay: 0.3s; }
.how-it-works-preview.is-in-view .mobile-step-item:nth-child(4) { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   CONTACT US PAGE SCROLL REVEAL SUB-ELEMENTS
   -------------------------------------------------------------------------- */
/* Contact Hero & Spotlight Banner */
.js-has-scroll-anim .contact-hero:not(.is-in-view) .contact-hero-content {
  opacity: 0;
  transform: translateY(20px);
}

.contact-hero .contact-hero-content {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero.is-in-view .contact-hero-content {
  opacity: 1;
  transform: translateY(0);
}

.js-has-scroll-anim .contact-hero:not(.is-in-view) .whatsapp-spotlight-card {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
}

.whatsapp-spotlight-card {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
  will-change: transform, opacity;
}

.contact-hero.is-in-view .whatsapp-spotlight-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Contact Details Form & Info Cards Split */
.js-has-scroll-anim .contact-section:not(.is-in-view) .contact-form-card {
  opacity: 0;
  transform: translate3d(-35px, 20px, 0);
}

.contact-form-card {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: transform, opacity;
}

.contact-section.is-in-view .contact-form-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-has-scroll-anim .contact-section:not(.is-in-view) .contact-info-card {
  opacity: 0;
  transform: translate3d(35px, 15px, 0);
}

.contact-info-card {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.contact-section.is-in-view .contact-info-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.contact-section.is-in-view .contact-info-card:nth-child(1) { transition-delay: 0.12s; }
.contact-section.is-in-view .contact-info-card:nth-child(2) { transition-delay: 0.24s; }
.contact-section.is-in-view .contact-info-card:nth-child(3) { transition-delay: 0.36s; }
.contact-section.is-in-view .contact-info-card:nth-child(4) { transition-delay: 0.48s; }

/* Contact FAQ Section Stagger */
.js-has-scroll-anim .contact-faq-section:not(.is-in-view) .contact-faq-title {
  opacity: 0;
  transform: translateY(20px);
}

.contact-faq-section .contact-faq-title {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-faq-section.is-in-view .contact-faq-title {
  opacity: 1;
  transform: translateY(0);
}

.js-has-scroll-anim .contact-faq-section:not(.is-in-view) .contact-faq-card {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
}

.contact-faq-card {
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.contact-faq-section.is-in-view .contact-faq-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-faq-section.is-in-view .contact-faq-card:nth-child(1) { transition-delay: 0.12s; }
.contact-faq-section.is-in-view .contact-faq-card:nth-child(2) { transition-delay: 0.25s; }
.contact-faq-section.is-in-view .contact-faq-card:nth-child(3) { transition-delay: 0.38s; }

/* Mobile Adjustments (Clean purely vertical transitions, no horizontal page shift) */
@media (max-width: 768px) {
  .js-has-scroll-anim .step-row:not(.is-in-view) .step-mockup-col,
  .js-has-scroll-anim .step-row.reverse:not(.is-in-view) .step-mockup-col {
    transform: translateY(30px) scale(0.97);
  }

  .js-has-scroll-anim .step-row:not(.is-in-view) .step-text-col,
  .js-has-scroll-anim .step-row.reverse:not(.is-in-view) .step-text-col {
    transform: translateY(24px);
  }

  .js-has-scroll-anim .step-row:not(.is-in-view) .bullet-item,
  .js-has-scroll-anim .step-row.reverse:not(.is-in-view) .bullet-item {
    transform: translateY(14px);
  }

  .step-row.is-in-view .bullet-item {
    transform: translateY(0);
  }

  .js-has-scroll-anim .home-hero:not(.is-in-view) .hero-content,
  .js-has-scroll-anim .home-hero:not(.is-in-view) .hero-visual-wrapper,
  .js-has-scroll-anim .contact-section:not(.is-in-view) .contact-form-card,
  .js-has-scroll-anim .contact-section:not(.is-in-view) .contact-info-card {
    transform: translateY(22px);
  }
}

/* Snappy reset when element leaves viewport so re-entrance is instant and clean */
.js-has-scroll-anim .step-row:not(.is-in-view) .step-mockup-col,
.js-has-scroll-anim .step-row:not(.is-in-view) .step-text-col,
.js-has-scroll-anim .step-row:not(.is-in-view) .mockup-doodle-img,
.js-has-scroll-anim .step-row:not(.is-in-view) .step-num-pill,
.js-has-scroll-anim .step-row:not(.is-in-view) .step-title,
.js-has-scroll-anim .step-row:not(.is-in-view) .step-subtitle,
.js-has-scroll-anim .step-row:not(.is-in-view) .bullet-item,
.js-has-scroll-anim .home-hero:not(.is-in-view) .hero-content,
.js-has-scroll-anim .home-hero:not(.is-in-view) .hero-visual-wrapper,
.js-has-scroll-anim .features-section:not(.is-in-view) .feature-item,
.js-has-scroll-anim .how-it-works-preview:not(.is-in-view) .section-header-centered,
.js-has-scroll-anim .how-it-works-preview:not(.is-in-view) .step-card,
.js-has-scroll-anim .how-it-works-preview:not(.is-in-view) .mobile-step-item,
.js-has-scroll-anim .contact-hero:not(.is-in-view) .contact-hero-content,
.js-has-scroll-anim .contact-hero:not(.is-in-view) .whatsapp-spotlight-card,
.js-has-scroll-anim .contact-section:not(.is-in-view) .contact-form-card,
.js-has-scroll-anim .contact-section:not(.is-in-view) .contact-info-card,
.js-has-scroll-anim .contact-faq-section:not(.is-in-view) .contact-faq-card,
.js-has-scroll-anim .scroll-reveal:not(.is-in-view) {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, filter 0.3s ease-out !important;
  transition-delay: 0s !important;
}

/* Accessibility: User Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .js-has-scroll-anim .step-row:not(.is-in-view) .step-mockup-col,
  .js-has-scroll-anim .step-row.reverse:not(.is-in-view) .step-mockup-col,
  .js-has-scroll-anim .step-row:not(.is-in-view) .step-text-col,
  .js-has-scroll-anim .step-row.reverse:not(.is-in-view) .step-text-col,
  .js-has-scroll-anim .step-row:not(.is-in-view) .mockup-doodle-img,
  .js-has-scroll-anim .step-row:not(.is-in-view) .step-num-pill,
  .js-has-scroll-anim .step-row:not(.is-in-view) .step-title,
  .js-has-scroll-anim .step-row:not(.is-in-view) .step-subtitle,
  .js-has-scroll-anim .step-row:not(.is-in-view) .bullet-item,
  .js-has-scroll-anim .scroll-reveal:not(.is-in-view) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  height: 38px;
  width: auto;
}

.footer-tagline {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social-whatsapp {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

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

.footer-divider-line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #10b981;
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-whatsapp-btn:hover {
  background: #059669;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a:hover {
  color: #cbd5e1;
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT BUBBLE & MOBILE BOTTOM APP NAVIGATION
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.whatsapp-icon-round {
  display: none;
}

/* Sticky Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.05);
  z-index: 850;
  align-items: center;
  justify-content: space-around;
  padding: 0 12px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  max-width: 120px;
  text-align: center;
  white-space: nowrap;
}

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

.bottom-nav-item.active {
  color: var(--primary-purple);
  font-weight: 700;
  background: rgba(94, 23, 235, 0.07);
}

.bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.bottom-nav-item.active .bottom-nav-icon {
  transform: translateY(-1px);
}

/* ==========================================================================
   INTERACTIVE ONBOARDING MODAL ("Let's Start")
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-input {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.btn-modal-submit {
  padding: 14px;
  background: var(--gradient-cta);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
  cursor: pointer;
}

/* Switch between Desktop Hero and Mobile Hero */
.desktop-hero-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mobile-hero-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mobile-hero-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    text-align: left;
    gap: 24px;
  }

  .hero-content {
    max-width: 440px;
    text-align: left;
  }

  .hero-title {
    font-size: 2.75rem;
    line-height: 1.14;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 350px;
    text-align: left;
  }

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

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .step-row, .step-row.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .step-row.reverse .step-mockup-col,
  .step-row.reverse .step-text-col {
    order: unset;
  }

  .step-text-col {
    align-items: center;
  }

  .step-bullets-list {
    text-align: left;
    max-width: 480px;
  }

  .hiw-doodle-left {
    width: 100px;
    left: 0;
    top: 10%;
  }

  .hiw-doodle-right {
    right: 0;
    top: 8%;
  }

  .hiw-doodle-profit-img {
    width: 110px;
  }

  .doodle-step1 {
    width: 120px;
    right: -10px;
    top: -10px;
  }

  .doodle-step2 {
    width: 120px;
    right: -40px;
    top: 30px;
  }

  .doodle-step4 {
    width: 105px;
    right: -35px;
    top: 30px;
  }

  .doodle-step6 {
    width: 120px;
    right: -40px;
    top: 35px;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */

.contact-hero {
  padding: 60px 0 30px;
  text-align: center;
  background: radial-gradient(circle at top right, rgba(108, 92, 231, 0.08) 0%, transparent 60%),
              radial-gradient(circle at bottom left, rgba(253, 121, 168, 0.08) 0%, transparent 60%);
}

.contact-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 14px;
  color: var(--text-dark);
}

.contact-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* WhatsApp Spotlight Card */
.whatsapp-spotlight-card {
  max-width: 900px;
  margin: 30px auto 50px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 28px;
  padding: 32px 40px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.whatsapp-spotlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.35);
}

.whatsapp-spotlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.whatsapp-spotlight-info {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.whatsapp-spotlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.whatsapp-spotlight-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.whatsapp-pulse-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.whatsapp-number-display {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 2px 0 4px;
}

.whatsapp-subtext {
  font-size: 0.92rem;
  opacity: 0.92;
  margin: 0;
}

.whatsapp-spotlight-action {
  z-index: 2;
  flex-shrink: 0;
}

.btn-whatsapp-spotlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: #075E54;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-whatsapp-spotlight:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
  background: #f8fafc;
  color: #128C7E;
}

.btn-whatsapp-spotlight svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

/* Contact Grid Section */
.contact-section {
  padding: 20px 0 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fbfbfd;
  resize: vertical;
  min-height: 110px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.btn-contact-submit {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
  margin-top: 10px;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
}

.btn-contact-submit svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

/* Contact Info Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon.icon-whatsapp {
  background: transparent;
  padding: 0;
  border-radius: 50%;
}

.contact-info-icon.icon-whatsapp svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-info-icon.icon-email {
  background: rgba(253, 121, 168, 0.12);
  color: var(--secondary);
}

.contact-info-icon.icon-clock {
  background: rgba(253, 203, 110, 0.18);
  color: #d68100;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

.contact-info-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.contact-info-link:hover {
  text-decoration: underline;
}

/* FAQ Accordion Section on Contact Page */
.contact-faq-section {
  padding: 50px 0 80px;
  background: #fdfdfd;
  border-top: 1px solid var(--border-light);
}

.contact-faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 36px;
  color: var(--text-dark);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.contact-faq-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-faq-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-faq-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .container {
    padding: 0 16px;
  }

  body {
    padding-bottom: 74px; /* space for mobile bottom nav */
  }

  .site-header nav,
  .nav-menu {
    display: none !important;
  }

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

  .brand-logo {
    flex-shrink: 0;
    max-width: 130px;
  }

  .brand-logo img {
    height: 26px;
    width: auto;
    max-width: 125px;
    aspect-ratio: 329 / 72;
    object-fit: contain;
  }

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

  .site-header .btn-cta-primary {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 15px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111827;
    border-radius: 2px;
  }

  .mobile-bottom-nav {
    display: flex;
    height: 64px;
    padding: 0 8px;
  }

  .bottom-nav-item {
    font-size: 0.72rem;
    padding: 6px 6px;
    gap: 3px;
  }

  .bottom-nav-icon {
    width: 20px;
    height: 20px;
  }

  .floating-whatsapp {
    bottom: 74px;
    right: 16px;
    width: 50px;
    height: 50px;
    padding: 0;
  }

  .home-hero {
    padding: 24px 0 30px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .section-heading-lg {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  /* Switch from Desktop Hero to Mobile Hero */
  .desktop-hero-wrapper {
    display: none;
  }

  .mobile-hero-wrapper {
    display: flex;
    margin-top: 10px;
  }

  .mobile-hero-img {
    max-width: 290px;
  }

  /* Compact 4-column Features Strip on Mobile matching Image 3 */
  .features-section {
    padding: 10px 0 30px;
  }

  .features-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 10px 4px;
    gap: 2px;
    border-radius: var(--radius-md);
  }

  .feature-item {
    overflow: hidden;
    padding: 2px;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .feature-icon-circle {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .feature-stat {
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: normal;
  }

  .feature-label {
    font-size: 0.58rem;
    line-height: 1.1;
    color: var(--text-muted);
  }

  /* Switch from Desktop Laptop Mockup to Mobile Smartphone Frame on Mobile */
  .desktop-mockup-wrapper {
    display: none;
  }

  .mobile-mockup-wrapper {
    display: block;
    width: 100%;
    margin-bottom: 16px;
  }

  .phone-chassis {
    max-width: 240px;
  }

  .steps-flow-desktop {
    display: none;
  }

  .steps-accordion-mobile {
    display: flex;
  }

  .desktop-banner-wrapper {
    display: none;
  }

  .mobile-banner-wrapper {
    display: block;
  }

  .banner-btn-pill {
    padding: 8px 20px;
    font-size: 0.82rem;
  }

  .hiw-hero {
    padding: 24px 0 16px;
  }

  .hiw-hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hiw-hero-subtitle {
    font-size: 0.88rem;
    padding: 0 8px;
  }

  .step-title {
    font-size: 1.35rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-social-whatsapp {
    width: 100%;
    justify-content: space-between;
  }

  /* Mobile How-It-Works Doodles */
  .step-row.reverse .step-mockup-col {
    padding-right: 0;
  }

  .hiw-doodle-left {
    position: absolute;
    right: 14px !important;
    left: auto !important;
    top: 25px !important;
    width: 80px !important;
    display: block !important;
    z-index: 20 !important;
    filter: drop-shadow(0 3px 8px rgba(124, 58, 237, 0.12));
  }

  .hiw-doodle-right {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 14px auto 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hiw-doodle-profit-img {
    width: 105px;
    margin-bottom: 6px;
  }

  .hiw-social-row {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
  }

  .hiw-social-icon {
    width: 26px;
    height: 26px;
  }

  .mockup-doodle-img {
    display: block;
    z-index: 30;
  }

  .doodle-step1 {
    width: 95px;
    right: calc(50% - 138px);
    top: -38px;
  }

  .doodle-step2 {
    width: 95px;
    right: calc(50% - 138px);
    top: 245px;
  }

  .doodle-step4 {
    width: 85px;
    right: calc(50% - 138px);
    top: 260px;
  }

  .doodle-step6 {
    width: 95px;
    right: calc(50% - 138px);
    top: 175px;
  }

  /* Contact Mobile Styles */
  .contact-hero {
    padding: 36px 0 20px;
  }

  .contact-hero-title {
    font-size: 1.85rem;
    word-break: break-word;
  }

  .contact-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .whatsapp-spotlight-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    margin: 20px 0 32px;
    border-radius: 24px;
  }

  .whatsapp-spotlight-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .whatsapp-spotlight-info > div {
    text-align: center !important;
  }

  .whatsapp-status-pill {
    max-width: 100%;
    font-size: 0.72rem;
    padding: 4px 10px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .whatsapp-number-display {
    font-size: 1.55rem;
  }

  .whatsapp-subtext {
    font-size: 0.88rem;
  }

  .whatsapp-spotlight-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-whatsapp-spotlight {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 13px 22px;
    font-size: 0.95rem;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
