/* ============================================
   Home Page Styles
   ============================================ */

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy), color-mix(in oklab, var(--navy) 90%, transparent), color-mix(in oklab, var(--navy) 50%, transparent));
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.18), transparent 55%);
}

.hero-inner {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner { padding-top: 8rem; padding-bottom: 8rem; }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: repeat(12, 1fr);
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.hero-content {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .hero-content { grid-column: span 7; }
}

@media (min-width: 1024px) {
  .hero-graphic { grid-column: span 5; }
}

@media (max-width: 1023px) {
  .hero-graphic { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: var(--gold);
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.05;
  color: #fff;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero h1 .text-gold { color: var(--gold); }

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-tagline {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-features {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.75rem;
  column-gap: 1.5rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero-features { grid-template-columns: repeat(2, 1fr); }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-feature { font-size: 1rem; }
}

.hero-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--gold);
}

.hero-feature span {
  font-weight: 500;
}

.hero-graphic-wrapper {
  position: relative;
}

.hero-graphic-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0.3;
  filter: blur(4rem);
  border-radius: 9999px;
  z-index: 0;
  animation: glowPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.15; }
}

.hero-graphic-radial {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.25), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-graphic-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 37.5rem;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* Trust Bar */
.trust-bar {
  position: relative;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12), transparent 60%);
}

.trust-bar-inner {
  position: relative;
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 4rem 0;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .trust-item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-elegant);
}

.trust-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
}

.trust-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

@media (min-width: 768px) {
  .trust-number { font-size: 3rem; }
}

.trust-label {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .trust-label { font-size: 0.875rem; }
}

/* Audience Cards */
.audience-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.audience-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-0.25rem);
}

.audience-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--gradient-navy);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.audience-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.audience-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.audience-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.audience-card .gold-line {
  margin-top: 1.25rem;
  height: 0.125rem;
  width: 2.5rem;
  background: var(--gradient-gold);
  transition: width 0.3s;
}

.audience-card:hover .gold-line {
  width: 5rem;
}

/* Testimonial Carousel */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.testimonial-card.featured {
  transform: scale(1.02);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-elegant);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--gold);
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.625;
}

.testimonial-author {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.125rem;
}

.testimonial-controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.testimonial-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.testimonial-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-dot {
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.testimonial-dot.active {
  width: 2rem;
  background: var(--gold);
}

.testimonial-dot:not(.active) {
  width: 0.5rem;
}

.testimonial-dot:not(.active):hover {
  background: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 6rem 0; }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.18), transparent 55%);
}

.cta-section > * {
  position: relative;
}

.cta-section .container-prose {
  text-align: center;
  max-width: 48rem;
}

.cta-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}

.cta-section h2 {
  font-size: 1.875rem;
  color: #fff;
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 3rem; }
}

.cta-section h2 .text-gold { color: var(--gold); }

.cta-section p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Mentorship Section */
.mentor-section {
  padding: 5rem 0;
  background: var(--muted);
}

@media (min-width: 768px) {
  .mentor-section { padding: 7rem 0; }
}

.mentor-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mentor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.mentor-img-wrap {
  position: relative;
}

.mentor-glow {
  position: absolute;
  inset: -1.5rem;
  background: var(--gradient-gold);
  opacity: 0.15;
  filter: blur(3rem);
  border-radius: 1.5rem;
  pointer-events: none;
}

.mentor-img {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.mentor-content {
  display: flex;
  flex-direction: column;
}

.mentor-content .gold-divider {
  margin-bottom: 1.25rem;
  display: block;
}

.mentor-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
}

.mentor-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.25;
}

@media (min-width: 768px) {
  .mentor-title { font-size: 2.25rem; }
}

.mentor-text {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .mentor-text { font-size: 1.125rem; }
}

.mentor-stats {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mentor-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

.mentor-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}

.mentor-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}
