/* 
   LANDING PAGES — Shared design system
   Used by: /wordpress-to-mobile-app/, /shopify-to-mobile-app/ and future landing pages
*/

:root {
  --wp-primary: #184BFC;
  --wp-primary-dark: #1240C8;
  --wp-bg-dark: #0A0226;
  --wp-bg-light: #F5F5FF;
  --wp-text-dark: #0A0226;
  --wp-text-gray: #475569;
  --wp-gradient: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
  --wp-radius: 16px;
  /* Vertical rhythm: desktop (1024px+). Tablet / mobile override in media queries below. */
  --wp-y-hero-t: 180px;
  --wp-y-hero-b: 140px;
  --wp-y-logo-t: 52px;
  --wp-y-logo-b: 48px;
  --wp-y-adv-t: 120px;
  --wp-y-adv-b: 160px;
  --wp-y-feat-head: 180px;
  --wp-y-feat-b: 128px;
  --wp-y-prev-t: 120px;
  --wp-y-prev-b: 128px;
  --wp-y-step-t: 40px;
  --wp-y-step-b: 128px;
  --wp-y-faq-t: 120px;
  --wp-y-faq-b: 64px;
  --wp-y-tst-t: 64px;
  --wp-y-tst-b: 128px;
  --wp-y-cta-y: 120px;
  --wp-y-cta-x: 24px;
  --wp-y-cmp-t: 80px;
  --wp-y-cmp-b: 80px;
}

@media (max-width: 1023px) {
  :root {
    --wp-y-hero-t: 112px;
    --wp-y-hero-b: 80px;
    --wp-y-logo-t: 44px;
    --wp-y-logo-b: 40px;
    --wp-y-adv-t: 72px;
    --wp-y-adv-b: 96px;
    --wp-y-feat-head: 120px;
    --wp-y-feat-b: 80px;
    --wp-y-prev-t: 80px;
    --wp-y-prev-b: 96px;
    --wp-y-step-t: 36px;
    --wp-y-step-b: 96px;
    --wp-y-faq-t: 80px;
    --wp-y-faq-b: 56px;
    --wp-y-tst-t: 56px;
    --wp-y-tst-b: 96px;
    --wp-y-cta-y: 80px;
    --wp-y-cta-x: 24px;
    --wp-y-cmp-t: 56px;
    --wp-y-cmp-b: 56px;
  }
}

@media (max-width: 768px) {
  :root {
    --wp-y-hero-t: 80px;
    --wp-y-hero-b: 48px;
    --wp-y-logo-t: 28px;
    --wp-y-logo-b: 20px;
    --wp-y-adv-t: 22px;
    --wp-y-adv-b: 32px;
    --wp-y-feat-head: 80px;
    --wp-y-feat-b: 24px;
    --wp-y-prev-t: 44px;
    --wp-y-prev-b: 48px;
    --wp-y-step-t: 32px;
    --wp-y-step-b: 80px;
    --wp-y-faq-t: 40px;
    --wp-y-faq-b: 32px;
    --wp-y-tst-t: 40px;
    --wp-y-tst-b: 48px;
    --wp-y-cta-y: 40px;
    --wp-y-cta-x: 16px;
    --wp-y-cmp-t: 40px;
    --wp-y-cmp-b: 40px;
  }
}

@media (max-width: 480px) {
  :root {
    --wp-y-hero-t: 64px;
    --wp-y-hero-b: 40px;
    --wp-y-logo-t: 24px;
    --wp-y-logo-b: 18px;
    --wp-y-adv-t: 16px;
    --wp-y-adv-b: 26px;
    --wp-y-feat-head: 64px;
  }
}

body {
  background-color: #fff;
  color: var(--wp-text-gray);
  overflow-x: hidden;
}

/*
 * This stylesheet loads only on the WordPress landing page.
 * Container padding aligns with the site-wide breakpoint system:
 * ≥1280px → 40px | 768–1279px → 32px | <768px → 16px
 */
@media (max-width: 1279px) {
  body .container,
  .header .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
    box-sizing: border-box;
  }
  /* Softer seam under fixed header — avoids a harsh hairline above first content */
  .header {
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
  }
}
@media (max-width: 767px) {
  body .container,
  .header .container {
    padding-left: max(16px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(16px, env(safe-area-inset-right, 0px)) !important;
  }
}

/* --- 1. HERO SECTION --- */
.wp-hero {
  padding: var(--wp-y-hero-t) 0 var(--wp-y-hero-b);
  background: linear-gradient(135deg, #0A0226 0%, #1B1435 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(24, 75, 252, 0.15) 0%, transparent 70%),
    radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.wp-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.3;
}

.wp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 580px;
}

.wp-hero-content {
  text-align: left;
}

.wp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 75, 252, 0.1);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(24, 75, 252, 0.3);
  font-size: 13px;
  font-weight: 600;
  color: #60A5FA;
  margin-bottom: 24px;
}

.wp-hero-badge span {
  width: 8px;
  height: 8px;
  background: #60A5FA;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #60A5FA;
}

.wp-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.wp-desktop-br {
  display: block;
}
@media (max-width: 1024px) {
  .wp-desktop-br {
    display: none;
  }
}

.wp-hero h1 span {
  background: var(--wp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.wp-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}

/* Modern Conversion Form */
.wp-hero-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 500px;
}
@media (min-width: 640px) {
  .wp-hero-form { flex-direction: row; gap: 8px; background: rgba(255,255,255,0.05); padding: 8px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(6px); }
}
.wp-hero-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.wp-hero-input-icon {
  position: absolute;
  left: 16px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-hero-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 16px 16px 44px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
  height: 56px;
}
@media (min-width: 640px) {
  .wp-hero-input { background: transparent; border: none; padding: 12px 16px 12px 44px; height: 52px; }
  .wp-hero-input:focus { background: rgba(255,255,255,0.05); }
}
.wp-hero-input::placeholder { color: rgba(255,255,255,0.6); }
.wp-hero-input:focus { border-color: rgba(96, 165, 250, 0.5); }

.wp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wp-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 8px 24px rgba(24,75,252,0.4);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  height: 56px;
  width: 100%;
}
@media (min-width: 640px) {
  .wp-btn-primary { padding: 12px 24px; border-radius: 10px; height: 52px; width: auto; }
  #content-qr .wp-btn-primary, #content-sim .wp-btn-primary { width: 100%; }
}
.wp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(24,75,252,0.55); background: var(--wp-primary-dark); }

/* Secondary ghost button */
.wp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
  cursor: pointer;
}
.wp-btn-ghost:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.35); }

/* Social proof */
.wp-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  margin-top: 32px;
}
.wp-avatars {
  display: flex;
  padding-right: 8px;
}
.wp-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  margin-right: -8px;
}
img.wp-avatar {
  border: 2px solid rgba(0,0,0,0.5);
}

.wp-hero-trust {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.wp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wp-trust-item svg { color: #10B981; }

/* ══════════════════════════════════════════════
   Hero visual — large phone + floating mini-cards
══════════════════════════════════════════════ */
.wp-hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow blobs — no filter:blur (GPU-expensive); soft edge via opacity + large border-radius */
.wp-hero-glow-tr {
  position: absolute;
  top: -60px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.wp-hero-glow-bl {
  position: absolute;
  bottom: -60px; left: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Step 1 URL: reveal by clip-path (composited, avoids reflow) */
@keyframes wpStepUrlType {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0% 0 0); }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #60A5FA; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes loadingBar {
  0% { transform: scaleX(0); opacity: 1; }
  80% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}
@keyframes phoneFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ─── Phone (centered in visual column) ─── */
.wp-hero-mockup-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-hero-mockup-figure {
  position: relative;
  z-index: 4;
  animation: wpHeroPhoneFloat 6s ease-in-out infinite;
}
@keyframes wpHeroPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.wp-hero-device {
  width: clamp(260px, 32vw, 340px);
  padding: 12px;
  background: linear-gradient(160deg, #1e2d3d 0%, #0f172a 60%, #050d1a 100%);
  border-radius: 44px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 40px 80px -16px rgba(0,0,0,0.7),
    0 12px 32px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
}
.wp-hero-device-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #050d1a;
  border-radius: 999px;
  z-index: 5;
  border: 1px solid rgba(51,65,85,0.5);
}
.wp-hero-device-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #050d1a;
  aspect-ratio: 9 / 19.2;
  position: relative;
}
.wp-hero-phone-img {
  display: block;
  width: clamp(260px, 32vw, 340px);
  height: auto;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
@media (max-width: 480px) {
  .wp-hero-phone-img { width: min(230px, 55vw); }
}
.wp-hero-mockup-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── App Ready badge (right side of phone) ─── */
.wp-hero-mockup-badge {
  position: absolute;
  top: 38%;
  right: -14px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(6,15,40,0.96);
  color: #34d399;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid rgba(52,211,153,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.55), 0 0 16px rgba(52,211,153,0.1);
  white-space: nowrap;
}

/* ─── Floating mini-cards — absolute positioned around phone ─── */
.wp-hero-fc {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 16px;
  white-space: nowrap;
  background: rgba(14, 9, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(110, 90, 220, 0.22);
  box-shadow: 0 20px 50px -8px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.07);
}
.wp-hero-fc__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.wp-hero-fc__icon--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.wp-hero-fc__icon--green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.wp-hero-fc__icon--violet {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.wp-hero-fc__icon--wp {
  background: rgba(100, 100, 255, 0.12);
  box-shadow: 0 0 16px rgba(100, 100, 255, 0.25);
}
.wp-hero-fc__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wp-hero-fc__val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.wp-hero-fc__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(170, 185, 255, 0.75);
  letter-spacing: 0.01em;
}

/* Floating positions */
.wp-hero-fc--tl {
  top: 15%;
  left: 6%;
  animation: wpFcFloat1 5s ease-in-out infinite;
}
.wp-hero-fc--tr {
  top: 25%;
  right: 6%;
  animation: wpFcFloat2 6s ease-in-out infinite 0.3s;
}
.wp-hero-fc--bl {
  bottom: 25%;
  left: 4%;
  animation: wpFcFloat2 5.5s ease-in-out infinite 0.5s;
}
.wp-hero-fc--br {
  bottom: 15%;
  right: 4%;
  animation: wpFcFloat1 6.5s ease-in-out infinite 0.2s;
}
@keyframes wpFcFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes wpFcFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1180px) {
  .wp-hero-fc--tl { left: -65%; }
  .wp-hero-fc--tr { right: -65%; }
  .wp-hero-fc--bl { left: -58%; }
  .wp-hero-fc--br { right: -58%; }
}
@media (prefers-reduced-motion: reduce) {
  .wp-hero-mockup-figure, .wp-hero-fc { animation: none !important; }
}

.wp-pulse {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- 2. LOGOS SECTION --- */
.wp-logos-section {
  padding: var(--wp-y-logo-t) 0 var(--wp-y-logo-b);
  background: #fff;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
  z-index: 20;
}
.wp-logos-title {
  text-align: center;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.wp-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}
.wp-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #71717a;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: default;
}
.wp-logo-item:hover {
  color: #3f3f46;
}
.wp-logo-item .ms-icon {
  width: 24px;
  height: 24px;
  color: #a1a1aa;
  transition: color 0.2s ease;
}
.wp-logo-item:hover .ms-icon {
  color: #71717a;
}
.wp-logo-item-php {
  font-size: 10px;
  font-weight: 800;
  border: 2px solid #52525b;
  padding: 2px 4px;
  border-radius: 4px;
  line-height: 1;
  color: #52525b;
  transition: color 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.05em;
}
.wp-logo-item:hover .wp-logo-item-php {
  color: #3f3f46;
  border-color: #3f3f46;
}

/* --- 2.5 THE ADVANTAGE SECTION --- */
.wp-advantage-section {
  padding: var(--wp-y-adv-t) 0 var(--wp-y-adv-b);
  background: #0A0226;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.wp-adv-bg-glow {
  position: absolute;
  top: -20%; left: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.wp-advantage-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .wp-advantage-container {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 64px;
  }
}
@media (max-width: 1023px) {
  .wp-adv-hook {
    position: static;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 64px;
  }
  .wp-adv-hook h2,
  .wp-adv-hook p { text-align: center; max-width: 560px; }
  .wp-adv-stats-box { max-width: 400px; width: 100%; }
  .wp-adv-cta { justify-content: center; }
}

/* Left Column: Hook — sticky only on desktop */
@media (min-width: 1024px) {
  .wp-adv-hook {
    position: sticky;
    top: 80px;
  }
}
.wp-adv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}
.wp-adv-hook h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wp-adv-hook p {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 480px;
}

/* Stats */
.wp-adv-stats-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 40px;
  backdrop-filter: blur(6px);
  margin-bottom: 32px;
}
.wp-adv-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wp-adv-stat-old {
  font-size: 20px;
  color: #7b8fa6;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  font-weight: 600;
}
.wp-adv-stat-new {
  font-size: 40px;
  font-weight: 900;
  color: #10B981;
  line-height: 1;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.wp-adv-stat-label {
  font-size: 13px;
  color: #b0bcd0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.wp-adv-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Advantage CTA */
.wp-adv-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .wp-adv-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .wp-adv-cta .wp-btn-primary,
  .wp-adv-cta .wp-btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Right Column: List */
.wp-adv-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wp-adv-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.wp-adv-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}
.wp-adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.1);
  color: #60A5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wp-adv-icon .ms-icon {
  width: 28px;
  height: 28px;
}
.wp-adv-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.wp-adv-text p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}
.wp-adv-text .wp-adv-pain {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
}

/* Inline CTA strip (used between sections) */
.wp-inline-cta {
  text-align: center;
  padding: 48px 24px;
}
.wp-inline-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 8px 24px rgba(24,75,252,0.3);
}
.wp-inline-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(24,75,252,0.45); background: var(--wp-primary-dark); }
.wp-inline-cta p {
  margin-top: 12px;
  font-size: 13px;
  color: #94a3b8;
}

/* --- 3. FEATURES SECTION --- */
.wp-features-section {
  padding: 0 0 var(--wp-y-feat-b);
  background: #fff;
  position: relative;
}
.wp-features-section-divider-top {
  width: 100%; height: 64px; overflow: hidden; line-height: 0; background: #0A0226; transform: translateY(-1px); position: absolute; top: 0; left: 0; z-index: 5;
}
.wp-features-section-divider-top svg {
  width: calc(100% + 1.3px); height: 64px; transform: rotate(180deg);
}
.wp-features-section-divider-top path {
  fill: #ffffff;
}
.wp-features-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px;
  padding-top: var(--wp-y-feat-head);
  padding-inline: clamp(20px, 5vw, 40px);
}
.wp-features-header h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #0f172a;
}
@media (min-width: 1024px) {
  .wp-features-header h2 { font-size: 48px; }
}
.wp-features-header p {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  font-weight: 500;
}
.wp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
/* Tablet: 2 columns — 3-up only from desktop width to avoid cut-off (e.g. iPad 768) */
@media (min-width: 768px) and (max-width: 1023px) {
  .wp-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
  .wp-feature-card { padding: 36px 28px; }
}
@media (min-width: 1024px) {
  .wp-features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* Trust Signal Ribbon */
.wp-trust-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 64px;
  background: rgba(24,75,252,0.05);
  padding: 12px 24px;
  border-radius: 100px;
  width: max-content;
  max-width: calc(100% - 48px);
  border: 1px solid rgba(24,75,252,0.1);
}

.wp-trust-stars {
  display: flex;
  color: #f59e0b;
  font-size: 18px;
}
.wp-trust-stars .ms-icon {
  color: inherit;
}

.wp-trust-ribbon p {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

.wp-trust-ribbon p strong {
  color: #0f172a;
}

@media (max-width: 640px) {
  .wp-trust-ribbon {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    border-radius: 16px;
    width: auto;
    max-width: calc(100% - 32px);
    margin: 16px auto 40px;
    padding: 14px 20px;
  }
}

.wp-feature-card {
  padding: 48px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #f1f5f9;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.wp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}
.wp-feature-icon-bg {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 32px;
  transition: background-color 0.5s, transform 0.5s;
}
.wp-feature-card:hover .wp-feature-icon-bg {
  background: #dbeafe;
  transform: scale(1.1);
}
.wp-feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}
.wp-feature-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 40px;
  font-weight: 500;
  flex-grow: 1;
}
/* Feature Mini-Mockups */
.wp-feat-mockup-1 {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.wp-feat-mockup-1-icon {
  width: 32px; height: 32px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #3b82f6; transition: transform 0.7s; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.wp-feature-card:hover .wp-feat-mockup-1-icon { transform: rotate(180deg); }

.wp-feat-mockup-2 {
  background: #0f172a;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s;
}
.wp-feature-card:hover .wp-feat-mockup-2 { transform: translateY(-4px); }
.wp-feat-mockup-2-icon {
  width: 32px; height: 32px; background: #2563eb; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 900; font-style: italic;
}

.wp-feat-mockup-3 {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Features section CTA strip */
.wp-features-cta {
  text-align: center;
  padding: 64px 24px 0;
}
.wp-features-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 10px 30px rgba(24,75,252,0.3);
}
.wp-features-cta a:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(24,75,252,0.45); background: var(--wp-primary-dark); }
.wp-features-cta p {
  margin-top: 12px;
  font-size: 13px;
  color: #94a3b8;
}

.wp-preview-section-divider-top {
  width: 100%; height: 64px; overflow: hidden; line-height: 0; background: #ffffff; transform: translateY(2px); position: relative; z-index: 5;
}
.wp-preview-section-divider-top svg {
  width: calc(100% + 1.3px); height: 64px; transform: rotate(180deg);
}
.wp-preview-section-divider-top path { fill: #f8fafc; }

/* --- 3.5 LIVE PREVIEW SECTION --- */
.wp-preview-section {
  padding: var(--wp-y-prev-t) 0 var(--wp-y-prev-b);
  background: #f8fafc;
}
.wp-preview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .wp-preview-container {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}
.wp-preview-content {
  max-width: 540px;
}

/* Preview: single-column layouts (tablet down) — same content width for tabs, card, CTA */
@media (max-width: 1023px) {
  .wp-preview-container {
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
  }
  .wp-preview-content {
    max-width: min(560px, 100%);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-preview-tabs {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: stretch;
    gap: 4px;
  }
  .wp-preview-tab {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 10px 12px;
    font-size: 14px;
  }
}

.wp-preview-content h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #0f172a;
  line-height: 1.3;
}
@media (min-width: 1024px) { .wp-preview-content h2 { font-size: 48px; } }
.wp-preview-content p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Tabs */
.wp-preview-tabs {
  display: inline-flex;
  background: #e2e8f0;
  padding: 6px;
  border-radius: 16px;
  margin-bottom: 32px;
}
.wp-preview-tab {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wp-preview-tab.active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.wp-preview-tab-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  background: #dcfce7;
  color: #14532d;
  font-weight: 800;
}
.wp-preview-tab-badge.pro {
  background: #fef3c7;
  color: #78350f;
}
.wp-preview-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.wp-preview-tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wp-preview-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
  position: relative;
}
.wp-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.wp-preview-card-icon {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}
.wp-preview-card-text h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.wp-preview-card-text p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.5;
}
.wp-preview-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center
}
@media (max-width: 480px) {
  .wp-preview-actions {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .wp-preview-actions .wp-preview-store-btn {
    flex: 1;
    justify-content: center;
  }
}
.wp-preview-store-btn {
  background: #0f172a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wp-preview-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}
.wp-preview-link {
  color: #2563eb;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.wp-preview-link:hover {
  gap: 12px;
}

.wp-preview-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 440px;
  padding-top: 90px;
  margin: 0 auto;
}
.wp-preview-phone {
  width: 300px;
  height: 620px;
  background: #fff;
  border-radius: 48px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25), 0 0 0 12px #0f172a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.wp-preview-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0f172a;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 10;
}
.wp-preview-screen {
  flex: 1;
  background: #f8fafc;
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wp-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-preview-logo {
  width: 32px;
  height: 32px;
  background: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.wp-preview-avatars {
  display: flex;
  align-items: center;
}
.wp-preview-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}
.wp-preview-avatars img:first-child { margin-left: 0; }
.wp-preview-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}
.wp-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wp-preview-stat-box {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.wp-preview-stat-box span {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wp-preview-stat-box strong {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}
.wp-preview-chart {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  flex: 1;
}
.wp-preview-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.wp-preview-chart-header h5 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.wp-preview-chart-header span {
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
}
.wp-preview-chart-body {
  height: 80px;
  background: #f1f5f9;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.wp-preview-chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, rgba(37,99,235,0.2) 0%, rgba(37,99,235,0) 100%);
  border-top: 3px solid #2563eb;
  border-radius: 100% 100% 0 0 / 50% 50% 0 0;
}
.wp-preview-bottom-nav {
  height: 60px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}
.wp-preview-bottom-nav .ms-icon {
  color: #94a3b8;
  width: 24px;
  height: 24px;
}
.wp-preview-bottom-nav .ms-icon.active {
  color: #2563eb;
}

.wp-preview-float-1 {
  position: absolute;
  top: 90px;
  left: -10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 100px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.15), 0 0 0 1px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: phoneFloat2 6s ease-in-out infinite;
  z-index: 30;
}
.wp-preview-float-1 img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.wp-preview-float-1 img:first-child { margin-left: 0; }
.wp-preview-float-1 .count {
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 2px;
}

.wp-preview-float-2 {
  position: absolute;
  top: 60px;
  right: -40px;
  bottom: auto;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.15), 0 0 0 1px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: phoneFloat2 7s ease-in-out infinite reverse;
  z-index: 30;
}
.wp-preview-float-2-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #0f172a;
  font-size: 13px;
}
.wp-preview-float-2-icon {
  width: 22px;
  height: 22px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-preview-float-2-icon span { font-size: 14px; font-weight: bold; }
.wp-preview-float-2 p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  max-width: 130px;
  line-height: 1.45;
}

.wp-preview-float-qr, .wp-preview-float-sim {
  position: absolute;
  bottom: 60px;
  right: -100px;
  top: auto;
  background: #fff;
  padding: 20px;
  border-radius: 28px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.2), 0 0 0 1px rgba(15, 23, 42, 0.06);
  z-index: 25;
  animation: phoneFloat2 5s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .wp-preview-visual { width: 380px; }
  .wp-preview-float-1 { left: 0; top: 60px; }
  .wp-preview-float-2 { right: 0; top: 80px; }
  .wp-preview-float-qr, .wp-preview-float-sim { right: -30px; }
}
@media (max-width: 640px) {
  .wp-preview-visual { width: 300px; padding-top: 0; }
  .wp-preview-float-1, .wp-preview-float-2, .wp-preview-float-qr, .wp-preview-float-sim { display: none !important; }
}

/* --- 4. STEPS SECTION --- */
.wp-steps-section {
  padding: var(--wp-y-step-t) 0 var(--wp-y-step-b);
  background: #0A0226;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.wp-steps-section-divider-top {
  width: 100%; height: 64px; overflow: hidden; line-height: 0; background: transparent; transform: translateY(2px); position: absolute; top: 0; left: 0; z-index: 5;
}
.wp-steps-section-divider-top svg {
  width: calc(100% + 1.3px); height: 64px;
}
.wp-steps-section-divider-top path {
  fill: #0A0226;
}
.wp-steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.5;
}
.wp-steps-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-inline: clamp(20px, 5vw, 40px);
}
.wp-steps-header h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}
@media (min-width: 1024px) { .wp-steps-header h2 { font-size: 48px; } }
.wp-steps-header p {
  font-size: 20px;
  color: #94a3b8;
  font-weight: 500;
}
.wp-steps-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  z-index: 2;
}
.wp-steps-line {
  display: none;
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}
@media (min-width: 768px) { .wp-steps-line { display: block; } }
.wp-steps-line-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
  animation: wpStepsLineFill 2.2s ease-out 0.4s forwards;
}
@keyframes wpStepsLineFill {
  to { width: 100%; }
}
.wp-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .wp-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .wp-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    align-items: stretch;
  }
}

.wp-step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s ease;
  height: 100%;
}
.wp-step-typing {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.wp-step-url-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.wp-step-url-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  box-sizing: border-box;
}
.wp-step-url-text {
  font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #60A5FA;
  clip-path: inset(0 100% 0 0);
  animation: wpStepUrlType 5.2s steps(13, end) infinite, blink-caret 0.75s step-end infinite;
}
.wp-step-store-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  box-sizing: border-box;
  animation: wpStepStoreLift 3.5s ease-in-out infinite;
}
.wp-step-store-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.wp-step-store-chip {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-step-store-chip--android {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.wp-step-store-chip--apple {
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.35);
}
.wp-step-store-brand-icon {
  width: 24px;
  height: 24px;
  display: block;
  transform-origin: center center;
  animation: wpStepStoreLogoNudge 3.5s ease-in-out infinite;
}
.wp-step-store-chip--apple .wp-step-store-brand-icon {
  width: 20px;
  height: 26px;
  animation-delay: 0.2s;
}
@keyframes wpStepStoreLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes wpStepStoreLogoNudge {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.05); }
  55% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .wp-steps-line-inner { animation: none; width: 100%; }
  .wp-step-url-text { animation: none !important; clip-path: inset(0 0% 0 0) !important; border-right-color: transparent !important; }
  .wp-step-spin { animation: none !important; }
  .wp-step-load-bar { animation: none !important; transform: scaleX(1) !important; opacity: 1 !important; }
  .wp-preview-float-1, .wp-preview-float-2, .wp-preview-float-qr, .wp-preview-float-sim { animation: none !important; }
  .wp-step-store-pill, .wp-step-store-brand-icon { animation: none !important; }
}
.wp-step-number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 12px rgba(37,99,235,0.2), 0 10px 20px rgba(0,0,0,0.4);
  position: relative;
  z-index: 10;
  transition: transform 0.3s;
}
.wp-step-item:hover .wp-step-number { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(37,99,235,0.35), 0 10px 20px rgba(0,0,0,0.5); }

.wp-step-visual {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 20px;
  width: 100%;
  max-width: 260px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wp-step-item:hover .wp-step-visual {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -10px rgba(0,0,0,0.6), 0 0 20px rgba(37,99,235,0.3);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37,99,235,0.4);
}

.wp-step-item h3 {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.wp-step-item p {
  font-size: 16px;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.6;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: calc(1.6em * 3);
  text-align: center;
}

/* --- 5. FAQ SECTION --- */
.wp-faq-section {
  padding: var(--wp-y-faq-t) 0 var(--wp-y-faq-b);
  background: #f8fafc;
}
.wp-faq-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.wp-faq-header h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #0f172a;
}
@media (min-width: 1024px) { .wp-faq-header h2 { font-size: 48px; } }
.wp-faq-header p {
  color: #64748b;
  font-size: 20px;
  font-weight: 500;
}
.wp-faq-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .wp-faq-list { grid-template-columns: 1fr 1fr; align-items: start; }
}
.wp-faq-item {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.wp-faq-item:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}
.wp-faq-item details summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
  user-select: none;
  line-height: 1.4;
}
.wp-faq-item details summary::-webkit-details-marker { display: none; }
.wp-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2563eb;
  flex-shrink: 0;
  margin-left: 16px;
}
.wp-faq-item details[open] summary .wp-faq-icon {
  transform: rotate(180deg);
  background: #2563eb;
  color: #fff;
}
.wp-faq-content {
  padding: 16px 32px 32px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  animation: faqFadeIn 0.4s ease-out forwards;
}
.wp-faq-content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wp-faq-content a:hover {
  color: #1d4ed8;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ section bottom CTA */
.wp-faq-cta {
  text-align: center;
  padding: 64px 24px 0;
}
.wp-faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 8px 24px rgba(24,75,252,0.3);
}
.wp-faq-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(24,75,252,0.45); background: var(--wp-primary-dark); }
.wp-faq-cta p {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

/* --- 5.4 COMPARISON (SEO / PDF) --- */
.wp-compare-section {
  padding: var(--wp-y-cmp-t) 0 var(--wp-y-cmp-b);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  position: relative;
}
.wp-compare-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* Header */
.wp-compare-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.wp-compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 75, 252, 0.08);
  border: 1px solid rgba(24, 75, 252, 0.2);
  color: #184BFC;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.wp-compare-section h2 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
  line-height: 1.15;
}

/* Column labels */
.wp-compare-cols {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
  padding: 0 4px;
}
.wp-compare-col-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 10px 16px;
  border-radius: 12px;
}
.wp-compare-col-label--empty {
  background: transparent;
}
.wp-compare-col-label--us {
  background: #0A0226;
  color: #60A5FA;
}
.wp-compare-col-label--them {
  background: #f1f5f9;
  color: #94a3b8;
}

/* Rows container */
.wp-compare-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual row */
.wp-compare-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.wp-compare-row-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.wp-compare-row-icon {
  font-size: 22px;
  color: #94a3b8;
}

/* Cells */
.wp-compare-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
.wp-compare-cell--win {
  background: #0A0226;
  color: #cbd5e1;
  border: 1px solid rgba(96, 165, 250, 0.15);
}
.wp-compare-cell--lose {
  background: #f8fafc;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}
.wp-compare-check {
  color: #34d399;
  flex-shrink: 0;
  margin-top: 1px;
}
.wp-compare-x {
  color: #f87171;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Mobile: stack cells under label */
@media (max-width: 680px) {
  .wp-compare-cols {
    grid-template-columns: 1fr 1fr;
  }
  .wp-compare-col-label--empty {
    display: none;
  }
  .wp-compare-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
  }
  .wp-compare-row-label {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 16px;
    border-radius: 12px;
    gap: 10px;
    font-size: 11px;
  }
  .wp-compare-row-icon {
    font-size: 18px;
  }
  .wp-compare-cell {
    padding: 16px 14px;
    font-size: 13px;
    border-radius: 12px;
  }
}

/* --- 5.5 TESTIMONIALS SECTION --- */
.wp-testimonials-section {
  padding: var(--wp-y-tst-t) 0 var(--wp-y-tst-b);
  background: #f8fafc;
  position: relative;
}
.wp-testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.wp-testimonials-header h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #0f172a;
}
@media (min-width: 1024px) { .wp-testimonials-header h2 { font-size: 48px; } }
.wp-testimonials-header p {
  color: #64748b;
  font-size: 20px;
  font-weight: 500;
}
.wp-testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .wp-testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .wp-testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.wp-testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.wp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
  border-color: #cbd5e1;
}
.wp-testimonial-stars {
  color: #f59e0b;
  display: flex;
  gap: 4px;
}
.wp-testimonial-stars .ms-icon {
  width: 20px;
  height: 20px;
}
.wp-testimonial-quote {
  font-size: 16px;
  color: #334155;
  line-height: 1.6;
  font-weight: 500;
  flex-grow: 1;
  font-style: italic;
}
.wp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}
.wp-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.wp-testimonial-author-info {
  display: flex;
  flex-direction: column;
}
.wp-testimonial-author-name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}
.wp-testimonial-author-role {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

/* Testimonials bottom CTA */
.wp-testimonials-cta {
  text-align: center;
  padding: 64px 24px 0;
}
.wp-testimonials-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 10px 30px rgba(24,75,252,0.3);
}
.wp-testimonials-cta a:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(24,75,252,0.45); background: var(--wp-primary-dark); }
.wp-testimonials-cta p {
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
}

/* --- 6. CTA SECTION --- */
.wp-cta-section {
  padding: var(--wp-y-cta-y) var(--wp-y-cta-x);
  background: #fff;
}
.wp-cta-box {
  max-width: 1280px;
  margin: 0 auto;
  background: #1d4ed8;
  border-radius: 40px;
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .wp-cta-box { padding: 96px; } }

/* Glow Effects — no filter:blur (GPU-expensive); radial-gradient replaces the blur */
.wp-cta-glow-tl {
  position: absolute;
  top: 0; left: 0;
  width: 256px; height: 256px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.wp-cta-glow-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 384px; height: 384px;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(25%, 25%);
}

/* Glassmorphism Side Panels */
.wp-cta-glass-left, .wp-cta-glass-right {
  display: none;
  position: absolute;
  top: 50%;
  width: 192px;
  height: 384px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 1280px) {
  .wp-cta-glass-left {
    display: block;
    left: -80px;
    transform: translateY(-50%) rotate(-12deg);
  }
  .wp-cta-glass-right {
    display: block;
    right: -80px;
    transform: translateY(-50%) rotate(12deg);
  }
}

.wp-cta-content {
  position: relative;
  z-index: 10;
  max-width: 672px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.wp-cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
@media (min-width: 1024px) { .wp-cta-content h2 { font-size: 48px; } }

.wp-cta-content p.wp-cta-subtitle {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.wp-cta-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  width: 100%;
}
@media (min-width: 640px) {
  .wp-cta-btn-wrapper { flex-direction: row; justify-content: center; }
}

.wp-cta-btn-wrapper .wp-btn-primary {
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}
.wp-cta-btn-wrapper .wp-btn-primary:hover {
  background: #f8fafc !important;
  box-shadow: 0 15px 35px -10px rgba(0,0,0,0.4);
}

/* Secondary Conversion Form */
.wp-cta-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 24px;
  max-width: 500px;
}
@media (min-width: 640px) {
  .wp-cta-form { flex-direction: row; gap: 8px; background: rgba(255,255,255,0.1); padding: 8px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(6px); }
}
.wp-cta-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.wp-cta-input-icon {
  position: absolute;
  left: 16px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-cta-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 16px 16px 44px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
  height: 56px;
}
@media (min-width: 640px) {
  .wp-cta-input { background: transparent; border: none; padding: 12px 16px 12px 44px; height: 52px; }
  .wp-cta-input:focus { background: rgba(255,255,255,0.05); }
}
.wp-cta-input::placeholder { color: rgba(255,255,255,0.7); }
.wp-cta-input:focus { border-color: rgba(255, 255, 255, 0.5); }

.wp-cta-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #3b82f6;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  height: 56px;
  width: 100%;
}
@media (min-width: 640px) {
  .wp-cta-btn-submit { padding: 12px 24px; border-radius: 10px; height: 52px; width: auto; }
}
.wp-cta-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); background: #f8fafc; }
.wp-cta-btn-submit:active { transform: scale(0.95); }

.wp-cta-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-top: 24px;
}

/* Inline SVG icons */
.ms-icon {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  /* Hero — collapse to single column, center everything */
  .wp-hero-grid, .wp-zigzag { grid-template-columns: 1fr; }
  .wp-hero-content {
    margin-top: 24px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wp-hero h1 { text-align: center; }
  .wp-hero p  { text-align: center; }
  .wp-hero-badge, .wp-hero-trust, .wp-hero-form, .wp-hero-social-proof {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-hero-form { max-width: 520px; }
  .wp-bento { grid-template-columns: 1fr 1fr; }
  .wp-hero-visual { height: 480px; margin: 0 auto; }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .wp-advantage-container {
    gap: 40px;
  }
}

/* --- Large Mobile / Small Tablet (≤768px) --- */
@media (max-width: 768px) {
  /* Hero */
  .wp-hero-visual { display: none; }
  .wp-hero-grid { grid-template-columns: 1fr; }
  .wp-hero h1 { font-size: clamp(28px, 8vw, 38px); }
  .wp-hero-form { max-width: 100%; }

  /* Logos section — 2×2 + centered last row; rounded bottom “card” into Advantage (no stretched SVG wave) */
  .wp-logos-section {
    border-bottom: none;
    border-radius: 0 0 24px 24px;
    margin-bottom: -20px;
    position: relative;
    z-index: 20;
    box-shadow: 0 12px 40px -20px rgba(10, 2, 38, 0.12);
  }
  .wp-logos-title {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 0 4px;
  }
  .wp-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    align-items: center;
    gap: 16px 24px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4px;
    box-sizing: border-box;
  }
  .wp-logo-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  /* Advantage — vertical padding from :root; gap only here */
  .wp-advantage-container { gap: 28px; }
  .wp-adv-hook h2 { font-size: clamp(26px, 6vw, 38px); }
  .wp-adv-stats-box { gap: 20px; }
  .wp-adv-card { padding: 20px; }

  /* Features section — padding-top/bottom from :root */
  .wp-features-header { margin-bottom: 40px; }
  .wp-features-header h2 { font-size: clamp(24px, 6vw, 34px); }
  .wp-features-header p  { font-size: 16px; }

  /* Preview section — vertical padding from :root */
  .wp-preview-content { padding: 0; text-align: center; }
  .wp-preview-content h2 { font-size: clamp(24px, 6vw, 34px); text-align: center; }
  .wp-preview-content p { text-align: center; }
  .wp-preview-tabs { justify-content: center; }

  /* Steps section */
  .wp-steps-header h2 { font-size: clamp(24px, 6vw, 34px); }
  .wp-steps-section .wp-btn-primary { display: flex; justify-content: center; }

  /* FAQ section */
  .wp-faq-header { margin-bottom: 32px; }
  .wp-faq-header h2 { font-size: clamp(24px, 6vw, 34px); }

  /* Testimonials */
  .wp-testimonials-header { margin-bottom: 32px; }
  .wp-testimonials-header h2 { font-size: clamp(24px, 6vw, 34px); }

  /* CTA section — outer padding from :root */
  .wp-cta-box { padding: 36px 22px; border-radius: 24px; }
  .wp-cta-content h2 { font-size: clamp(24px, 7vw, 38px); }

  /* Misc layout */
  .wp-bento, .wp-steps-grid { grid-template-columns: 1fr; }
}

/* --- Mobile (≤640px) --- */
@media (max-width: 640px) {
  /* Hero social proof */
  .wp-hero-social-proof { justify-content: center; margin-top: 12px; }

  /* Hero trust chips wrap */
  .wp-hero-trust { flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* Testimonials single column */
  .wp-testimonials-grid { grid-template-columns: 1fr; }

  /* Steps CTA button full width */
  .wp-steps-section div[style*="text-align: center"] .wp-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* --- Small Mobile (≤480px) --- */
@media (max-width: 480px) {
  .wp-hero h1 { font-size: clamp(24px, 9vw, 32px); line-height: 1.2; }
  .wp-hero p  { font-size: 15px; line-height: 1.6; }

  /* Logos — tighter on very small screens */
  .wp-logos-grid { max-width: 300px; gap: 14px 18px; }
  .wp-logo-item { font-size: 16px; gap: 8px; }
  .wp-logo-item .ms-icon { width: 20px; height: 20px; }

  /* Advantage — gap only; section padding from :root */
  .wp-advantage-container { gap: 22px; }
  .wp-adv-card { padding: 16px; }

  /* Advantage stats vertical */
  .wp-adv-stats-box { flex-direction: column; gap: 16px; }
  .wp-adv-divider { width: 60%; height: 1px; margin: 0 auto; }

  /* Features grid single column */
  .wp-features-grid { grid-template-columns: 1fr !important; }
  .wp-features-header { margin-bottom: 32px; }

  /* FAQ single column */
  .wp-faq-list { grid-template-columns: 1fr !important; }

  /* CTA section */
  .wp-cta-box { padding: 36px 18px; border-radius: 20px; }
  .wp-cta-note { font-size: 12px; }
  .wp-cta-btn-wrapper { flex-direction: column; align-items: stretch; }
  .wp-cta-btn-wrapper .wp-btn-primary,
  .wp-cta-btn-wrapper .wp-btn-ghost { width: 100%; justify-content: center; text-align: center; }
}

/* Shape dividers: tablet + mobile — kill hairline seams (inline translateY + SVG anti-alias gaps) */
@media (max-width: 1024px) {
  .wp-features-section-divider-top,
  .wp-preview-section-divider-top,
  .wp-steps-section-divider-top,
  .wp-faq-section-divider-top,
  .wp-ps-section-divider-top {
    transform: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .wp-features-section-divider-top svg,
  .wp-preview-section-divider-top svg,
  .wp-steps-section-divider-top svg,
  .wp-faq-section-divider-top svg,
  .wp-ps-section-divider-top svg {
    display: block;
    width: calc(100% + 4px) !important;
    max-width: none !important;
    margin-left: -2px;
    height: auto;
    shape-rendering: geometricPrecision;
  }
  .wp-features-section-divider-top svg {
    transform: rotate(180deg);
  }
  .wp-preview-section-divider-top svg {
    transform: rotate(180deg);
  }
  .wp-preview-section-divider-top,
  .wp-steps-section-divider-top,
  .wp-features-section-divider-top,
  .wp-faq-section-divider-top,
  .wp-ps-section-divider-top {
    height: 40px !important;
    overflow: hidden;
    line-height: 0 !important;
    font-size: 0 !important;
  }
  .wp-preview-section-divider-top svg,
  .wp-steps-section-divider-top svg,
  .wp-features-section-divider-top svg,
  .wp-faq-section-divider-top svg,
  .wp-ps-section-divider-top svg {
    height: 40px !important;
  }
  .wp-faq-section-divider-top svg {
    transform: rotate(180deg);
  }
}

/* Wave dividers — shorter on small phones; hide select dividers */
@media (max-width: 768px) {
  .wp-preview-section-divider-top,
  .wp-steps-section-divider-top,
  .wp-features-section-divider-top {
    height: 36px !important;
  }
  .wp-preview-section-divider-top svg,
  .wp-steps-section-divider-top svg,
  .wp-features-section-divider-top svg {
    height: 36px !important;
  }
  /* Logos → Advantage: hide wave on mobile (SVG stretches unnaturally); rounded logos block handles the transition */
  .wp-ps-section-divider-top {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .wp-ps-section-divider-top svg {
    display: none !important;
  }
  /* Hide FAQ divider on mobile — clean transition between sections */
  .wp-faq-section-divider-top {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .wp-hero-device { width: min(230px, 55vw); }
  .wp-bg-tablet { width: 70%; }
}

/* ── Mobile: disable backdrop-filter entirely (GPU-expensive, invisible on most mobile screens) ── */
@media (max-width: 768px) {
  .wp-hero-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(24, 75, 252, 0.18);
  }
  .wp-adv-stats-box {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.06);
  }
  .wp-step-visual {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.08);
  }
}
