/**
 * WebsiteFixs — site-wide upgrade layer (v1)
 * Premium layout, honest conversion, no fake metrics.
 */
:root {
  --wf-cyan: #00d4ff;
  --wf-violet: #7b2fff;
  --wf-green: #00f5a0;
  --wf-card: #0c1018;
  --wf-border: #182030;
  --wf-dim: #b8c6d8;
  --wf-grad: linear-gradient(135deg, #00d4ff, #7b2fff);
}

/* —— Emergency service lanes (home + services) —— */
.wf-emergency-lanes {
  padding: 3.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.04) 0%, transparent 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  border-bottom: 1px solid var(--wf-border);
}
.wf-emergency-lanes__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wf-emergency-lanes__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.wf-emergency-lanes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wf-cyan);
  margin-bottom: 0.65rem;
}
.wf-emergency-lanes__head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.wf-emergency-lanes__head p {
  color: var(--wf-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}
.wf-lane-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
}
.wf-lane {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.15rem 1.1rem;
  border-radius: 16px;
  background: var(--wf-card);
  border: 1px solid var(--wf-border);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.wf-lane:hover {
  border-color: rgba(0, 212, 255, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.wf-lane i {
  font-size: 1.25rem;
  color: var(--wf-cyan);
}
.wf-lane strong {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.wf-lane span {
  font-size: 0.72rem;
  color: var(--wf-dim);
}
.wf-emergency-lanes__foot {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--wf-dim);
}
.wf-emergency-lanes__foot a {
  color: var(--wf-cyan);
  font-weight: 600;
}

/* —— Honest proof bar (portfolio) —— */
.wf-proof-bar {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}
.wf-proof-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 245, 160, 0.2);
  background: linear-gradient(135deg, rgba(0, 245, 160, 0.06), rgba(0, 212, 255, 0.04));
}
.wf-proof-bar__copy h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.wf-proof-bar__copy p {
  font-size: 0.85rem;
  color: var(--wf-dim);
  max-width: 520px;
  line-height: 1.55;
}
.wf-proof-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.wf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wf-btn:hover { transform: translateY(-2px); }
.wf-btn--primary {
  background: var(--wf-grad);
  color: #04060b;
}
.wf-btn--outline {
  background: transparent;
  border: 1px solid var(--wf-border);
  color: #f0f2f5;
}
.wf-btn--wa { background: #25d366; color: #fff; }

/* —— Contact intake journey —— */
.wf-intake-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.wf-intake-step {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.12);
  text-align: center;
}
.wf-intake-step .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--wf-grad);
  color: #04060b;
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.wf-intake-step h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.wf-intake-step p {
  font-size: 0.7rem;
  color: var(--wf-dim);
  line-height: 1.4;
}

/* —— Contact quick issues —— */
.jm-issue-quickpick { margin-bottom: 0.75rem; }
.jm-issue-quickpick button {
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--wf-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--wf-dim);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.jm-issue-quickpick button:hover,
.jm-issue-quickpick button.is-active {
  border-color: rgba(0, 212, 255, 0.5);
  color: var(--wf-cyan);
  background: rgba(0, 212, 255, 0.08);
}

/* —— Portfolio card upgrades —— */
.wf-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.wf-card-actions .project-link-live { grid-column: 1 / -1; }
.wf-card-actions .wf-link-quote {
  flex: 1;
  text-align: center;
  padding: 0.65rem;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--wf-border);
  color: var(--wf-dim);
  transition: all 0.25s;
}
.wf-card-actions .wf-link-quote:hover {
  border-color: var(--wf-cyan);
  color: var(--wf-cyan);
}
.portfolio-card .wf-live-pill,
.project-card .wf-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wf-green);
  margin-bottom: 0.5rem;
}
.portfolio-card .wf-live-pill::before,
.project-card .wf-live-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wf-green);
  box-shadow: 0 0 8px var(--wf-green);
  animation: wf-pulse 2s ease infinite;
}
@keyframes wf-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* —— How it works (home) —— */
.wf-how-it-works {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--wf-border);
  background: linear-gradient(180deg, rgba(123, 47, 255, 0.04), transparent);
}
.wf-how-it-works__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wf-how-it-works__head {
  text-align: center;
  margin-bottom: 2rem;
}
.wf-how-it-works__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wf-violet);
  margin-bottom: 0.5rem;
}
.wf-how-it-works__head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
}
.wf-how-it-works__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wf-how-it-works__grid li {
  padding: 1.25rem 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--wf-border);
  background: var(--wf-card);
  text-align: center;
}
.wf-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--wf-grad);
  color: #04060b;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}
.wf-how-it-works__grid h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.wf-how-it-works__grid p {
  font-size: 0.8rem;
  color: var(--wf-dim);
  line-height: 1.5;
}
.wf-how-it-works__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* —— Industry cards (clickable) —— */
.wf-industry-card {
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.wf-industry-card:hover {
  border-color: rgba(0, 212, 255, 0.4) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}
.wf-industry-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wf-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* —— Home portfolio card actions —— */
.wf-portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.wf-btn--sm {
  padding: 0.5rem 0.95rem !important;
  font-size: 0.75rem !important;
}

/* —— Conversion strip (bottom of key pages) —— */
.wf-convert-strip {
  padding: 3.5rem 1.5rem;
  background:
    linear-gradient(165deg, rgba(0, 212, 255, 0.08) 0%, rgba(123, 47, 255, 0.06) 50%, rgba(4, 8, 14, 0.98) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.wf-convert-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 280px at 50% 0%, rgba(0, 212, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.wf-convert-strip__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wf-convert-strip__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wf-cyan);
  margin-bottom: 0.65rem;
}
.wf-convert-strip h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.wf-convert-strip p {
  color: var(--wf-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}
.wf-convert-strip p strong {
  color: #e2e8f0;
  font-weight: 600;
}
.wf-convert-strip__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* —— Platform v2 global polish —— */
body.wf-platform-v2 .btn-primary,
body.wf-platform-v2 .wf-btn--primary {
  font-weight: 700;
  letter-spacing: 0.02em;
}
body.wf-platform-v2 .highlight-item,
body.wf-platform-v2 .service-card,
body.wf-platform-v2 .portfolio-card,
body.wf-platform-v2 .project-card,
body.wf-platform-v2 .assurance-card {
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
body.wf-platform-v2 .section-badge {
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* —— Free audit block polish —— */
.jm-lead-magnet.wf-audit-block {
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 16px;
  padding: 1.35rem;
  background: rgba(0, 212, 255, 0.04);
}
.wf-audit-block__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.wf-audit-block__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #00d4ff !important;
  background: none !important;
  padding: 0 !important;
}
.wf-audit-block__links span {
  color: #b8c6d8;
}

.jm-sticky-cta__wa {
  background: #25d366 !important;
  color: #fff !important;
  border-color: #25d366 !important;
}

@media (max-width: 768px) {
  .wf-intake-journey { grid-template-columns: 1fr; }
  .wf-proof-bar__inner { flex-direction: column; text-align: center; }
  .wf-proof-bar__copy p { margin: 0 auto; }
  .wf-how-it-works__grid { grid-template-columns: 1fr; }
  .wf-convert-strip__btns .wf-btn { flex: 1 1 100%; justify-content: center; }
}

/* ========== Luxury layer v2.1 — effects, motion, all industries ========== */
body.wf-luxury {
  --wf-gold: #d4af37;
  --wf-glass: rgba(12, 16, 26, 0.72);
  --wf-shine: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.14) 48%, transparent 58%);
}

body.wf-luxury {
  padding-top: 2rem;
}

body.wf-luxury .navbar.jm-nav-pro,
body.wf-luxury .nav.jm-nav-pro,
body.wf-luxury .nav {
  top: 2rem !important;
}

/* Top status ribbon */
.wf-lux-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100035;
  height: 2rem;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(4, 8, 14, 0.97), rgba(8, 14, 28, 0.97));
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  pointer-events: none;
}
.wf-lux-ribbon__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: wf-ribbon-scroll 32s linear infinite;
  font-size: 0.68rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 0.45rem 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wf-lux-ribbon__track strong {
  color: #00f5a0;
  font-weight: 700;
}
.wf-lux-pulse {
  font-size: 0.35rem !important;
  color: #00f5a0;
  vertical-align: middle;
  animation: wf-pulse 2s ease infinite;
}
@keyframes wf-ribbon-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Industry marquee */
.wf-lux-marquee {
  position: relative;
  padding: 1.25rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}
.wf-lux-marquee__track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  animation: wf-marquee 40s linear infinite;
}
.wf-lux-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  background: rgba(0, 212, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  color: #b8c8dc;
  white-space: nowrap;
}
.wf-lux-marquee__item i {
  color: var(--wf-cyan);
  font-size: 0.65rem;
}
.wf-lux-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.wf-lux-marquee__fade--l {
  left: 0;
  background: linear-gradient(90deg, #0a0a0f, transparent);
}
.wf-lux-marquee__fade--r {
  right: 0;
  background: linear-gradient(270deg, #0a0a0f, transparent);
}
@keyframes wf-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Feature vault */
.wf-feature-vault {
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.wf-feature-vault::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 212, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(123, 47, 255, 0.08), transparent 55%);
  pointer-events: none;
}
.wf-feature-vault__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wf-feature-vault__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.wf-feature-vault__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wf-gold);
  margin-bottom: 0.65rem;
}
.wf-feature-vault__head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}
.wf-feature-vault__head h2 span {
  background: var(--wf-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wf-feature-vault__head p {
  color: var(--wf-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}
.wf-lux-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.wf-lux-feature {
  position: relative;
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(18, 24, 38, 0.95), rgba(8, 12, 20, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wf-lux-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wf-shine);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.wf-lux-feature:hover::after {
  transform: translateX(120%);
}
.wf-lux-feature:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 28px 60px rgba(0, 212, 255, 0.08);
}
.wf-lux-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 47, 255, 0.12));
  border: 1px solid rgba(0, 212, 255, 0.25);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  color: var(--wf-cyan);
}
.wf-lux-feature h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
}
.wf-lux-feature p {
  font-size: 0.8rem;
  color: var(--wf-dim);
  line-height: 1.55;
}
.wf-feature-vault__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.25rem;
}

/* Trust wall */
.wf-trust-wall {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.04), rgba(123, 47, 255, 0.04));
}
.wf-trust-wall__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  text-align: center;
}
.wf-trust-wall__stat {
  padding: 1rem 0.75rem;
  border-radius: 14px;
  background: var(--wf-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
.wf-trust-wall__stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  background: var(--wf-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.wf-trust-wall__stat span {
  font-size: 0.72rem;
  color: var(--wf-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Scroll reveal */
.wf-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(--wf-d, 0ms);
}
.wf-reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* Shimmer buttons */
.wf-btn--shine {
  position: relative;
  overflow: hidden;
}
.wf-btn--shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: wf-btn-shine 4s ease-in-out infinite;
}
@keyframes wf-btn-shine {
  0%, 75%, 100% { transform: translateX(-100%); }
  40% { transform: translateX(100%); }
}

.wf-tab-flash {
  animation: wf-tab-flash 0.42s ease;
}
@keyframes wf-tab-flash {
  0% { opacity: 0.7; filter: brightness(1.15); }
  100% { opacity: 1; filter: none; }
}

/* Luxury card glass */
body.wf-luxury .wf-lane,
body.wf-luxury .wf-lux-card {
  backdrop-filter: blur(8px);
}
body.wf-luxury .jm-showcase-pro {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
body.wf-luxury .jm-showcase-pro__frame {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
body.wf-luxury .jm-showcase-pro__frame:hover {
  box-shadow: 0 32px 80px rgba(0, 212, 255, 0.12);
}
body.wf-luxury .portfolio-card:hover,
body.wf-luxury .project-card:hover,
body.wf-luxury .service-card:hover,
body.wf-luxury .highlight-item:hover {
  border-color: rgba(0, 212, 255, 0.35) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38), 0 0 40px rgba(0, 212, 255, 0.06) !important;
}
body.wf-luxury .section-title span {
  background: var(--wf-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  body.wf-luxury { padding-top: 1.75rem; }
  .wf-lux-ribbon { height: 1.65rem; }
  .wf-lux-marquee__track { animation-duration: 55s; }
  .wf-lux-ribbon__track { animation-duration: 45s; }
}

@media (prefers-reduced-motion: reduce) {
  .wf-lux-ribbon__track,
  .wf-lux-marquee__track,
  .wf-btn--shine::after {
    animation: none !important;
  }
  .wf-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== Revenue & conversion blocks v2.2 ========== */
.wf-money-block {
  padding: 3.5rem 1.5rem;
  border-top: 1px solid rgba(0, 245, 160, 0.12);
  background: linear-gradient(180deg, rgba(0, 245, 160, 0.05), transparent);
}
.wf-money-block__inner { max-width: 1100px; margin: 0 auto; }
.wf-money-block__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5dffb8;
  margin-bottom: 0.5rem;
}
.wf-money-block__inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.wf-money-block__inner h2 span {
  background: var(--wf-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wf-money-block__inner > header > p {
  color: var(--wf-dim);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.wf-money-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.wf-money-grid article {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--wf-border);
  background: var(--wf-card);
}
.wf-money-grid article strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #f0f4fa;
}
.wf-money-grid article p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--wf-dim);
}
.wf-money-block__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.wf-price-table-section {
  padding: 3.5rem 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}
.wf-price-table-section__inner { max-width: 1200px; margin: 0 auto; }
.wf-price-table-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wf-cyan);
  margin-bottom: 0.5rem;
  text-align: center;
}
.wf-price-table-section__inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  margin-bottom: 0.5rem;
}
.wf-price-table-section__inner > header > p {
  text-align: center;
  color: var(--wf-dim);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.wf-price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.wf-price-card {
  position: relative;
  padding: 1.35rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--wf-border);
  background: linear-gradient(165deg, rgba(14, 20, 32, 0.98), rgba(8, 12, 20, 0.99));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wf-price-card--featured {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.1);
}
.wf-price-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wf-cyan);
}
.wf-price-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f4f7fb;
}
.wf-price-card__price {
  font-size: 0.9rem;
  color: var(--wf-dim);
}
.wf-price-card__price strong {
  font-size: 1.35rem;
  color: #f0f4fa;
}
.wf-price-card ul {
  list-style: none;
  margin: 0.5rem 0 1rem;
  padding: 0;
  flex: 1;
}
.wf-price-card li {
  font-size: 0.82rem;
  color: var(--wf-dim);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.wf-price-card li::before {
  content: '✓ ';
  color: #5dffb8;
  font-weight: 700;
}

.wf-vs-agency {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.wf-vs-agency__inner { max-width: 900px; margin: 0 auto; }
.wf-vs-agency h2 {
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1.25rem;
}
.wf-vs-table-wrap { overflow-x: auto; }
.wf-vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.wf-vs-table th,
.wf-vs-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--wf-border);
  text-align: left;
  color: #d8e0ec;
}
.wf-vs-table th {
  background: rgba(0, 212, 255, 0.08);
  color: #f0f4fa;
  font-weight: 700;
}
.wf-vs-table td:first-child {
  color: #9eb2c8;
  font-weight: 600;
}
.wf-vs-agency__foot {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}
.wf-vs-agency__foot a {
  color: var(--wf-cyan);
  font-weight: 700;
}

.wf-faq-strip {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.wf-faq-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.wf-faq-strip h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  margin-bottom: 1.25rem;
}
.wf-faq-strip__grid {
  display: grid;
  gap: 0.65rem;
  text-align: left;
  margin-bottom: 1.25rem;
}
.wf-faq-item {
  border-radius: 14px;
  border: 1px solid var(--wf-border);
  background: var(--wf-card);
  padding: 0 1rem;
}
.wf-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: #eef3ff;
  padding: 0.9rem 0;
  list-style: none;
}
.wf-faq-item summary::-webkit-details-marker { display: none; }
.wf-faq-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--wf-dim);
  padding-bottom: 1rem;
  margin: 0;
}

.wf-guarantee {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 245, 160, 0.25);
  background: rgba(0, 245, 160, 0.06);
}
.wf-guarantee h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #f0f4fa;
}
.wf-guarantee li {
  font-size: 0.88rem;
  color: #d8e0ec;
  line-height: 1.55;
  margin-bottom: 0.4rem;
  padding-left: 1.1rem;
  position: relative;
}
.wf-guarantee li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5dffb8;
  font-weight: 700;
}

.wf-sticky-money {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99985;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(10, 14, 24, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  max-width: min(420px, calc(100vw - 2rem));
}
.wf-sticky-money.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.wf-sticky-money.is-dismissed {
  display: none !important;
}
.wf-sticky-money p {
  font-size: 0.78rem;
  color: #d8e0ec;
  margin: 0;
}
.wf-sticky-money__x {
  border: none;
  background: transparent;
  color: #9eb2c8;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
}

.wf-results-pitch {
  padding: 2rem 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}
.wf-results-pitch__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.wf-results-pitch h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}
.wf-results-pitch h2 span {
  background: var(--wf-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wf-results-pitch p {
  color: var(--wf-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.wf-results-pitch__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .wf-sticky-money { display: none !important; }
  .wf-price-cards { grid-template-columns: 1fr; }
  .wf-money-grid { grid-template-columns: 1fr; }
}
