/* ==========================================================================
   Wayvarn — Premium Website Design & Development packages page
   Scoped to .wv-web so nothing here leaks into the rest of the theme.
   ========================================================================== */

.wv-web {
  --web-blue: #0a66c2;
  --web-navy: #0f172a;
  --web-electric: #38bdf8;
  --web-green: #16a34a;
  --web-mint: #34d399;
  --web-violet: #7c3aed;
  --web-radius: 28px;
  position: relative;
  overflow-x: clip;
}

/* ---------- shared ---------- */
.wv-web .web-shell {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 1024px) { .wv-web .web-shell { padding-inline: 2rem; } }

.wv-web .web-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--web-electric) 45%, transparent);
  background: color-mix(in srgb, var(--web-electric) 12%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--web-blue);
}
.dark .wv-web .web-eyebrow { color: var(--web-electric); }

.wv-web .web-gradient-text {
  background: linear-gradient(100deg, var(--web-blue), var(--web-electric) 55%, var(--web-blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: web-shimmer 6s linear infinite;
}
@keyframes web-shimmer { to { background-position: 200% center; } }

.wv-web .web-section { position: relative; padding: 4.5rem 0; }
@media (min-width: 768px) { .wv-web .web-section { padding: 6rem 0; } }
.wv-web .web-section--tint { background: color-mix(in srgb, var(--web-electric) 5%, transparent); }

.wv-web .web-head { max-width: 46rem; }
.wv-web .web-h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.wv-web .web-h1 span { display: block; }
.wv-web .web-h2 {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
}
.wv-web .web-lead {
  margin-top: 1.1rem;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted-foreground, #64748b);
}

/* ---------- reveal ---------- */
.wv-web [data-web-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--web-delay, 0ms);
  will-change: opacity, transform;
}
.wv-web [data-web-reveal].is-in { opacity: 1; transform: none; }

/* ---------- ambient ---------- */
.wv-web .web-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.wv-web .web-orb--a {
  width: 460px; height: 460px; top: -160px; left: -120px;
  background: radial-gradient(circle, color-mix(in srgb, var(--web-electric) 55%, transparent), transparent 70%);
  animation: web-drift 18s ease-in-out infinite alternate;
}
.wv-web .web-orb--b {
  width: 520px; height: 520px; top: 40px; right: -180px;
  background: radial-gradient(circle, color-mix(in srgb, var(--web-blue) 45%, transparent), transparent 70%);
  animation: web-drift 22s ease-in-out infinite alternate-reverse;
}
.wv-web .web-orb--c {
  width: 420px; height: 420px; bottom: -160px; left: 42%;
  background: radial-gradient(circle, color-mix(in srgb, var(--web-violet) 32%, transparent), transparent 70%);
  animation: web-drift 26s ease-in-out infinite alternate;
}
@keyframes web-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(40px, 30px, 0) scale(1.12); }
}
.wv-web .web-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--web-navy) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--web-navy) 7%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000, transparent 75%);
}
.dark .wv-web .web-grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

/* ---------- buttons ---------- */
.wv-web .web-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, filter 0.3s ease;
}
.wv-web .web-btn svg { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.wv-web .web-btn:hover svg { transform: translateX(4px); }
.wv-web .web-btn--primary {
  color: #fff;
  background: linear-gradient(115deg, var(--web-blue), var(--web-electric));
  background-size: 180% auto;
  box-shadow: 0 20px 40px -18px rgba(10, 102, 194, 0.85);
  animation: web-shimmer 7s linear infinite;
}
.wv-web .web-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 52px -18px rgba(56, 189, 248, 0.9); }
.wv-web .web-btn--wa {
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 38px -18px rgba(37, 211, 102, 0.9);
}
.wv-web .web-btn--wa:hover { transform: translateY(-3px); filter: brightness(1.05); }
.wv-web .web-cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }

.wv-web .web-trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted-foreground, #64748b);
}
.wv-web .web-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.wv-web .web-trust svg { color: var(--web-blue); }

/* ==========================================================================
   HERO
   ========================================================================== */
.wv-web .web-hero { position: relative; overflow: hidden; padding: 4.5rem 0 4rem; }
@media (min-width: 768px) { .wv-web .web-hero { padding: 6.5rem 0 5.5rem; } }
.wv-web .web-hero__grid { position: relative; z-index: 2; display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .wv-web .web-hero__grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; } }

.wv-web .web-visual { position: relative; min-height: 380px; }
@media (min-width: 768px) { .wv-web .web-visual { min-height: 460px; } }

.wv-web .web-lines {
  position: absolute;
  inset: -10% -5%;
  background-image:
    radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--web-electric) 55%, transparent) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--web-blue) 55%, transparent) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 82%, color-mix(in srgb, var(--web-violet) 45%, transparent) 0 2px, transparent 3px),
    linear-gradient(58deg, transparent 49.6%, color-mix(in srgb, var(--web-electric) 30%, transparent) 49.8%, transparent 50.2%),
    linear-gradient(-42deg, transparent 49.6%, color-mix(in srgb, var(--web-blue) 22%, transparent) 49.8%, transparent 50.2%);
  opacity: 0.75;
  animation: web-float 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.wv-web .web-browser {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--web-navy) 12%, transparent);
  background: color-mix(in srgb, #fff 72%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px -40px rgba(15, 23, 42, 0.55);
  animation: web-float 9s ease-in-out infinite alternate;
}
.dark .wv-web .web-browser { background: rgba(15, 23, 42, 0.66); border-color: rgba(255, 255, 255, 0.1); }
.wv-web .web-browser__bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: color-mix(in srgb, var(--web-navy) 92%, #000);
}
.wv-web .web-browser__bar i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.28); }
.wv-web .web-browser__bar i:first-child { background: #f87171; }
.wv-web .web-browser__bar i:nth-child(2) { background: #fbbf24; }
.wv-web .web-browser__bar i:nth-child(3) { background: #34d399; }
.wv-web .web-browser__url {
  margin-left: 0.6rem; padding: 0.15rem 0.7rem;
  border-radius: 999px; font-size: 0.68rem; letter-spacing: 0.04em;
  color: rgba(226, 232, 240, 0.8); background: rgba(255, 255, 255, 0.08);
}
.wv-web .web-browser__body { display: grid; gap: 0.7rem; padding: 1rem; }
.wv-web .web-browser__hero {
  height: 88px; border-radius: 12px;
  background: linear-gradient(115deg, var(--web-blue), var(--web-electric));
  background-size: 220% auto;
  animation: web-shimmer 6s linear infinite;
}
.wv-web .web-browser__row { display: grid; gap: 0.45rem; }
.wv-web .web-skel { display: block; height: 9px; border-radius: 999px; background: color-mix(in srgb, var(--web-navy) 12%, transparent); }
.dark .wv-web .web-skel { background: rgba(255, 255, 255, 0.14); }
.wv-web .web-skel--wide { width: 78%; }
.wv-web .web-skel--mid { width: 52%; }
.wv-web .web-browser__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.wv-web .web-browser__tiles span {
  height: 40px; border-radius: 10px;
  background: color-mix(in srgb, var(--web-electric) 18%, transparent);
  animation: web-pulse-soft 3.2s ease-in-out infinite;
}
.wv-web .web-browser__tiles span:nth-child(2) { animation-delay: 0.4s; }
.wv-web .web-browser__tiles span:nth-child(3) { animation-delay: 0.8s; }

.wv-web .web-code {
  position: absolute;
  z-index: 3;
  left: -0.5rem;
  bottom: 6%;
  display: grid;
  gap: 0.28rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-family: var(--wv-font-body);
  font-size: 0.66rem;
  line-height: 1.5;
  color: #cbd5f5;
  background: rgba(9, 14, 28, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 30px 60px -34px rgba(2, 8, 23, 0.9);
  animation: web-float 7.5s ease-in-out infinite alternate-reverse;
}
.wv-web .web-code em { color: #38bdf8; font-style: normal; }
.wv-web .web-code i { color: #86efac; font-style: normal; }
.wv-web .web-caret {
  display: inline-block; width: 7px; height: 12px; margin-left: 3px;
  background: var(--web-electric); vertical-align: -2px;
  animation: web-blink 1.1s steps(1) infinite;
}
@keyframes web-blink { 50% { opacity: 0; } }

.wv-web .web-phone {
  position: absolute;
  z-index: 4;
  right: -0.25rem;
  bottom: -1rem;
  width: 116px;
  display: grid;
  gap: 0.4rem;
  padding: 0.85rem 0.7rem;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--web-navy) 14%, transparent);
  background: color-mix(in srgb, #fff 82%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.6);
  animation: web-float 10s ease-in-out infinite alternate;
}
.dark .wv-web .web-phone { background: rgba(15, 23, 42, 0.8); border-color: rgba(255, 255, 255, 0.1); }
.wv-web .web-phone__notch { width: 34px; height: 5px; border-radius: 999px; margin: 0 auto 0.2rem; background: color-mix(in srgb, var(--web-navy) 22%, transparent); }
.wv-web .web-phone__hero {
  height: 52px; border-radius: 10px;
  background: linear-gradient(140deg, var(--web-navy), var(--web-blue));
}
.wv-web .web-phone__cta { height: 16px; border-radius: 999px; background: linear-gradient(115deg, var(--web-blue), var(--web-electric)); }

.wv-web .web-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--web-navy);
  background: color-mix(in srgb, #fff 78%, transparent);
  border: 1px solid color-mix(in srgb, var(--web-electric) 40%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px -22px rgba(15, 23, 42, 0.7);
}
.dark .wv-web .web-chip { color: #e2e8f0; background: rgba(15, 23, 42, 0.78); }
.wv-web .web-chip svg { color: var(--web-blue); }
.dark .wv-web .web-chip svg { color: var(--web-electric); }
.wv-web .web-chip--1 { top: -0.5rem; right: 8%; animation: web-float 6s ease-in-out infinite alternate; }
.wv-web .web-chip--2 { top: 42%; left: -0.75rem; animation: web-float 7s ease-in-out infinite alternate-reverse; }
.wv-web .web-chip--3 { bottom: 16%; right: -0.5rem; animation: web-float 8s ease-in-out infinite alternate; }

@keyframes web-float {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -12px, 0); }
}
@keyframes web-pulse-soft {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

/* ==========================================================================
   QUICK PACKAGE NAV
   ========================================================================== */
.wv-web .web-quick { margin-top: 2.5rem; display: grid; gap: 0.85rem; }
@media (min-width: 640px) { .wv-web .web-quick { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .wv-web .web-quick { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.wv-web .web-quick__item {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--web-navy) 10%, transparent);
  background: color-mix(in srgb, #fff 62%, transparent);
  backdrop-filter: blur(14px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.dark .wv-web .web-quick__item { background: rgba(15, 23, 42, 0.55); border-color: rgba(255, 255, 255, 0.08); }
.wv-web .web-quick__item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--web-electric) 55%, transparent);
  box-shadow: 0 26px 50px -30px rgba(10, 102, 194, 0.7);
}
.wv-web .web-quick__emoji { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; color: var(--web-blue); background: color-mix(in srgb, var(--web-electric) 16%, transparent); border: 1px solid color-mix(in srgb, var(--web-electric) 32%, transparent); }
.wv-web .web-quick__emoji svg { width: 18px; height: 18px; }
.dark .wv-web .web-quick__emoji { color: var(--web-electric); }
.wv-web .web-quick__name { font-weight: 800; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--web-blue); }
.dark .wv-web .web-quick__name { color: var(--web-electric); }
.wv-web .web-quick__promise { font-size: 0.9rem; color: var(--muted-foreground, #64748b); }

/* ==========================================================================
   PACKAGE CARDS
   ========================================================================== */
.wv-web .web-cards {
  margin-top: 3rem;
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 768px) { .wv-web .web-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .wv-web .web-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.35rem; } }

.wv-web .web-card {
  position: relative;
  border-radius: var(--web-radius);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wv-web .web-card__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.9rem 1.5rem 1.6rem;
  border-radius: var(--web-radius);
  border: 1px solid color-mix(in srgb, var(--web-navy) 10%, transparent);
  background: color-mix(in srgb, #fff 66%, transparent);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px -50px rgba(15, 23, 42, 0.75);
  transition: box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}
.dark .wv-web .web-card__inner { background: rgba(15, 23, 42, 0.62); border-color: rgba(255, 255, 255, 0.08); }

/* animated gradient border */
.wv-web .web-card__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg,
    color-mix(in srgb, var(--web-accent, var(--web-electric)) 85%, transparent),
    transparent 35%,
    transparent 65%,
    color-mix(in srgb, var(--web-accent2, var(--web-blue)) 85%, transparent));
  background-size: 220% auto;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.wv-web .web-card:hover .web-card__inner::before { opacity: 1; animation: web-shimmer 4s linear infinite; }

/* glow aura */
.wv-web .web-card__aura {
  position: absolute;
  inset: -35% -25% auto -25%;
  height: 260px;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--web-accent, var(--web-electric)) 45%, transparent), transparent 70%);
  opacity: 0.35;
  filter: blur(30px);
  transition: opacity 0.45s ease, transform 0.6s ease;
  pointer-events: none;
}
.wv-web .web-card:hover .web-card__aura { opacity: 0.8; transform: translateY(12px) scale(1.08); }

/* light sweep */
.wv-web .web-card__sweep {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.dark .wv-web .web-card__sweep { background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent); }
.wv-web .web-card:hover .web-card__sweep { opacity: 1; animation: web-sweep 1.15s ease-out; }
@keyframes web-sweep {
  from { left: -60%; }
  to { left: 120%; }
}

.wv-web .web-card:hover .web-card__inner {
  border-color: color-mix(in srgb, var(--web-accent, var(--web-electric)) 45%, transparent);
  box-shadow: 0 48px 90px -46px color-mix(in srgb, var(--web-accent, var(--web-electric)) 70%, rgba(15, 23, 42, 0.8));
}

/* per-package accents */
.wv-web .web-card--starter { --web-accent: var(--web-electric); --web-accent2: var(--web-blue); }
.wv-web .web-card--business { --web-accent: var(--web-blue); --web-accent2: var(--web-electric); }
.wv-web .web-card--ecommerce { --web-accent: var(--web-mint); --web-accent2: var(--web-blue); }
.wv-web .web-card--premium { --web-accent: var(--web-violet); --web-accent2: var(--web-electric); }

.wv-web .web-card--premium .web-card__inner {
  color: #e2e8f0;
  background: linear-gradient(150deg, rgba(10, 15, 30, 0.94), rgba(15, 23, 42, 0.9) 45%, rgba(12, 40, 88, 0.92));
  border-color: rgba(124, 58, 237, 0.35);
}
.wv-web .web-card--premium .web-card__desc,
.wv-web .web-card--premium .web-features li,
.wv-web .web-card--premium .web-card__best { color: rgba(226, 232, 240, 0.78); }
.wv-web .web-card--premium .web-price b { color: #fff; }

/* featured */
.wv-web .web-card.is-featured .web-card__inner {
  border-color: color-mix(in srgb, var(--web-blue) 45%, transparent);
  box-shadow: 0 40px 90px -46px rgba(10, 102, 194, 0.85);
}
@media (min-width: 1280px) {
  .wv-web .web-card.is-featured { transform: scale(1.045); z-index: 3; }
}
.wv-web .web-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(115deg, var(--web-blue), var(--web-electric));
  background-size: 200% auto;
  box-shadow: 0 16px 30px -16px rgba(10, 102, 194, 0.9);
  animation: web-shimmer 5s linear infinite;
}

.wv-web .web-card__top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wv-web .web-card__emoji {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: color-mix(in srgb, var(--web-accent) 90%, var(--web-navy));
  background: color-mix(in srgb, var(--web-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--web-accent) 35%, transparent);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wv-web .web-card__emoji svg { width: 22px; height: 22px; }
.wv-web .web-card--premium .web-card__emoji { color: var(--web-electric); }
.wv-web .web-card:hover .web-card__emoji { transform: translateY(-6px) rotate(-6deg); }

.wv-web .web-card__title { position: relative; z-index: 2; margin-top: 1.35rem; font-size: 1.22rem; font-weight: 800; letter-spacing: -0.01em; }
.wv-web .web-card__promise {
  position: relative; z-index: 2;
  margin-top: 0.3rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em;
  color: color-mix(in srgb, var(--web-accent) 80%, var(--web-navy));
}
.wv-web .web-card--premium .web-card__promise { color: var(--web-electric); }

.wv-web .web-price { position: relative; z-index: 2; margin-top: 1.1rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem; }
.wv-web .web-price b { font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; }
.wv-web .web-price span { font-size: 0.78rem; color: var(--muted-foreground, #64748b); }
.wv-web .web-card--premium .web-price span { color: rgba(226, 232, 240, 0.6); }

.wv-web .web-card__desc { position: relative; z-index: 2; margin-top: 0.9rem; font-size: 0.88rem; line-height: 1.7; color: var(--muted-foreground, #64748b); }

.wv-web .web-features { position: relative; z-index: 2; margin-top: 1.35rem; display: grid; gap: 0.1rem; }
.wv-web .web-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--web-navy) 78%, transparent);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    box-shadow 0.25s ease;
  transition-delay: var(--web-delay, 0ms), var(--web-delay, 0ms), 0s, 0s;
}
.dark .wv-web .web-features li { color: rgba(226, 232, 240, 0.8); }
.wv-web .web-card.is-in .web-features li { opacity: 1; transform: none; }
.wv-web .web-features li:hover {
  background: color-mix(in srgb, var(--web-accent) 12%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--web-accent) 28%, transparent);
}
.wv-web .web-features li:hover .web-check { transform: translateX(3px) scale(1.12); box-shadow: 0 0 0 5px color-mix(in srgb, var(--web-accent) 18%, transparent); }
.wv-web .web-check {
  display: grid;
  place-items: center;
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(130deg, var(--web-accent), var(--web-accent2));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.wv-web .web-check svg { width: 11px; height: 11px; }

.wv-web .web-card__foot { position: relative; z-index: 2; margin-top: auto; padding-top: 1.5rem; display: grid; gap: 0.7rem; }
.wv-web .web-btn--card {
  width: 100%;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background: linear-gradient(115deg, var(--web-accent2), var(--web-accent));
  background-size: 200% auto;
  box-shadow: 0 20px 40px -22px color-mix(in srgb, var(--web-accent) 85%, transparent);
}
.wv-web .web-card:hover .web-btn--card { animation: web-shimmer 3.5s linear infinite; transform: translateY(-2px); box-shadow: 0 26px 48px -20px color-mix(in srgb, var(--web-accent) 90%, transparent); }
.wv-web .web-card__best { text-align: center; font-size: 0.76rem; color: var(--muted-foreground, #64748b); }

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.wv-web .web-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--web-navy) 10%, transparent);
  background: color-mix(in srgb, #fff 70%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -40px rgba(15, 23, 42, 0.6);
}
.dark .wv-web .web-table-wrap { background: rgba(15, 23, 42, 0.6); border-color: rgba(255, 255, 255, 0.08); }
.wv-web table.web-table { width: 100%; min-width: 860px; border-collapse: collapse; font-size: 0.86rem; }
.wv-web .web-table th, .wv-web .web-table td { padding: 0.85rem 1rem; text-align: left; }
.wv-web .web-table thead th {
  position: sticky;
  top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--web-navy) 92%, #000);
  color: #fff;
}
.wv-web .web-table tbody tr + tr { border-top: 1px solid color-mix(in srgb, var(--web-navy) 8%, transparent); }
.dark .wv-web .web-table tbody tr + tr { border-color: rgba(255, 255, 255, 0.07); }
.wv-web .web-table tbody tr:hover { background: color-mix(in srgb, var(--web-electric) 8%, transparent); }
.wv-web .web-table th[scope="row"] { font-weight: 600; }
.wv-web .web-col-rec { background: color-mix(in srgb, var(--web-electric) 10%, transparent); font-weight: 600; }
.wv-web .web-table thead .web-col-rec { background: linear-gradient(120deg, var(--web-blue), var(--web-electric)); }
.wv-web .web-table-hint { margin-top: 0.85rem; font-size: 0.78rem; color: var(--muted-foreground, #64748b); }
@media (min-width: 1024px) { .wv-web .web-table-hint { display: none; } }

/* ==========================================================================
   WHY WAYVARN
   ========================================================================== */
.wv-web .web-reasons { margin-top: 2.75rem; display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .wv-web .web-reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .wv-web .web-reasons { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.wv-web .web-reason {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 1.5rem;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--web-navy) 10%, transparent);
  background: color-mix(in srgb, #fff 62%, transparent);
  backdrop-filter: blur(14px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.dark .wv-web .web-reason { background: rgba(15, 23, 42, 0.55); border-color: rgba(255, 255, 255, 0.08); }
.wv-web .web-reason:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--web-electric) 50%, transparent);
  box-shadow: 0 34px 60px -38px rgba(10, 102, 194, 0.75);
}
.wv-web .web-reason__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  color: var(--web-blue);
  background: color-mix(in srgb, var(--web-electric) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--web-electric) 32%, transparent);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.wv-web .web-reason__icon svg { width: 22px; height: 22px; }
.dark .wv-web .web-reason__icon { color: var(--web-electric); }
.wv-web .web-reason:hover .web-reason__icon { transform: translateY(-4px) scale(1.06); }
.wv-web .web-reason h3 { margin-top: 1.1rem; font-size: 1.05rem; font-weight: 700; }
.wv-web .web-reason p { margin-top: 0.5rem; font-size: 0.88rem; line-height: 1.7; color: var(--muted-foreground, #64748b); }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.wv-web .web-timeline { position: relative; margin-top: 3rem; display: grid; gap: 1.1rem; padding-left: 2.25rem; list-style: none; }
@media (min-width: 900px) { .wv-web .web-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; } }
.wv-web .web-timeline__rail {
  position: absolute;
  left: 0.7rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--web-navy) 10%, transparent);
  overflow: hidden;
}
.dark .wv-web .web-timeline__rail { background: rgba(255, 255, 255, 0.1); }
.wv-web .web-timeline__rail i {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--web-electric), var(--web-blue), var(--web-violet));
  transition: height 0.25s linear;
}
.wv-web .web-step {
  position: relative;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--web-navy) 10%, transparent);
  background: color-mix(in srgb, #fff 62%, transparent);
  backdrop-filter: blur(14px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.dark .wv-web .web-step { background: rgba(15, 23, 42, 0.55); border-color: rgba(255, 255, 255, 0.08); }
.wv-web .web-step:hover {
  transform: translateX(5px);
  border-color: color-mix(in srgb, var(--web-electric) 50%, transparent);
  box-shadow: 0 30px 55px -38px rgba(10, 102, 194, 0.75);
}
.wv-web .web-step__dot {
  position: absolute;
  left: -1.95rem;
  top: 1.6rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--web-electric), var(--web-blue));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--web-electric) 18%, transparent);
}
@media (min-width: 900px) {
  .wv-web .web-step:nth-child(even) .web-step__dot { left: -1.95rem; }
  .wv-web .web-timeline > li:nth-child(odd) { grid-column: 1; }
}
.wv-web .web-step__num {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em;
  color: var(--web-blue);
}
.dark .wv-web .web-step__num { color: var(--web-electric); }
.wv-web .web-step h3 { margin-top: 0.35rem; font-size: 1rem; font-weight: 800; letter-spacing: 0.06em; }
.wv-web .web-step p { margin-top: 0.45rem; font-size: 0.88rem; line-height: 1.7; color: var(--muted-foreground, #64748b); }

/* ==========================================================================
   CARD VISUALS
   ========================================================================== */
.wv-web .web-viz {
  position: relative;
  display: block;
  width: 96px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--web-accent) 35%, transparent);
  background: color-mix(in srgb, var(--web-accent) 8%, transparent);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wv-web .web-card:hover .web-viz { transform: translateY(-5px) scale(1.04); }
.wv-web .web-viz__bar { display: flex; gap: 3px; padding: 5px 6px; background: color-mix(in srgb, var(--web-navy) 88%, #000); }
.wv-web .web-viz__bar i { width: 5px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.4); }
.wv-web .web-viz__hero {
  display: block; height: 16px; margin: 6px 6px 4px; border-radius: 4px;
  background: linear-gradient(115deg, var(--web-accent2), var(--web-accent));
  background-size: 220% auto; animation: web-shimmer 5s linear infinite;
}
.wv-web .web-viz__line { display: block; height: 4px; margin: 0 6px 4px; border-radius: 999px; background: color-mix(in srgb, var(--web-navy) 20%, transparent); }
.dark .wv-web .web-viz__line { background: rgba(255, 255, 255, 0.24); }
.wv-web .web-viz__line--w70 { width: 62%; }
.wv-web .web-viz__line--w45 { width: 40%; }
.wv-web .web-viz__cta { display: block; width: 34px; height: 8px; margin: 0 6px; border-radius: 999px; background: var(--web-accent); }
.wv-web .web-viz__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 6px; }
.wv-web .web-viz__tile { height: 14px; border-radius: 4px; background: color-mix(in srgb, var(--web-accent) 35%, transparent); animation: web-pulse-soft 3s ease-in-out infinite; }
.wv-web .web-viz__tile:nth-child(2) { animation-delay: 0.35s; }
.wv-web .web-viz__tile:nth-child(3) { animation-delay: 0.7s; }
.wv-web .web-viz__chart { display: flex; align-items: flex-end; gap: 3px; height: 20px; padding: 0 6px; }
.wv-web .web-viz__chart i { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, var(--web-accent), var(--web-accent2)); animation: web-bars 2.6s ease-in-out infinite; }
.wv-web .web-viz__chart i:nth-child(2) { animation-delay: 0.2s; }
.wv-web .web-viz__chart i:nth-child(3) { animation-delay: 0.4s; }
.wv-web .web-viz__chart i:nth-child(4) { animation-delay: 0.6s; }
.wv-web .web-viz__chart i:nth-child(5) { animation-delay: 0.8s; }
.wv-web .web-viz__chart i:nth-child(6) { animation-delay: 1s; }
@keyframes web-bars {
  0%, 100% { height: 40%; }
  50% { height: 100%; }
}
.wv-web .web-viz--cart .web-viz__bag { position: absolute; inset: 8px auto auto 8px; width: 26px; height: 26px; color: var(--web-accent); transition: transform 0.5s ease; }
.wv-web .web-card:hover .web-viz--cart .web-viz__bag { transform: rotate(-8deg) scale(1.1); }
.wv-web .web-viz__prod { position: absolute; width: 16px; height: 16px; border-radius: 4px; background: color-mix(in srgb, var(--web-accent) 45%, transparent); transition: transform 0.5s ease; }
.wv-web .web-viz__prod--1 { top: 10px; right: 30px; }
.wv-web .web-viz__prod--2 { top: 12px; right: 8px; }
.wv-web .web-viz__prod--3 { bottom: 20px; right: 20px; }
.wv-web .web-card:hover .web-viz__prod--1 { transform: translateY(-4px); }
.wv-web .web-card:hover .web-viz__prod--2 { transform: translateY(4px); }
.wv-web .web-card:hover .web-viz__prod--3 { transform: translateX(-4px); }
.wv-web .web-viz__pill {
  position: absolute; left: 6px; bottom: 6px;
  padding: 2px 6px; border-radius: 999px;
  font-size: 0.5rem; font-weight: 800; letter-spacing: 0.08em;
  color: #fff; background: var(--web-green);
}
.wv-web .web-viz--platform { background: rgba(10, 15, 30, 0.7); }
.wv-web .web-viz__panel { display: block; padding: 8px 0 6px; }
.wv-web .web-viz__node { position: absolute; width: 7px; height: 7px; border-radius: 999px; background: var(--web-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--web-accent) 22%, transparent); animation: web-pulse-soft 2.6s ease-in-out infinite; }
.wv-web .web-viz__node--a { top: 7px; right: 10px; }
.wv-web .web-viz__node--b { bottom: 9px; right: 22px; animation-delay: 0.5s; }
.wv-web .web-viz__node--c { top: 22px; right: 30px; animation-delay: 1s; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.wv-web .web-final {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(130deg, #0b1220, var(--web-navy) 40%, #0a3f7a 80%, #0a66c2);
}
@media (min-width: 768px) { .wv-web .web-final { padding: 5rem 3rem; } }
.wv-web .web-final h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); font-weight: 800; letter-spacing: -0.02em; }
.wv-web .web-final p { margin: 1.1rem auto 0; max-width: 44rem; color: rgba(226, 232, 240, 0.85); line-height: 1.75; }
.wv-web .web-final .web-orb { opacity: 0.45; }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.wv-web-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.4rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 38px -14px rgba(37, 211, 102, 0.85);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}
.wv-web-wa:hover, .wv-web-wa:focus-visible { transform: translateY(-3px) scale(1.03); filter: brightness(1.04); }
.wv-web-wa__icon { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; background: rgba(255, 255, 255, 0.16); }
.wv-web-wa__icon svg { width: 24px; height: 24px; }
.wv-web-wa__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  animation: web-wa-pulse 2.4s ease-out infinite;
}
@keyframes web-wa-pulse {
  0% { transform: scale(0.9); opacity: 0.75; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 560px) { .wv-web-wa__label { display: none; } .wv-web-wa { padding: 0.45rem; } }
@media (min-width: 768px) { .wv-web-wa { right: 1.75rem; bottom: 1.75rem; } }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .wv-web *,
  .wv-web *::before,
  .wv-web *::after,
  .wv-web-wa__icon::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .wv-web [data-web-reveal],
  .wv-web .web-features li { opacity: 1 !important; transform: none !important; }
  .wv-web .web-card:hover { transform: none; }
}
