:root {
  --primary: #667eea;
  --primary-dark: #5568d3;
  --secondary: #764ba2;
  --accent: #f093fb;
  --dark: #1f2937;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
}

.landing-page {
  font-family: 'Inter', sans-serif;
}

/* Navbar Styles */
.navbar-custom {
  background: transparent;
  box-shadow: none;
  padding: 0.5rem 0; /* réduit pour éviter agrandir le header */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom .container-lg {
  padding-left: 0.75rem; /* rapprocher logo du bord */
  padding-right: 0.75rem;
}

.navbar-custom.navbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}

.navbar-custom.navbar-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px #0000001a;
  padding: 0.75rem 0;
}

.navbar-custom.scrolled .navbar-brand,
.navbar-custom.scrolled .navbar-nav .nav-link {
  color: var(--dark) !important;
}

.navbar-custom.scrolled .brand-icon {
  color: var(--primary) !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.3rem;
  color: white !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.brand-icon {
  width: 24px;
  height: 24px;
  color: white;
  stroke-width: 2;
  transition: color 0.3s ease;
}

.brand-text {
  color: white;
  font-weight: 800;
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 64px; /* fixe la hauteur du header pour éviter agrandissement */
  overflow: visible;
}

.brand-logo-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* image utilisée sur header blanc (scrolled) */
.brand-logo.img-scrolled {
  display: none;
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

/* logo texte utilisé quand le header est incrusté sur l'image */
.brand-logo {
  display: inline-block;
  height: 64px; /* taille maximale visuelle du logo sans augmenter le header */
  width: auto;
  max-width: 360px;
  transition: transform 0.15s ease, opacity 0.15s ease;
  margin-top: 24px;
}

/* logo blanc utilisé sur l'image (par défaut) */
.brand-logo {
  display: inline-block;
  height: 200px;
  max-width: 1000px;
  object-fit: contain;
}

.brand-logo.brand-logo-default {
  display: none;
  height: 180px;
  max-width: 900px;
  object-fit: contain;
}

/* Basculer visibilités selon l'état du header */
.navbar-custom.scrolled .brand-logo.brand-logo-white {
  display: none;
}

.navbar-custom.scrolled .brand-logo.brand-logo-default {
  display: inline-block;
}

.navbar-nav {
  gap: 0.2rem;
}

.navbar-nav .nav-link {
  color: white !important;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #2563eb !important;
}

.logout-link {
  color: white !important;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.logout-link:hover {
  color: #2563eb !important;
}

.navbar-custom.scrolled .logout-link {
  color: var(--dark) !important;
}

.navbar-custom.scrolled .logout-link:hover {
  color: var(--primary) !important;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-text {
  color: white;
  font-size: 0.85rem;
}

.btn-connexion {
  /* Par défaut (sur image) : pas de fond, texte blanc en gras */
  background: transparent;
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-weight: 800;
  border: none;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
  box-shadow: none;
}

.btn-connexion:hover {
  color: #e6eefc;
}

/* Quand le header a fond blanc (après scroll) on met un bouton visible */
.navbar-custom.scrolled .btn-connexion {
  background: #0f172a;
  color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.navbar-custom.scrolled .btn-connexion:hover {
  background: #111827;
}

.btn-primary-nav {
  background: white;
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-primary-nav:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.navbar-custom.scrolled .btn-primary-nav {
  background: var(--primary);
  color: white;
  border: none;
}

.navbar-custom.scrolled .btn-primary-nav:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* SVG Icons */
svg {
  width: 24px;
  height: 24px;
}

.btn-icon {
  margin-right: 8px;
}

.benefit-check,
.feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 8px;
  flex-shrink: 0;
  color: #2563eb;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.7) 100%), url('/img/image_hero.jpg') center/cover no-repeat;
  color: white;
  padding: 150px 60px 80px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.2);
  border: 2px solid rgba(102, 126, 234, 0.5);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease-out;
  font-weight: 500;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #667eea;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-video-placeholder {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 2px solid rgba(102, 126, 234, 0.6);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-video-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  animation: shimmer 3s linear infinite;
}

.hero-video-placeholder:hover {
  border-color: rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.video-icon {
  width: 48px;
  height: 48px;
  color: #2563eb;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  animation: fadeInDown 1s ease-out 0.4s both;
}

.hero-video-placeholder:hover .video-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4));
}

.video-text {
  color: #cbd5e0;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin: 0;
  animation: fadeInDown 1s ease-out 0.5s both;
}

.hero-video-placeholder:hover .video-text {
  color: #e2e8f0;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.1;
  color: white;
  animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e0;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInDown 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInDown 1s ease-out 0.6s both;
  width: 100%;
}

.hero-buttons .btn {
  min-width: auto;
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 600;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  font-size: 0.95rem;
  margin-top: 30px;
  animation: fadeInDown 1s ease-out 0.8s both;
  width: 100%;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.benefit-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: #667eea;
  stroke: currentColor;
  font-weight: bold;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #6b3d8c 100%);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-contact {
  background: #2563eb;
  color: white;
  border: none;
}

.btn-contact:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Platforms Section */
.platforms {
  padding: 100px 40px;
  background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
}

.platforms h2,
.how-it-works h2,
.why-talentflow h2,
.pricing h2,
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: #1a2e4d;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.platform-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.platform-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(-8px);
  border-color: #2563eb;
}

.platform-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
  border-radius: 12px;
  color: #0F4C81;
  transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
  background: #2563eb;
  color: white;
  transform: scale(1.1);
}

.platform-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1a2e4d;
}

.platform-type {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.platform-description {
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.6;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-features li {
  color: #475569;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* How it Works Section */
.how-it-works {
  padding: 100px 40px;
  background: white;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 250px;
  animation: fadeInUp 0.8s ease-out;
}

.step:nth-child(2) {
  animation-delay: 0.1s;
}

.step:nth-child(4) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0F4C81 0%, #1a2e4d 100%);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1a2e4d;
}

.step p {
  color: #64748b;
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0F4C81 0%, transparent 100%);
  margin: 30px 0;
}

/* Why Heilya Section */
.why-talentflow {
  padding: 100px 40px;
  background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.6s ease-out both;
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #0F4C81);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature:hover::before {
  transform: scaleX(1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.feature:nth-child(1) { animation-delay: 0s; }
.feature:nth-child(2) { animation-delay: 0.1s; }
.feature:nth-child(3) { animation-delay: 0.2s; }
.feature:nth-child(4) { animation-delay: 0.1s; }
.feature:nth-child(5) { animation-delay: 0.2s; }
.feature:nth-child(6) { animation-delay: 0.3s; }

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef8 100%);
  border-radius: 12px;
  color: #0F4C81;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover .feature-icon {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  transform: scale(1.2) rotate(5deg);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1a2e4d;
  transition: all 0.3s ease;
}

.feature:hover h3 {
  color: #2563eb;
}

.feature p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
  padding: 100px 40px;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: priceSlide 0.6s ease-out both;
}

@keyframes priceSlide {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-card:nth-child(1) { animation-delay: 0s; }
.pricing-card:nth-child(2) { animation-delay: 0.1s; }
.pricing-card:nth-child(3) { animation-delay: 0.2s; }

.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.pricing-card-featured {
  border: 3px solid #2563eb;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1a2e4d;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F4C81;
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  color: #64748b;
}

.price-description {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.pricing-features li:hover {
  color: #2563eb;
  padding-left: 5px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a2e4d 0%, #0f3a66 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-section h2 {
  color: white;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #cbd5e0;
  font-size: 1.1rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Footer */
.landing-footer {
  background: #0a1a2e;
  color: white;
  padding: 60px 40px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #2563eb;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section p {
  color: #cbd5e0;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-logo {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #2563eb;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  max-width: 380px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero-content {
    text-align: left;
    padding: 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 15px;
  }

  .hero-video-placeholder {
    height: 300px;
  }
  }

  .hero-video-placeholder {
    aspect-ratio: 16 / 10;
    min-height: 250px;
  }

  .video-icon {
    width: 48px;
    height: 48px;
  }

  .platforms,
  .how-it-works,
  .why-talentflow,
  .pricing {
    padding: 60px 20px;
  }

  .platforms h2,
  .how-it-works h2,
  .why-talentflow h2,
  .pricing h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: scale(1) translateY(-5px);
  }

  .steps {
    gap: 20px;
  }

  .step-connector {
    display: none;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .btn-lg {
    flex: 1 1 calc(50% - 10px);
  }

  .hero-benefits {
    flex-wrap: wrap;
  }

  .benefit {
    flex: 1 1 calc(50% - 20px);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-nav {
    gap: 1rem;
    margin-top: 1rem;
  }
}

