/* src/style.css */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Kalam:wght@300;400;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #15171c;
  --bg-body: #0a0b0e;
  --bg2: #1b1e25;
  --ink: #e7e9ee;
  --ink-dim: rgba(231, 233, 238, 0.56);
  --ink-faint: rgba(231, 233, 238, 0.15);
  --accent: #2E9BFF;
  --accent2: #9B5CFF;
  --accent-glow: rgba(46, 155, 255, 0.35);
  --font-hand: 'Caveat', cursive;
  --font-ui: 'Kalam', system-ui, sans-serif;
  --glow-shadow: 0 0 20px rgba(46, 155, 255, 0.25);
  --glow-shadow2: 0 0 20px rgba(155, 92, 255, 0.25);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-body);
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-body);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--accent);
  color: #0a0b0e;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
  background: var(--ink-faint);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Utilities --- */
.accent {
  color: var(--accent);
}
.accent2 {
  color: var(--accent2);
}

/* --- Image Placeholders --- */
.imgph {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 1.5px dashed var(--ink-faint);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  min-height: 80px;
  transition: var(--transition);
}
.imgph:hover {
  border-color: var(--accent);
  background: rgba(46, 155, 255, 0.03);
}
.imgph::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 49%, var(--ink-faint) 50%, transparent 51%),
              linear-gradient(-45deg, transparent 49%, var(--ink-faint) 50%, transparent 51%);
  pointer-events: none;
  opacity: 0.4;
}
.imgph-lbl {
  position: relative;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-dim);
  background: var(--bg-body);
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--ink-faint);
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  font-family: system-ui, sans-serif;
  font-weight: 600;
}

/* --- Buttons --- */
.wf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  border: 2px solid var(--ink-dim);
  background: transparent;
  color: var(--ink);
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.wf-btn:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}
.wf-btn.is-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: #0a0b0e;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.wf-btn.is-primary:hover {
  box-shadow: 0 6px 25px rgba(46, 155, 255, 0.5);
  filter: brightness(1.1);
}
.wf-btn.is-full {
  width: 100%;
}
.wf-btn.is-sm {
  padding: 6px 16px;
  font-size: 13px;
  border-width: 1.5px;
}

/* --- Sticky Header --- */
.wf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(16px, 5vw, 48px);
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-faint);
}
.wf-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.wf-brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(46,155,255,0.2), rgba(155,92,255,0.2));
  box-shadow: var(--glow-shadow);
}
.wf-brand-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 7px solid var(--accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.wf-brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-ui);
}

.wf-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.wf-nav-i {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}
.wf-nav-i:hover, .wf-nav-i.active {
  color: var(--ink);
}
.wf-nav-i.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: var(--glow-shadow);
}

.wf-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher Dropdown */
.wf-lang {
  position: relative;
}
.wf-lang-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ink-faint);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.wf-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}
.wf-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg2);
  border: 1px solid var(--ink-faint);
  border-radius: 12px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  min-width: 130px;
  z-index: 101;
}
.wf-lang-menu.is-open {
  display: flex;
}
.wf-lang-opt {
  background: transparent;
  border: none;
  color: var(--ink-dim);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: system-ui, sans-serif;
}
.wf-lang-opt:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}
.wf-lang-opt.on {
  color: var(--accent);
  background: rgba(46, 155, 255, 0.08);
  font-weight: 700;
}

.wf-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
}

.wf-mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(10, 11, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  border-top: 1px solid var(--ink-faint);
}
.wf-mobile-nav.is-open {
  display: flex;
}
.wf-mobile-link {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-dim);
  text-decoration: none;
  transition: var(--transition);
}
.wf-mobile-link:hover, .wf-mobile-link.active {
  color: var(--accent);
  transform: scale(1.05);
}

/* --- Hero Section --- */
.wf-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(20px, 8vw, 90px) 80px;
  overflow: hidden;
}
.wf-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wf-collage {
  position: absolute;
  inset: -5%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  opacity: 0.12;
  transform: rotate(-4deg) scale(1.05);
  pointer-events: none;
}
.collage-cell {
  aspect-ratio: 2/3;
  width: 100%;
  border-radius: 8px;
}
.wf-hero-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 50%, transparent 10%, var(--bg-body) 80%),
              linear-gradient(to top, var(--bg-body), transparent 40%);
}

/* Glowing Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}
.orb-a {
  width: 450px;
  height: 450px;
  background: var(--accent);
  top: -80px;
  left: -100px;
  box-shadow: var(--glow-shadow);
}
.orb-b {
  width: 400px;
  height: 400px;
  background: var(--accent2);
  bottom: -60px;
  right: 5%;
  box-shadow: var(--glow-shadow2);
}

.wf-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-top: -20px;
}
.wf-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
  font-family: system-ui, sans-serif;
  text-shadow: 0 2px 10px rgba(46, 155, 255, 0.2);
}
.wf-hero-head {
  font-family: var(--font-hand);
  font-size: clamp(48px, 7.5vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.wf-hero-head .ln {
  display: block;
  background: linear-gradient(135deg, #ffffff 60%, var(--ink-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wf-hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-dim);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.5;
}
.wf-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.wf-hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wf-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  color: var(--ink-dim);
  border: 1px solid var(--ink-faint);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}
.wf-chip.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, 0.12);
}
.wf-chip:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

.wf-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-8px) translateX(-50%); }
  60% { transform: translateY(-4px) translateX(-50%); }
}

/* --- Section Formatting --- */
.wf-section {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 6vw, 90px);
  position: relative;
}
.wf-sec-head {
  margin-bottom: 40px;
  max-width: 600px;
}
.wf-sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.wf-h2 {
  font-family: var(--font-hand);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 8px;
}
.wf-sec-sub {
  font-size: 16px;
  color: var(--ink-dim);
  margin-top: 10px;
}

/* Glass Panels */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}
.glass:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

/* --- Content Showcase Section --- */
.wf-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 24px;
  scroll-snap-type: x proximity;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
  user-select: none;
  -webkit-user-select: none;
}
.wf-rail::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome/Safari */
}
.wf-rail.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}
.wf-cat {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wf-cat-art {
  height: 170px;
  border-radius: 0;
  border-bottom: 1px solid var(--ink-faint);
}
.wf-cat-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}
.wf-cat-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: rgba(46, 155, 255, 0.1);
  border-radius: 12px;
  box-shadow: var(--glow-shadow);
  flex-shrink: 0;
}
.wf-cat-name {
  font-weight: 700;
  font-size: 18px;
}
.wf-cat-note {
  font-size: 13px;
  color: var(--ink-dim);
}

.wf-rail-posters {
  margin-top: 16px;
}
.wf-poster {
  position: relative;
  flex: 0 0 180px;
  height: 270px;
  border-radius: 12px;
  scroll-snap-align: start;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--ink-faint);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
}
.wf-poster:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: var(--glow-shadow);
}
.wf-poster-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 11, 14, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1.5px solid rgba(255,255,255,0.12);
  padding: 10px;
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 100%;
}
.wf-poster:hover .wf-poster-detail {
  transform: translateY(0);
}
.wf-poster-title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-ui);
}
.wf-poster-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: var(--accent);
  font-weight: 700;
  font-family: system-ui, sans-serif;
}
.wf-poster-rating {
  background: rgba(46, 155, 255, 0.15);
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid rgba(46, 155, 255, 0.3);
}
.wf-poster-desc {
  font-size: 8px;
  line-height: 1.3;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: system-ui, sans-serif;
  margin-top: 2px;
}

/* --- Pricing Section --- */
.wf-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}
.wf-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 24px 26px;
  border-radius: 20px;
  transition: var(--transition);
}
.wf-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0b0e;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: var(--glow-shadow);
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
}
.wf-plan-name {
  font-family: var(--font-hand);
  font-size: 28px;
  font-weight: 700;
}
.wf-plan-price {
  margin-top: 4px;
}
.wf-plan-price .amt {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}
.wf-plan-permo {
  font-size: 13px;
  color: var(--ink-dim);
}
.wf-plan-save {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(155, 92, 255, 0.15);
  color: #c9a0ff;
  border: 1px solid rgba(155, 92, 255, 0.3);
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
}
.wf-plan-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  border-top: 1.5px solid var(--ink-faint);
  border-bottom: 1.5px solid var(--ink-faint);
  padding: 16px 0;
  margin: 16px 0 8px;
  text-align: left;
}
.wf-plan-group-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: -6px;
  text-align: left;
}
.wf-plan-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}
.wf-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
}
.wf-feat .tick {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.wf-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(46, 155, 255, 0.08);
  border: 1px solid rgba(46, 155, 255, 0.2);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--ink);
  margin-top: -12px;
  margin-bottom: 16px;
}
.wf-bonus-gift {
  font-size: 16px;
}

.wf-plan.featured {
  border: 2.5px solid var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(46, 155, 255, 0.15);
  background: rgba(46, 155, 255, 0.03);
}
.wf-plan.featured:hover {
  box-shadow: 0 15px 35px rgba(46, 155, 255, 0.25);
  background: rgba(46, 155, 255, 0.05);
}

.wf-plan .wf-btn {
  margin-top: auto;
}

/* --- Blog Preview --- */
.wf-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 840px;
  margin: 0 auto;
}
.wf-blog-card {
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--ink-faint);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}
.wf-blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--glow-shadow);
}
.wf-blog-card-img {
  height: 260px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--ink-faint);
}
.wf-blog-card-body {
  padding: 28px;
}
.wf-blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: system-ui, sans-serif;
}
.wf-blog-card-title {
  font-family: var(--font-hand);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.wf-blog-card-excerpt {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin-bottom: 20px;
}
.wf-blog-card-meta {
  font-size: 13px;
  color: rgba(231,233,238,0.3);
  font-family: system-ui, sans-serif;
}
.wf-blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  margin-top: 14px;
}

/* --- Blog Page Styles --- */
.wf-blog-hero {
  padding: 100px clamp(16px, 6vw, 90px) 40px;
  text-align: center;
}
.wf-blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 24px;
  transition: var(--transition);
}
.wf-blog-back:hover {
  transform: translateX(-4px);
}
.wf-blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(16px, 6vw, 90px) 80px;
}
.wf-blog-article h2 {
  font-family: var(--font-hand);
  font-size: clamp(28px, 4vw, 40px);
  margin: 36px 0 16px;
  color: var(--ink);
}
.wf-blog-article h3 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--ink);
}
.wf-blog-article p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.wf-blog-article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.wf-blog-article li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.5;
}
.wf-blog-article li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- Premium Article Hub Selector Grid --- */
.wf-blog-grid-selector-section {
  max-width: 900px;
  margin: -10px auto 50px;
  padding: 0 clamp(16px, 6vw, 90px);
}
.wf-blog-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wf-selector-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink-faint);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
}
.wf-selector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.wf-selector-card-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-faint);
}
.wf-selector-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.wf-selector-card-body {
  padding: 16px 20px;
}
.wf-selector-card-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
}
.wf-selector-card-title {
  font-family: var(--font-hand);
  font-size: clamp(16px, 1.8vw, 22px);
  margin: 6px 0 0;
  color: var(--ink);
  line-height: 1.25;
  transition: color 0.3s;
}
.wf-selector-card:hover {
  transform: translateY(-5px);
  border-color: var(--ink-dim);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.wf-selector-card:hover .wf-selector-card-img-wrapper img {
  transform: scale(1.06);
}
.wf-selector-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(46, 155, 255, 0.25);
  background: rgba(46, 155, 255, 0.05);
}
.wf-selector-card.active .wf-selector-card-title {
  color: var(--accent);
}
@media (max-width: 768px) {
  .wf-blog-selector-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wf-blog-grid-selector-section {
    margin-bottom: 30px;
  }
}

/* --- Footer --- */
.wf-footer {
  border-top: 1px solid var(--ink-faint);
  padding: 48px clamp(16px, 6vw, 90px) 40px;
  background: var(--bg-body);
}
.wf-foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.wf-foot-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wf-foot-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  border: 1px solid var(--ink-faint);
  border-radius: 20px;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.01);
}
.wf-foot-links {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.wf-foot-links a {
  color: var(--ink-dim);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}
.wf-foot-links a:hover {
  color: var(--accent);
}
.wf-foot-bottom {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(231,233,238,0.3);
}

/* --- WhatsApp FAB --- */
.wf-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wf-fab-tip {
  background: var(--bg2);
  border: 1px solid var(--ink-faint);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  white-space: nowrap;
}
.wf-fab:hover .wf-fab-tip {
  opacity: 1;
  transform: none;
}
.wf-fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #25D366;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
  text-decoration: none;
}
.wf-fab-btn:hover {
  transform: scale(1.08) rotate(5deg);
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
  .wf-plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .wf-plan.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .wf-nav {
    display: none;
  }
  .wf-mobile-toggle {
    display: block;
  }
  .wf-header-right {
    gap: 12px;
  }
  .wf-header-right .wf-btn {
    display: none; /* Hide primary header action on mobile to avoid overlap */
  }
}

@media (max-width: 600px) {
  .wf-plans {
    grid-template-columns: 1fr;
  }
  .wf-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .wf-hero-head {
    font-size: 48px;
  }
  .wf-foot-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .wf-collage {
    grid-template-columns: repeat(4, 1fr);
    opacity: 0.08;
  }
}

/* --- Premium Modal Detail Popup --- */
.wf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.wf-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.wf-modal {
  background: rgba(15, 17, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(46, 155, 255, 0.2);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}
.wf-modal-overlay.is-active .wf-modal {
  transform: scale(1) translateY(0);
}
.wf-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  z-index: 10;
}
.wf-modal-close:hover {
  background: var(--accent);
  color: #0a0b0e;
  transform: rotate(90deg);
  box-shadow: 0 0 15px var(--accent);
}
.wf-modal-body {
  padding: 32px;
}
.wf-modal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
}
.wf-modal-poster-container {
  position: relative;
}
.wf-modal-poster {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.wf-modal-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wf-modal-header-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wf-modal-match-badge {
  font-size: 13px;
  font-weight: 700;
  color: #4caf50;
  font-family: var(--font-ui);
}
.wf-modal-type-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 30px;
  background: rgba(46, 155, 255, 0.15);
  color: var(--accent);
  border: 1px solid rgba(46, 155, 255, 0.25);
  font-family: var(--font-ui);
}
.wf-modal-type-badge.is-anime {
  background: rgba(155, 92, 255, 0.15);
  color: var(--accent2);
  border-color: rgba(155, 92, 255, 0.25);
}
.wf-modal-title {
  font-family: var(--font-hand);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.wf-modal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.wf-modal-meta-item {
  font-size: 13.5px;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wf-modal-rating-badge {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}
.wf-modal-status-badge {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
.wf-modal-status-badge.is-ongoing {
  background: rgba(0, 123, 255, 0.15);
  color: #007bff;
  border-color: rgba(0, 123, 255, 0.3);
}
.wf-modal-age-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ink-dim);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: system-ui, sans-serif;
}
.wf-modal-genres-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wf-modal-genre-tag {
  background: rgba(46, 155, 255, 0.1);
  border: 1px solid rgba(46, 155, 255, 0.2);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wf-modal-divider {
  height: 1px;
  background: var(--ink-faint);
  width: 100%;
}
.wf-modal-section-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.wf-modal-overview {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
}
.wf-modal-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wf-modal-pill {
  font-size: 13px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: var(--ink-dim);
}
.wf-modal-pill.highlight {
  border-color: rgba(46, 155, 255, 0.3);
  color: var(--ink);
  background: rgba(46, 155, 255, 0.05);
}

@media (max-width: 680px) {
  .wf-modal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wf-modal-poster {
    max-width: 200px;
    margin: 0 auto;
  }
  .wf-modal-body {
    padding: 24px;
  }
  .wf-modal-title {
    font-size: 34px;
    text-align: center;
  }
  .wf-modal-type-badge {
    align-self: center;
  }
  .wf-modal-meta-row {
    justify-content: center;
  }
}

/* --- Checkout Form Styles --- */
.wf-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  color: var(--ink);
}
.wf-modal-back-btn {
  align-self: flex-start;
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.wf-modal-back-btn:hover {
  transform: translateX(-4px);
  color: var(--ink);
}
.wf-checkout-title {
  font-family: var(--font-hand);
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
.wf-checkout-subtitle {
  color: var(--ink-dim);
  font-size: 14px;
  text-align: center;
  margin-top: -12px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.wf-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  text-align: left;
}
.wf-form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wf-form-group input, .wf-form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-ui);
  outline: none;
  transition: var(--transition);
}
.wf-form-group input:focus, .wf-form-group select:focus {
  border-color: var(--accent);
  background: rgba(46, 155, 255, 0.04);
  box-shadow: 0 0 10px rgba(46, 155, 255, 0.15);
}
.wf-form-group select option {
  background: var(--bg2);
  color: var(--ink);
}

/* ============================
   TRUST BAR
   ============================ */
.wf-trustbar {
  background: var(--bg);
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  padding: 28px clamp(16px, 6vw, 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  flex-wrap: wrap;
}
.wf-trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.wf-trust-num {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-hand);
  line-height: 1;
}
.wf-trust-lbl {
  font-size: 11px;
  color: var(--ink-dim);
  font-family: system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================
   HOW IT WORKS
   ============================ */
.wf-hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 48px;
}
.wf-hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
}
.wf-hiw-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  border-top: 2px dashed var(--ink-faint);
}
.wf-hiw-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: rgba(46, 155, 255, 0.08);
  border: 2px solid rgba(46, 155, 255, 0.25);
  box-shadow: 0 0 24px rgba(46, 155, 255, 0.12);
  flex-shrink: 0;
}
.wf-hiw-step-title {
  font-family: var(--font-hand);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.wf-hiw-step-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}
@media (max-width: 768px) {
  .wf-hiw-steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .wf-hiw-step:not(:last-child)::after {
    top: unset;
    right: unset;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 2px;
    height: 32px;
    border-top: none;
    border-left: 2px dashed var(--ink-faint);
  }
}

/* ============================
   TESTIMONIALS
   ============================ */
.wf-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.wf-testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}
.wf-testi-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}
.wf-testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wf-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  font-family: system-ui, sans-serif;
  flex-shrink: 0;
}
.wf-testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.wf-testi-stars {
  color: #ffc107;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 2px;
}
.wf-testi-text {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  font-style: italic;
}
.wf-testi-text::before { content: '\201C'; }
.wf-testi-text::after  { content: '\201D'; }
@media (max-width: 900px) {
  .wf-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .wf-testi-grid { grid-template-columns: 1fr; }
}

/* ============================
   DEVICE COMPATIBILITY
   ============================ */
.wf-devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.wf-device-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: var(--transition);
}
.wf-device-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-shadow);
  background: rgba(46, 155, 255, 0.04);
  transform: translateY(-3px);
}
.wf-device-ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.wf-device-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-dim);
  font-family: system-ui, sans-serif;
}
.wf-devices-note-wrap {
  text-align: center;
  margin-top: 20px;
}
.wf-devices-note {
  font-size: 13px;
  color: var(--ink-dim);
  padding: 8px 20px;
  border: 1px solid var(--ink-faint);
  border-radius: 20px;
  display: inline-block;
  font-family: system-ui, sans-serif;
}
@media (max-width: 580px) {
  .wf-devices-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   FAQ ACCORDION
   ============================ */
.wf-faq-list {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wf-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.wf-faq-item.is-open {
  border-color: rgba(46, 155, 255, 0.3);
}
.wf-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-ui);
  transition: color 0.2s;
}
.wf-faq-q:hover { color: var(--accent); }
.wf-faq-icon {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  line-height: 1;
  font-style: normal;
}
.wf-faq-item.is-open .wf-faq-icon {
  transform: rotate(45deg);
}
.wf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
}
.wf-faq-item.is-open .wf-faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ============================
   PRICING — 24H TRIAL BADGE
   ============================ */
.wf-plan-trial {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

/* ============================
   CATEGORY TILES — clickable
   ============================ */
.wf-cat {
  cursor: pointer;
}
.wf-cat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--glow-shadow);
}
.wf-cat-cta {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-family: system-ui, sans-serif;
  letter-spacing: 0.02em;
}

/* ============================
   SPORT RAIL
   ============================ */
.wf-sport-card {
  position: relative;
  min-width: 240px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}
.wf-sport-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--glow-shadow);
}
.wf-sport-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wf-sport-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.92) 0%, rgba(8, 9, 12, 0.2) 60%, rgba(8, 9, 12, 0.05) 100%);
}
.wf-sport-body {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
}
.wf-sport-name {
  font-family: var(--font-hand);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.wf-sport-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  font-family: system-ui, sans-serif;
}

/* ============================
   STICKY MOBILE CTA
   ============================ */
.wf-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 15, 19, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(46, 155, 255, 0.25);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.wf-sticky-cta.is-visible {
  transform: translateY(0);
}
.wf-sticky-cta-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  line-height: 1.25;
  font-family: system-ui, sans-serif;
}
.wf-sticky-cta .wf-btn {
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .wf-sticky-cta { display: flex; }
  /* Lift the WhatsApp FAB above the sticky CTA bar so it stays tappable */
  .wf-fab { bottom: 84px; }
}
