/* ===== BOOKINGBOMB-STYLE DESIGN SYSTEM ===== */

/* --- CSS Custom Properties --- */
:root {
  --explosive-400: #f87171;
  --explosive-500: #ef4444;
  --explosive-600: #dc2626;
  --explosive-700: #b91c1c;
  --fire-orange: #f97316;
  --fire-amber: #f59e0b;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --success: #22c55e;
  --bg-black: #000000;
  --bg-card: #0a0a0a;
  --bg-elevated: #141414;
  --bg-subtle: #050505;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dimmed: rgba(255, 255, 255, 0.4);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Sticky Top Bar --- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--explosive-500);
  padding: 10px 0;
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.top-bar-inner .pulse-dot {
  background: #56ff77;
  width: 10px;
  height: 10px;
  position: relative;
  box-shadow: 0 0 6px #56ff77;
}

.top-bar-inner .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #56ff77;
  animation: live-ring 1.5s ease-out infinite;
}

@keyframes live-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--subtle {
  background: var(--bg-subtle);
}

.text-center {
  text-align: center;
}

/* --- Background Patterns --- */
.bg-grid {
  position: relative;
}

.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.noise-overlay {
  position: relative;
}

.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Typography --- */
.headline-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-headline-lg {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.headline-lg {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.headline-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient-fire {
  background: linear-gradient(135deg, var(--explosive-500) 0%, var(--fire-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-emerald {
  color: var(--emerald-400);
  font-weight: 700;
}

.text-muted {
  color: var(--text-muted);
}

.text-dimmed {
  color: var(--text-dimmed);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--explosive-500);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.red-line {
  width: 60px;
  height: 4px;
  background: var(--explosive-500);
  border-radius: 2px;
  margin: 20px auto 40px;
}

/* --- Pill Badge --- */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill-badge--green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--emerald-400);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--explosive-500);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

.pulse-dot--green {
  background: var(--emerald-400);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* --- Buttons --- */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--explosive-500), var(--explosive-600));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--explosive-500), var(--explosive-600));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.4;
  filter: blur(16px);
  animation: btn-glow 2s ease-in-out infinite;
}

.btn-primary:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4);
}

.btn-primary:active {
  transform: scale(0.98);
}

@keyframes btn-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Cards --- */
.card-sharp {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.card-sharp:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 40px -10px rgba(239, 68, 68, 0.2);
  transform: translateY(-4px);
}

/* --- Stars (Emerald) --- */
.stars {
  display: flex;
  gap: 4px;
}

.star-box {
  width: 32px;
  height: 32px;
  background: #009567;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

.star-box--lg {
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  border-radius: 8px;
}

.star-box--xl {
  width: 64px;
  height: 64px;
  font-size: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.stars-inline {
  color: var(--emerald-400);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* --- Forms --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

.form-input {
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--explosive-500);
}

.form-input::placeholder {
  color: var(--text-dimmed);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success h3 {
  color: var(--emerald-400);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* --- Countdown --- */
.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 149, 103, 0.4);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  min-width: 64px;
  letter-spacing: -0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.countdown-num.tick {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-dimmed);
  margin-top: 6px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-headline-lg {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Hero two-column layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

/* Hero headshot */
.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity 0.4s ease;
}

.hero-headshot--funny {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.hero-headshot--funny.active {
  opacity: 1;
}

.hero-headshot--main.hidden {
  opacity: 0;
}

.hero-media-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 60%, transparent);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.hero-media-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-400);
  margin-bottom: 2px;
}

/* Registration card */
.hero-reg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.hero-reg-card .countdown {
  width: 100%;
  justify-content: space-between;
}

.hero-reg-card .countdown-unit {
  flex: 1;
}

.hero-zillow-bar {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.zillow-logo-img {
  height: 28px;
  width: auto;
  border-radius: 5px;
  object-fit: contain;
}

.marquee-item .zillow-logo-img {
  height: 18px;
  border-radius: 3px;
}

.zillow-logo-section {
  height: 40px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  margin: 0 auto 32px;
}

.zillow-score {
  font-size: 0.85rem;
  color: #fff;
}

.zillow-score strong {
  color: #fff;
  font-weight: 900;
}

.hero-social-proof {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.avatar-cluster {
  display: flex;
}

.avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.avatar-img:first-child {
  margin-left: 0;
}

.avatar-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Stats Bar (inside hero) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stat {
  background: var(--bg-card);
  padding: 24px;
  text-align: center;
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--explosive-400);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== GUARANTEE SCROLL BUTTON ===== */
.guarantee-scroll-btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #009567;
}

.guarantee-scroll-btn:hover {
  background: #00b67a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 150, 103, 0.3);
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

/* White square behind Best of LV logo */
.bolv-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bolv-logo-wrap img {
  height: 32px;
  opacity: 1;
  filter: none;
}

.marquee-item .avatar-cluster {
  display: flex;
}

.marquee-item .avatar-img {
  width: 28px;
  height: 28px;
}

.marquee-item .stars {
  gap: 2px;
}

.marquee-item .star-box {
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
}

.marquee-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@keyframes jiggle {
  0%, 85%, 100% { transform: rotate(0); }
  88% { transform: rotate(-1.5deg); }
  91% { transform: rotate(1.5deg); }
  94% { transform: rotate(-1deg); }
  97% { transform: rotate(0.5deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ===== GIANT REVIEW SCORE ===== */
.review-score-section {
  text-align: center;
}

.giant-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.giant-score {
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin-bottom: -24px;
  position: relative;
}

.giant-score-label {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 48px;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.review-stat {
  background: var(--bg-card);
  padding: 20px 24px;
  text-align: center;
}

.review-stat-value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.review-stat-value--emerald {
  color: var(--emerald-400);
}

.review-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== TESTIMONIAL IMAGES GRID ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.2);
  transition: all 0.3s ease;
  box-shadow:
    0 0 12px rgba(52, 211, 153, 0.15),
    0 0 30px rgba(120, 80, 255, 0.1),
    0 0 60px rgba(52, 211, 153, 0.05);
}

.testimonial-img-card:hover {
  border-color: rgba(120, 80, 255, 0.4);
  transform: translateY(-4px);
  box-shadow:
    0 0 16px rgba(52, 211, 153, 0.25),
    0 0 40px rgba(120, 80, 255, 0.2),
    0 0 80px rgba(52, 211, 153, 0.1);
}

.testimonial-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-img-card .caption {
  padding: 12px 16px;
  background: var(--bg-card);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-img-card .caption strong {
  color: var(--text-primary);
}

/* ===== REVIEW CARDS (MASONRY-STYLE) ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-4px);
}

.review-card .stars-inline {
  margin-bottom: 16px;
}

.review-highlight {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-400);
  margin-bottom: 16px;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-role {
  font-size: 0.75rem;
  color: var(--text-dimmed);
}

/* ===== WHAT YOU'LL LEARN ===== */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.learn-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-4px);
}

.learn-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.learn-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.learn-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== ABOUT / INSTRUCTOR ===== */
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-info h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.about-title {
  color: var(--explosive-400);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.about-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-red-line {
  width: 60px;
  height: 4px;
  background: var(--explosive-500);
  border-radius: 2px;
  margin-bottom: 20px;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.credentials-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--explosive-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== EVENT DETAILS ===== */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.event-detail {
  text-align: center;
}

.event-detail-label {
  font-size: 0.75rem;
  color: var(--text-dimmed);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-detail-value {
  font-size: 1.25rem;
  font-weight: 800;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: rgba(239, 68, 68, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--explosive-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 120px 0;
}

.final-cta .headline-lg {
  margin-bottom: 16px;
}

.final-cta-sub {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.final-cta .form-group {
  margin: 0 auto 16px;
}

.final-cta .form-micro {
  color: var(--text-dimmed);
  font-size: 0.8rem;
}

.urgency-text {
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--explosive-400);
  animation: count-pulse 2s ease-in-out infinite;
}

@keyframes count-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0;
  padding-bottom: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dimmed);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
}

.footer-logo {
  height: 32px;
  margin: 0 auto 16px;
  opacity: 0.7;
}

.footer p {
  margin-bottom: 4px;
}

/* ===== 7x BEST OF LAS VEGAS ===== */
.bolv-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.bolv-year-item {
  text-align: center;
}

.bolv-logo-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bolv-logo-card img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.bolv-year {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .bolv-grid {
    gap: 8px;
    margin-top: 24px;
  }

  .bolv-logo-card {
    padding: 6px;
    border-radius: 8px;
    aspect-ratio: 1;
    width: 40px;
    height: 40px;
  }

  .bolv-logo-card img {
    height: 28px;
  }

  .bolv-year {
    font-size: 0.65rem;
  }
}

/* ===== EXPERT PANEL ===== */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.panel-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-4px);
}

.panel-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.panel-avatar-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  margin: 0 auto 20px;
}

.panel-name {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.panel-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--explosive-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.panel-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .panel-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== EXCUSES / WRONG SECTION ===== */
.excuses-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.excuse-item {
  text-align: center;
}

.section-title--wide {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.excuse-quote {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.excuse-x {
  font-size: 1.8rem;
  vertical-align: middle;
  margin: 0 8px;
}

.excuse-wrong {
  display: inline-block;
  padding: 10px 36px;
  background: var(--explosive-500);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 8px;
  margin-bottom: 16px;
  vertical-align: middle;
}

.excuse-truth {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.guarantee-icon {
  width: 72px;
  height: 72px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.guarantee-card .section-label {
  color: var(--emerald-400);
}

.guarantee-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.guarantee-sub {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.5;
}

.guarantee-sub .text-emerald {
  font-weight: 800;
}

.guarantee-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.guarantee-point-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--emerald-400);
  font-size: 1.25rem;
}

.guarantee-point-title {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.guarantee-point-desc {
  font-size: 0.8rem;
  color: var(--text-dimmed);
}

.guarantee-footer {
  padding-top: 32px;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.guarantee-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.guarantee-footer .text-emerald {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .guarantee-card {
    padding: 40px 24px;
  }

  .guarantee-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== CTA BLOCK (reusable) ===== */
.cta-block {
  text-align: center;
}

.cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cta-heading--lg {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.cta-inner .form-group {
  max-width: 100%;
  margin: 0 auto;
}

.cta-inner .form-micro {
  color: var(--text-dimmed);
  font-size: 0.8rem;
  margin-top: 10px;
}

/* ===== SOCIAL PROOF TOAST ===== */
.proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 12px rgba(52, 211, 153, 0.15);
  transform: translateX(calc(-100% - 40px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.proof-toast.visible {
  transform: translateX(0);
  opacity: 1;
}

.proof-toast-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald-400);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.proof-toast-body {
  flex: 1;
  min-width: 0;
}

.proof-toast-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.proof-toast-time {
  font-size: 0.75rem;
  color: var(--text-dimmed);
  white-space: nowrap;
}

.proof-toast-lottie {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.proof-toast-lottie svg {
  width: 44px !important;
  height: 44px !important;
}

@media (max-width: 768px) {
  .proof-toast {
    bottom: 16px;
    left: 12px;
    right: auto;
    padding: 12px 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                bottom 0.3s ease;
  }

  .proof-toast.above-sticky {
    bottom: 90px;
  }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 12px;
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid rgba(52, 211, 153, 0.2);
    backdrop-filter: blur(12px);
  }

  .sticky-mobile-cta.visible {
    transform: translateY(0);
  }


  .sticky-mobile-cta a {
    display: block;
    width: 100%;
    padding: 12px;
    animation: jiggle 3s ease-in-out infinite;
    background: #009567;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    letter-spacing: 0.02em;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }

/* ===== MISC UTILITIES ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 48px;
    min-height: auto;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-left {
    order: 2;
  }

  .hero-reg-card {
    order: 1;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    max-width: none;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    max-width: 250px;
    margin: 0 auto;
  }

  .about-red-line {
    margin: 20px auto;
  }

  .credentials-list {
    align-items: center;
  }

  .event-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-stats {
    grid-template-columns: 1fr;
  }

  .countdown-num {
    font-size: 1.5rem;
    padding: 10px 12px;
    min-width: 52px;
  }

  .giant-score {
    font-size: 6rem;
    margin-bottom: 0;
  }

  .giant-score-label {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .star-box--xl {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .final-cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }

  .giant-score {
    font-size: 4.5rem;
  }

  .pill-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .card-sharp {
    padding: 24px;
  }

  .event-card {
    padding: 32px 24px;
  }
}

/* ===== CODE PROTECTION ===== */

/* Disable image dragging */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Re-enable pointer events on links containing images */
a {
  pointer-events: auto;
}

/* Invisible watermark */
body::after {
  content: '\00a9 2026 Ryan Shugars / Platinum Real Estate Professionals. All rights reserved. Unauthorized reproduction prohibited. ID:RS-PLAT-2026-BB';
  position: fixed;
  bottom: -9999px;
  left: -9999px;
  font-size: 1px;
  color: transparent;
  pointer-events: none;
  z-index: -1;
}

/* Block printing */
@media print {
  body {
    display: none !important;
  }
  html::after {
    content: 'This page cannot be printed. Copyright 2026 Ryan Shugars / Platinum Real Estate Professionals.';
    display: block;
    padding: 40px;
    font-size: 18px;
    text-align: center;
  }
}
