/**
 * ═══════════════════════════════════════════════════════════════
 *  WEB DESIGN LANDING PAGE — Ultra-Premium Conversion Page
 *  Dense visual system · Cinematic hero · Interactive timeline
 *  Floating browser mockup · Particle field · Scroll animations
 * ═══════════════════════════════════════════════════════════════
 */

/* ─────────────────────────────────────────
   REVEAL ANIMATION SYSTEM
   Custom data-wd-reveal attributes for
   scroll-triggered entrance animations
   ───────────────────────────────────────── */
[data-wd-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-wd-reveal="up"] {
  transform: translateY(60px);
}

[data-wd-reveal="left"] {
  transform: translateX(-60px);
}

[data-wd-reveal="right"] {
  transform: translateX(60px);
}

[data-wd-reveal="scale"] {
  transform: scale(0.88);
}

[data-wd-reveal="width"] {
  transform: scaleX(0);
  transform-origin: left;
}

[data-wd-reveal].wd-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) scaleX(1);
}

/* ─────────────────────────────────────────
   HERO — CINEMATIC SPLIT-SCREEN
   Left: Content stack · Right: Floating
   browser mockup with orbiting badges
   ───────────────────────────────────────── */
.wd-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--sp-160) 0 var(--sp-120);
  overflow: hidden;
  background: var(--navy-deep);
}

/* ── Background layers ── */
.wd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wd-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 25% 45%, rgba(232,101,26,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(30,58,110,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 60% 90%, rgba(232,101,26,0.04) 0%, transparent 45%),
    linear-gradient(180deg, #0B1628 0%, #12203E 35%, #0F1D35 70%, #0B1628 100%);
}

.wd-hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(248,245,240,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,245,240,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.wd-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.wd-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  mix-blend-mode: overlay;
}

/* ── Hero layout ── */
.wd-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-64);
  align-items: center;
}

/* ── Left content ── */
.wd-hero-content {
  max-width: 600px;
}

.wd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-12);
  padding: var(--sp-8) var(--sp-20);
  background: rgba(232,101,26,0.1);
  border: 1px solid rgba(232,101,26,0.2);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-32);
}

.wd-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hermes);
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(232,101,26,0.4);
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.3); opacity: 1; }
}

.wd-hero-badge span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--hermes-light);
}

/* ── Title ── */
.wd-hero-title {
  margin-bottom: var(--sp-24);
  line-height: 1;
}

.wd-title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.wd-title-line:first-child {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: rgba(248,245,240,0.5);
  margin-bottom: var(--sp-8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
}

.wd-title-line:nth-child(2) {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: var(--sp-12);
}

.wd-title-line:nth-child(3) {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
}

.wd-title-line em {
  font-style: italic;
  color: var(--hermes-light);
}

/* ── Accent word — animated gradient ── */
.wd-title-accent {
  font-family: 'Bodoni Moda', 'Georgia', serif;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(
    135deg,
    #E8651A 0%,
    #F4935A 20%,
    #FFD700 40%,
    #F4935A 60%,
    #E8651A 80%,
    #F4935A 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: accentShift 4s ease-in-out infinite;
}

@keyframes accentShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── Gold rule ── */
.wd-hero-rule {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--hermes), var(--hermes-light), transparent);
  margin-bottom: var(--sp-24);
  border-radius: var(--r-full);
}

/* ── Description ── */
.wd-hero-desc {
  font-size: 1.125rem;
  color: rgba(248,245,240,0.6);
  line-height: 1.75;
  margin-bottom: var(--sp-32);
  max-width: 520px;
}

.wd-hero-desc strong {
  color: var(--cream);
  font-weight: 600;
}

/* ── Price anchor ── */
.wd-hero-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-12);
  margin-bottom: var(--sp-32);
  flex-wrap: wrap;
}

.wd-price-from {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248,245,240,0.4);
}

.wd-price-amount {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wd-price-note {
  font-size: 0.8125rem;
  color: var(--hermes-light);
  font-style: italic;
  font-family: var(--font-display);
}

/* ── CTAs ── */
.wd-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  margin-bottom: var(--sp-32);
}

.wd-btn-glow {
  box-shadow: 0 4px 24px rgba(232,101,26,0.35), 0 0 60px rgba(232,101,26,0.1);
}

.wd-btn-glow:hover {
  box-shadow: 0 6px 32px rgba(232,101,26,0.5), 0 0 80px rgba(232,101,26,0.15);
}

/* ── Trust bar ── */
.wd-hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}

.wd-trust-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  font-size: 0.75rem;
}

.wd-hero-trust > span {
  font-size: 0.8125rem;
  color: rgba(248,245,240,0.45);
  font-weight: 500;
}

/* ── Right: Browser Mockup ── */
.wd-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.wd-browser-float {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-lg);
  overflow: visible;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.06);
  animation: browserFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes browserFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-3deg); }
  50%      { transform: translateY(-12px) rotateX(-1deg) rotateY(2deg); }
}

.wd-browser-chrome {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  padding: var(--sp-12) var(--sp-16);
  background: #1E1E2E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.wd-browser-dots {
  display: flex;
  gap: 6px;
}

.wd-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wd-browser-dots span:nth-child(1) { background: #ff5f56; }
.wd-browser-dots span:nth-child(2) { background: #ffbd2e; }
.wd-browser-dots span:nth-child(3) { background: #27c93f; }

.wd-browser-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-4) var(--sp-12);
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.wd-browser-bar i {
  font-size: 0.625rem;
  color: #27c93f;
}

/* ── Browser body — wireframe mockup ── */
.wd-browser-body {
  background: linear-gradient(180deg, #13192D 0%, #0F1525 100%);
  padding: var(--sp-24);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  min-height: 320px;
  overflow: hidden;
}

.wd-mock-hero {
  margin-bottom: var(--sp-20);
}

.wd-mock-nav {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-24);
}

.wd-mock-headline {
  width: 85%;
  height: 14px;
  background: linear-gradient(90deg, rgba(248,245,240,0.15) 0%, rgba(248,245,240,0.05) 100%);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-8);
  animation: mockShimmer 3s ease-in-out infinite;
}

.wd-mock-headline-sm {
  width: 55%;
  height: 10px;
  margin-bottom: var(--sp-16);
  animation-delay: 0.3s;
}

@keyframes mockShimmer {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

.wd-mock-cta-row {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
}

.wd-mock-btn {
  width: 80px;
  height: 24px;
  background: var(--hermes);
  border-radius: var(--r-full);
  opacity: 0.8;
}

.wd-mock-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
}

.wd-mock-btn-sm {
  width: 60px;
  height: 18px;
}

.wd-mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
}

.wd-mock-card {
  padding: var(--sp-12);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
}

.wd-mock-card-icon {
  width: 24px;
  height: 24px;
  background: rgba(232,101,26,0.2);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-8);
}

.wd-mock-card-lines div {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-full);
  margin-bottom: 4px;
}

.wd-mock-card-lines div:last-child {
  width: 65%;
}

.wd-mock-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
}

.wd-mock-img {
  height: 70px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-sm);
}

.wd-mock-text div {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  margin-bottom: 5px;
}

.wd-mock-text div:nth-child(3) { width: 80%; margin-bottom: var(--sp-12); }

/* ── Floating badges around browser ── */
.wd-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  padding: var(--sp-12) var(--sp-16);
  background: rgba(20,28,50,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wd-float-badge.wd-badge-visible {
  opacity: 1;
}

.wd-float-badge i {
  font-size: 1.25rem;
}

.wd-float-badge strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--cream);
  line-height: 1.2;
}

.wd-float-badge span {
  display: block;
  font-size: 0.6875rem;
  color: rgba(248,245,240,0.45);
  font-weight: 500;
}

.wd-float-speed {
  top: 20%;
  left: -30px;
  transform: translateX(-20px);
  animation: floatBadge1 5s ease-in-out infinite;
}

.wd-float-speed i { color: #FFD700; }

.wd-float-speed.wd-badge-visible { transform: translateX(0); }

.wd-float-score {
  top: 50%;
  right: -40px;
  transform: translateX(20px);
  animation: floatBadge2 5.5s ease-in-out infinite;
}

.wd-float-score.wd-badge-visible { transform: translateX(0); }

.wd-float-mobile {
  bottom: 10%;
  left: 10%;
  transform: translateY(20px);
  animation: floatBadge3 6s ease-in-out infinite;
}

.wd-float-mobile i { color: #60a5fa; }

.wd-float-mobile.wd-badge-visible { transform: translateY(0); }

@keyframes floatBadge1 {
  0%, 100% { transform: translate(-30px, 0); }
  50%      { transform: translate(-30px, -10px); }
}

.wd-float-speed.wd-badge-visible {
  animation-name: floatBadge1v;
}

@keyframes floatBadge1v {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -10px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translate(20px, 0); }
  50%      { transform: translate(20px, 8px); }
}

.wd-float-score.wd-badge-visible {
  animation-name: floatBadge2v;
}

@keyframes floatBadge2v {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, 8px); }
}

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

/* ── Score ring ── */
.wd-score-ring {
  position: relative;
  width: 40px;
  height: 40px;
}

.wd-score-ring svg {
  width: 100%;
  height: 100%;
}

.wd-score-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4ade80;
}

/* ─────────────────────────────────────────
   SOCIAL PROOF — STATS BAR
   ───────────────────────────────────────── */
.wd-proof {
  padding: var(--sp-64) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.wd-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-48);
  flex-wrap: wrap;
}

.wd-proof-stat {
  text-align: center;
}

.wd-proof-num {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.wd-proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.wd-proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
}

/* ─────────────────────────────────────────
   PROBLEM / AGITATE / SOLUTION
   ───────────────────────────────────────── */
.wd-problem {
  padding: var(--sp-120) 0;
  background: var(--cream);
}

.wd-problem-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-64);
  align-items: start;
}

.wd-problem-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  position: sticky;
  top: 120px;
}

.wd-problem-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
}

.wd-problem-card {
  padding: var(--sp-32);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  transition: var(--t-slow);
}

.wd-problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.wd-problem-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-20);
}

.wd-problem-bad {
  background: var(--white);
}

.wd-problem-bad .wd-problem-icon { color: #dc2626; }

.wd-problem-bad h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-16);
}

.wd-problem-bad li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: var(--sp-24);
}

.wd-problem-bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.75rem;
}

.wd-problem-bad li:last-child { border-bottom: none; }

.wd-problem-good {
  background: var(--navy);
  border-color: var(--navy);
}

.wd-problem-good .wd-problem-icon { color: #4ade80; }

.wd-problem-good h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-16);
}

.wd-problem-good li {
  font-size: 0.9375rem;
  color: rgba(248,245,240,0.65);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid rgba(248,245,240,0.08);
  position: relative;
  padding-left: var(--sp-24);
}

.wd-problem-good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
  font-size: 0.8125rem;
}

.wd-problem-good li:last-child { border-bottom: none; }

/* ─────────────────────────────────────────
   FEATURES GRID — WHAT YOU GET
   ───────────────────────────────────────── */
.wd-features {
  padding: var(--sp-120) 0;
  background: var(--white);
}

.wd-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.wd-feat-card {
  padding: var(--sp-40);
  background: var(--cream-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
}

.wd-feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hermes);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-slow);
}

.wd-feat-card:hover {
  border-color: var(--hermes);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.wd-feat-card:hover::after {
  transform: scaleX(1);
}

.wd-feat-icon-wrap {
  margin-bottom: var(--sp-24);
}

.wd-feat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hermes-soft);
  border-radius: var(--r-md);
  color: var(--hermes);
  font-size: 1.25rem;
  transition: var(--t-base);
}

.wd-feat-card:hover .wd-feat-icon {
  background: var(--hermes);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.wd-feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--sp-12);
}

.wd-feat-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ─────────────────────────────────────────
   PROCESS — INTERACTIVE TIMELINE
   ───────────────────────────────────────── */
.wd-process {
  padding: var(--sp-120) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.wd-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-24);
}

.wd-timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(248,245,240,0.08);
}

.wd-timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--hermes), var(--hermes-light));
  border-radius: var(--r-full);
  transition: height 0.1s linear;
}

.wd-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-32);
  padding-bottom: var(--sp-56);
}

.wd-timeline-step:last-child { padding-bottom: 0; }

.wd-timeline-marker {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,101,26,0.1);
  border: 2px solid rgba(232,101,26,0.3);
  border-radius: 50%;
  z-index: 2;
  transition: var(--t-slow);
}

.wd-timeline-marker span {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hermes-light);
}

.wd-timeline-step.wd-step-active .wd-timeline-marker {
  background: var(--hermes);
  border-color: var(--hermes);
  box-shadow: 0 0 24px rgba(232,101,26,0.4);
}

.wd-timeline-step.wd-step-active .wd-timeline-marker span {
  color: var(--white);
}

.wd-timeline-content {
  padding: var(--sp-4) 0;
}

.wd-timeline-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hermes-light);
  margin-bottom: var(--sp-8);
  padding: var(--sp-4) var(--sp-12);
  background: rgba(232,101,26,0.08);
  border-radius: var(--r-full);
}

.wd-timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--sp-12);
}

.wd-timeline-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(248,245,240,0.5);
  margin: 0;
}

/* ─────────────────────────────────────────
   TECH STACK — ICON GRID
   ───────────────────────────────────────── */
.wd-stack {
  padding: var(--sp-96) 0;
  background: var(--cream);
}

.wd-stack-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-20);
}

.wd-stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-12);
  padding: var(--sp-24) var(--sp-32);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  transition: var(--t-base);
  min-width: 110px;
}

.wd-stack-item i {
  font-size: 1.75rem;
  color: var(--navy);
  transition: color var(--t-base);
}

.wd-stack-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
}

.wd-stack-item:hover {
  border-color: var(--hermes);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.wd-stack-item:hover i { color: var(--hermes); }

/* ─────────────────────────────────────────
   TESTIMONIALS — CARD GRID
   ───────────────────────────────────────── */
.wd-testimonials {
  padding: var(--sp-120) 0;
  background: var(--navy);
}

.wd-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.wd-test-card {
  padding: var(--sp-40);
  background: rgba(248,245,240,0.03);
  border: 1px solid rgba(248,245,240,0.08);
  border-radius: var(--r-lg);
  transition: var(--t-slow);
}

.wd-test-card:hover {
  border-color: rgba(232,101,26,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.wd-test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-24);
  color: #FFD700;
  font-size: 0.75rem;
}

.wd-test-card blockquote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(248,245,240,0.8);
  line-height: 1.6;
  margin-bottom: var(--sp-32);
}

.wd-test-author {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}

.wd-test-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hermes);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
}

.wd-test-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.wd-test-author span {
  font-size: 0.8125rem;
  color: rgba(248,245,240,0.4);
}

/* ─────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────── */
.wd-faq {
  padding: var(--sp-120) 0;
  background: var(--white);
}

.wd-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.wd-faq-item {
  border-bottom: 1px solid var(--border-light);
}

.wd-faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.wd-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-24) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: var(--t-base);
}

.wd-faq-question:hover { color: var(--hermes); }

.wd-faq-question i {
  font-size: 0.875rem;
  color: var(--hermes);
  transition: transform var(--t-base);
  flex-shrink: 0;
  margin-left: var(--sp-16);
}

.wd-faq-item.wd-faq-open .wd-faq-question i {
  transform: rotate(45deg);
}

.wd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wd-faq-item.wd-faq-open .wd-faq-answer {
  max-height: 400px;
  padding-bottom: var(--sp-24);
}

.wd-faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.wd-faq-answer a {
  color: var(--hermes);
  font-weight: 600;
}

.wd-faq-answer a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   FINAL CTA — DRAMATIC FULL BLEED
   ───────────────────────────────────────── */
.wd-final-cta {
  position: relative;
  padding: var(--sp-160) 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.wd-cta-bg-fx {
  position: absolute;
  inset: 0;
}

.wd-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: orbFloat 12s ease-in-out infinite;
}

.wd-cta-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--hermes);
  top: -20%;
  left: 20%;
}

.wd-cta-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--royal-blue);
  bottom: -30%;
  right: 10%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.1); }
  66%      { transform: translate(-20px, 15px) scale(0.95); }
}

.wd-cta-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  mix-blend-mode: overlay;
}

.wd-final-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.wd-final-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--sp-24);
  line-height: 1.1;
}

.wd-final-title em {
  font-style: italic;
  color: var(--hermes-light);
}

.wd-final-desc {
  font-size: 1.125rem;
  color: rgba(248,245,240,0.55);
  margin-bottom: var(--sp-40);
  line-height: 1.7;
}

.wd-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  justify-content: center;
  margin-bottom: var(--sp-40);
}

.wd-final-promise {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-32);
  justify-content: center;
}

.wd-final-promise > div {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.wd-final-promise i {
  color: #4ade80;
  font-size: 0.75rem;
}

.wd-final-promise span {
  font-size: 0.875rem;
  color: rgba(248,245,240,0.5);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   PARTICLE STYLING
   ───────────────────────────────────────── */
.wd-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--hermes-light);
  opacity: 0;
  pointer-events: none;
  animation: particleDrift var(--dur, 12s) var(--delay, 0s) linear infinite;
}

@keyframes particleDrift {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5); }
  10%  { opacity: var(--peak-opacity, 0.3); }
  90%  { opacity: var(--peak-opacity, 0.3); }
  100% { opacity: 0; transform: translate(var(--dx, 100px), var(--dy, -200px)) scale(0); }
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .wd-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .wd-hero-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-64);
  }

  .wd-hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .wd-hero-content { max-width: 100%; }

  .wd-problem-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-48);
  }

  .wd-problem-title {
    position: static;
    text-align: center;
  }

  .wd-problem-right {
    grid-template-columns: 1fr 1fr;
  }

  .wd-testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .wd-hero { padding: var(--sp-120) 0 var(--sp-80); }

  .wd-hero-visual { display: none; }

  .wd-features-grid { grid-template-columns: 1fr; }

  .wd-problem-right { grid-template-columns: 1fr; }

  .wd-proof-stats { flex-direction: column; gap: var(--sp-24); }
  .wd-proof-divider { width: 48px; height: 1px; }

  .wd-timeline-line { left: 24px; }
  .wd-timeline-step { grid-template-columns: 48px 1fr; gap: var(--sp-20); }
  .wd-timeline-marker { width: 36px; height: 36px; }
  .wd-timeline-marker span { font-size: 0.75rem; }

  .wd-final-cta { padding: var(--sp-96) 0; }
}

@media (max-width: 480px) {
  .wd-hero-content { text-align: center; }
  .wd-hero-badge { margin-left: auto; margin-right: auto; }
  .wd-hero-rule { margin-left: auto; margin-right: auto; }
  .wd-hero-desc { text-align: center; }
  .wd-hero-price { justify-content: center; }
  .wd-hero-ctas { flex-direction: column; align-items: stretch; }
  .wd-hero-ctas .btn { justify-content: center; }
  .wd-hero-trust { justify-content: center; }

  .wd-price-amount { font-size: 2.5rem; }

  .wd-final-actions { flex-direction: column; align-items: stretch; }
  .wd-final-actions .btn { justify-content: center; }
  .wd-final-promise { flex-direction: column; align-items: center; gap: var(--sp-12); }
}
