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

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
  /* Colors */
  --bg-darker: #08090c;
  --bg-dark: #0f111a;
  --bg-card: rgba(20, 24, 38, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 245, 212, 0.4);
  
  --primary: #FF006E;       /* 4fin Magenta/Red vibrant */
  --secondary: #00F5D4;     /* Neon Teal/Turquoise */
  --accent: #8338EC;        /* Violet tech accent */
  
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --text-muted: #64748b;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --grad-secondary: linear-gradient(135deg, var(--secondary) 0%, #00b4d8 100%);
  --grad-mixed: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
  --grad-dark: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(0, 245, 212, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-glow-cyan: 0 0 20px rgba(0, 245, 212, 0.25);
  --shadow-glow-pink: 0 0 20px rgba(255, 0, 110, 0.25);
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-darker);
  background-image: var(--grad-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Orbs */
body::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 60%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.06) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

h2 span {
  background: var(--grad-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.highlight-text {
  background: linear-gradient(90deg, var(--secondary) 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

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

/* ==========================================================================
   Layout & Reusable Components
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 80px 0;
  position: relative;
}

/* Glassmorphism Card base */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-pink);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: rgba(0, 245, 212, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.25);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 9, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  gap: 8px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: var(--shadow-glow-cyan);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
}

.nav-links a:hover {
  color: var(--secondary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  background: rgba(15, 17, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-glow-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent));
  z-index: -1;
  border-radius: 26px;
  opacity: 0.6;
  filter: blur(15px);
}

/* Stat pills inside Hero */
.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-pill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
}

.hero-pill-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.hero-pill-text p {
  margin: 0;
  font-size: 0.9rem;
}

/* ==========================================================================
   Old School vs Next-Gen Advisor Section
   ========================================================================== */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.vs-card {
  position: relative;
  overflow: hidden;
}

.vs-card.old {
  border-color: rgba(255, 0, 110, 0.15);
}

.vs-card.new {
  border-color: rgba(0, 245, 212, 0.25);
  box-shadow: 0 10px 30px rgba(0, 245, 212, 0.05);
}

.vs-card.new::before {
  content: 'DOPORUČENÝ STYL';
  position: absolute;
  top: 15px;
  right: -40px;
  background: var(--secondary);
  color: #000;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
}

.vs-list {
  list-style: none;
  margin-top: 1.5rem;
}

.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.vs-list.old li i {
  color: #ef4444;
  margin-top: 0.25rem;
}

.vs-list.new li i {
  color: var(--secondary);
  margin-top: 0.25rem;
  text-shadow: var(--shadow-glow-cyan);
}

/* ==========================================================================
   Benefits Grid Section
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.benefit-card i {
  font-size: 2.5rem;
  background: var(--grad-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calc-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.calc-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
}

.calc-value {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-title);
}

/* Custom Range Input */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: opacity .2s;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  box-shadow: var(--shadow-glow-cyan);
  border: 3px solid #0f111a;
  transition: transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Calculator Output display card */
.calc-results-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 245, 212, 0.2);
  background: radial-gradient(circle at top right, rgba(0, 245, 212, 0.05) 0%, rgba(20, 24, 38, 0.8) 80%);
}

.calc-out-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.calc-out-value {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-title);
  text-shadow: var(--shadow-glow-cyan);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.calc-career-badge {
  background: rgba(255, 0, 110, 0.1);
  border: 1px solid rgba(255, 0, 110, 0.2);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Mentoring Section (Jiří Svárovský)
   ========================================================================== */
.mentor-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.mentor-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Glass placeholder for image */
.mentor-img-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* Gradient block inside placeholder */
.mentor-img-frame::after {
  content: 'Jiří Svárovský';
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  transform: rotate(-15deg);
  text-transform: uppercase;
}

/* Actual image if available, otherwise stylish gradient placeholder */
.mentor-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 24, 38, 0.9) 0%, rgba(8, 9, 12, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.mentor-profile-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--grad-mixed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(255, 0, 110, 0.3);
}

.mentor-img-placeholder h4 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.mentor-img-placeholder p {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
}

.mentor-content h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.mentor-tag {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.mentor-quote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-white);
  border-left: 3px solid var(--secondary);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem 0;
}

.mentor-socials {
  display: flex;
  gap: 1rem;
}

/* ==========================================================================
   Quiz Section
   ========================================================================== */
.quiz-container {
  max-width: 700px;
  margin: 3.5rem auto 0 auto;
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33.3%;
  background: var(--grad-secondary);
  border-radius: 10px;
  transition: width 0.4s ease;
}

.quiz-question {
  display: none;
}

.quiz-question.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.quiz-option-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quiz-option-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--secondary);
  transform: translateX(5px);
}

.quiz-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.quiz-option-card:hover .quiz-checkbox {
  border-color: var(--secondary);
}

.quiz-option-card.selected {
  border-color: var(--secondary);
  background: rgba(0, 245, 212, 0.05);
}

.quiz-option-card.selected .quiz-checkbox {
  border-color: var(--secondary);
  background: var(--secondary);
}

.quiz-option-card.selected .quiz-checkbox::after {
  content: '✓';
  color: #000;
  font-size: 0.8rem;
  font-weight: 900;
}

.quiz-results-state {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease forwards;
}

.quiz-results-state i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  display: inline-block;
  text-shadow: var(--shadow-glow-cyan);
}

/* ==========================================================================
   Road Map (Timeline) Section
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 25px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 3px solid var(--secondary);
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: var(--shadow-glow-cyan);
}

.timeline-item:nth-child(even)::after {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-pink);
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-meta {
  grid-column: 1;
  text-align: right;
  order: -1;
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem 0;
}

.timeline-item:nth-child(even) .timeline-meta {
  align-items: flex-start;
}

.timeline-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.timeline-item:nth-child(odd) .timeline-number {
  background: var(--grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-meta span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 5rem;
  font-family: var(--font-title);
  color: rgba(255, 0, 110, 0.15);
  line-height: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-white);
  font-size: 1.1rem;
}

.testimonial-avatar.alt {
  background: var(--grad-secondary);
  color: #000;
}

.testimonial-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ==========================================================================
   Form Section
   ========================================================================== */
.form-container {
  max-width: 650px;
  margin: 3.5rem auto 0 auto;
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.05) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: -1;
  pointer-events: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.input-group {
  position: relative;
}

.file-upload-group {
  margin-top: 0.5rem;
}

.file-upload-label {
  border-style: dashed !important;
  border-width: 2px !important;
  border-color: var(--secondary) !important;
  background: rgba(0, 245, 212, 0.02) !important;
  color: var(--secondary) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem !important;
  cursor: pointer;
  border-radius: 12px !important;
  transition: var(--transition);
}

.file-upload-label:hover {
  background: rgba(0, 245, 212, 0.08) !important;
  box-shadow: var(--shadow-glow-cyan);
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.05);
}

.form-label {
  position: absolute;
  left: 1.2rem;
  top: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
  font-size: 1rem;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  padding: 0 0.4rem;
  background: #0d0e15;
  color: var(--secondary);
  border-radius: 4px;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.form-checkbox {
  margin-top: 0.25rem;
  accent-color: var(--secondary);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.form-checkbox-label a {
  color: var(--secondary);
  text-decoration: underline;
}

.form-checkbox-label a:hover {
  color: var(--text-white);
}

/* Success Form State */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeIn 0.5s ease forwards;
}

.form-success i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  display: inline-block;
  text-shadow: var(--shadow-glow-cyan);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
  justify-content: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.footer-nav a:hover {
  color: var(--secondary);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.footer-links a:hover {
  color: var(--text-gray);
}

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

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

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

/* ==========================================================================
   Responsive Design Media Queries
   ========================================================================== */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .vs-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .mentor-quote {
    border-left: none;
    border-top: 2px solid var(--secondary);
    padding-left: 0;
    padding-top: 1.5rem;
  }
  
  .mentor-socials {
    justify-content: center;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 45px;
  }
  
  .timeline-item::after {
    left: 20px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
  }
  
  .timeline-item:nth-child(even) .timeline-meta {
    grid-column: 1;
    text-align: left;
    align-items: flex-start;
  }
  
  .timeline-meta {
    align-items: flex-start;
    padding: 0;
  }
}

@media (max-width: 600px) {
  header {
    padding: 0.8rem 0;
  }
  
  .nav-links {
    display: none; /* Can add a responsive hamburger later if needed, but for LP simple CTA is fine */
  }
  
  section {
    padding: 50px 0;
  }
  
  .glass-card {
    padding: 1.5rem;
  }
  
  .btn {
    width: 100%;
  }
}
