/* Coaching Executif Page Styles */

:root {
  --brand-blue: #093D65;
  --brand-orange: #E94E1B;
  --brand-blue-light: #64748B;
  --brand-white: #FFFFFF;
}

/* Hero Section */
.hero-coaching {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 1s ease-in;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--brand-blue);
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-blue), transparent, transparent);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: slideInUp 0.7s ease-out 0.2s both;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  color: var(--brand-orange);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--brand-blue-light);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--brand-orange);
  color: white;
  border: 2px solid var(--brand-orange);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(233, 78, 27, 0.4);
  text-decoration: none;
}

.cta-button:hover {
  background: white;
  color: var(--brand-blue);
  border-color: white;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

/* Social Proof */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  animation: slideInUp 1s ease-out 0.5s both;
}

.client-avatars {
  display: flex;
  margin-left: -0.5rem;
}

.client-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--brand-blue);
  margin-left: -0.5rem;
  overflow: hidden;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.client-avatar.star {
  background: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.social-proof-text {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.social-proof-text .count {
  font-weight: 700;
  color: var(--brand-orange);
}

/* Video Section */
.video-section {
  padding: 6rem 0;
  background: white;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.section-title .highlight {
  color: var(--brand-orange);
  font-style: italic;
}

.section-divider {
  width: 3rem;
  height: 0.25rem;
  background: var(--brand-orange);
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Feature Item */
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  padding: 0.75rem;
  background: #F8FAFC;
  border-radius: 0.25rem;
  color: var(--brand-orange);
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: #6B7280;
}

/* Video Container */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F8FAFC;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
}

.video-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
  transform: rotate(1deg);
  transition: transform 0.5s ease;
}

.video-wrapper:hover {
  transform: rotate(0deg);
}

.video-wrapper iframe {
  border-radius: 0.5rem;
  background: black;
}

/* Expertise Section */
.expertise-section {
  padding: 6rem 0;
  background: #F8FAFC;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.expertise-card {
  background: white;
  padding: 2rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top-color: var(--brand-orange);
}

.expertise-card:hover .expertise-title {
  color: var(--brand-orange);
}

.expertise-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  min-height: 3.5rem;
  transition: color 0.3s ease;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #64748B;
  margin-bottom: 0.75rem;
}

.expertise-list li svg {
  color: var(--brand-orange);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: #F8FAFC;
  border-radius: 0.25rem;
  padding: 2rem;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  background: white;
  border-top: 4px solid var(--brand-orange);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  transform: translateY(-1rem);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brand-orange);
  color: white;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.1em;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-name {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: #6B7280;
  min-height: 2.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.pricing-card.featured .pricing-amount {
  font-size: 3rem;
}

.pricing-currency {
  font-size: 0.875rem;
  color: #6B7280;
  margin-left: 0.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #64748B;
  margin-bottom: 1rem;
}

.pricing-features li svg {
  color: var(--brand-orange);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.btn-outline-coaching {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: transparent;
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 500;
}

.btn-outline-coaching:hover {
  background: var(--brand-blue);
  color: white;
}

.btn-primary-coaching {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  background: var(--brand-orange);
  border: 1px solid var(--brand-orange);
  color: white;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 700;
}

.btn-primary-coaching:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-coaching {
    padding: 6rem 0 3rem;
  }
  
  .pricing-card.featured {
    transform: translateY(0);
  }
  
  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-coaching {
    min-height: auto;
    padding: 5rem 0 2rem;
  }
  
  .video-section,
  .expertise-section,
  .pricing-section {
    padding: 4rem 0;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .social-proof {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}
