/* ================================================
   REDCROWN MMA — GLASS.CSS
   Heavy Glassmorphism + Parallax + Floating UI
   ================================================ */

/* ══ POLICE TAPE PARALLAX ══ */
.tape-parallax-layer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.police-tape {
  position: absolute;
  width: 120%;
  left: -10%;
  padding: 13px 0;
  background: #FFD700;
  color: #000;
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  will-change: transform;
}

.tape-1 {
  top: 22%;
  transform: rotate(-1.8deg);
  opacity: 0.9;
}

.tape-2 {
  top: 76%;
  transform: rotate(1.5deg);
  opacity: 0.85;
  background: #FFC200;
}

.police-tape span {
  display: inline-block;
  animation: tape-scroll 30s linear infinite;
  padding-right: 60px;
}

.tape-2 span {
  animation-direction: reverse;
  animation-duration: 24s;
}

@keyframes tape-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══ GLASS CARD - UPGRADED ══ */
.glass-card {
  position: relative;
  background: rgba(255, 255, 240, 0.04);
  border: 1px solid rgba(251, 54, 64, 0.18);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 240, 0.06) 0%,
    rgba(255, 255, 240, 0.01) 50%,
    rgba(251, 54, 64, 0.04) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,240,0.15), transparent);
  pointer-events: none;
}

.glass-card > * { position: relative; z-index: 1; }

.glass-card:hover {
  border-color: rgba(251, 54, 64, 0.45);
  box-shadow:
    0 8px 40px rgba(251, 54, 64, 0.12),
    0 0 0 1px rgba(251, 54, 64, 0.08),
    inset 0 1px 0 rgba(255,255,240,0.08);
  transform: translateY(-2px);
}

/* Glowing orb inside card */
.glass-card-glow {
  position: absolute !important;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,54,64,0.12) 0%, transparent 70%);
  top: -60px;
  right: -60px;
  pointer-events: none;
  z-index: 0 !important;
  animation: glow-drift 6s ease-in-out infinite alternate;
}

.glow-large {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(251,54,64,0.08) 0%, transparent 65%);
}

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); opacity: 0.8; }
  to { transform: translate(-20px, 20px) scale(1.15); opacity: 1; }
}

/* ══ SONAR CANVAS (hero) ══ */
#sonar-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
}

/* ══ HERO OVERRIDES ══ */
.hero {
  position: relative;
  z-index: 1;
}

.hero-content { position: relative; z-index: 3; }

.hero-sonar-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,240,0.3);
  margin-top: 32px;
}

.sonar-dot-hint {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--knight-red);
  animation: sonar-dot 2s ease-in-out infinite;
}

@keyframes sonar-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,54,64,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(251,54,64,0); }
}

/* Nav logo pulse on hover */
.nav-logo {
  cursor: pointer;
}

#nav-logo-img {
  transition: filter 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(251,54,64,0.3));
}

.nav-logo:hover #nav-logo-img {
  filter: drop-shadow(0 0 16px rgba(251,54,64,0.7));
  transform: scale(1.1);
}

/* ══ REVEAL ANIMATIONS ══ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s cubic-bezier(0.23,1,0.32,1) forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { animation-delay: 0.15s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.45s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.6s; transition-delay: 0.4s; }
.delay-5 { animation-delay: 0.75s; transition-delay: 0.5s; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══ PARALLAX BREAKS ══ */
.parallax-break {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.parallax-break-bg {
  position: absolute;
  inset: -60px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.break-1 .parallax-break-bg {
  background-image:
    linear-gradient(135deg, rgba(0,15,8,0.88) 0%, rgba(0,15,8,0.7) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(251,54,64,0.03) 40px,
      rgba(251,54,64,0.03) 80px
    );
  background-color: #020d06;
}

.break-2 .parallax-break-bg {
  background: linear-gradient(180deg, rgba(251,54,64,0.08) 0%, rgba(0,15,8,0.95) 100%);
  background-color: #060c09;
}

.break-3 .parallax-break-bg {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(251,54,64,0.07) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,15,8,0.95), rgba(0,15,8,0.95));
  background-color: #020d06;
}

.parallax-break-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 700px;
}

.break-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--knight-red);
  margin-bottom: 16px;
  display: block;
}

.break-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 24px;
}

.break-title span { color: var(--knight-red); }

.break-sub {
  font-size: 15px;
  color: var(--ivory-dim);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.break-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 32px;
}

.break-stat {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255,255,240,0.04);
  border: 1px solid rgba(251,54,64,0.2);
  backdrop-filter: blur(8px);
}

.break-stat span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--knight-red);
  line-height: 1;
}

.break-stat small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ivory-dim);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ══ TESTIMONIALS ══ */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(251,54,64,0.02) 50%, transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.testi-quote {
  font-size: 72px;
  font-weight: 700;
  color: var(--knight-red);
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testi-text {
  font-size: 16px;
  color: var(--ivory-dim);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(251,54,64,0.15);
  padding-top: 18px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251,54,64,0.12);
  border: 1px solid rgba(251,54,64,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--knight-red);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.testi-prog {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--knight-red);
  font-weight: 600;
}

/* ══ FLOATING BUTTONS ══ */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 800;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 40px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.float-trial {
  background: rgba(251,54,64,0.85);
  border-color: rgba(251,54,64,0.6);
  color: var(--ivory);
}

.float-trial:hover {
  background: var(--knight-red);
  box-shadow: 0 6px 28px rgba(251,54,64,0.4);
  transform: translateX(-4px);
}

.float-wa {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.35);
  color: #25d366;
}

.float-wa:hover {
  background: rgba(37,211,102,0.25);
  box-shadow: 0 6px 28px rgba(37,211,102,0.2);
  transform: translateX(-4px);
}

.float-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-label {
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* Collapse label on mobile */
@media (max-width: 500px) {
  .float-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .floating-buttons { bottom: 20px; right: 16px; }
}

/* ══ FIGHTER PAGE ══ */
#fighter-page {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--nightshade);
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#fighter-page.hidden { display: none !important; }

#fighter-sonar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.fighter-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 40px 24px;
  animation: fadeIn 0.8s ease;
}

.fighter-back {
  position: fixed;
  top: 28px; left: 28px;
  background: rgba(255,255,240,0.04);
  border: 1px solid rgba(251,54,64,0.2);
  backdrop-filter: blur(12px);
  color: var(--ivory-dim);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.fighter-back:hover {
  border-color: var(--knight-red);
  color: var(--knight-red);
  background: rgba(251,54,64,0.06);
}

.fighter-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--knight-red);
  margin-bottom: 20px;
  animation: blink 3s ease-in-out infinite;
}

.fighter-title {
  font-size: clamp(56px, 12vw, 100px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--ivory);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.fighter-title span { color: var(--knight-red); }

.fighter-sub {
  font-size: 17px;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}

.fighter-runes {
  font-size: 28px;
  letter-spacing: 0.4em;
  opacity: 0.35;
  margin-bottom: 36px;
}

/* ══ WHY CARDS — extra depth ══ */
.why-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.why-card .card-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(251,54,64,0.3));
}

.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ivory);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--ivory-dim);
  line-height: 1.75;
}

/* ══ PROGRAMS GRID — extra depth ══ */
.prog-card {
  position: relative;
  padding: 28px 28px 48px;
}

.prog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--knight-red), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

/* ══ COACH CARD ══ */
.coach-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 48px 52px;
}

.coach-placeholder {
  width: 180px;
  height: 220px;
  border: 1px solid rgba(251,54,64,0.2);
  background: rgba(255,255,240,0.02);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coach-initials {
  font-size: 64px;
  font-weight: 700;
  color: var(--knight-red);
  opacity: 0.3;
  letter-spacing: 0.1em;
}

.coach-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(251,54,64,0.2), transparent 70%);
  border-radius: 50%;
}

/* ══ REFERRAL SECTION ══ */
.referral-section { padding: 80px 0; }

.referral-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 48px 52px;
}

.referral-text h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
}

.referral-text p {
  font-size: 16px;
  color: var(--ivory-dim);
  max-width: 500px;
}

.referral-text strong { color: var(--knight-red); }

/* ══ FORM EXTRAS ══ */
.form-row.half { grid-template-columns: 1fr; max-width: 50%; }

@media (max-width: 600px) {
  .form-row.half { max-width: 100%; }
  .coach-inner { grid-template-columns: 1fr; }
  .referral-inner { flex-direction: column; }
  .break-stats { gap: 16px; flex-wrap: wrap; }
  .break-stat { padding: 12px 16px; }
  .coach-inner { padding: 32px 24px; }
  .referral-inner { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .coach-inner { grid-template-columns: 1fr; }
  .coach-visual { display: none; }
}

/* ══ HERO LOGO MARK ══ */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-logo-mark {
  width: 400px;
  height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 160px rgba(251,54,64,0.5));
  animation: hero-logo-breathe 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-logo-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,54,64,0.18) 0%, transparent 70%);
  animation: hero-pulse-ring 2.8s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-logo-pulse::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(251,54,64,0.3);
  animation: hero-pulse-ring 2.8s ease-out 0.7s infinite;
}

.hero-logo-pulse::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(251,54,64,0.15);
  animation: hero-pulse-ring 2.8s ease-out 1.4s infinite;
}

@keyframes hero-logo-breathe {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(251,54,64,0.45)); }
  50%       { filter: drop-shadow(0 0 30px rgba(251,54,64,0.75)); }
}

@keyframes hero-pulse-ring {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

/* ══ HERO TRUST BAR ══ */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,240,0.55);
  letter-spacing: 0.08em;
}

.hero-trust-bar em {
  font-style: normal;
  color: var(--knight-red);
  font-weight: 700;
  margin-right: 4px;
}

.trust-divider { opacity: 0.3; }

/* ══ HERO PRELAUNCH BADGE ══ */
.hero-prelaunch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 16px;
  background: rgba(251,54,64,0.08);
  border: 1px solid rgba(251,54,64,0.25);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--knight-red);
  backdrop-filter: blur(8px);
}

.prelaunch-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--knight-red);
  animation: sonar-dot 1.5s ease-in-out infinite;
}

/* ══ COACH CREDENTIALS LIST ══ */
.coach-creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0 24px;
  padding: 16px 20px;
  background: rgba(251,54,64,0.05);
  border-left: 2px solid var(--knight-red);
}

.coach-creds span {
  font-size: 13px;
  color: var(--ivory-dim);
  letter-spacing: 0.08em;
}

.coach-creds span::before {
  content: '✓ ';
  display: none; /* already in HTML */
}

/* ══ PROGRAM CARD — FOR LINE ══ */
.prog-for {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--knight-red);
  margin: -2px 0 8px;
  opacity: 0.85;
}

/* ══ TESTIMONIAL RESULT TAG ══ */
.testi-result-tag {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 12px;
  background: rgba(251,54,64,0.08);
  border: 1px solid rgba(251,54,64,0.2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--knight-red);
}

/* ══ PRICING SECTION ══ */
.pricing-section { padding: 100px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.pricing-featured {
  border-color: rgba(251,54,64,0.5) !important;
  transform: translateY(-8px);
}

.pricing-featured:hover { transform: translateY(-12px); }

.pricing-popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--knight-red);
  color: var(--ivory);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding: 4px 14px;
  white-space: nowrap;
}

.pricing-duration {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--knight-red);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.pricing-amount sup, .pricing-amount small {
  font-size: 20px;
  margin-top: 8px;
}

.pricing-per {
  font-size: 12px;
  color: var(--ivory-dim);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  min-height: 18px;
}

.pricing-perks {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}

.pricing-perks li {
  font-size: 13px;
  color: var(--ivory-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-perks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--knight-red);
  font-weight: 700;
}

.pricing-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px;
  clip-path: none;
}

.pricing-footnote {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,240,0.35);
  letter-spacing: 0.08em;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══ CONTENT / REELS ══ */
.content-section-reel { padding: 100px 0; }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.reel-placeholder {
  aspect-ratio: 9/16;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  text-align: center;
  padding: 20px;
}

.reel-icon {
  font-size: 32px;
  color: var(--knight-red);
  opacity: 0.4;
  display: block;
}

.reel-placeholder p {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,240,0.2);
  font-weight: 600;
}

.reel-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(251,54,64,0.08);
  border: 1px solid rgba(251,54,64,0.2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--knight-red);
}

/* ══ RESPONSIVE ADDITIONS ══ */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-featured { transform: translateY(0); }
  .hero-trust-bar { font-size: 11px; gap: 6px; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .reel-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo-mark { width: 80px; height: 80px; }
}
