*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0A0A0A;
  --orange: #F5831F;
  --orange-dark: #D4700F;
  --white: #F8F8F8;
  --green: #22C55E;
  --amber: #F59E0B;
  --gray: #888;
  --gray-dark: #1A1A1A;
  --gray-card: #141414;
  --red: #ef4444;
  --red-dark: rgba(220,38,38,0.12);
  --red-border: rgba(220,38,38,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Ambient Glow ── */
body::after {
  content: '';
  position: fixed;
  top: -10%;
  left: -15%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(245,131,31,0.07) 0%, rgba(245,131,31,0.03) 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Floating Particles ── */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(245,131,31,0.4);
  border-radius: 50%;
  animation: floatUp linear infinite;
}
.particle:nth-child(odd) {
  background: rgba(245,158,11,0.3);
  width: 1.5px;
  height: 1.5px;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* ── Light Streaks ── */
.light-streak {
  position: fixed;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,131,31,0.15), transparent);
  z-index: 0;
  pointer-events: none;
  animation: streakMove 8s linear infinite;
  opacity: 0;
}
.light-streak:nth-child(2) { animation-delay: 3s; top: 30%; }
.light-streak:nth-child(3) { animation-delay: 6s; top: 60%; width: 150px; }
@keyframes streakMove {
  0% { left: -200px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* ── Top Nav ── */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.topnav.scrolled {
  background: rgba(10,10,10,0.95);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(248,248,248,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--orange);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  border: none;
  cursor: pointer;
}
.btn-nav:hover {
  background: #ffaa55;
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(245,131,31,0.4);
}

/* ── Urgency Banner ── */
.urgency-banner {
  margin-top: 64px;
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, #3d1e04, #5c2e08 30%, #4a2506 70%, #3d1e04);
  border-bottom: 1px solid rgba(245,131,31,0.2);
  padding: 14px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  overflow: hidden;
}
.urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,131,31,0.08), transparent);
  animation: bannerShimmer 4s ease-in-out infinite;
}
@keyframes bannerShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.urgency-banner .countdown-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.countdown-wrap .icon { font-size: 18px; }
.countdown-wrap .label { color: rgba(248,248,248,0.9); }
.countdown-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin: 0 3px;
}
.countdown-unit .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 1px;
  min-width: 28px;
  text-align: center;
}
.countdown-unit .suffix {
  font-size: 11px;
  color: rgba(248,248,248,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 64px - 52px);
  display: flex;
  align-items: center;
  padding: 80px 48px 60px;
  max-width: 1360px;
  margin: 0 auto;
  gap: 60px;
}
.hero-left {
  flex: 0 0 58%;
  max-width: 58%;
}
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(245,131,31,0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,131,31,0.08);
  margin-bottom: 28px;
}

/* Headline */
.headline-container {
  position: relative;
  min-height: 200px;
  margin-bottom: 28px;
}
.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.headline.active {
  opacity: 1;
  transform: translateY(0);
}
.headline .highlight {
  color: var(--orange);
  position: relative;
}

/* Subheadline */
.subheadline {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(248,248,248,0.65);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}

/* CTA Buttons */
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:hover {
  background: #ffa04d;
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 40px rgba(245,131,31,0.45), 0 0 80px rgba(245,131,31,0.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid rgba(248,248,248,0.25);
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-secondary:hover {
  border-color: rgba(248,248,248,0.6);
  background: rgba(248,248,248,0.05);
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(248,248,248,0.06);
}

/* Stat Pills */
.stat-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
  position: relative;
}
.stat-pill::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(245,131,31,0.15), transparent, rgba(245,131,31,0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-pill:hover::before { opacity: 1; }
.stat-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(245,131,31,0.6);
}
.stat-pill:first-child .dot {
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 16px rgba(34,197,94,0.8); }
}

/* ── Phone Mockup ── */
.phone-wrapper {
  position: relative;
}
.phone-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(245,131,31,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  background: #111;
  border-radius: 36px;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 25px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(245,131,31,0.08);
  overflow: hidden;
  padding: 0;
}
.phone-notch {
  width: 120px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone-screen {
  padding: 0 16px 24px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

/* Chat Header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 20px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e06b10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.chat-meta { flex: 1; }
.chat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.chat-status {
  font-size: 11px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-status .online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: pulse-green 2s ease-in-out infinite;
}

/* Chat Messages */
.chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.msg.visible {
  opacity: 1;
  transform: translateY(0);
}
.msg-user {
  align-self: flex-end;
  background: var(--orange);
  color: var(--black);
  font-weight: 500;
  border-bottom-right-radius: 6px;
}
.msg-ai {
  align-self: flex-start;
  background: #1e1e1e;
  color: var(--white);
  border-bottom-left-radius: 6px;
}

/* Typing Indicator */
.typing-indicator {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 14px 18px;
  background: #1e1e1e;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}
.typing-indicator.visible { opacity: 1; }
.typing-indicator.hidden { display: none; }
.typing-dot {
  width: 7px;
  height: 7px;
  background: #555;
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Quick Reply Buttons */
.quick-replies {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.quick-replies.visible {
  opacity: 1;
  transform: translateY(0);
}
.qr-btn {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.qr-btn-primary {
  background: var(--orange);
  color: var(--black);
}
.qr-btn-primary:hover {
  background: #ffa04d;
  transform: scale(1.05);
}
.qr-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.qr-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ── Credibility Bar ── */
.cred-bar {
  position: relative;
  z-index: 1;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 48px;
}
.cred-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.cred-card {
  flex: 1;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cred-card-accent {
  border-left: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.cred-card-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(245,131,31,0.05), transparent 70%);
  pointer-events: none;
  border-radius: 12px;
}
.cred-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--orange);
  text-shadow: 0 0 40px rgba(245,131,31,0.3);
}
.cred-card-accent .cred-stat {
  color: #F5C842;
  text-shadow: 0 0 40px rgba(245,200,66,0.3);
}
.cred-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(248,248,248,0.7);
  max-width: 360px;
}
.cred-text strong {
  color: var(--white);
  font-weight: 700;
}
.cred-source {
  font-size: 12px;
  color: rgba(248,248,248,0.3);
  letter-spacing: 0.5px;
  margin-top: 4px;
  font-style: italic;
}

/* ── Live Win Feed ── */
.win-feed {
  position: relative;
  z-index: 1;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0;
  overflow: hidden;
}
.win-feed-label {
  text-align: center;
  font-size: 11px;
  color: rgba(248,248,248,0.25);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.win-track {
  display: flex;
  width: max-content;
  animation: scrollWins 80s linear infinite;
}
.win-track:hover { animation-play-state: paused; }
@keyframes scrollWins {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.win-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  margin: 0 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(248,248,248,0.75);
  white-space: nowrap;
  transition: all 0.3s;
  cursor: default;
}
.win-item:hover {
  border-color: rgba(245,131,31,0.25);
  color: var(--white);
  background: rgba(245,131,31,0.05);
}
.win-item .win-icon { font-size: 16px; }
.win-item .win-value {
  color: var(--green);
  font-weight: 700;
}
.win-item .win-value.star { color: #F5C842; }
.win-item .win-value.orange { color: var(--orange); }
/* Fade edges */
.win-feed::before,
.win-feed::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.win-feed::before { left: 0; background: linear-gradient(90deg, #080808, transparent); }
.win-feed::after  { right: 0; background: linear-gradient(-90deg, #080808, transparent); }

/* ── Mobile Hamburger Menu ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 200;
  padding: 20px 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-close-btn {
  background: none;
  border: none;
  color: rgba(248,248,248,0.5);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-close-btn:hover { color: var(--white); }
.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-drawer-links li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-drawer-links a {
  display: block;
  padding: 14px 0;
  color: rgba(248,248,248,0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-drawer-links a:hover { color: var(--orange); }
.mobile-drawer-cta {
  display: block;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--orange);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s;
}
.mobile-drawer-cta:hover { background: #ffa04d; }
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Hide hamburger on desktop, show on mobile */
@media (max-width: 640px) {
  .mobile-menu-btn { display: flex; }
  .hide-mobile-sm { display: none !important; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 60px 32px 40px;
    text-align: center;
    gap: 48px;
  }
  .hero-left {
    flex: none;
    max-width: 100%;
  }
  .headline-container { min-height: 180px; }
  .headline {
    position: absolute;
    width: 100%;
  }
  .subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-row { justify-content: center; }
  .stat-pills { justify-content: center; }
  .hero-right { order: -1; }
  .phone { width: 260px; }
  .phone-screen { min-height: 400px; }

  /* Credibility bar — stack on tablet */
  .cred-bar { padding: 32px 24px; }
  .cred-inner { flex-wrap: wrap; }
  .cred-card { flex: 1 1 45%; min-width: 280px; }
}
@media (max-width: 640px) {
  /* ── Nav ── */
  .topnav { padding: 0 12px; gap: 8px; }
  .nav-links .hide-mobile { display: none; }
  .nav-links { gap: 12px; }
  .btn-nav { padding: 8px 14px; font-size: 12px; white-space: nowrap; }
  .logo { font-size: 24px; }

  /* ── Urgency Banner ── */
  .urgency-banner { font-size: 12px; padding: 10px 12px; }
  .countdown-unit .num { font-size: 16px; }
  .countdown-wrap .label { font-size: 11px; }
  .countdown-wrap .icon { font-size: 14px; }

  /* ── Hero ── */
  .hero { padding: 32px 16px 24px; gap: 32px; }
  .headline-container { min-height: 140px; }
  .headline { font-size: 34px !important; }
  .subheadline { font-size: 15px; margin-bottom: 24px; }
  .badge { font-size: 10px; padding: 5px 12px; letter-spacing: 1.5px; margin-bottom: 20px; }
  .cta-row { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; font-size: 15px; padding: 14px 24px; }
  .stat-pills { flex-direction: column; align-items: center; }
  .stat-pill { font-size: 13px; padding: 8px 16px; }

  /* ── Hero Bleed Bar ── */
  .bleed-bar { margin-top: 24px; }
  .bleed-inner { padding: 16px !important; }
  .bleed-main-row { flex-direction: column; gap: 12px; align-items: center; text-align: center; }
  .bleed-divider { width: 60px; height: 1px; }
  .bleed-amount { font-size: 36px !important; }
  .bleed-sub { font-size: 12px; text-align: center; }

  /* ── Hero Right (phone + demo banner) ── */
  .hero-right > div:first-child { padding: 7px 10px !important; }
  .hero-right > div:first-child span:last-child { display: none; }
  .phone { width: 260px; }
  .phone-screen { min-height: 380px; }

  /* ── Credibility Bar ── */
  .cred-bar { padding: 32px 16px; }
  .cred-inner { flex-direction: column; gap: 0; }
  .cred-card { padding: 24px 0; }
  .cred-card-accent { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .cred-stat { font-size: 48px; }
  .cred-text { font-size: 14px; max-width: 100%; }

  /* ── Win Feed ── */
  .win-feed { padding: 16px 0; }
  .win-feed-label { font-size: 10px; letter-spacing: 2px; }
  .win-item { font-size: 12px; padding: 8px 16px; }

  /* ── Demo Section ── */
  .demo-section { padding: 0 12px 24px; }
  .demo-viewport { min-height: 360px; }
  .demo-scene { min-height: 360px; }
  .scene-0, .scene-1 { padding: 14px; }
  .match-screen { height: 75px; }
  .match-name { font-size: 14px; }
  .match-score { font-size: 20px; }
  .match-flag-img { width: 24px; height: 16px; }
  .pain-alert { font-size: 12px; padding: 6px 12px; }
  .solution-row { font-size: 14px; }
  .solution-box-problem p, .solution-box-ai p { font-size: 14px; }
  .demo-takeover-btn { font-size: 13px; padding: 8px 18px; }
  .demo-autoplay-label { font-size: 11px; }

  /* ── Features ── */
  .features-inner { padding: 0 16px; }
  .features-grid { gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .feature-title { font-size: 16px; }
  .feature-desc { font-size: 13px; }

  /* ── Amplified Section ── */
  .amplified-section { padding: 48px 16px; }
  .amplified-inner { padding: 0; }
  .amp-task-grid { grid-template-columns: 1fr !important; }
  .amp-metrics { flex-wrap: wrap; }
  .amp-metric { min-width: 140px; }

  /* ── World Cup CTA ── */
  .worldcup-cta { padding: 48px 16px; }
  .wc-headline { font-size: clamp(32px, 8vw, 52px) !important; }
  .wc-subtext { font-size: 14px; padding: 0 8px; }
  .wc-cta-row { flex-direction: column; width: 100%; }
  .wc-cta-row button { width: 100%; }
  .wc-trust-row { flex-direction: column; gap: 8px; align-items: center; font-size: 13px; }

  /* ── POS Section ── */
  .pos-section { padding: 48px 16px; }
  .pos-inner { padding: 0; }
  .pos-title { font-size: clamp(32px, 8vw, 52px); }
  .pos-sub { font-size: 14px; }
  .pos-trust-bar { flex-direction: column; gap: 16px; padding: 20px 16px; }
  .pos-trust-div { width: 60px; height: 1px; margin: 0 auto; }
  .pos-how-steps { flex-direction: column; }
  .pos-how-arrow { transform: rotate(90deg); }
  .pos-how-step { min-width: 0; }
  .pos-objection { flex-direction: column; text-align: center; }

  /* ── Cost vs Benefit ── */
  .cvb-section { padding: 48px 16px; }
  .cvb-inner { padding: 0; }
  .cvb-title { font-size: clamp(32px, 8vw, 52px); }
  .cvb-sub { font-size: 14px; }
  .cvb-sb-row { flex-direction: column; gap: 4px; text-align: left; }
  .cvb-sb-val { font-size: 18px; }

  /* ── Pricing Section ── */
  .prc-section { padding: 48px 16px; }
  .prc-inner { padding: 0; }
  .prc-title { font-size: clamp(32px, 8vw, 52px); }
  .prc-sub { font-size: 14px; }
  .prc-trial-banner { flex-direction: column; padding: 24px 16px; }
  .prc-trial-left, .prc-trial-right { max-width: 100%; }
  .prc-calc { flex-direction: column; gap: 24px; padding: 24px 16px; }
  .prc-calc-results { flex-wrap: wrap; justify-content: center; }
  .prc-card { padding: 24px 20px; }
  .prc-amount { font-size: 36px; }
  .prc-cta-row { padding: 24px 16px; }
  .prc-cta-inner { flex-direction: column; gap: 20px; text-align: center; }
  .prc-cta-btns { flex-direction: column; width: 100%; }
  .prc-cta-btns .btn-primary,
  .prc-cta-btns .btn-secondary { width: 100%; justify-content: center; }
  .prc-fee-grid { grid-template-columns: 1fr; }
  .prc-step { flex-direction: column; gap: 8px; }
  .prc-step-num { align-self: flex-start; }
  .prc-step-head { flex-direction: column; gap: 6px; }
  .prc-step-tags { flex-wrap: wrap; }
  .prc-steps-total { flex-direction: column; gap: 4px; text-align: center; }

  /* ── FAQ ── */
  .faq-section { padding: 48px 16px; }
  .faq-inner { padding: 0; }
  .accordion-question { font-size: 15px; }

  /* ── Closing CTA ── */
  .closing-cta { padding: 48px 16px; }
  .closing-cta h2 { font-size: clamp(28px, 7vw, 48px); }
  .closing-cta p { font-size: 14px; }
  .btn-closing { width: 100%; text-align: center; }
  .closing-email { font-size: 13px; }

  /* ── Footer ── */
  .site-footer { padding: 40px 16px 0; }
  .footer-inner { gap: 28px; }
  .footer-tagline { font-size: 13px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { font-size: 11px; padding: 16px 0; }
}

/* ── Extra small screens (≤ 380px) ── */
@media (max-width: 380px) {
  .topnav { padding: 0 8px; }
  .btn-nav { padding: 7px 10px; font-size: 11px; }
  .logo { font-size: 22px; }
  .headline { font-size: 28px !important; }
  .headline-container { min-height: 120px; }
  .phone { width: 240px; }
  .cred-stat { font-size: 40px; }
}

/* ============================================================
   SHARED UTILITIES FOR NEW SECTIONS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 48px;
}

/* Scroll-triggered fade-in */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }
.fade-in-up.delay-5 { transition-delay: 0.5s; }
.fade-in-up.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   INTERACTIVE DEMO COMPONENT
   ============================================================ */
.demo-section {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  padding: 0 48px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Scene bar */
.demo-scene-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 24px;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 16px 16px 0 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.demo-scene-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.3s;
}
.demo-scene-dot:hover { color: #999; }
.demo-scene-dot .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #555;
  background: transparent;
  transition: all 0.3s;
}
.demo-scene-dot.active { color: var(--orange); }
.demo-scene-dot.active .dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 8px rgba(245,131,31,0.5);
}
.demo-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1a1a1a;
  border-radius: 0 0 0 0;
}
.demo-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* Viewport */
.demo-viewport {
  max-width: 1100px;
  margin: 0 auto;
  background: #111;
  border: 1px solid #222;
  border-top: none;
  border-radius: 0 0 16px 16px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.demo-scene {
  display: none;
  width: 100%;
  min-height: 480px;
  position: relative;
}
.demo-scene.active {
  display: block;
  animation: sceneFadeIn 300ms ease-out;
  will-change: transform, opacity;
}
.demo-scene.exiting {
  display: block;
  animation: sceneFadeOut 200ms ease-in forwards;
  position: absolute;
  inset: 0;
}
@keyframes sceneFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sceneFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ---- Scene 0: The Situation (floor plan) ---- */
.scene-0 { padding: 20px; }

.match-screen {
  width: 380px; height: 90px; margin: 0 auto 12px;
  background: linear-gradient(180deg, #0a1628, #0d1f3a);
  border: 2px solid #1a3a60; border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(30,80,160,0.2);
  position: relative; overflow: hidden;
}
.match-screen::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(60,130,220,0.08), transparent 70%);
}
.match-teams { display: flex; align-items: center; gap: 20px; z-index: 1; }
.match-team { display: flex; align-items: center; gap: 8px; }
.match-flag-img {
  width: 32px; height: 22px; border-radius: 3px; object-fit: cover;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.match-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #ddd; }
.match-score { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #fff; letter-spacing: 4px; }
.match-live-row { display: flex; align-items: center; gap: 5px; margin-top: 4px; z-index: 1; }
.match-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #e03030;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity:1; } 50% { opacity:0.3; } }
.match-live-text { font-size: 10px; font-weight: 700; color: #e03030; letter-spacing: 2px; }
.match-time { font-size: 10px; color: #6a8ab8; margin-left: 8px; letter-spacing: 1px; }

/* Pain alerts */
.pain-alerts { display: flex; justify-content: center; gap: 16px; margin-bottom: 12px; }
.pain-alert {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.pain-alert.visible {
  opacity: 1; transform: translateY(0);
  animation: painPulse 3s ease-in-out infinite;
}
@keyframes painPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}
.pain-alert.critical {
  background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3); color: #ef4444;
}
.pain-alert.warning {
  background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3); color: #f59e0b;
}
.pain-alert.danger {
  background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3); color: #ef4444;
}
.pain-icon { font-size: 16px; }

/* Floor plan (shared by Scene 0 & Scene 1) */
.floor-plan {
  position: relative; width: 900px; height: 340px; margin: 0 auto;
}
.bar-counter {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 48px;
  background: linear-gradient(135deg, #1a1510, #1f1812);
  border: 1px solid #3a2a18; border-radius: 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: #8a7560;
  transition: all 0.5s ease;
}
.bar-counter-label { text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.bar-counter.highlight-danger {
  border-color: #ef4444;
  background: linear-gradient(135deg, #2a1010, #301515);
  box-shadow: 0 0 20px rgba(220,38,38,0.25);
  color: #ef4444;
}
.bar-counter.highlight-danger .bar-counter-label { color: #ef4444; }
.bar-counter.resolved {
  background: linear-gradient(135deg, #0a1a10, #0f2015);
  border-color: var(--green); color: var(--green);
  box-shadow: 0 0 20px rgba(34,197,94,0.2);
}

/* Phone icon next to bar */
.bar-phone-icon {
  position: absolute; top: 10px; left: 50%; transform: translateX(170px);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; opacity: 0; transition: opacity 0.4s, all 0.5s;
  z-index: 6;
}
.bar-phone-icon.visible { opacity: 1; animation: phoneRing 1s ease-in-out 3; }
.bar-phone-icon.ringing { opacity: 1; animation: phoneRing 0.5s ease-in-out 5; }
.bar-phone-icon.answered {
  opacity: 1; background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3); animation: none;
}
@keyframes phoneRing {
  0%, 100% { transform: translateX(170px) rotate(0deg); }
  15% { transform: translateX(170px) rotate(15deg); }
  30% { transform: translateX(170px) rotate(-15deg); }
  45% { transform: translateX(170px) rotate(10deg); }
  60% { transform: translateX(170px) rotate(-10deg); }
  75% { transform: translateX(170px) rotate(0deg); }
}

.bar-stools {
  position: absolute; top: 62px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 16px;
}
.stool {
  width: 8px; height: 8px; border-radius: 50%; background: #444;
  transition: background 0.4s, box-shadow 0.4s;
}
.stool.taken { background: #555; }
.stool.danger { background: #ef4444; box-shadow: 0 0 6px rgba(220,38,38,0.4); }
.stool.resolved { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.4); }

/* Tables */
.fp-table {
  position: absolute; width: 72px; height: 52px;
  background: #151515; border: 1px solid #2a2a2a; border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: all 0.5s ease;
}
.fp-table span {
  font-size: 11px; font-weight: 700; color: #555;
  font-family: 'DM Sans', sans-serif; transition: color 0.5s;
}
.fp-table .dots { display: flex; gap: 3px; margin-top: 4px; }
.fp-table .dots i {
  width: 6px; height: 6px; border-radius: 50%; background: #333;
  display: block; font-style: normal;
  transition: background 0.5s, box-shadow 0.5s;
}
.fp-table.occupied { border-color: #333; background: #181818; }
.fp-table.occupied span { color: #666; }
.fp-table.occupied .dots i { background: #555; }
.fp-table.empty { border-color: #222; }
.fp-table.highlight {
  border-color: var(--orange);
  background: rgba(245,131,31,0.08);
  box-shadow: 0 0 20px rgba(245,131,31,0.15);
}
.fp-table.highlight span { color: var(--orange); font-size: 12px; }
.fp-table.highlight .dots i { background: var(--orange); }
.fp-table.pain-red {
  border-color: rgba(220,38,38,0.5);
  background: rgba(220,38,38,0.08);
  box-shadow: 0 0 15px rgba(220,38,38,0.15);
}
.fp-table.pain-red span { color: #ef4444; }
.fp-table.pain-red .dots i { background: #ef4444; box-shadow: 0 0 4px rgba(220,38,38,0.4); }
.fp-table.connected {
  border-color: rgba(34,197,94,0.5);
  background: rgba(34,197,94,0.08);
  box-shadow: 0 0 15px rgba(34,197,94,0.15);
}
.fp-table.connected span { color: var(--green); }
.fp-table.connected .dots i { background: var(--green); box-shadow: 0 0 4px rgba(34,197,94,0.4); }

/* Table status labels */
.fp-table-label {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
  padding: 2px 8px; border-radius: 4px;
  opacity: 0; transition: opacity 0.4s, all 0.4s;
}
.fp-table-label.visible { opacity: 1; }
.fp-table-label.status-new {
  color: var(--orange);
  background: rgba(245,131,31,0.1); border: 1px solid rgba(245,131,31,0.2);
}
.fp-table-label.status-waiting {
  color: #f59e0b;
  background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3);
  animation: waitingPulse 2s ease-in-out infinite;
}
.fp-table-label.status-connected {
  color: var(--green);
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
}
.fp-table-label.status-ordering {
  color: var(--green);
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
}
@keyframes waitingPulse { 0%, 100% { opacity:1; } 50% { opacity:0.6; } }

/* Walk paths */
.walk-paths {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}
.fp-entrance {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 36px;
  border: 2px dashed #333; border-bottom: none;
  border-radius: 8px 8px 0 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #444; letter-spacing: 2px; text-transform: uppercase;
}

/* Walking dots */
.walk-group {
  position: absolute; display: flex; gap: 6px; z-index: 5;
  opacity: 0; transition: opacity 0.3s;
}
.walk-group.visible { opacity: 1; }
.walk-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px rgba(245,131,31,0.5);
  transition: opacity 0.3s;
}
.walk-group-1 { bottom: 20px; left: 50%; transform: translateX(-30px); }
.walk-group-2 { bottom: 20px; left: 50%; transform: translateX(10px); }
.walk-group-1.seated { bottom: 100px; left: 316px; transform: none; transition: all 1.2s ease-in-out; }
.walk-group-2.seated { bottom: 100px; right: 316px; left: auto; transform: none; transition: all 1.2s ease-in-out; }
.walk-group.arrived .walk-dot { opacity: 0; }
.walk-group.arrived { opacity: 0; transition: opacity 0.6s ease 0.2s; }

/* Solution row (split: problem -> arrow -> AI) */
.solution-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 14px auto 0; max-width: 720px;
}
.solution-box-problem {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.3);
  border-radius: 12px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.solution-box-problem.visible { opacity: 1; transform: translateY(0); }
.solution-box-problem p {
  font-family: 'Bebas Neue', sans-serif; font-size: 17px;
  letter-spacing: 2px; color: #ccc; margin: 0;
}
.problem-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 8px rgba(220,38,38,0.5);
  animation: livePulse 1.5s ease-in-out infinite; flex-shrink: 0;
}
.solution-arrow {
  display: flex; align-items: center; font-size: 20px; color: #555;
  opacity: 0; transition: opacity 0.4s;
}
.solution-arrow.visible { opacity: 1; }
.solution-arrow svg { width: 36px; height: 20px; }
.solution-box-ai {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.solution-box-ai.visible { opacity: 1; transform: translateY(0); }
.solution-box-ai p {
  font-family: 'Bebas Neue', sans-serif; font-size: 17px;
  letter-spacing: 2px; color: var(--orange); font-weight: 700; margin: 0;
}
.ai-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: livePulse 1.5s ease-in-out infinite; flex-shrink: 0;
}

/* Next scene yellow box */
.next-scene-box {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 14px auto 0; padding: 10px 28px;
  background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px; max-width: 300px; cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s, background 0.3s;
}
.next-scene-box.visible { opacity: 1; transform: translateY(0); }
.next-scene-box:hover {
  background: rgba(245,158,11,0.2);
  box-shadow: 0 0 16px rgba(245,158,11,0.15);
}
.next-scene-box p {
  font-family: 'Bebas Neue', sans-serif; font-size: 17px;
  letter-spacing: 2px; color: #f59e0b; margin: 0;
}

/* ---- Scene 1: 360AI In Action ---- */
.scene-1 { padding: 20px; }

/* Status header */
.status-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 14px; position: relative;
}
.status-counters-group {
  display: flex; gap: 16px; justify-content: center; flex: 1;
}
.calls-response { position: absolute; right: 0; top: 0; }
.status-counter {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 700; transition: all 0.5s;
}
.status-counter .count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; margin-right: 2px; transition: all 0.3s;
}
.status-counter.problems {
  background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3); color: #ef4444;
}
.status-counter.connected {
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: var(--green);
}
.status-counter.calls {
  background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3); color: #ef4444;
}
.status-counter.resolved {
  background: rgba(34,197,94,0.08) !important;
  border-color: rgba(34,197,94,0.2) !important;
  color: var(--green) !important;
}

/* Voice prompt / SMS */
.voice-prompt {
  background: #1a1a1a; border: 1px solid #333;
  border-radius: 10px; padding: 8px 12px;
  font-size: 11px; color: #aaa; line-height: 1.4;
  max-width: 220px; z-index: 10;
  opacity: 0; transition: opacity 0.4s; white-space: normal;
}
.voice-prompt.visible { opacity: 1; }
.voice-prompt .highlight { color: var(--green); font-weight: 700; }
.sms-sent {
  display: flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px; padding: 6px 10px;
  font-size: 11px; color: var(--green); font-weight: 600;
  z-index: 10; opacity: 0; transition: opacity 0.4s;
}
.sms-sent.visible { opacity: 1; }

/* QR legend */
.qr-legend {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px; margin-bottom: 14px;
  background: rgba(245,131,31,0.04);
  border: 1px solid rgba(245,131,31,0.12); border-radius: 8px;
}
.qr-legend-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: #151515; border: 1px solid rgba(34,197,94,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.qr-legend-icon svg { width: 20px; height: 20px; }
.qr-legend-text { font-size: 12px; color: #999; line-height: 1.4; }
.qr-legend-text strong { color: var(--orange); font-weight: 700; }

/* QR code icon on tables */
.qr-icon {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px;
  background: #111; border: 1px solid #333; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s, transform 0.3s; z-index: 5;
}
.qr-icon.visible { opacity: 1; }
.qr-icon.scanned {
  border-color: var(--green); box-shadow: 0 0 10px rgba(34,197,94,0.3);
}
.qr-icon svg { width: 18px; height: 18px; }

/* Scan ripple */
.scan-ripple {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--green); opacity: 0; z-index: 4;
}
.scan-ripple.active { animation: scanPulse 0.8s ease-out forwards; }
@keyframes scanPulse {
  0% { transform: translateX(-50%) scale(0.5); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(2); opacity: 0; }
}

/* Chat preview bubble */
.chat-preview {
  position: absolute; top: -52px; left: 50%; transform: translateX(-50%);
  background: #1a1a1a; border: 1px solid #333;
  border-radius: 10px 10px 10px 2px;
  padding: 6px 10px; font-size: 10px; color: #ccc; line-height: 1.3;
  max-width: 140px; white-space: nowrap; z-index: 10;
  opacity: 0; transform: translateX(-50%) translateY(4px);
  transition: opacity 0.4s, transform 0.4s;
}
.chat-preview.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.chat-preview .ai-tag {
  font-size: 8px; font-weight: 700; color: var(--orange);
  letter-spacing: 1px; display: block; margin-bottom: 2px;
}

/* Result banner (Scene 1) */
.result-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 14px auto 0; padding: 12px 28px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px; max-width: 600px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.result-banner.visible { opacity: 1; transform: translateY(0); }
.result-banner p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 2px; color: var(--green); margin: 0;
}
.result-banner .count-highlight { color: var(--orange); font-size: 20px; }
.result-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: livePulse 1.5s ease-in-out infinite; flex-shrink: 0;
}

/* ---- Scene 3: The Close additions ---- */
.dash-table.done {
  border-color: var(--green); color: var(--green);
  background: rgba(34,197,94,0.08); transition: all 0.3s;
}
.chat-msg .review-link {
  display: inline-block; margin-top: 8px;
  padding: 6px 14px; border-radius: 8px;
  background: rgba(245,200,66,0.15); border: 1px solid rgba(245,200,66,0.3);
  color: #F5C842; font-weight: 700; font-size: 13px;
  text-decoration: none; cursor: pointer; transition: all 0.3s;
}
.chat-msg .review-link:hover {
  background: rgba(245,200,66,0.25);
  box-shadow: 0 0 12px rgba(245,200,66,0.2);
}

/* Star celebration animation */
@keyframes starCelebrate {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.dash-event.star-celebration {
  animation: starCelebrate 0.6s ease-out, eventSlideIn 0.3s ease-out;
  background: rgba(245,200,66,0.15); font-size: 16px; text-align: center;
}

/* Final summary banner (Scene 3) */
.final-summary {
  padding: 16px 24px; margin: 0;
  background: rgba(34,197,94,0.06);
  border-top: 1px solid rgba(34,197,94,0.15);
  display: flex; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; transition: opacity 0.6s;
}
.final-summary.visible { opacity: 1; }
.summary-stat { text-align: center; }
.summary-stat .val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--orange); letter-spacing: 1px;
}
.summary-stat .label { font-size: 11px; color: #666; letter-spacing: 0.5px; margin-top: 2px; }
.summary-divider { width: 1px; height: 36px; background: #222; }
.summary-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px; color: var(--green);
}

/* Typing indicator */
.typing-dots {
  display: flex; gap: 4px; align-self: flex-start;
  padding: 12px 16px; background: #1a1a1a;
  border-radius: 14px; border-bottom-left-radius: 4px;
}
.typing-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: #555;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Scene dot done state */
.demo-scene-dot.done { color: var(--green); }
.demo-scene-dot.done .dot { border-color: var(--green); background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5); }

/* Demo controls */
.demo-controls {
  max-width: 1100px;
  margin: 12px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.demo-autoplay-label {
  font-size: 12px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}
.demo-autoplay-label:hover { color: #888; }
.demo-takeover-btn {
  background: var(--orange);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.demo-takeover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245,131,31,0.3);
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  .demo-scene.active { animation: none; }
  .pain-alert.visible { animation: none; }
  .match-live-dot { animation: none; }
  .problem-dot, .ai-dot, .result-dot { animation: none; }
  .pain-alert { opacity: 1; transform: none; }
  .solution-box-problem, .solution-box-ai { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .demo-section { padding: 0 20px 32px; }
  .floor-plan { width: 100%; }
  .fp-table { width: 60px; height: 44px; }
}
@media (max-width: 768px) {
  .demo-scene-bar { gap: 12px; padding: 12px 16px; flex-wrap: wrap; }
  .demo-scene-dot { font-size: 11px; }
  .match-screen { width: 100%; max-width: 360px; }
  .pain-alerts { flex-direction: column; align-items: center; gap: 8px; }
  .floor-plan {
    display: block;
    width: 900px;
    height: 340px;
    transform: scale(0.38);
    transform-origin: top left;
    margin: 0 0 -190px;
    position: relative;
    left: 50%;
    margin-left: -171px;
    overflow: visible;
  }
  .solution-row { flex-direction: column; gap: 8px; }
  .demo-controls { flex-direction: column; gap: 12px; align-items: center; }
  .final-summary { flex-wrap: wrap; gap: 16px; }
  .status-header { flex-direction: column; align-items: center; }
  .status-counters-group { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .status-counter { font-size: 11px; padding: 5px 10px; }
  .status-counter .count { font-size: 16px; }
  .calls-response { position: static; }
}

/* ---- Split-screen scenes (1, 2, 3) ---- */
.scene-split {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.scene-split.active {
  display: grid;
  animation: sceneFadeIn 300ms ease-out;
}

/* Chat panel */
.demo-chat-panel {
  background: #0a0a0a;
  border-right: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #1a1a1a;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-header-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.chat-header-status {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}
.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}
.chat-messages {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  animation: msgFadeIn 0.3s ease-out forwards;
}
@keyframes msgFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.guest {
  background: var(--orange);
  color: #000;
  font-weight: 500;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.ai {
  background: #1a1a1a;
  color: #ddd;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg .ai-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.chat-input-row {
  display: flex;
  padding: 12px 16px;
  border-top: 1px solid #1a1a1a;
  gap: 8px;
}
.chat-input {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.chat-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 8px rgba(245,131,31,0.2);
}
.chat-input:disabled {
  opacity: 0.5;
  cursor: default;
}
.chat-input.takeover-active {
  opacity: 1;
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(245,131,31,0.3);
}
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.chat-send:hover { transform: scale(1.1); }

/* Dashboard panel */
.demo-dashboard-panel {
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #1a1a1a;
}
.dash-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}
.dash-live {
  font-size: 11px;
  color: #22C55E;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dash-match-bar {
  padding: 8px 20px;
  background: rgba(245,131,31,0.06);
  border-bottom: 1px solid #1a1a1a;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
.dash-table-grid {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  flex-wrap: wrap;
}
.dash-table {
  padding: 4px 10px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #555;
}
.dash-table.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,131,31,0.08);
}
.dash-events {
  flex: 1;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.dash-event {
  padding: 10px 14px;
  background: #111;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  font-size: 13px;
  color: #ccc;
  border-left: 3px solid #333;
  opacity: 0;
  transform: translateX(20px);
  animation: eventSlideIn 0.3s ease-out forwards;
}
@keyframes eventSlideIn {
  to { opacity: 1; transform: translateX(0); }
}
.dash-event.green { border-left-color: #22C55E; }
.dash-event.orange { border-left-color: var(--orange); }
.dash-event.blue { border-left-color: #3b82f6; }
.dash-event.gold { border-left-color: #F5C842; }
.dash-event.flash-green { background: rgba(34,197,94,0.08); }
.dash-event.flash-orange { background: rgba(245,131,31,0.08); }
.dash-event.flash-blue { background: rgba(59,130,246,0.08); }
.dash-event.flash-gold { background: rgba(245,200,66,0.12); }
.dash-stats {
  display: flex;
  gap: 16px;
  padding: 12px 20px;
  border-top: 1px solid #1a1a1a;
}
.dash-stat {
  font-size: 12px;
  color: #666;
}
.dash-stat-val {
  color: var(--orange);
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  margin-right: 4px;
}

/* Responsive split-screen */
@media (max-width: 768px) {
  .scene-split.active {
    grid-template-columns: 1fr;
  }
  .demo-chat-panel {
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    min-height: 320px;
  }
  .demo-dashboard-panel { min-height: 280px; }
}

/* ============================================================
   SECTION 2 — FEATURES
   ============================================================ */
.features {
  position: relative;
  z-index: 1;
  background: #0f0f0f;
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid transparent;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(245,131,31,0), rgba(245,131,31,0.7), rgba(245,131,31,0));
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  border-color: rgba(245,131,31,0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,131,31,0.08);
}
.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248,248,248,0.55);
  font-weight: 400;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .features { padding: 72px 20px; }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-card { padding: 28px 24px; }
}

/* ============================================================
   SECTION 3 — WORLD CUP CTA BLOCK
   ============================================================ */
.worldcup-cta {
  position: relative;
  z-index: 1;
  background: #050505;
  padding: 120px 48px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
/* Radial glow from center-top */
.worldcup-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center top, rgba(245,131,31,0.18) 0%, rgba(245,131,31,0.06) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle grain overlay */
.worldcup-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.worldcup-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.wc-badge {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid rgba(245,200,66,0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F5C842;
  background: rgba(245,200,66,0.07);
  margin-bottom: 40px;
}

.wc-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.wc-headline .wc-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.wc-headline .wc-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.wc-headline .wc-line:nth-child(2) { transition-delay: 0.12s; }
.wc-headline .wc-line:nth-child(3) {
  transition-delay: 0.24s;
  color: var(--orange);
}

.wc-subtext {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(248,248,248,0.6);
  max-width: 640px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.wc-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-wc-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 44px;
  background: var(--orange);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.btn-wc-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-wc-primary:hover::before { transform: translateX(100%); }
.btn-wc-primary:hover {
  background: #ffa04d;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 48px rgba(245,131,31,0.5), 0 0 100px rgba(245,131,31,0.15);
}

.btn-wc-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  border: 1.5px solid rgba(248,248,248,0.3);
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-wc-outline:hover {
  border-color: rgba(248,248,248,0.65);
  background: rgba(248,248,248,0.06);
  transform: scale(1.03);
}

.wc-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(248,248,248,0.4);
  font-weight: 500;
}
.wc-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wc-trust-row .check {
  color: var(--green);
  font-size: 14px;
}

@media (max-width: 640px) {
  .worldcup-cta { padding: 80px 20px; }
  .wc-cta-row { flex-direction: column; width: 100%; }
  .btn-wc-primary, .btn-wc-outline { width: 100%; justify-content: center; }
  .wc-trust-row { flex-direction: column; gap: 10px; }
}

/* ============================================================
   SECTION 4 — FAQ / ACCORDION
   ============================================================ */
.faq-section {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.accordion-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  text-align: left;
  color: var(--white);
  transition: color 0.2s;
}
.accordion-trigger:hover {
  color: rgba(248,248,248,0.8);
}
.accordion-trigger.open {
  color: var(--orange);
}

.accordion-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}

.accordion-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  user-select: none;
}
.accordion-trigger.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion-body-inner {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(248,248,248,0.58);
  font-weight: 400;
  max-width: 680px;
}

@media (max-width: 640px) {
  .faq-section { padding: 72px 20px; }
  .accordion-question { font-size: 15px; }
}

/* ============================================================
   SECTION 5 — CLOSING CTA + FOOTER
   ============================================================ */

/* Closing CTA */
.closing-cta {
  position: relative;
  z-index: 1;
  background: #060606;
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(245,131,31,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.closing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.closing-cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.closing-cta-headline .highlight {
  color: var(--orange);
}
.closing-cta-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(248,248,248,0.55);
  max-width: 600px;
  margin: 0 auto 44px;
}
.btn-closing {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 52px;
  background: var(--orange);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.btn-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-closing:hover::before { transform: translateX(100%); }
.btn-closing:hover {
  background: #ffa04d;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 56px rgba(245,131,31,0.55), 0 0 120px rgba(245,131,31,0.15);
}
.closing-email {
  font-size: 13px;
  color: rgba(248,248,248,0.35);
  letter-spacing: 0.2px;
}
.closing-email a {
  color: rgba(245,131,31,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.closing-email a:hover {
  color: var(--orange);
}

@media (max-width: 640px) {
  .closing-cta { padding: 80px 20px; }
  .btn-closing { width: 100%; justify-content: center; padding: 18px 32px; }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr auto;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248,248,248,0.35);
  max-width: 240px;
}

.footer-col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,248,248,0.3);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(248,248,248,0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-links a:hover {
  color: rgba(248,248,248,0.85);
}

.footer-badge-col {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.wc-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(245,200,66,0.35);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5C842;
  background: rgba(245,200,66,0.06);
  white-space: nowrap;
}
.wc-partner-badge .wc-icon {
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(248,248,248,0.2);
  letter-spacing: 0.3px;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-badge-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer { padding: 56px 20px 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-badge-col { grid-column: 1 / -1; }
}
@media (max-width: 400px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.team-embed-stub {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  text-align: center;
  background: var(--black);
}
.team-embed-inner { max-width: 600px; margin: 0 auto; }
.team-embed-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.team-embed-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.team-embed-sub {
  font-size: 17px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 32px;
}
.team-embed-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.team-embed-cta:hover { background: var(--orange-dark); }

/* ── Pricing Section ── */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  background: #0a0a0a;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}
.pricing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 17px;
  color: #888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}

/* ── Tier Card Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

.ptier-card {
  position: relative;
  border-radius: 18px;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.ptier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

/* Popular card */
.ptier-card--popular {
  border: 2px solid var(--orange);
  box-shadow: 0 0 30px rgba(245,131,31,0.2), 0 0 60px rgba(245,131,31,0.08);
  background: linear-gradient(170deg, rgba(245,131,31,0.1) 0%, rgba(255,255,255,0.03) 100%);
  z-index: 2;
}
@media (min-width: 1025px) {
  .ptier-card--popular { margin-top: -20px; padding-bottom: 28px; }
}
.ptier-card--popular:hover {
  box-shadow: 0 0 40px rgba(245,131,31,0.3), 0 16px 50px rgba(245,131,31,0.15);
}

/* Best value card */
.ptier-card--bestvalue {
  border: 1.5px solid rgba(26,58,143,0.4);
  background: linear-gradient(170deg, rgba(26,58,143,0.1) 0%, rgba(255,255,255,0.03) 100%);
}
.ptier-card--bestvalue:hover {
  box-shadow: 0 12px 36px rgba(26,58,143,0.2);
}

/* Accent bar */
.ptier-accent {
  height: 4px;
  margin: 0 -20px;
  flex-shrink: 0;
}

/* Tags */
.ptier-popular-tag, .ptier-bestvalue-tag {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  color: #fff;
}
.ptier-popular-tag {
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(245,131,31,0.3);
}
.ptier-bestvalue-tag {
  background: #1A3A8F;
  box-shadow: 0 4px 12px rgba(26,58,143,0.3);
}

/* Head */
.ptier-head { padding-top: 18px; }
.ptier-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ptier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 5px;
}
.ptier-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* Price */
.ptier-price {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ptier-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.ptier-per {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.ptier-setup {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

/* Features */
.ptier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ptier-feat-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ptier-feat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.ptier-feat-yes, .ptier-feat-no {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.35;
}
.ptier-feat-yes { color: rgba(255,255,255,0.85); }
.ptier-feat-yes .ptier-icon { color: #4ade80; }
.ptier-feat-no { color: rgba(255,255,255,0.25); }
.ptier-feat-no .ptier-icon { color: rgba(255,255,255,0.15); }
.ptier-icon {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  font-size: 13px;
}
.ptier-new {
  display: inline-flex;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, #F5831F, #e06b10);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: auto;
  animation: newPulse 2s ease-in-out infinite;
}
@keyframes newPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Add-on bonus */
.ptier-addon-bonus {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(245,131,31,0.1));
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #fbbf24;
}
.ptier-addon-star {
  font-size: 14px;
  color: #fbbf24;
}

/* CTA buttons */
.ptier-btn {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  text-decoration: none;
  margin-top: auto;
}
.ptier-btn--primary {
  background: linear-gradient(135deg, #F5831F, #e06b10);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,131,31,0.3);
}
.ptier-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,131,31,0.4);
}
.ptier-btn--value {
  background: linear-gradient(135deg, #1A3A8F, #143070);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,58,143,0.3);
}
.ptier-btn--value:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,143,0.4);
}
.ptier-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.ptier-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

/* Disclosure & Offer */
.pricing-disclosure {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.pricing-offer {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(245,131,31,0.35);
  background: rgba(245,131,31,0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pricing-offer-badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245,131,31,0.92);
  color: #0A0A0A;
  white-space: nowrap;
}
.pricing-offer-text {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

/* Add-ons */
.pricing-addons {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.pricing-addons-head { margin-bottom: 16px; }
.pricing-addons-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-addons-sub {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.55;
}
.pricing-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .pricing-addons-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pricing-addons-grid { grid-template-columns: 1fr; }
}
.pricing-addon {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pricing-addon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.pricing-addon--rec {
  border-color: rgba(120,170,255,0.25);
  background: rgba(120,170,255,0.08);
}
.pricing-addon--onetime {
  grid-column: span 3;
  border-color: rgba(245,131,31,0.28);
  background: rgba(245,131,31,0.06);
}
@media (max-width: 768px) {
  .pricing-addon--onetime { grid-column: span 2; }
}
@media (max-width: 480px) {
  .pricing-addon--onetime { grid-column: span 1; }
}
.pricing-addon-rec-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(120,170,255,0.16);
  border: 1px solid rgba(120,170,255,0.28);
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.pricing-addon-name {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.pricing-addon-price {
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════
   POS COMPATIBILITY SECTION
   ══════════════════════════════════════════════════════ */
.pos-section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.pos-inner { max-width: 1100px; margin: 0 auto; }

.pos-header { text-align: center; margin-bottom: 48px; }
.pos-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.pos-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.pos-title-highlight { color: var(--green); }
.pos-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.pos-sub strong { color: var(--white); }

.pos-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.pos-trust-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 8px 16px;
}
.pos-trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.pos-trust-num span { font-size: 22px; color: var(--green); }
.pos-trust-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(248,248,248,0.35);
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.pos-trust-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .pos-trust-div { display: none; }
  .pos-trust-stat { min-width: 50%; }
}

.pos-grid-wrap { margin-bottom: 48px; }
.pos-grid-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,248,248,0.25);
  margin-bottom: 16px;
  text-align: center;
}
.pos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .pos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pos-grid { grid-template-columns: 1fr; } }

.pos-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pos-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.14);
}
.pos-card--featured {
  border-color: rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.04);
}
.pos-card--featured:hover {
  border-color: rgba(34,197,94,0.35);
  box-shadow: 0 10px 30px rgba(34,197,94,0.08);
}
.pos-card--more {
  border-color: rgba(245,131,31,0.2);
  background: rgba(245,131,31,0.04);
}
.pos-card--more:hover {
  border-color: rgba(245,131,31,0.35);
  box-shadow: 0 10px 30px rgba(245,131,31,0.08);
}
.pos-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.pos-card-dot--green { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.pos-card-dot--orange { background: var(--orange); box-shadow: 0 0 8px rgba(245,131,31,0.5); }
.pos-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.pos-card-desc {
  font-size: 12px;
  color: rgba(248,248,248,0.45);
  line-height: 1.4;
}
.pos-card-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 50px;
  padding: 2px 10px;
  margin-top: 8px;
  width: fit-content;
}
.pos-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  transition: color .15s;
}
.pos-card-link:hover { color: #ffa04d; }

.pos-how {
  background: var(--gray-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 32px;
}
.pos-how-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  text-align: center;
}
.pos-how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: start;
}
@media (max-width: 900px) {
  .pos-how-steps { grid-template-columns: 1fr; }
  .pos-how-arrow { display: none; }
}
.pos-how-step { display: flex; flex-direction: column; gap: 8px; }
.pos-how-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245,131,31,0.12);
  border: 1px solid rgba(245,131,31,0.3);
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pos-how-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.pos-how-desc {
  font-size: 12px;
  color: rgba(248,248,248,0.5);
  line-height: 1.6;
}
.pos-how-arrow {
  font-size: 20px;
  color: rgba(248,248,248,0.2);
  text-align: center;
  padding-top: 6px;
  align-self: center;
}

.pos-objection {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--orange);
  border-radius: 0 16px 16px 0;
  padding: 24px 28px;
}
.pos-obj-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.pos-obj-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(248,248,248,0.5);
  margin-bottom: 8px;
  font-style: italic;
}
.pos-obj-text {
  font-size: 14px;
  color: rgba(248,248,248,0.65);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .pos-objection { flex-direction: column; gap: 12px; }
  .pos-how { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════
   COST VS BENEFIT SECTION
   ══════════════════════════════════════════════════════ */
.cvb-section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  background: #0d0d0d;
}
.cvb-inner { max-width: 960px; margin: 0 auto; }

.cvb-header { text-align: center; margin-bottom: 48px; }
.cvb-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.cvb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.cvb-sub {
  font-size: 17px;
  color: #888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.cvb-assume-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.cvb-pill {
  font-size: 12px;
  color: #888;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 5px 14px;
}
.cvb-pill strong { color: var(--white); font-weight: 600; }

.cvb-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
  margin-top: 40px;
}

.cvb-anchor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 640px) { .cvb-anchor-grid { grid-template-columns: 1fr; } }

.cvb-anchor {
  background: var(--gray-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
}
.cvb-anchor--bad { border-color: rgba(239,68,68,0.25); }
.cvb-anchor--good { border-color: rgba(34,197,94,0.25); }
.cvb-anchor-flag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cvb-anchor-flag--red { color: #ef4444; }
.cvb-anchor-flag--green { color: var(--green); }
.cvb-anchor-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.cvb-anchor-num--red { color: #ef4444; }
.cvb-anchor-num--green { color: var(--green); }
.cvb-anchor-note { font-size: 12px; color: #666; margin-bottom: 14px; }
.cvb-anchor-rows { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; }
.cvb-ar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 4px 0;
  color: #666;
}
.cvb-ar span:last-child { color: var(--white); font-weight: 500; }
.cvb-ar--total { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 4px; padding-top: 8px; font-weight: 600; }
.cvb-ar--total span:first-child { color: #aaa; }

.cvb-savings-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 8px;
}
@media (max-width: 640px) { .cvb-savings-bar { flex-direction: column; align-items: flex-start; } }
.cvb-savings-label { font-size: 14px; color: #888; }
.cvb-savings-sub { font-size: 12px; color: #555; margin-top: 3px; }
.cvb-savings-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--green);
  white-space: nowrap;
  line-height: 1;
}
.cvb-savings-val span { font-size: 20px; }

.cvb-lift-card {
  background: var(--gray-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 8px;
}
.cvb-lift-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cvb-lift-title { font-size: 15px; font-weight: 600; color: var(--white); }
.cvb-lift-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
}
.cvb-lift-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.cvb-lc-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.cvb-lc-box--green { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.04); }
.cvb-lc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.cvb-lc-num--green { color: var(--green); }
.cvb-lc-sub { font-size: 11px; color: #666; margin-top: 4px; line-height: 1.5; }
.cvb-lc-arrow { font-size: 22px; color: #444; text-align: center; }
.cvb-lift-math {
  font-size: 12px;
  color: #666;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 12px 14px;
  line-height: 1.8;
}
.cvb-lift-math strong { color: #aaa; }

.cvb-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.cvb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 540px;
}
.cvb-th {
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: right;
}
.cvb-th--left { text-align: left; }
.cvb-tr-section td {
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cvb-td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--white);
  text-align: right;
}
.cvb-td--label { color: var(--white); text-align: left; }
.cvb-td--red { color: #ef4444; }
.cvb-td--green { color: var(--green); font-weight: 500; }
.cvb-td--bold { font-weight: 700; }
.cvb-tr-total td {
  padding: 16px 14px 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: none;
  text-align: right;
}
.cvb-tr-total td:first-child { text-align: left; color: #aaa; }

.cvb-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (max-width: 640px) { .cvb-roi-grid { grid-template-columns: 1fr; } }
.cvb-roi-card {
  background: var(--gray-card);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}
.cvb-roi-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 1px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.cvb-roi-label { font-size: 12px; color: #666; line-height: 1.5; }

.cvb-pitch {
  border-left: 3px solid var(--orange);
  background: rgba(245,131,31,0.04);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-bottom: 20px;
}
.cvb-pitch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.cvb-pitch-text {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  font-style: italic;
}
.cvb-dagger {
  font-size: 11px;
  color: #444;
  line-height: 1.7;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION (new)
   ══════════════════════════════════════════════════════ */
.prc-section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.prc-inner { max-width: 1100px; margin: 0 auto; }

.prc-header { text-align: center; margin-bottom: 48px; }
.prc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.prc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.prc-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

.prc-trial-banner {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(245,131,31,0.1) 0%, rgba(245,131,31,0.04) 100%);
  border: 1px solid rgba(245,131,31,0.35);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 32px;
  overflow: hidden;
  flex-wrap: wrap;
}
.prc-trial-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,131,31,0.12), transparent 70%);
  pointer-events: none;
}
.prc-trial-left { flex: 1; min-width: 240px; }
.prc-trial-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--orange);
  color: #000;
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.prc-trial-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.prc-trial-price { color: var(--orange); }
.prc-trial-desc {
  font-size: 14px;
  color: rgba(248,248,248,0.65);
  line-height: 1.65;
  max-width: 380px;
}
.prc-trial-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex-shrink: 0;
}
.prc-trial-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.prc-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 4px 12px;
  color: rgba(248,248,248,0.7);
}
.prc-tag--green {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.25);
  color: var(--green);
}
.prc-trial-note {
  font-size: 11px;
  color: rgba(248,248,248,0.35);
  font-style: italic;
}
.prc-trial-btn { font-size: 14px; padding: 12px 28px; }

.prc-calc {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.prc-calc-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.prc-calc-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(248,248,248,0.6);
  white-space: nowrap;
}
.prc-calc-input-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  overflow: hidden;
}
.prc-calc-stepper {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: rgba(248,248,248,0.7);
  font-size: 18px;
  cursor: pointer;
  transition: background .15s;
  font-family: 'DM Sans', sans-serif;
}
.prc-calc-stepper:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.prc-calc-input {
  width: 52px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  outline: none;
  -moz-appearance: textfield;
}
.prc-calc-input::-webkit-inner-spin-button,
.prc-calc-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.prc-calc-results {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.prc-calc-result { text-align: center; padding: 0 20px; }
.prc-calc-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.prc-calc-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1;
  transition: all .2s;
}
.prc-calc-val--green { color: var(--green); }
.prc-calc-val--orange { color: var(--orange); }
.prc-calc-val--muted { color: rgba(248,248,248,0.3); font-size: 16px; padding-top: 5px; }
.prc-calc-label2 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(248,248,248,0.3);
  margin-top: 4px;
}

.prc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
  align-items: start;
}
@media (max-width: 900px) { .prc-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.prc-card {
  position: relative;
  border-radius: 18px;
  padding: 0 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(170deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.prc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.prc-card--popular {
  border: 2px solid var(--orange);
  background: linear-gradient(170deg, rgba(245,131,31,0.1) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 0 30px rgba(245,131,31,0.18), 0 0 60px rgba(245,131,31,0.06);
  margin-top: -16px;
}
.prc-card--popular:hover { box-shadow: 0 0 40px rgba(245,131,31,0.28), 0 18px 50px rgba(245,131,31,0.15); }
.prc-card--enterprise {
  border: 1px solid rgba(99,102,241,0.3);
  background: linear-gradient(170deg, rgba(99,102,241,0.08) 0%, rgba(255,255,255,0.01) 100%);
}

.prc-popular-tag {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--orange);
  color: #000;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,131,31,0.35);
}
.prc-card-accent { height: 4px; margin: 0 -22px; flex-shrink: 0; }
.prc-card-accent--green  { background: linear-gradient(90deg, var(--green), #16a34a); }
.prc-card-accent--orange { background: linear-gradient(90deg, var(--orange), var(--orange-dark)); }
.prc-card-accent--blue   { background: linear-gradient(90deg, #6366f1, #4f46e5); }

.prc-card-head { padding-top: 20px; }
.prc-tier-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.prc-tier-label--green  { color: var(--green); }
.prc-tier-label--orange { color: var(--orange); }
.prc-tier-label--blue   { color: #818cf8; }
.prc-tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 5px;
}
.prc-tier-tagline { font-size: 12px; color: rgba(248,248,248,0.5); line-height: 1.5; }

.prc-card-price {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prc-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.prc-amount--muted { color: rgba(248,248,248,0.35); font-size: 28px; }
.prc-per { display: block; font-size: 12px; color: rgba(248,248,248,0.4); margin-top: 2px; }
.prc-roi {
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
}
.prc-roi--green  { background: rgba(34,197,94,0.1);  color: var(--green); }
.prc-roi--orange { background: rgba(245,131,31,0.1); color: var(--orange); }
.prc-roi--blue   { background: rgba(99,102,241,0.1); color: #818cf8; }

.prc-card-anchor {
  font-size: 11px;
  color: rgba(248,248,248,0.4);
  line-height: 1.55;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.prc-card-anchor strong { color: rgba(248,248,248,0.75); }

.prc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prc-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.4; }
.prc-feat--yes { color: rgba(248,248,248,0.85); }
.prc-feat--no  { color: rgba(248,248,248,0.22); }
.prc-feat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  background: rgba(255,255,255,0.12);
}
.prc-feat-dot--green  { background: var(--green);  box-shadow: 0 0 6px rgba(34,197,94,0.4); }
.prc-feat-dot--orange { background: var(--orange); }
.prc-feat-dot--blue   { background: #818cf8; }
.prc-feat--new { align-items: center; }
.prc-new-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  animation: newPulse 2s ease-in-out infinite;
}
@keyframes newPulse { 0%,100%{opacity:1}50%{opacity:.65} }

.prc-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  margin-top: auto;
}
.prc-btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,131,31,0.3);
}
.prc-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,131,31,0.45); }
.prc-btn--ghost {
  background: transparent;
  color: rgba(248,248,248,0.6);
  border: 1px solid rgba(255,255,255,0.18);
}
.prc-btn--ghost:hover { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.prc-btn--enterprise {
  background: rgba(99,102,241,0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.3);
}
.prc-btn--enterprise:hover { background: rgba(99,102,241,0.22); transform: translateY(-2px); }

.prc-setup-block {
  background: var(--gray-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 48px;
}
@media (max-width: 640px) { .prc-setup-block { padding: 32px 20px; } }
.prc-setup-header { text-align: center; margin-bottom: 40px; }
.prc-setup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 8px;
}
.prc-setup-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.prc-fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 640px) { .prc-fee-grid { grid-template-columns: 1fr; } }
.prc-fee-card {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  position: relative;
}
.prc-fee-card--featured {
  border: 2px solid var(--green);
  background: rgba(34,197,94,0.04);
  box-shadow: 0 0 24px rgba(34,197,94,0.1);
}
.prc-fee-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--green);
  color: #000;
  border-radius: 50px;
  padding: 3px 14px;
  white-space: nowrap;
}
.prc-fee-flag { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.prc-fee-flag--gray  { color: rgba(248,248,248,0.4); }
.prc-fee-flag--green { color: var(--green); }
.prc-fee-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.prc-fee-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  line-height: 1;
}
.prc-fee-amount--red   { color: #ef4444; }
.prc-fee-amount--green { color: var(--green); }
.prc-fee-label { font-size: 13px; color: var(--gray); }
.prc-fee-desc {
  font-size: 13px;
  color: rgba(248,248,248,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prc-fee-rows { display: flex; flex-direction: column; margin-bottom: 12px; }
.prc-fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(248,248,248,0.45);
}
.prc-fee-row:last-child { border-bottom: none; }
.prc-fee-row span:last-child { color: rgba(248,248,248,0.8); font-weight: 500; }
.prc-fee-val--red   { color: #ef4444 !important; }
.prc-fee-val--green { color: var(--green) !important; }
.prc-fee-math { font-size: 12px; color: rgba(248,248,248,0.35); font-style: italic; }
.prc-fee-math strong { color: rgba(248,248,248,0.65); }
.prc-fee-savings {
  font-size: 12px;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.55;
}

.prc-steps-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
}
.prc-steps-intro { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.prc-steps-intro-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.prc-steps-intro-sub { font-size: 13px; color: var(--gray); }
.prc-steps { display: flex; flex-direction: column; }
.prc-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.prc-step--last { border-bottom: none; }
.prc-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: rgba(248,248,248,0.2);
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}
.prc-step-num--green { color: var(--green); }
.prc-step-body { flex: 1; }
.prc-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.prc-step-title { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.3; }
.prc-step-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; flex-shrink: 0; }
.prc-step-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 3px 10px;
  border: 1px solid;
}
.prc-step-tag--tech  { background: rgba(99,102,241,0.08);  border-color: rgba(99,102,241,0.25);  color: #a5b4fc; }
.prc-step-tag--human { background: rgba(245,131,31,0.08);  border-color: rgba(245,131,31,0.25);  color: var(--orange); }
.prc-step-tag--live  { background: rgba(34,197,94,0.08);   border-color: rgba(34,197,94,0.25);   color: var(--green); }
.prc-step-time {
  font-size: 10px;
  font-weight: 600;
  color: rgba(248,248,248,0.3);
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  padding: 3px 10px;
  white-space: nowrap;
}
.prc-step-desc { font-size: 13px; color: rgba(248,248,248,0.5); line-height: 1.65; }

/* Deliverect logo chips (step 02) */
.prc-step-deliverect-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.psd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(248,248,248,0.3);
  white-space: nowrap;
}
.psd-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.psd-chip {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 3px 12px;
  color: rgba(248,248,248,0.6);
  transition: all .15s;
}
.psd-chip:hover { background: rgba(255,255,255,0.09); color: var(--white); border-color: rgba(255,255,255,0.25); }
.psd-chip--more {
  background: rgba(245,131,31,0.08);
  border-color: rgba(245,131,31,0.25);
  color: var(--orange);
}

.prc-steps-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.prc-steps-total { display: flex; justify-content: space-between; font-size: 12px; color: rgba(248,248,248,0.4); }
.prc-steps-total-val { color: var(--white); font-weight: 600; }
.prc-steps-total-val--green { color: var(--green); }

.prc-cta-row {
  background: linear-gradient(135deg, rgba(245,131,31,0.08) 0%, rgba(245,131,31,0.03) 100%);
  border: 1px solid rgba(245,131,31,0.2);
  border-radius: 20px;
  padding: 36px 40px;
}
.prc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.prc-cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}
.prc-cta-sub { font-size: 14px; color: var(--gray); }
.prc-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

@media (max-width: 768px) {
  .prc-trial-banner { flex-direction: column; }
  .prc-trial-right { width: 100%; }
  .prc-calc { flex-direction: column; align-items: flex-start; }
  .prc-calc-results { width: 100%; justify-content: flex-start; }
  .prc-cta-inner { flex-direction: column; }
  .prc-setup-block { padding: 28px 20px; }
}


/* ═══════════════════════════════════════════════════════
   YOUR TEAM, AMPLIFIED SECTION
   ══════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0A0A0A;
  --orange: #F5831F;
  --orange-dark: #D4700F;
  --white: #F8F8F8;
  --green: #22C55E;
  --amber: #F59E0B;
  --gray: #888;
  --gray-dark: #1A1A1A;
  --gray-card: #141414;
  --red: #ef4444;
  --red-dark: rgba(220,38,38,0.12);
  --red-border: rgba(220,38,38,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Ambient Glow ── */
body::after {
  content: '';
  position: fixed;
  top: -10%;
  left: -15%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(245,131,31,0.07) 0%, rgba(245,131,31,0.03) 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Top Nav ── */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.topnav.scrolled {
  background: rgba(10,10,10,0.95);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(248,248,248,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--orange);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  border: none;
  cursor: pointer;
}
.btn-nav:hover {
  background: #ffaa55;
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(245,131,31,0.4);
}

/* ── Back Link ── */
.back-link-bar {
  margin-top: 64px;
  position: relative;
  z-index: 1;
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.back-link-bar a {
  color: var(--orange);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.back-link-bar a:hover { color: #ffaa55; }

/* ── Section Scaffold ── */
.amplified-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
  background: var(--black);
}
.amplified-inner {
  max-width: 960px;
  margin: 0 auto;
}
.amplified-header {
  text-align: center;
  margin-bottom: 48px;
}
.amplified-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.amplified-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.amplified-sub {
  font-size: 17px;
  color: #888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.amp-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.amp-tab {
  padding: 10px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #888;
  transition: all .2s ease;
  letter-spacing: 0.5px;
}
.amp-tab:hover {
  border-color: rgba(245,131,31,0.4);
  color: var(--white);
}
.amp-tab--active {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
  box-shadow: 0 0 20px rgba(245,131,31,0.25);
}
.amp-panel { display: none; }
.amp-panel--active { display: block; }
.amp-panel-intro { margin-bottom: 20px; }
.amp-panel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 6px;
}
.amp-panel-sub {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
.amp-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.amp-leg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}
.amp-leg::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.amp-leg--green::before { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.amp-leg--orange::before { background: var(--orange); }
.amp-leg--gray::before { background: #444; }
.amp-task-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .amp-task-grid { grid-template-columns: 1fr; }
}
.amp-task {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 12px 14px;
  transition: transform .15s;
}
.amp-task:hover { transform: translateY(-1px); }
.amp-task--ai {
  background: rgba(34,197,94,0.05);
  border-color: rgba(34,197,94,0.2);
}
.amp-task--partial {
  background: rgba(245,131,31,0.05);
  border-color: rgba(245,131,31,0.2);
}
.amp-task--manual {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
  opacity: 0.6;
}
.amp-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.amp-badge--ai { background: var(--green); color: #000; }
.amp-badge--partial { background: var(--orange); color: #000; }
.amp-badge--manual { background: #222; color: #666; border: 1px solid #333; }
.amp-task-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2px;
}
.amp-task-time { font-size: 11px; color: #666; margin-bottom: 3px; }
.amp-task-note { font-size: 11px; }
.amp-task-note--green { color: var(--green); }
.amp-task-note--orange { color: var(--orange); }
.amp-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .amp-metrics { grid-template-columns: 1fr; }
}
.amp-metric {
  background: var(--gray-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.amp-metric-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.amp-metric-label { font-size: 12px; color: #666; line-height: 1.5; }
.amp-coverage {
  background: var(--gray-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.amp-coverage-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}
.amp-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.amp-bar-label {
  font-size: 12px;
  color: #666;
  width: 110px;
  flex-shrink: 0;
  text-align: right;
}
.amp-bar-bg {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  height: 36px;
  overflow: hidden;
}
.amp-bar-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.amp-bar-fill--before { background: rgba(255,255,255,0.08); color: #888; }
.amp-bar-fill--after { background: linear-gradient(90deg, var(--green), #16a34a); color: #000; }
.amp-coverage-note { font-size: 12px; color: #555; margin-top: 12px; line-height: 1.6; }
.amp-callout {
  border-left: 3px solid var(--orange);
  background: rgba(245,131,31,0.04);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
}
.amp-callout-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.amp-callout-text {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  font-style: italic;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 1;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr auto;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248,248,248,0.35);
  max-width: 240px;
}
.footer-col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,248,248,0.3);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(248,248,248,0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-links a:hover {
  color: rgba(248,248,248,0.85);
}
.footer-badge-col {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.wc-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(245,200,66,0.35);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5C842;
  background: rgba(245,200,66,0.06);
  white-space: nowrap;
}
.wc-partner-badge .wc-icon {
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(248,248,248,0.2);
  letter-spacing: 0.3px;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-badge-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .topnav { padding: 0 20px; }
  .nav-links .hide-mobile { display: none; }
  .back-link-bar { padding: 16px 20px; }
  .site-footer { padding: 56px 20px 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-badge-col { grid-column: 1 / -1; }
}
@media (max-width: 400px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── Bleed Counter (inside hero-left) ── */
.bleed-bar {
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(255, 50, 0, 0.08);
  border: 1px solid rgba(255, 80, 0, 0.3);
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}
.bleed-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bleed-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bleed-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.bleed-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #999;
  line-height: 1.3;
}
.bleed-label strong { color: #ccc; }
.bleed-main-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bleed-day-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.bleed-day-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #ddd;
  line-height: 1;
  min-width: 44px;
  text-align: center;
}
.bleed-day-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.bleed-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.bleed-amount-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.bleed-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.bleed-dollar {
  font-size: 1.7rem;
  color: var(--orange);
  opacity: 0.7;
}
.bleed-amount-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.bleed-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #555;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
}
.bleed-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 80, 0, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.bleed-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ── Nav Bleed Pill ── */
.nav-bleed-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange) !important;
  text-decoration: none;
  padding: 5px 20px;
  border: 1px solid var(--orange);
  border-radius: 20px;
  background: rgba(255, 60, 0, 0.08);
  white-space: nowrap;
  width: 200px;           /* fixed frame — never reflows */
  box-sizing: border-box;
  justify-content: center;
  overflow: hidden;
}
.nav-bleed-pill:hover {
  background: rgba(255, 60, 0, 0.15);
}
.nav-bleed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: nav-dot-flash 1s step-start infinite;
}
@keyframes nav-dot-flash {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
#nav-bleed-day {
  display: inline-block;
  min-width: 1.6em;
  text-align: right;
}
#nav-bleed-amount {
  display: inline-block;
  min-width: 4.4em;
  text-align: right;
}

@media (max-width: 768px) {
  .bleed-main-row { gap: 12px; }
  .bleed-day-num, .bleed-amount { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════════════════
   CVB SUMMARY BREAKDOWN (main page simplified view)
   ══════════════════════════════════════════════════════ */
.cvb-summary-breakdown {
  max-width: 720px;
  margin: 0 auto 40px;
  background: var(--gray-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.cvb-sb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}
.cvb-sb-row:last-child { border-bottom: none; }
.cvb-sb-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  flex: 1;
}
.cvb-sb-label small { font-size: 0.8rem; opacity: 0.7; }
.cvb-sb-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cvb-sb-val small { font-size: 0.75rem; font-family: 'DM Sans', sans-serif; letter-spacing: 0; }
.cvb-sb-val--green { color: var(--green); }
.cvb-sb-val--orange { color: var(--orange); }
.cvb-sb-val--total { color: var(--white); font-size: 1.7rem; }
.cvb-sb-row--loyalty { background: rgba(255,120,0,0.04); }
.cvb-sb-row--total {
  background: rgba(255,255,255,0.04);
  padding: 18px 24px;
}
.cvb-sb-row--total .cvb-sb-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.cvb-sb-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.cvb-detail-link {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-align: center;
}
.cvb-detail-link:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,120,0,0.06); }

/* CVB Detail Page nav bar */
.cvb-page-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cvb-back-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cvb-back-btn:hover { color: var(--white); }
.cvb-page-title-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.prc-anchor-link {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.8rem;
}
.prc-anchor-link:hover { text-decoration: underline; }

.cvb-section--page { padding-top: 40px; }
.cvb-tr-section--orange { background: rgba(255,120,0,0.08) !important; }
.cvb-tr-section--orange td { color: var(--orange) !important; }
.cvb-td--orange { color: var(--orange) !important; }
.cvb-td--muted { color: rgba(255,255,255,0.35) !important; font-style: italic; }
.cvb-lift-card--loyalty { border-color: rgba(255,120,0,0.3); }
.cvb-lift-badge--orange { background: rgba(255,120,0,0.15); color: var(--orange); border-color: rgba(255,120,0,0.3); }
.cvb-lc-box--orange { border-color: rgba(255,120,0,0.3); background: rgba(255,120,0,0.05); }
.cvb-lc-num--orange { color: var(--orange); }
.cvb-block-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255,120,0,0.15);
  color: var(--orange);
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}
.cvb-sources {
  margin-top: 40px;
  padding: 24px;
  background: var(--gray-card);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.cvb-sources-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-dark);
  margin-bottom: 12px;
}
.cvb-sources-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.cvb-pill-src {
  font-size: 0.75rem;
  color: var(--orange);
  opacity: 0.8;
}

/* ══════════════════════════════════════════════
   LEAD CAPTURE MODAL
   ══════════════════════════════════════════════ */
.lcm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lcm-overlay.lcm--open {
  opacity: 1;
  pointer-events: all;
}

.lcm-card {
  position: relative;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 44px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,131,31,0.1);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.lcm-overlay.lcm--open .lcm-card {
  transform: translateY(0);
}

.lcm-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}
.lcm-close:hover { color: var(--white); }

.lcm-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.lcm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}
.lcm-sub {
  font-size: 14px;
  color: rgba(248,248,248,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Form */
.lcm-form { display: flex; flex-direction: column; gap: 16px; }
.lcm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .lcm-row { grid-template-columns: 1fr; } }

.lcm-field { display: flex; flex-direction: column; gap: 6px; }
.lcm-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(248,248,248,0.55);
  text-transform: uppercase;
}
.lcm-req { color: var(--orange); }

.lcm-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.lcm-input::placeholder { color: rgba(255,255,255,0.2); }
.lcm-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,131,31,0.12);
}

.lcm-note {
  font-size: 12px;
  color: rgba(248,248,248,0.35);
  line-height: 1.65;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 14px;
}

.lcm-submit {
  background: var(--orange);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.lcm-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.lcm-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.lcm-error {
  font-size: 13px;
  color: #ff6b6b;
  text-align: center;
  line-height: 1.5;
}
.lcm-error a { color: var(--orange); }

/* Success state */
.lcm-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 16px;
}
.lcm-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
}

@media (max-width: 600px) {
  .lcm-card { padding: 28px 20px; }
}
