/* =============================================
   DOOR KNOCKING MASTERCLASS — MAIN STYLES
   ============================================= */

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

:root {
  --red:    #e63946;
  --gold:   #f4a522;
  --dark:   #0d0f14;
  --dark2:  #13161e;
  --dark3:  #1a1e2a;
  --light:  #f0f2f7;
  --light2: #e2e6ef;
  --white:  #ffffff;
  --accent: #e63946;
  --accent-gold: #f4a522;
  --text-light: #c8cdd8;
  --text-muted: #7b8099;
  --border: rgba(255,255,255,0.08);
  --glow-red:  0 0 30px rgba(230,57,70,0.4);
  --glow-gold: 0 0 30px rgba(244,165,34,0.4);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* =============================================
   GLOBAL ANIMATED GRID BACKDROP
   Stretches across the entire page, cycles
   red → orange → green → blue → purple → pink
   ============================================= */
.global-bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* The moving grid lines */
.global-bg-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: globalGridFloat 20s linear infinite;
}
@keyframes globalGridFloat {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* The colour cycling glow layer on top of the lines */
.global-bg-grid-color {
  position: absolute;
  inset: 0;
  background: transparent;
  animation: gridColorCycle 18s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes gridColorCycle {
  0%   { background: radial-gradient(ellipse at 30% 40%, rgba(230,57,70,0.22)  0%, transparent 65%),
                     radial-gradient(ellipse at 70% 60%, rgba(230,57,70,0.12)  0%, transparent 55%); }
  17%  { background: radial-gradient(ellipse at 50% 30%, rgba(255,140,0,0.22)  0%, transparent 65%),
                     radial-gradient(ellipse at 30% 70%, rgba(255,140,0,0.12)  0%, transparent 55%); }
  33%  { background: radial-gradient(ellipse at 70% 50%, rgba(34,197,94,0.22)  0%, transparent 65%),
                     radial-gradient(ellipse at 20% 30%, rgba(34,197,94,0.12)  0%, transparent 55%); }
  50%  { background: radial-gradient(ellipse at 40% 60%, rgba(59,130,246,0.22) 0%, transparent 65%),
                     radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.12) 0%, transparent 55%); }
  67%  { background: radial-gradient(ellipse at 60% 30%, rgba(139,92,246,0.22) 0%, transparent 65%),
                     radial-gradient(ellipse at 30% 60%, rgba(139,92,246,0.12) 0%, transparent 55%); }
  83%  { background: radial-gradient(ellipse at 25% 50%, rgba(236,72,153,0.22) 0%, transparent 65%),
                     radial-gradient(ellipse at 75% 40%, rgba(236,72,153,0.12) 0%, transparent 55%); }
  100% { background: radial-gradient(ellipse at 30% 40%, rgba(230,57,70,0.22)  0%, transparent 65%),
                     radial-gradient(ellipse at 70% 60%, rgba(230,57,70,0.12)  0%, transparent 55%); }
}

/* Make sure all content sits above the fixed grid */
#navbar, header, section, footer { position: relative; z-index: 1; }

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,15,20,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2);
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.accent { color: var(--red); }

.nav-hub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.45);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-hub-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(230,57,70,0.5);
  transform: translateY(-1px);
}
.nav-hub-btn i { font-size: 0.8rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-size: 1rem;
}

/* =============================================
   HERO
   ============================================= */

/* ---- TFG Hero Brand Logo ---- */
.hero-brand {
  margin-bottom: 1.25rem;
}
.hero-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto;
  /* Logo is black — invert for dark background */
  filter: invert(1) brightness(2);
  opacity: 0;
  animation: logoFadeIn 1.1s ease 0.2s forwards;
}
@keyframes logoFadeIn {
  0%   { opacity: 0; transform: translateY(-14px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0)     scale(1);    }
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

/* Hero grid is now handled by the global backdrop — keep div in HTML but hide it */
.hero-bg-grid {
  display: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  animation: particleFly var(--dur) var(--delay) infinite ease-in-out;
}
@keyframes particleFly {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  background-size: 200%;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  border-radius: 100px;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230,57,70,0.6);
  background: #ff4655;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid var(--border);
  color: var(--text-light);
  font-weight: 600;
  border-radius: 100px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  min-width: 110px;
  transition: var(--transition);
}
.stat-pill:hover {
  border-color: var(--red);
  background: rgba(230,57,70,0.08);
  transform: translateY(-3px);
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-pill span:last-child {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bounce {
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.section-dark  { background: transparent; }
.section-light { background: transparent; color: var(--white); }
.section-accent { background: transparent; }
.section-light .section-tag  { background: rgba(230,57,70,0.1); color: var(--red); border-color: rgba(230,57,70,0.3); }
.section-light .section-subtitle { color: var(--text-light); }

.section-number {
  position: absolute;
  top: -0.5rem; right: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.section-light .section-number { color: rgba(255,255,255,0.025); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(244,165,34,0.15);
  border-color: rgba(244,165,34,0.4);
  color: var(--gold);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}
.section-light .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-subtitle.light { color: rgba(255,255,255,0.6); }

/* =============================================
   SECTION 1 — RULES
   ============================================= */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.rule-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  background: var(--dark3);
}
.rule-card.rule-red  { border-color: rgba(230,57,70,0.2); }
.rule-card.rule-gold { border-color: rgba(244,165,34,0.2); }

.rule-card:hover {
  transform: translateY(-4px);
}
.rule-card.rule-red:hover  { box-shadow: var(--glow-red);  border-color: rgba(230,57,70,0.5); }
.rule-card.rule-gold:hover { box-shadow: var(--glow-gold); border-color: rgba(244,165,34,0.5); }

.rule-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.rule-red  .rule-icon { background: rgba(230,57,70,0.15); color: var(--red); }
.rule-gold .rule-icon { background: rgba(244,165,34,0.15); color: var(--gold); }

.rule-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.rule-red  .rule-label { color: var(--red); }
.rule-gold .rule-label { color: var(--gold); }

.rule-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.rule-body p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* =============================================
   SECTION 2 — SCHEDULE
   ============================================= */
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.schedule-calendar {
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cal-header {
  padding: 1rem 1.5rem;
  background: var(--dark2);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0.5rem;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.cal-day:last-child { border-right: none; }

.day-name {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.day-action {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-align: center;
  line-height: 1.35;
  word-break: break-word;
}
.cal-day i { font-size: 1.2rem; }

.cal-day.active { background: rgba(230,57,70,0.08); }
.cal-day.active i   { color: var(--red); }
.cal-day.active .day-action { color: var(--red); }

.cal-day.flex  { background: rgba(255,255,255,0.02); }
.cal-day.flex i   { color: var(--text-muted); }
.cal-day.flex .day-action { color: var(--text-muted); }

.cal-day.track { background: rgba(244,165,34,0.08); }
.cal-day.track i   { color: var(--gold); }
.cal-day.track .day-action { color: var(--gold); }

.cal-day.off { background: rgba(255,255,255,0.01); }
.cal-day.off i   { color: rgba(255,255,255,0.15); }
.cal-day.off .day-action { color: rgba(255,255,255,0.15); }

/* Target rings */
.targets-panel {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.target-card {
  text-align: center;
  color: var(--white);
}
.target-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  max-width: 140px;
  margin: 0 auto;
  font-weight: 500;
}

.target-ring {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 1rem;
}
.target-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.ring-bg  { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 8; }
.ring-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339;
  stroke-dashoffset: 339;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4,0,0.2,1);
}
.ring-fill.ring-gold { stroke: var(--gold); }

.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ring-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  text-align: center;
  max-width: 70px;
}

/* =============================================
   SECTION 3 — METRICS
   ============================================= */
.approach-box {
  display: flex;
  gap: 0;
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 3rem;
}
.approach-left, .approach-right {
  flex: 1;
  padding: 2rem;
}
.approach-left { border-right: 1px solid var(--border); }
.approach-left h3 { color: #4caf50; margin-bottom: 0.75rem; font-size: 1rem; }
.approach-right h3 { color: var(--red); margin-bottom: 0.75rem; font-size: 1rem; }
.approach-left  h3 i { margin-right: 0.5rem; }
.approach-right h3 i { margin-right: 0.5rem; }
.approach-left p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.approach-right ul { list-style: none; }
.approach-right ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 0.3rem 0;
}
.approach-right ul li i { color: var(--red); font-size: 0.75rem; }
.approach-divider { width: 0; }

.pipeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.pipeline-step {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem;
  min-width: 130px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.pipeline-step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease calc(var(--i) * 0.12s),
              transform 0.5s ease calc(var(--i) * 0.12s);
}
.pipeline-step:hover {
  border-color: var(--red);
  transform: translateY(-4px) !important;
  box-shadow: var(--glow-red);
}

.p-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(230,57,70,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
}
.p-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}
.p-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.pipeline-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  padding: 0 0.5rem;
}

/* ---- Mandatory Activity Tracking heading ---- */
.tracker-promo-heading {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 0 20px rgba(230,57,70,0.7);
  animation: headingPulse 1.8s ease-in-out infinite;
}
@keyframes headingPulse {
  0%,100% { opacity: 1;   text-shadow: 0 0 20px rgba(230,57,70,0.7); }
  50%      { opacity: 0.85; text-shadow: 0 0 40px rgba(230,57,70,1); }
}

.tracker-mandatory-label {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

/* ---- Tracker box ---- */
.tracker-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(230,57,70,0.08);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 0 30px rgba(230,57,70,0.3), inset 0 0 30px rgba(230,57,70,0.05);
  animation: trackerBoxPulse 2s ease-in-out infinite;
  overflow: hidden;
}
@keyframes trackerBoxPulse {
  0%,100% { box-shadow: 0 0 30px rgba(230,57,70,0.3), inset 0 0 30px rgba(230,57,70,0.05); }
  50%      { box-shadow: 0 0 55px rgba(230,57,70,0.6), inset 0 0 40px rgba(230,57,70,0.1); }
}

.tracker-alert-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0.3rem 0.85rem;
  border-radius: 0 var(--radius) 0 var(--radius-sm);
  text-transform: uppercase;
}

.tracker-promo-link {
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.tracker-promo-link:hover {
  background: rgba(230,57,70,0.18);
  border-color: #ff4655;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 60px rgba(230,57,70,0.7), inset 0 0 40px rgba(230,57,70,0.12);
  color: var(--white);
  animation: none;
}

.tracker-promo-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.tracker-promo-body {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.65;
}
.tracker-promo i {
  font-size: 2.6rem;
  color: var(--red);
  flex-shrink: 0;
}

.tracker-cta-btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(230,57,70,0.5);
  transition: var(--transition);
  white-space: nowrap;
}
.tracker-promo-link:hover .tracker-cta-btn {
  background: #ff4655;
  box-shadow: 0 6px 24px rgba(230,57,70,0.8);
  transform: scale(1.05);
}

/* =============================================
   SECTION 4 — DRESS CODE
   ============================================= */
.dress-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.dress-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
}
.dress-card-header {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dress-card ul {
  list-style: none;
  padding: 1.25rem 1.5rem;
}
.dress-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dress-card ul li:last-child { border-bottom: none; }

.dress-card.wear {
  background: rgba(76,175,80,0.06);
  border-color: rgba(76,175,80,0.25);
}
.dress-card.wear .dress-card-header { background: rgba(76,175,80,0.12); color: #4caf50; }
.dress-card.wear li i { color: #4caf50; }

.dress-card.nowear {
  background: rgba(230,57,70,0.06);
  border-color: rgba(230,57,70,0.25);
}
.dress-card.nowear .dress-card-header { background: rgba(230,57,70,0.1); color: var(--red); }
.dress-card.nowear li i { color: var(--red); }

/* Mannequin */
.dress-mannequin { display: flex; justify-content: center; }
.mannequin-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.m-head {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c99a, #d4a574);
  border: 3px solid #c8914a;
  animation: headBob 3s ease-in-out infinite;
}
@keyframes headBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.m-shirt {
  width: 80px; height: 70px;
  background: linear-gradient(135deg, #1565c0, #1976d2);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.m-shirt::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 16px;
  background: #1565c0;
  border-radius: 0 0 50% 50%;
}
.m-shirt span {
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  text-align: center;
}

.m-pants {
  width: 80px; height: 60px;
  background: linear-gradient(135deg, #795548, #8d6e63);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.m-pants::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 50%;
  background: rgba(255,255,255,0.2);
}
.m-pants span {
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  text-align: center;
}

.m-shoes {
  display: flex;
  gap: 6px;
}
.m-shoes::before, .m-shoes::after {
  content: '';
  width: 35px; height: 14px;
  background: #212121;
  border-radius: 0 50% 50% 50%;
}

.m-badge {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.4);
  color: #4caf50;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* =============================================
   SECTION 5 — DOOR APPROACH
   ============================================= */
.steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.steps-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--dark3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.step-item:hover {
  border-color: rgba(244,165,34,0.3);
  transform: translateX(4px);
}

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
}
.step-text strong { font-size: 0.92rem; display: block; margin-bottom: 0.3rem; }
.step-text p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* Territory */
.territory-box {
  display: flex;
  gap: 2rem;
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid rgba(244,165,34,0.2);
  padding: 2rem;
  align-items: flex-start;
}
.territory-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: rgba(244,165,34,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}
.territory-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.territory-content > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; }

.territory-visual {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.t-house {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  min-width: 52px;
  font-size: 0.7rem;
  font-weight: 600;
  transition: var(--transition);
}
.t-house i { font-size: 1.1rem; }
.t-house.inactive {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text-muted);
}
.t-house.inactive:hover {
  border-color: rgba(244,165,34,0.4);
  color: var(--gold);
}
.t-house.lead {
  background: rgba(230,57,70,0.15);
  border-color: var(--red);
  color: var(--red);
  animation: leadPulse 2s ease-in-out infinite;
}
@keyframes leadPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

.territory-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.t-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(244,165,34,0.1);
  border: 1px solid rgba(244,165,34,0.3);
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* =============================================
   SECTION 6 — SCRIPT
   ============================================= */
.script-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.script-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,165,34,0.25);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.script-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.script-speaker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.script-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
}
.script-word {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.script-word.visible {
  opacity: 1;
  transform: translateY(0);
}
.highlight-name { color: var(--gold); font-weight: 700; }
.highlight-you  { color: var(--red);  font-style: italic; }

.script-replay-btn {
  margin-top: 1.5rem;
  background: rgba(244,165,34,0.15);
  border: 1px solid rgba(244,165,34,0.4);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.script-replay-btn:hover { background: rgba(244,165,34,0.25); }

.script-breakdown { display: flex; flex-direction: column; gap: 1rem; }
.breakdown-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-light);
  transition: var(--transition);
}
.breakdown-item:hover { border-color: rgba(230,57,70,0.3); }
.breakdown-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.breakdown-item strong { color: var(--white); }

/* Process row */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.process-card:hover {
  border-color: rgba(244,165,34,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.process-icon {
  width: 52px; height: 52px;
  background: rgba(244,165,34,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.process-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.process-card ul { list-style: none; }
.process-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  color: rgba(255,255,255,0.75);
}
.process-card ul li i { color: var(--gold); font-size: 0.7rem; }

/* =============================================
   SECTION 7 — APPOINTMENTS
   ============================================= */
.appt-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.appt-step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.appt-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: var(--red);
}
.appt-icon {
  width: 60px; height: 60px;
  background: rgba(230,57,70,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 auto 1rem;
}
.appt-step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.appt-step p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.appt-step em { color: var(--red); font-style: italic; font-weight: 600; }

.appt-arrow {
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
}

/* =============================================
   SECTION 8 — OBJECTIONS
   ============================================= */
.objection-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

.attempt-tracker h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.attempt {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  background: var(--dark3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.attempt:hover { border-color: rgba(230,57,70,0.3); }

.attempt-num {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  min-width: 48px;
}
.attempt-num sup { font-size: 0.7rem; }
.attempt-num.exit { font-size: 1.6rem; }

.attempt-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.attempt-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0;
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.attempt[data-attempt="1"] .attempt-fill { --target-w: 33%; }
.attempt[data-attempt="2"] .attempt-fill { --target-w: 66%; }
.attempt[data-attempt="3"] .attempt-fill { --target-w: 100%; }

.attempt-action {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 180px;
}

.attempt-exit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(230,57,70,0.3);
}
.attempt-exit .attempt-num { color: var(--gold); }
.attempt-exit .attempt-action { color: var(--white); font-size: 0.9rem; }

/* Exit script card */
.exit-script-card {
  background: var(--dark3);
  border: 1px solid rgba(244,165,34,0.25);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.exit-script-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.exit-script-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.exit-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1.75rem;
}

.exit-why h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.exit-why ul { list-style: none; }
.exit-why ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.35rem 0;
  line-height: 1.5;
}
.exit-why ul li i { color: #4caf50; font-size: 0.75rem; margin-top: 3px; }
.exit-why ul li strong { color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2);
  opacity: 0.9;
  transition: opacity 0.3s;
}
.footer-logo-img:hover { opacity: 1; }
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2rem;
}
.footer-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  margin: 0 auto 2rem;
}
.footer-pillars {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-pillars span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-pillars span i { color: var(--red); }
.footer-hub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.7rem 1.75rem;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 100px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}
.footer-hub-btn:hover {
  background: transparent;
  color: var(--red);
  box-shadow: 0 0 30px rgba(230,57,70,0.6);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-fade, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-fade  { transform: translateY(30px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .script-container { grid-template-columns: 1fr; }
  .process-row       { grid-template-columns: 1fr 1fr; }
  .objection-layout  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--dark2);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }
  .rules-grid        { grid-template-columns: 1fr; }
  .schedule-layout   { grid-template-columns: 1fr; }
  .dress-grid        { grid-template-columns: 1fr; }
  .steps-row         { grid-template-columns: 1fr; }
  .process-row       { grid-template-columns: 1fr; }
  .appt-arrow        { transform: rotate(90deg); }
  .cal-days          { grid-template-columns: repeat(4, 1fr); }
  .hero-stats        { gap: 0.5rem; }
  .stat-pill         { min-width: 90px; }
  .section           { padding: 5rem 0; }
  .territory-visual  { justify-content: center; }
  .script-container  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pipeline          { flex-direction: column; align-items: stretch; }
  .pipeline-arrow    { transform: rotate(90deg); text-align: center; }
  .pipeline-step     { min-width: auto; }
  .appt-grid         { flex-direction: column; align-items: stretch; }
  .appt-step         { max-width: 100%; }
}
