/* ===== Digi Vyapaar — Premium Static Site ===== */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F8F7FF;
  --bg-softer: #F4F2FF;
  --ink: #0E0A1F;
  --ink-2: #3B3556;
  --muted: #6B6585;
  --line: rgba(108, 76, 255, 0.12);
  --primary: #6C4CFF;
  --primary-2: #8A6BFF;
  --primary-3: #B49CFF;
  --primary-ink: #3A1FBF;
  --accent: #FF7AB6;
  --gold: #FFB347;
  --green: #27C28A;
  --grad-primary: linear-gradient(135deg, #6C4CFF 0%, #9A7BFF 50%, #C6B2FF 100%);
  --grad-mesh: radial-gradient(60% 80% at 20% 10%, rgba(154, 123, 255, .35), transparent 60%),
    radial-gradient(50% 70% at 90% 20%, rgba(255, 122, 182, .20), transparent 60%),
    radial-gradient(60% 80% at 50% 100%, rgba(108, 76, 255, .18), transparent 60%);
  --shadow-soft: 0 10px 40px -12px rgba(108, 76, 255, .25);
  --shadow-card: 0 24px 60px -24px rgba(58, 31, 191, .25);
  --shadow-float: 0 30px 80px -20px rgba(58, 31, 191, .35);
  --radius: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-display: 'Geist', 'SF Pro Display', -apple-system, BlinkMacSystemFont, Inter, sans-serif;
  --font-sans: 'Geist', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Instrument Serif', 'PP Editorial New', Georgia, serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden
}

html {
  scroll-behavior: auto
}

body {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
  font-feature-settings: "ss01", "cv11"
}

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

a {
  color: inherit;
  text-decoration: none
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit
}

::selection {
  background: rgba(108, 76, 255, .25);
  color: var(--ink)
}

/* Skip link & focus */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10001
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-weight: 600
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px
}

:focus:not(:focus-visible) {
  outline: none
}

/* No-JS & reduced-motion fallbacks */
.no-js #loader {
  display: none
}

.no-js .r-up,
.no-js .r-fade,
.no-js .r-scale {
  opacity: 1 !important;
  transform: none !important
}

.no-js .split-line>span {
  transform: none !important
}

.no-js .hero-sub,
.no-js .hero-cta>*,
.no-js .hero-meta {
  opacity: 1 !important;
  transform: none !important
}

@media(prefers-reduced-motion:reduce) {

  .split-line>span,
  .r-up,
  .r-fade,
  .r-scale,
  .hero-sub,
  .hero-cta>*,
  .hero-meta {
    opacity: 1 !important;
    transform: none !important
  }

  #loader {
    display: none
  }

  .banner-img,
  .node,
  .eyebrow .pulse {
    animation: none !important
  }
}

/* Custom cursor */
.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  transition: transform .18s var(--ease), background .2s var(--ease), width .2s var(--ease), height .2s var(--ease), opacity .2s
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(108, 76, 255, .55);
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

.cursor-ring.hover {
  width: 64px;
  height: 64px;
  background: rgba(108, 76, 255, .10);
  border-color: rgba(108, 76, 255, .8)
}

.cursor-dot.hover {
  opacity: 0
}

@media(hover:none), (pointer:coarse) {

  .cursor-ring,
  .cursor-dot {
    display: none
  }
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity .6s var(--ease), visibility .6s
}

#loader.done {
  opacity: 0;
  visibility: hidden
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.loader-logo-icon {
  width: 72px;
  height: 72px;
  object-fit: contain
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -.04em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(108, 76, 255, .12);
  border-radius: 2px;
  overflow: hidden
}

.loader-bar span {
  display: block;
  height: 100%;
  background: var(--grad-primary);
  width: 0;
  animation: load 1.4s var(--ease) forwards
}

@keyframes load {
  to {
    width: 100%
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 22px;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), opacity .3s
}

.nav.hidden {
  transform: translate(-50%, -140%)
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.025em;
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500
}

.nav-links a {
  position: relative;
  padding: 6px 4px;
  transition: color .2s
}

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

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s var(--ease), background .2s
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px)
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.burger-icon {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  position: relative;
  border-radius: 2px
}

.burger-icon::before,
.burger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease), opacity .25s
}

.burger-icon::before {
  top: -5px
}

.burger-icon::after {
  top: 5px
}

.nav-burger[aria-expanded="true"] .burger-icon {
  background: transparent
}

.nav-burger[aria-expanded="true"] .burger-icon::before {
  top: 0;
  transform: rotate(45deg)
}

.nav-burger[aria-expanded="true"] .burger-icon::after {
  top: 0;
  transform: rotate(-45deg)
}

@media(max-width:880px) {
  .nav {
    width: calc(100% - 24px);
    justify-content: space-between;
    padding: 8px 8px 8px 18px;
    gap: 12px
  }

  .nav-links {
    display: none
  }

  .nav-cta {
    display: none
  }

  .nav-burger {
    display: inline-flex
  }
}

/* Mobile menu */
.mmenu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 10, 31, .45);
  z-index: 98;
  opacity: 0;
  transition: opacity .35s var(--ease)
}

.mmenu-backdrop.is-visible {
  opacity: 1
}

.mmenu {
  position: fixed;
  inset: 0;
  background: var(--bg-soft);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: max(90px, env(safe-area-inset-top)) 28px max(40px, env(safe-area-inset-bottom));
  gap: 8px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  visibility: hidden
}

.mmenu.open {
  transform: translateY(0);
  visibility: visible
}

.mmenu nav {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.mmenu a {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line)
}

.mmenu a.is-active {
  color: var(--primary)
}

.mmenu-cta {
  margin-top: 12px;
  border-bottom: none !important;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  padding: 16px 22px !important;
  text-align: center;
  font-size: 18px !important
}

.mmenu-close {
  position: absolute;
  top: max(22px, env(safe-area-inset-top));
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center
}

body.menu-open {
  overflow: hidden
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
  will-change: transform
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-soft)
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .3s
}

.btn-primary:hover::before {
  opacity: 1
}

.btn-primary span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

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

.btn-ghost {
  background: rgba(108, 76, 255, .06);
  color: var(--ink);
  border: 1px solid var(--line)
}

.btn-ghost:hover {
  background: rgba(108, 76, 255, .12);
  transform: translateY(-2px)
}

.btn .arrow {
  transition: transform .3s var(--ease)
}

.btn:hover .arrow {
  transform: translate(4px, -4px)
}

/* Section base */
section {
  position: relative;
  padding: 120px 28px;
  max-width: 1280px;
  margin: 0 auto
}

@media(max-width:760px) {
  section {
    padding: 80px 20px
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(108, 76, 255, .08);
  border: 1px solid var(--line)
}

.eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(108, 76, 255, .6);
  animation: pulse 2s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 76, 255, .6)
  }

  70% {
    box-shadow: 0 0 0 14px rgba(108, 76, 255, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(108, 76, 255, 0)
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.045em;
  color: var(--ink);
  line-height: 1.02
}

h1 {
  font-size: clamp(44px, 6.8vw, 92px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .98
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 500
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 600
}

.lead {
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.55;
  letter-spacing: -.01em
}

.italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-ink);
  letter-spacing: -.01em
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  max-width: 1320px
}

.hero-bg {
  position: absolute;
  inset: -10% -5%;
  z-index: -1;
  background: var(--grad-mesh);
  filter: blur(40px);
  opacity: .9
}

.hero-left .eyebrow {
  margin-bottom: 24px
}

.hero h1 span.line {
  display: block;
  overflow: hidden
}

.hero h1 .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.03em;
  padding-right: .05em
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 48ch
}

.hero-sub b {
  color: var(--ink);
  font-weight: 600
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px
}

.hero-meta .avatars {
  display: flex
}

.hero-meta .avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 4px 10px rgba(58, 31, 191, .2)
}

.hero-meta .avatars img:first-child {
  margin-left: 0
}

.hero-stars {
  color: var(--gold);
  letter-spacing: 2px
}

/* Hero 3D scene */
.scene {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 620px;
  margin-left: auto
}

.scene-canvas {
  position: absolute;
  inset: 0
}

.banner-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  background: transparent;
  pointer-events: none;
  filter: drop-shadow(0 24px 48px rgba(108, 76, 255, 0.35));
  animation: banner-float 6s ease-in-out infinite;
}

@keyframes banner-float {

  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, -54%);
  }
}

.node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  will-change: transform
}

.node .ic {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  padding: 4px
}

.node .ic svg {
  width: 14px;
  height: 14px
}

.node .ic.ic-google {
  background: #4285F4
}

.node .ic.ic-star {
  background: #FFB347
}

.node .ic.ic-whatsapp {
  background: #25D366
}

.node .ic.ic-brand {
  background: var(--primary)
}

.node.n1 {
  top: 6%;
  left: 8%
}

.node.n2 {
  top: 14%;
  right: 4%
}

.node.n3 {
  top: 48%;
  right: -2%
}

.node.n4 {
  bottom: 14%;
  right: 6%
}

.node.n5 {
  bottom: 4%;
  left: 30%
}

.node.n6 {
  bottom: 30%;
  left: -2%
}

.node.n7 {
  top: 34%;
  left: -4%
}

.scene-lines {
  position: absolute;
  inset: 0;
  pointer-events: none
}

/* Platforms strip */
.platforms-strip {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.platforms-strip p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.platforms-marquee {
  width: 100%;
  overflow: hidden;
}

.platforms-swiper {
  padding: 0 !important;
  overflow: visible;
}

.platforms-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.platforms-swiper .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
}

.platform-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 24px);
  letter-spacing: -0.02em;
  color: var(--muted);
  white-space: nowrap;
  transition: color .25s var(--ease)
}

.platform-item::after {
  content: '·';
  margin-left: 1.1rem;
  margin-right: 1.1rem;
  color: rgba(107, 101, 133, 0.35);
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1;
}

.platform-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--muted);
  opacity: 0.7;
  transition: color .25s var(--ease), opacity .25s var(--ease)
}

.platform-item .platform-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(1);
  transition: filter .25s var(--ease), opacity .25s var(--ease)
}

@media(hover:hover) {
  .platform-google:hover {
    color: #4285F4
  }

  .platform-google:hover .platform-icon {
    filter: none;
    opacity: 1
  }

  .platform-whatsapp:hover {
    color: #25D366
  }

  .platform-whatsapp:hover svg {
    color: #25D366;
    opacity: 1
  }

  .platform-instagram:hover {
    color: #E4405F
  }

  .platform-instagram:hover .platform-icon {
    filter: none;
    opacity: 1
  }

  .platform-facebook:hover {
    color: #1877F2
  }

  .platform-facebook:hover svg {
    color: #1877F2;
    opacity: 1
  }

  .platform-maps:hover {
    color: #34A853
  }

  .platform-maps:hover .platform-icon {
    filter: none;
    opacity: 1
  }

  .platform-play:hover {
    color: #01875F
  }

  .platform-play:hover .platform-icon {
    filter: none;
    opacity: 1
  }

  .platform-apple:hover {
    color: #111
  }

  .platform-apple:hover svg {
    color: #111;
    opacity: 1
  }
}

/* Problem section */
.problem {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%)
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px
}

@media(max-width:880px) {
  .problem-grid {
    grid-template-columns: 1fr
  }
}

.pcard {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform-style: preserve-3d
}

.pcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 76, 255, .06), transparent 50%);
  opacity: 0;
  transition: opacity .4s
}

.pcard:hover::before {
  opacity: 1
}

.pcard .num {
  font-family: var(--font-serif);
  font-size: 54px;
  font-style: italic;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1
}

.pcard h3 {
  margin: 14px 0 10px
}

.pcard p {
  color: var(--ink-2)
}

/* AI workflow — scroll progress journey */
.workflow {
  background: var(--bg-softer);
}

.flow-journey {
  position: relative;
  margin-top: 48px;
  padding: 8px 0 16px;
}

.flow-line {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 4px;
}

.flow-line-bg,
.flow-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
}

.flow-line-bg {
  width: 100%;
  height: 100%;
  background: rgba(108, 76, 255, 0.12);
}

.flow-line-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #6C4CFF 0%, #9A7BFF 55%, #B49CFF 100%);
  box-shadow: 0 0 16px rgba(108, 76, 255, 0.55);
  transition: width 0.15s linear, height 0.15s linear;
}

.flow-nodes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.flow-node-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid rgba(108, 76, 255, 0.18);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px -8px rgba(58, 31, 191, 0.18);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.flow-node-icon svg {
  width: 28px;
  height: 28px;
  color: var(--muted);
  transition: color 0.35s var(--ease);
}

.flow-node-body h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  transition: color 0.35s var(--ease);
}

.flow-node-num {
  color: var(--primary);
  font-weight: 700;
}

.flow-node-body p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.35s var(--ease);
}

.flow-node.is-active .flow-node-icon {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(108, 76, 255, 0.14), 0 16px 40px -10px rgba(108, 76, 255, 0.55);
}

.flow-node.is-active .flow-node-icon svg {
  color: #fff;
}

.flow-node.is-active .flow-node-body h4 {
  color: var(--ink);
}

.flow-node.is-active .flow-node-body p {
  color: var(--ink-2);
}

.flow-node.is-active .flow-node-num {
  color: var(--primary-ink);
}

@media (max-width: 980px) {
  .workflow {
    padding-bottom: 64px;
  }

  .flow-journey {
    margin-top: 36px;
    padding: 0 0 8px 0;
  }

  .flow-line {
    top: 32px;
    bottom: 32px;
    left: 31px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .flow-line-fill {
    width: 100%;
    height: 0;
  }

  .flow-nodes {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .flow-node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 14px 0 14px 4px;
  }

  .flow-node-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 16px;
  }

  .flow-node-icon svg {
    width: 22px;
    height: 22px;
  }

  .flow-node-body {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
  }

  .flow-node-body h4 {
    font-size: 15px;
    line-height: 1.3;
  }

  .flow-node-body p {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    font-size: 13px;
    margin-top: 4px;
  }

  .flow-node.is-active .flow-node-icon {
    transform: scale(1.04);
  }
}

@media (max-width: 480px) {
  .flow-line {
    left: 27px;
  }

  .flow-node {
    gap: 14px;
    padding: 12px 0;
  }

  .flow-node-icon {
    width: 52px;
    height: 52px;
  }

  .flow-node-body h4 {
    font-size: 14px;
  }

  .flow-node-body p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-line-fill {
    width: 100% !important;
    height: 100% !important;
  }

  .flow-node {
    opacity: 1;
  }

  .flow-node .flow-node-icon {
    background: var(--grad-primary);
    border-color: transparent;
  }

  .flow-node .flow-node-icon svg {
    color: #fff;
  }
}

/* Feature sections — layout variants */
.feature-section {
  padding-top: 100px;
  padding-bottom: 100px
}

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

@media(max-width:880px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.feature.reverse {
  direction: rtl
}

.feature.reverse>* {
  direction: ltr
}

.feature--elevated .browser {
  transform: scale(1.01)
}

.feature--cards>div:last-child {
  background: var(--bg-softer);
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid var(--line)
}

.feature--split .review-cards {
  display: contents
}

.seo .feature>.map-stage {
  justify-self: end;
  width: 100%
}

@media(max-width:880px) {
  .feature--split .review-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    aspect-ratio: unset;
    min-height: unset;
    padding: 28px 20px 20px;
    overflow: visible;
  }

  .feature--split .qr {
    position: relative;
    left: auto;
    top: auto;
    transform: rotate(-4deg);
    width: min(52vw, 190px);
    flex-shrink: 0;
    margin: 4px auto 8px;
    padding: 14px;
  }

  .feature--split .review-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 100%;
    width: 100%;
  }
}

@media(min-width:881px) {
  .feature--split .review-stage {
    min-height: 360px
  }
}

.review-stage {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #F8F7FF, #fff);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  padding: 30px;
  overflow: hidden
}

.qr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  width: 46%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  padding: 18px
}

.qr svg {
  width: 100%;
  height: 100%
}

.review-card {
  position: absolute;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 230px
}

.review-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0
}

.review-card .stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px
}

.review-card .who {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px
}

.review-card .txt {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px
}

.review-card.r1 {
  top: 8%;
  left: 4%
}

.review-card.r2 {
  top: 14%;
  right: 4%
}

.review-card.r3 {
  bottom: 8%;
  left: 8%
}

.stars-float {
  position: absolute;
  color: var(--gold);
  font-size: 24px;
  opacity: 0;
  will-change: transform
}

/* Website builder */
.builder {
  background: linear-gradient(180deg, var(--bg-softer) 0%, var(--bg) 100%)
}

.browser {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  max-width: 100%
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: var(--bg-softer);
  border-bottom: 1px solid var(--line)
}

.browser-bar .d {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e3def5
}

.browser-bar .url {
  margin-left: 10px;
  padding: 7px 10px;
  background: #fff;
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
  flex: 1;
  border: 1px solid var(--line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.url-live {
  color: #22c55e;
  font-size: 8px;
  flex-shrink: 0;
  line-height: 1;
}

.build-progress {
  height: 3px;
  background: rgba(108, 76, 255, .1);
  overflow: hidden;
}

.build-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-primary);
  border-radius: 0 2px 2px 0;
}

.browser-body {
  position: relative;
  padding: 14px;
  min-height: 240px;
  max-height: 320px;
  overflow: hidden;
}

.build-shimmer {
  position: absolute;
  inset: 14px;
  border-radius: 10px;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(108, 76, 255, .12) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: build-shimmer 1.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes build-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.build-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(108, 76, 255, .1);
  border: 1px solid rgba(108, 76, 255, .2);
  opacity: 0;
}

.build-badge.is-live {
  color: #15803d;
  background: rgba(34, 197, 94, .12);
  border-color: rgba(34, 197, 94, .25);
}

.site-skeleton {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-preview {
  position: absolute;
  inset: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
}

.site-preview.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

.site-logo {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}

.site-nav-links {
  display: flex;
  gap: 4px;
}

.site-nav-links span {
  width: 18px;
  height: 4px;
  border-radius: 2px;
  background: rgba(108, 76, 255, .15);
}

.site-hero {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(108, 76, 255, .14), rgba(154, 123, 255, .06));
  border: 1px solid rgba(108, 76, 255, .12);
}

.site-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.1;
}

.site-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}

.site-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .25);
}

.site-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.site-card {
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-card-img {
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(108, 76, 255, .12), rgba(255, 122, 182, .08));
}

.site-card-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(108, 76, 255, .12);
  width: 100%;
}

.site-card-line.short {
  width: 65%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 9px;
  color: var(--muted);
  margin-top: auto;
}

.site-hours,
.site-map {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bg-softer);
  border: 1px solid var(--line);
}

.bblock {
  height: 14px;
  background: linear-gradient(90deg, rgba(108, 76, 255, .16), rgba(108, 76, 255, .04));
  border-radius: 6px;
  width: 0;
}

.bblock.hero {
  height: 52px;
  border-radius: 10px;
}

.bblock.w70 { max-width: 70%; }
.bblock.w60 { max-width: 60%; }
.bblock.w50 { max-width: 50%; }

@media (min-width: 768px) {
  .browser-body {
    min-height: 220px;
    max-height: 280px;
    padding: 12px 14px;
  }

  .build-shimmer,
  .site-preview {
    inset: 12px 14px;
  }

  .bblock {
    height: 10px;
  }

  .bblock.hero {
    height: 40px;
  }

  .site-skeleton {
    gap: 5px;
  }

  .site-title {
    font-size: 14px;
  }

  .site-card-img {
    height: 28px;
  }
}

.no-js .build-shimmer,
.no-js .site-skeleton,
.no-js .build-badge,
.no-js .build-progress,
.no-motion .build-shimmer,
.no-motion .site-skeleton,
.no-motion .build-badge,
.no-motion .build-progress {
  display: none;
}

.no-js .url-typed::after,
.no-motion .url-typed::after {
  content: 'https://sharmakirana.shop';
}

.no-js .site-preview,
.no-motion .site-preview {
  position: relative;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
}

.no-js .url-live,
.no-motion .url-live {
  display: inline;
}

.no-js .site-preview > *,
.no-motion .site-preview > * {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .build-shimmer {
    animation: none;
    opacity: 0 !important;
  }

  .site-skeleton,
  .build-badge {
    display: none !important;
  }

  .site-preview {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    pointer-events: auto;
  }

  .build-progress-fill {
    width: 100% !important;
  }
}

/* SEO map */
.seo {
  background: var(--bg-soft)
}

.map-stage {
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  background: linear-gradient(135deg, #EFEAFF, #fff);
  position: relative;
  overflow: hidden
}

.searchbar {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2
}

.searchbar .ic {
  color: var(--primary);
  display: flex;
  align-items: center
}

.searchbar .ic svg {
  width: 18px;
  height: 18px
}

.searchbar .typed::after {
  content: '|';
  color: var(--primary);
  animation: blink 1s infinite
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(108, 76, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 76, 255, .12) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .6
}

.pin {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -100%) scale(0);
  width: 46px;
  height: 60px
}

.pin svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 14px rgba(108, 76, 255, .4))
}

.pin-ripple {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  transform: translate(-50%, -50%)
}

.pin-ripple::before,
.pin-ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: ripple 2.4s infinite
}

.pin-ripple::after {
  animation-delay: 1.2s
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(14);
    opacity: 0
  }
}

/* Competitor cards */
.comp {
  background: var(--bg)
}

.comp-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.comp-card {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft)
}

.comp-card.you {
  background: linear-gradient(135deg, #6C4CFF, #9A7BFF);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-float)
}

.comp-card h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.comp-card.you h4 {
  color: rgba(255, 255, 255, .7)
}

.comp-card .big {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
  margin-top: 8px
}

.comp-card.you .big {
  color: #fff
}

.comp-card .delta {
  font-size: 13px;
  margin-top: 8px;
  color: var(--green);
  font-weight: 600
}

.ai-explain {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(108, 76, 255, .06);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 12px
}

.ai-explain .badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px
}

/* Features grid */
.feat-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%)
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: stretch;
}

.fcard {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.fcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s
}

.fcard:hover::before {
  opacity: 1
}

.fcard .fic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(108, 76, 255, .12), rgba(108, 76, 255, .04));
  color: var(--primary);
  margin-bottom: 18px;
  transition: transform .4s var(--ease)
}

.fcard .fic.fic-google {
  color: #4285F4;
  background: linear-gradient(135deg, rgba(66, 133, 244, .14), rgba(66, 133, 244, .04))
}

.fcard .fic.fic-whatsapp {
  color: #25D366;
  background: linear-gradient(135deg, rgba(37, 211, 102, .14), rgba(37, 211, 102, .04))
}

.fcard .fic svg {
  width: 26px;
  height: 26px;
  display: block
}

.fcard:hover .fic {
  transform: translateY(-4px) rotate(-6deg)
}

.fcard h3 {
  font-size: 22px;
  margin-bottom: 8px
}

.fcard p {
  color: var(--ink-2);
  font-size: 15px;
  margin-top: auto;
}

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

@media (max-width: 560px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fcard {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* Stats */
.stats-section {
  padding: 60px 0;
  overflow-x: clip;
}

.stats {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 0 28px;
  padding: 80px 40px;
  max-width: 1280px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media(min-width:1336px) {
  .stats {
    margin: 0 auto
  }
}

@media (max-width: 640px) {
  .stats {
    margin: 0 16px;
    padding: 48px 16px;
    border-radius: 24px;
  }
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 80% 20%, rgba(154, 123, 255, .4), transparent 60%), radial-gradient(50% 70% at 10% 100%, rgba(255, 122, 182, .18), transparent 60%);
  opacity: .8
}

.stats-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  text-align: center;
}

@media(max-width:880px) {
  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
}

.stat {
  min-width: 0;
}

.stat .n {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.045em;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  background: linear-gradient(180deg, #fff, #B49CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .stat .n {
    font-size: clamp(28px, 8.5vw, 44px);
    letter-spacing: -.03em;
  }

  .stat .l {
    font-size: 12px;
    line-height: 1.35;
    padding: 0 2px;
  }
}

@media (max-width: 380px) {
  .stats-inner {
    gap: 24px 10px;
  }

  .stat .n {
    font-size: clamp(24px, 7.5vw, 34px);
  }
}

.stats .stat {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .stats .stat {
    opacity: 1 !important;
    transform: none !important;
  }
}

.stat .l {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  margin-top: 8px
}

/* Testimonials */
.testi {
  background: var(--bg-soft);
  padding-bottom: 40px
}

.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.testi-swiper {
  padding: 8px 0 60px !important
}

.tcard {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px
}

.tcard .who img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover
}

.tcard .who b {
  display: block;
  font-size: 15px;
  color: var(--ink)
}

.tcard .who span {
  font-size: 13px;
  color: var(--muted)
}

.tcard q {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  quotes: none
}

.tcard q::before,
.tcard q::after {
  content: ''
}

.tcard .stars {
  color: var(--gold)
}

.swiper-pagination-bullet {
  background: var(--primary) !important
}

/* Industries — business type cards */
.industries {
  padding: 100px 28px 110px;
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 42%, var(--bg-soft) 100%);
  overflow: hidden;
}

.industries-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.industries-lead {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
}

.industries-track {
  position: relative;
}

.industries-swiper {
  overflow: visible !important;
  padding: 4px 2px 12px !important;
}

.industries-swiper .swiper-slide {
  height: auto;
}

.industry-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}

.industry-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.industry-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-card:hover .industry-card-media {
  transform: scale(1.05);
}

.industry-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 10, 31, 0.05) 0%, rgba(14, 10, 31, 0.15) 35%, rgba(14, 10, 31, 0.82) 100%);
  pointer-events: none;
}

.industry-card-body {
  position: relative;
  z-index: 1;
  padding: 22px 20px 20px;
  color: #fff;
}

.industry-for {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}

.industry-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s, transform 0.2s var(--ease);
}

.industry-card:hover .industry-link {
  color: #fff;
  transform: translateX(3px);
}

.industries-fade {
  position: absolute;
  top: 32px;
  right: -28px;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--bg-soft));
  pointer-events: none;
  z-index: 2;
}

/* Placeholder gradients until category photos are added */
.industry-card--kirana .industry-card-media {
  background-image: linear-gradient(135deg, #5a7a4a 0%, #8fad72 40%, #d4c4a0 100%);
}

.industry-card--medical .industry-card-media {
  background-image: linear-gradient(135deg, #2d6a8f 0%, #5ba4c9 50%, #e8f4fa 100%);
}

.industry-card--restaurant .industry-card-media {
  background-image: linear-gradient(135deg, #6b3f2a 0%, #c47d4a 45%, #f0d5b8 100%);
}

.industry-card--salon .industry-card-media {
  background-image: linear-gradient(135deg, #4a3d5c 0%, #9b7bb8 50%, #f3e8f8 100%);
}

.industry-card--gym .industry-card-media {
  background-image: linear-gradient(135deg, #1a2a3a 0%, #3d5a73 50%, #8aa4b8 100%);
}

.industry-card--electronics .industry-card-media {
  background-image: linear-gradient(135deg, #1e2d4a 0%, #4a6fa5 55%, #c5d9f0 100%);
}

.industry-card--clothing .industry-card-media {
  background-image: linear-gradient(135deg, #5c3d4a 0%, #c97b8e 50%, #f8dde5 100%);
}

.industry-card--tuition .industry-card-media {
  background-image: linear-gradient(135deg, #3d4a6b 0%, #6c7eb8 50%, #dce3f8 100%);
}

.industry-card--bakery .industry-card-media {
  background-image: linear-gradient(135deg, #6b4a2e 0%, #d4a06a 50%, #f8e8d0 100%);
}

.industry-card--hardware .industry-card-media {
  background-image: linear-gradient(135deg, #3a3a3a 0%, #6b6b6b 50%, #b8b8b8 100%);
}

.industry-card--auto .industry-card-media {
  background-image: linear-gradient(135deg, #2a3140 0%, #4f5d78 50%, #9aa8c4 100%);
}

.industry-card--pet .industry-card-media {
  background-image: linear-gradient(135deg, #3d5c4a 0%, #6b9a7a 50%, #d4ebe0 100%);
}

.industry-card-media:has(img) {
  background-image: none !important;
}

@media (max-width: 880px) {
  .industries {
    padding: 80px 20px 90px;
  }

  .industries-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .industries-lead {
    max-width: none;
  }

  .industry-card {
    min-height: 300px;
  }

  .industries-fade {
    width: 48px;
  }
}

/* Pricing */
.pricing {
  background: var(--bg)
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  align-items: stretch
}

@media(max-width:880px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto
  }

  .plan.featured {
    order: -1;
    transform: scale(1.03);
    box-shadow: var(--shadow-float)
  }
}

.plan {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .4s var(--ease), box-shadow .4s;
  opacity: 1;
  visibility: visible;
}

.plan:hover {
  transform: translateY(-6px)
}

.plan.featured {
  background: linear-gradient(180deg, #fff 0%, #F4F2FF 100%);
  border: 2px solid rgba(108, 76, 255, .45);
  box-shadow: var(--shadow-float);
  position: relative;
  z-index: 1
}

@media(min-width:881px) {
  .plan.featured {
    transform: scale(1.04)
  }

  .plan.featured:hover {
    transform: scale(1.04) translateY(-6px)
  }
}

.plan.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 5px 12px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 999px;
  text-transform: uppercase
}

.plan h3 {
  font-size: 24px
}

.plan .p {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1
}

.plan .p small {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 400
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2)
}

.plan ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px
}

@media (prefers-reduced-motion: reduce) {
  .plan {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .plan.featured {
    transform: none !important;
  }
}

/* Final CTA */
.final {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 80px 28px;
  padding: 100px 40px;
  max-width: 1280px;
  text-align: center;
  position: relative;
  overflow: hidden
}

@media(min-width:1336px) {
  .final {
    margin: 80px auto
  }
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(154, 123, 255, .5), transparent 60%), radial-gradient(50% 80% at 50% 100%, rgba(255, 122, 182, .2), transparent 60%);
  opacity: .9
}

.final h2 {
  color: #fff;
  position: relative;
  font-size: clamp(40px, 6vw, 84px)
}

.final h2 .grad {
  background: linear-gradient(180deg, #fff, #B49CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic
}

.final p {
  position: relative;
  color: rgba(255, 255, 255, .7);
  margin: 20px auto 36px;
  max-width: 50ch
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 22px 10px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.store-badge__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}

.store-badge__text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}

.store-badge__text strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.store-badge--play {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.store-badge--play .store-badge__icon:not(img) {
  color: var(--ink);
}

.store-badge--play:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
}

.store-badge--play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.store-badge--apple {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  cursor: default;
  opacity: .88;
}

.store-badge--apple .store-badge__icon {
  color: #fff;
}

@media (max-width: 560px) {
  .store-badges {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .store-badge__text {
    align-items: center;
    text-align: center;
  }
}

.final .hero-cta {
  justify-content: center;
  position: relative
}

.final .btn-primary {
  background: #fff;
  color: var(--ink)
}

.final .btn-primary::before {
  background: var(--grad-primary)
}

.final .btn-primary:hover span {
  color: #fff
}

.final .btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .18)
}

/* Footer */
footer {
  padding: 80px 28px calc(40px + env(safe-area-inset-bottom));
  max-width: 1280px;
  margin: 0 auto
}

@media(max-width:760px) {
  footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom))
  }
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line)
}

@media(max-width:880px) {
  .foot-top {
    grid-template-columns: 1fr 1fr
  }
}

.foot-brand .nav-logo {
  font-size: 28px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: visible;
}

.foot-brand .nav-logo .logo-icon {
  width: 52px;
  height: 52px
}

.foot-brand .nav-logo .foot-logo-label {
  display: inline;
}

.foot-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 32ch
}

.foot-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px
}

.foot-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 5px 0;
  transition: color .2s
}

.foot-col a:hover {
  color: var(--primary)
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 14px
}

/* Sticky mobile CTA */
.mcta {
  display: flex;
  position: fixed;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  right: 14px;
  z-index: 90;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s
}

.mcta.is-visible {
  transform: translateY(0);
  opacity: 1
}

.mcta.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none
}

/* Reveal helpers (initial state for GSAP) */
.r-up {
  opacity: 0;
  transform: translateY(40px)
}

.r-fade {
  opacity: 0
}

.r-scale {
  opacity: 0;
  transform: scale(.92)
}

.split-line {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  line-height: inherit
}

.split-line>span {
  display: inline-block;
  transform: translateY(110%)
}

/* Headline lines keep their grouping but allow inline word spans */
.hero h1 span.line {
  display: block;
  overflow: hidden
}

@media(max-width:480px) {
  h1 {
    font-size: clamp(36px, 11vw, 44px)
  }

  .hero h1 span.line {
    white-space: normal
  }

  .hero {
    padding-top: 110px;
    min-height: auto;
    padding-bottom: 40px
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }

  .node {
    font-size: 11px;
    padding: 8px 10px
  }

  .node .ic {
    width: 20px;
    height: 20px
  }

  .scene {
    max-width: 100%
  }
}

@media(min-width:481px) {
  .hero h1 span.line {
    white-space: nowrap
  }
}

[data-split] {
  display: block
}

/* Nav text shouldn't wrap on desktop */
.nav-logo,
.nav-links a,
.nav-cta {
  white-space: nowrap
}

/* responsive hero */
@media(max-width:980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: 40px
  }

  .scene {
    margin: 0 auto;
    max-width: min(100%, 480px)
  }
}

@media(max-width:880px) {
  .node {
    z-index: 2
  }

  .node.n1 {
    top: 4%;
    left: 2%;
    right: auto
  }

  .node.n2 {
    top: 4%;
    right: 2%;
    left: auto
  }

  .node.n3 {
    top: 46%;
    right: 0;
    left: auto
  }

  .node.n4 {
    bottom: 16%;
    right: 2%;
    left: auto
  }

  .node.n5 {
    bottom: 2%;
    left: 22%;
    right: auto
  }

  .node.n6 {
    bottom: 34%;
    left: 0;
    right: auto
  }

  .node.n7 {
    top: 32%;
    left: 0;
    right: auto
  }
}

/* ================= SUBPAGE COMPONENT STYLES ================= */

.subhero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  opacity: 0.8;
  z-index: 1;
}

.subhero > * {
  position: relative;
  z-index: 2;
}

.subhero .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}

.subhero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 60px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 16px;
}

.subhero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  max-width: 58ch;
  margin: 0 auto;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--primary-ink);
}

.prose-container {
  max-width: 68ch;
  margin: 50px auto 100px;
  padding: 0 24px;
}

.prose-container h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.prose-container p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.prose-container ul, .prose-container ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--ink-2);
}

.prose-container li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.prose-container strong {
  color: var(--ink);
  font-weight: 600;
}

/* --- Form and Input validation styling --- */
.contact-form {
  max-width: 580px;
  margin: 40px auto 80px;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}

.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(108, 76, 255, 0.1);
}

/* Visual error styles triggered by :user-invalid */
.form-group input:user-invalid, .form-group textarea:user-invalid {
  border-color: #d93025;
  background-color: #fce8e6;
}

.form-group .error-msg {
  display: none;
  color: #d93025;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

.form-group input:user-invalid + .error-msg,
.form-group textarea:user-invalid + .error-msg {
  display: block;
}

.form-group input:required:user-valid,
.form-group textarea:required:user-valid {
  border-color: var(--green);
}

/* --- FAQ Accordion styling --- */
.faq-list {
  max-width: 800px;
  margin: 40px auto 80px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.faq-item[open] {
  border-color: var(--primary-2);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 24px 20px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* --- Pricing & Feature Comparison --- */
.comparison-section {
  max-width: 1000px;
  margin: 60px auto 100px;
  padding: 0 24px;
}

.comparison-section h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--ink);
}

.comparison-table td:first-child, .comparison-table th:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 35%;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  width: 21%;
}

.comparison-table .check {
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

.comparison-table .dash {
  color: var(--muted);
}

.industry-playbooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px;
}

.industry-playbooks-grid .industry-card {
  height: 380px;
}