/* ==========================================================================
   Event Sales Agency - Premium Clean Design
   ========================================================================== */

:root {
  --primary: #1C7BFD;
  --primary-dark: #1565D8;
  --secondary: #0f172a;
  --text: #2c3345;
  --text-muted: #5c6578;
  --white: #ffffff;
  --off-white: #f9fafb;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.2s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }

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

.container-narrow {
  max-width: 720px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1.125rem 3rem;
  font-size: 1.0625rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--light-gray);
  color: var(--text);
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--border);
}

/* ==========================================================================
   Urgency Bar
   ========================================================================== */
.urgency-bar {
  background: #dc2626;
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9375rem;
}

.urgency-text strong {
  color: #fef08a;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 6rem 0 5rem;
  background: var(--white);
  text-align: center;
}

.hero-compact {
  padding: 3rem 0 2.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.btn-header {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Dark Hero Style */
.hero-dark {
  background: #0a0a0a;
  padding: 6.5rem 0 3rem;
}

.hero-content-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(61, 191, 191, 0.1);
  border: 1px solid rgba(61, 191, 191, 0.3);
  border-radius: 100px;
  color: #1C7BFD;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.text-blue {
  color: #1C7BFD;
}

.hero-video-large {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(61, 191, 191, 0.15), 0 10px 30px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-video-large video {
  width: 100%;
  display: block;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.hero-stat {
  text-align: center;
  padding-left: 2rem;
  border-left: 2px solid rgba(61, 191, 191, 0.3);
}

.hero-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.hero-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1C7BFD;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-warning {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 200, 50, 0.15);
  border: 1px solid rgba(255, 200, 50, 0.4);
  border-radius: 8px;
  color: #ffc832;
  font-size: 0.9rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-video {
  max-width: 700px;
  margin: 1.5rem auto;
}

.hero-video video {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: rgba(255,255,255,0.7);
}

.hero h1 {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.hero-mini-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-mini-stats .dot {
  color: var(--border);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   Warning Section
   ========================================================================== */
.warning-section {
  padding: 2rem 0;
  background: #fef3c7;
}

.warning-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.warning-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #92400e;
}

.warning-box p {
  color: #78350f;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.warning-link {
  color: #92400e;
  font-weight: 600;
  text-decoration: underline;
}

.warning-link:hover {
  color: #78350f;
}

/* ==========================================================================
   Social Proof Bar
   ========================================================================== */
.social-proof-bar {
  background: var(--secondary);
  padding: 1.25rem 0;
  text-align: center;
}

.proof-headline {
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-names {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.proof-names span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ==========================================================================
   Problem List
   ========================================================================== */
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e2e8f0;
  border-left: 4px solid #ef4444;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.problem-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left-color: #1C7BFD;
}

.problem-item p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
}

.problem-cta {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1C7BFD 0%, #2da3a3 100%);
  color: white;
  border-radius: 12px;
}

/* ==========================================================================
   Section CTA Inline
   ========================================================================== */
.section-cta-inline {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================================
   Section Stats
   ========================================================================== */
.section-stats {
  background: linear-gradient(135deg, var(--primary) 0%, #1565D8 100%);
  padding: 4rem 0;
}

.section-stats .big-stat-number {
  color: var(--white);
}

.section-stats .big-stat-label {
  color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
}

.sticky-cta .btn-primary {
  width: 100%;
  padding: 1rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-fine {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-light {
  padding: 6rem 0;
  background: var(--white);
}

.section-dark {
  padding: 6rem 0;
  background: var(--secondary);
}

.section-white {
  padding: 6rem 0;
  background: var(--off-white);
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.text-teal {
  color: #1C7BFD;
}

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

.text-white-muted {
  color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.section-light h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.pain-point {
  padding: 0 1rem;
}

.pain-point h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.pain-point p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* ==========================================================================
   Services / Solution Section
   ========================================================================== */
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.service-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: var(--secondary);
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Who It's For Section
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.col h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.list-check,
.list-x {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.list-check li,
.list-x li {
  padding-left: 2rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #10b981;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.list-x li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.section-cta {
  padding: 6rem 0;
  background: var(--primary);
  text-align: center;
}

.section-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.section-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.section-cta .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.section-cta .btn-primary:hover {
  background: var(--off-white);
}

.cta-fine {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 3rem 0;
  background: var(--secondary);
  text-align: center;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-stats {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

/* ==========================================================================
   Quiz Page
   ========================================================================== */
.quiz-page {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.quiz-container {
  max-width: 560px;
  width: 100%;
}

.quiz-progress {
  margin-bottom: 2rem;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
}

.progress-text {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.quiz-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step h2 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.quiz-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.quiz-option {
  display: block;
  cursor: pointer;
}

.quiz-option input {
  display: none;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 500;
}

.option-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.option-content:hover {
  border-color: var(--primary);
  background: rgba(28, 123, 253, 0.02);
}

.quiz-option input:checked + .option-content {
  border-color: var(--primary);
  background: rgba(28, 123, 253, 0.05);
}

/* Contact Form */
.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* Quiz Navigation */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.quiz-nav .btn-primary,
.quiz-nav .btn-secondary {
  flex: 1;
  padding: 0.875rem 1.5rem;
}

#nextBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Quiz Trust */
.quiz-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.trust-item svg {
  color: var(--primary);
}

/* ==========================================================================
   Booking Page
   ========================================================================== */
.booking-page {
  background: var(--off-white);
  min-height: 100vh;
  padding: 3rem 2rem;
}

.booking-container {
  max-width: 1080px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-badge {
  display: inline-block;
  background: #10b981;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.booking-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.booking-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.booking-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
}

.booking-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  height: fit-content;
}

.booking-info h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.booking-info h3:first-child {
  margin-top: 0;
}

.booking-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.booking-info li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.booking-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.booking-warning {
  background: #fef3c7;
  border-left: 3px solid #f59e0b;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #92400e;
}

.booking-calendar {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.booking-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ==========================================================================
   Not Qualified Page
   ========================================================================== */
.dq-page {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.dq-container {
  max-width: 560px;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.dq-container h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.dq-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.dq-reasons,
.dq-alternative {
  margin-bottom: 2rem;
}

.dq-reasons h3,
.dq-alternative h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.dq-reasons p,
.dq-alternative p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.dq-reasons ul,
.dq-alternative ul {
  margin-left: 1.25rem;
  list-style: disc;
}

.dq-reasons li,
.dq-alternative li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.dq-cta {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.dq-cta p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */
.thankyou-page {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.thankyou-container {
  max-width: 560px;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.thankyou-container h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.thankyou-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.thankyou-box {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.thankyou-box h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step {
  display: flex;
  gap: 1rem;
}

.step-number {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.thankyou-warning {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.thankyou-warning h3 {
  font-size: 0.9375rem;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.thankyou-warning p {
  color: #92400e;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.thankyou-warning p:last-child {
  margin-bottom: 0;
}

.thankyou-contact {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.thankyou-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.thankyou-footer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   Video Placeholder
   ========================================================================== */
.video-container {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-placeholder {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, #1e3a5f 0%, var(--secondary) 100%);
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.play-button svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  margin-left: 4px;
}

.video-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  margin: 0;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* ==========================================================================
   Cost Grid
   ========================================================================== */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.cost-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.cost-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   Service Cards Light
   ========================================================================== */
.service-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.service-card-light:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-card-light .service-num {
  color: var(--primary);
  opacity: 0.3;
}

.service-card-light h3 {
  color: var(--secondary);
}

.service-card-light p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.process-steps {
  margin-top: 3rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.process-content p {
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Big Stats
   ========================================================================== */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.big-stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.big-stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   About Points
   ========================================================================== */
.about-points {
  margin-top: 3rem;
}

.about-point {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.about-point:last-child {
  border-bottom: none;
}

.about-point h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.about-point p {
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  margin-top: 3rem;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
  text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-points {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-compact {
    padding: 2rem 0 1.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-mini-stats {
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Mobile hero - video first like Closers.io */
  .hero-dark {
    padding: 5rem 0 2rem;
  }

  .hero-content-centered {
    display: flex;
    flex-direction: column;
  }

  .hero-badge {
    order: 1;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-headline {
    order: 2;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .hero-video-large {
    order: 3;
    margin-bottom: 1.5rem;
  }

  .hero-stats-row {
    order: 4;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-stat {
    padding-left: 1rem;
  }

  .hero-stat-num {
    font-size: 1.25rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .hero-content-centered > .btn-primary {
    order: 5;
    width: 100%;
    padding: 1rem;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cost-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .big-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .proof-names {
    gap: 1rem;
  }

  .proof-names span {
    font-size: 0.8125rem;
  }

  .booking-content {
    grid-template-columns: 1fr;
  }

  .booking-info {
    order: 2;
  }

  .booking-calendar {
    order: 1;
  }

  .quiz-form {
    padding: 2rem 1.5rem;
  }

  .quiz-nav {
    flex-direction: column;
  }

  .quiz-nav .btn-primary,
  .quiz-nav .btn-secondary {
    width: 100%;
  }

  .section-light,
  .section-dark,
  .section-white,
  .section-cta {
    padding: 3rem 0;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button svg {
    width: 24px;
    height: 24px;
  }

  /* Sticky CTA on mobile */
  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .footer {
    padding-bottom: 5rem;
  }
}
