@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root {
  --bg-primary: #060a14;
  --bg-secondary: #0c1222;
  --bg-card: rgba(15, 23, 42, 0.6);
  --blue-primary: #2563eb;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.3);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: rgba(51, 65, 85, 0.5);
  --gradient-blue: linear-gradient(135deg, #2563eb, #1d4ed8);
  --gradient-hero: linear-gradient(135deg, #060a14 0%, #0c1a3a 50%, #060a14 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px var(--blue-glow); } 50% { box-shadow: 0 0 40px var(--blue-glow), 0 0 60px rgba(37,99,235,0.15); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes counter-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

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

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(6, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.7rem 2rem;
}
.logo { font-family: 'Philosopher', serif; font-size: 1.6rem; font-weight: 700; color: var(--text-primary); text-decoration: none; }
.logo em { font-style: italic; color: var(--blue-primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--blue-primary); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gradient-blue); color: white; padding: 0.6rem 1.5rem;
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s; border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--blue-glow); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text-primary); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero); position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 50px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-blue); color: white; padding: 1rem 2rem;
  border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.3s; border: none; cursor: pointer;
  animation: pulse-glow 3s infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px var(--blue-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text-primary); padding: 1rem 2rem;
  border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 1rem;
  border: 1px solid var(--border-color); transition: all 0.3s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--blue-primary); background: rgba(37,99,235,0.05); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}
.hero-image-wrapper img { width: 100%; display: block; border-radius: 20px; }

/* SOCIAL PROOF BAR */
.social-proof-bar {
  padding: 3rem 2rem; background: var(--bg-secondary);
  border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.proof-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.proof-item h3 {
  font-size: 2.5rem; font-weight: 800; color: var(--blue-light);
  margin-bottom: 0.3rem;
}
.proof-item p { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }

/* SECTIONS COMMON */
.section { padding: 6rem 2rem; position: relative; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 50px;
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25);
  color: var(--blue-light); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.6; }
.section-title .highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-red { color: #ef4444; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* PROBLEMS */
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: 1.2rem; }
.problem-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.2rem;
  border-radius: 12px; background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1); transition: all 0.3s;
}
.problem-item:hover { border-color: rgba(239, 68, 68, 0.25); background: rgba(239, 68, 68, 0.07); transform: translateX(5px); }
.problem-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.problem-item p { color: var(--text-secondary); font-size: 0.95rem; }
.problem-item strong { color: var(--text-primary); }
.impact-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(10px);
}
.impact-card h3 { font-size: 1.3rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.7rem; }
.impact-card .quote { color: var(--blue-light); font-style: italic; font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; border-left: 3px solid var(--blue-primary); padding-left: 1rem; }
.impact-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-light); font-weight: 600; }

/* SERVICES CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-blue); opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--blue-primary); box-shadow: 0 20px 50px rgba(37,99,235,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(37,99,235,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: center; }
.results-text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.results-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.result-badge {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
  border-radius: 50px; background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2); color: #4ade80; font-size: 0.85rem; font-weight: 500;
}
.results-visual { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.results-visual img { width: 100%; display: block; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card blockquote strong { color: var(--blue-light); font-style: normal; }
.testimonial-tag {
  display: inline-block; padding: 0.25rem 0.7rem; border-radius: 50px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  color: var(--blue-light); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 0.8rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-blue); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white;
}
.testimonial-info h4 { font-size: 0.9rem; font-weight: 600; }
.testimonial-info p { font-size: 0.8rem; color: var(--text-muted); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px);
  transition: all 0.4s; position: relative;
}
.pricing-card.featured {
  border-color: var(--blue-primary);
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(15,23,42,0.8));
  transform: scale(1.03);
}
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.badge-recommended { background: var(--gradient-blue); color: white; }
.badge-waitlist { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }
.badge-soon { background: rgba(34,197,94,0.2); color: #4ade80; }
.pricing-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pricing-card .desc { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1.2rem; line-height: 1.5; }
.pricing-price { margin-bottom: 1.2rem; }
.pricing-price .label { font-size: 0.8rem; color: var(--text-muted); }
.pricing-price h4 { font-size: 1.8rem; font-weight: 800; }
.pricing-price .sub { font-size: 0.75rem; color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.85rem; color: var(--text-secondary); }
.pricing-features .check { color: #4ade80; flex-shrink: 0; }
.pricing-btn {
  display: block; width: 100%; padding: 0.8rem; border-radius: 10px;
  text-align: center; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.3s; border: none; cursor: pointer;
}
.pricing-btn-primary { background: var(--gradient-blue); color: white; }
.pricing-btn-primary:hover { box-shadow: 0 8px 25px var(--blue-glow); transform: translateY(-2px); }
.pricing-btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-color); }
.pricing-btn-secondary:hover { border-color: var(--blue-primary); }

/* FAQ */
.faq-container { max-width: 700px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
  width: 100%; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: var(--text-primary); font-size: 1rem; font-weight: 600;
  cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; transition: color 0.3s;
}
.faq-question:hover { color: var(--blue-light); }
.faq-icon { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; color: var(--blue-light); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 1.3rem; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* CTA FINAL */
.cta-section {
  padding: 6rem 2rem; text-align: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), transparent 60%);
  position: relative;
}
.cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-guarantee { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; }

/* FOOTER */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border-color); background: var(--bg-secondary); }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-left p { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--blue-light); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(6,10,20,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .proof-container { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  .section-title { font-size: 1.8rem; }
  .cta-section h2 { font-size: 1.8rem; }
  .footer-container { flex-direction: column; text-align: center; }
  .modal-content.modal-large { max-width: 95vw; padding: 1.5rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* MODALS */
.modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(8px);
  z-index: 2000; align-items: center; justify-content: center;
  padding: 1rem; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 20px; padding: 2.5rem; position: relative;
  max-height: 90vh; overflow-y: auto; animation: fadeInUp 0.4s ease;
}
.modal-content.modal-large { max-width: 800px; width: 100%; }
.modal-content.modal-small { max-width: 450px; width: 100%; }
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; color: var(--text-secondary);
  font-size: 1.8rem; cursor: pointer; transition: color 0.3s;
  line-height: 1; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.modal-close:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.modal-title { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }
.modal-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.5; }

/* FORMS */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-step {
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
  color: var(--text-primary);
}
.form-section { margin-top: 2rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.4rem;
}
.form-field input {
  width: 100%; padding: 0.8rem 1rem; border-radius: 10px;
  border: 1px solid var(--border-color); background: var(--bg-primary);
  color: var(--text-primary); font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s; outline: none;
}
.form-field input:focus { border-color: var(--blue-primary); box-shadow: 0 0 0 3px var(--blue-glow); }
.form-field input::placeholder { color: var(--text-muted); }
.form-check {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1rem 1.2rem; margin-top: 1rem;
  border-radius: 12px; border: 1px solid var(--border-color);
  background: var(--bg-primary);
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  cursor: pointer; accent-color: var(--blue-primary);
}
.form-check label {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;
  cursor: pointer; font-style: italic;
}
.form-submit {
  width: 100%; margin-top: 1.5rem; padding: 1rem;
  font-size: 1rem; justify-content: center;
  animation: none !important;
}
.form-success {
  text-align: center; padding: 1rem; margin-top: 1rem;
  border-radius: 12px; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3); color: #4ade80;
  font-weight: 600; font-size: 0.95rem;
}

/* CALENDAR */
.calendar-widget {
  background: var(--bg-primary); border: 1px solid var(--border-color);
  border-radius: 14px; padding: 1rem; user-select: none;
}
.cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.8rem;
}
.cal-header h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; }
.cal-nav {
  background: none; border: none; color: var(--text-secondary);
  font-size: 1.2rem; cursor: pointer; padding: 4px 8px;
  border-radius: 6px; transition: all 0.2s;
}
.cal-nav:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; gap: 2px;
}
.cal-day-name {
  font-size: 0.7rem; font-weight: 600; color: var(--text-muted);
  padding: 4px 0; text-transform: lowercase;
}
.cal-day {
  padding: 6px 4px; font-size: 0.85rem; border-radius: 8px;
  cursor: pointer; transition: all 0.2s; border: none;
  background: none; color: var(--text-primary); font-family: 'Inter', sans-serif;
}
.cal-day:hover:not(.cal-past):not(.cal-empty) { background: rgba(37,99,235,0.15); }
.cal-day.cal-today { font-weight: 700; color: var(--blue-light); }
.cal-day.cal-selected { background: var(--blue-primary); color: white; font-weight: 700; }
.cal-day.cal-past { color: var(--text-muted); opacity: 0.4; cursor: default; }
.cal-day.cal-empty { cursor: default; }

/* TIME SLOTS */
.time-slots {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.time-slot {
  padding: 0.7rem; border-radius: 10px;
  border: 1px solid var(--border-color); background: var(--bg-primary);
  color: var(--text-primary); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.time-slot:hover { border-color: var(--blue-primary); background: rgba(37,99,235,0.08); }
.time-slot.selected { background: var(--blue-primary); color: white; border-color: var(--blue-primary); }

/* FORM VALIDATION ERRORS */
.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}
.field-error {
  display: block;
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 0.3rem;
  padding-left: 0.2rem;
}
.form-error {
  text-align: center;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-check.input-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05);
}

/* SUCCESS SCREEN */
.form-success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  min-height: 200px;
}
.form-success-screen .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s ease;
}
.form-success-screen h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #4ade80;
}
.form-success-screen p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* WAITLIST PLAN LABEL */
.waitlist-plan-label {
  display: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--blue-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
