/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.loading-logo .horse-icon {
  font-size: 3rem;
  filter: sepia(1) saturate(2) hue-rotate(25deg);
  animation: loadingBounce 1s ease-in-out infinite;
}

.loading-logo .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2c2c2c 0%, #d4a574 50%, #2c2c2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 165, 116, 0.3);
  border-top: 3px solid #d4a574;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loading-text {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

@keyframes loadingPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes loadingBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(212, 165, 116, 0.2);
  z-index: 1000;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d4a574, #e6b885);
  width: 0%;
  transition: width 0.1s ease;
}

/* Section Badges */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* Stats Banner Section */
.stats-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #d4a574;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #d4a574;
  border-bottom: 2px solid #d4a574;
  transform: rotate(45deg);
  margin: 0 auto 10px;
}

.scroll-text {
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a574, #e6b885);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Language Toggle */
.language-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: none; /* Hidden for now */
  gap: 2px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  padding: 10px 18px;
  border: none;
  background: transparent;
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.lang-btn:hover::before {
  left: 100%;
}

.lang-btn.active {
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
  transform: scale(1.05);
}

.lang-btn:hover {
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  transform: translateY(-1px);
}

/* Modern Hero Section */
.hero-modern {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.03) 0%,
    rgba(212, 165, 116, 0.08) 100%
  );
  z-index: 1;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-left {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(212, 165, 116, 0.05) 100%
  );
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #d4a574;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 500px;
}

.hero-stats-inline {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d4a574;
  line-height: 1;
}

.stat-text {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

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

.btn-primary {
  background: linear-gradient(135deg, #d4a574 0%, #e6b885 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.btn-secondary:hover {
  color: #d4a574;
  background: rgba(212, 165, 116, 0.05);
}

/* Hero Visual Right */
.hero-visual-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.hero-card.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.logo-mini {
  font-weight: 600;
  color: #d4a574;
  font-size: 1.1rem;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
  font-family: "Playfair Display", serif;
}

.opportunity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.opportunity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(212, 165, 116, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.opportunity-item:hover {
  background: rgba(212, 165, 116, 0.08);
  transform: translateX(5px);
}

.opp-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 10px;
}

.opp-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.opp-title {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 0.95rem;
}

.opp-meta {
  font-size: 0.8rem;
  color: #888;
}

/* About Section - Asymmetrical */
.about-asymmetric {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.about-asymmetric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.02) 0%,
    rgba(212, 165, 116, 0.05) 100%
  );
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text-section {
  padding: 2rem 0;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.about-text-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.about-text-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 3rem;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.highlight-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(212, 165, 116, 0.05) 100%
  );
  border-radius: 15px;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: #666;
  margin: 0;
}

.about-visual-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 350px;
}

.visual-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.visual-card.primary {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  transform: translateX(-20px);
}

.visual-card.secondary {
  transform: translateX(20px);
}

.visual-card:hover {
  transform: translateY(-5px) translateX(0);
  box-shadow: 0 25px 60px rgba(212, 165, 116, 0.15);
}

.visual-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.visual-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
  font-family: "Playfair Display", serif;
}

.visual-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Live Platform Stats Section */
.live-stats {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-header {
  text-align: center;
  margin-bottom: 5rem;
}

.stats-label {
  display: inline-block;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.stats-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.stats-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.live-stats-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card.featured {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 2px solid rgba(212, 165, 116, 0.2);
  transform: scale(1.02);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-content {
  position: relative;
  z-index: 1;
}

.stat-card .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4a574;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.trend-icon {
  font-size: 1.2rem;
}

.trend-text {
  font-size: 0.85rem;
  color: #d4a574;
  font-weight: 600;
}

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

.btn-stats-primary {
  background: linear-gradient(135deg, #d4a574 0%, #e6b885 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 1rem;
}

.btn-stats-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-stats-primary:hover::before {
  left: 100%;
}

.btn-stats-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

.stats-note {
  display: block;
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

/* AI-Powered Profile Creation Section */
.ai-profile {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.ai-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.ai-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.ai-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 3rem;
}

.ai-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.ai-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.ai-benefit .benefit-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(212, 165, 116, 0.05) 100%
  );
  border-radius: 15px;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.ai-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn-ai-primary {
  background: linear-gradient(135deg, #d4a574 0%, #e6b885 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-ai-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-ai-primary:hover::before {
  left: 100%;
}

.btn-ai-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

.ai-note {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.ai-visual {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ai-demo {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.demo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.demo-step.active {
  background: rgba(212, 165, 116, 0.05);
}

.step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.demo-arrow {
  font-size: 1.5rem;
  color: #d4a574;
  font-weight: bold;
}

.ai-example {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.example-before,
.example-after {
  flex: 1;
  text-align: center;
}

.example-before h5,
.example-after h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.cv-preview {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px dashed #ddd;
}

.cv-line {
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.cv-line.short {
  width: 60%;
}

.cv-line.medium {
  width: 80%;
}

.profile-preview {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid rgba(212, 165, 116, 0.2);
}

.profile-section {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4a574;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-content {
  height: 6px;
  background: linear-gradient(90deg, #d4a574, #e6b885);
  border-radius: 3px;
}

.transform-arrow {
  font-size: 2rem;
  color: #d4a574;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Community Integration Section */
.community-integration {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.community-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.community-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.community-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.facebook-preview {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  border: 1px solid #e0e0e0;
}

.fb-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  background: #f8f9fa;
}

.fb-logo {
  width: 50px;
  height: 50px;
  background: #1877f2;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.fb-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.2rem;
}

.fb-info p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.fb-content {
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
}

.fb-post {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.fb-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.author-avatar {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}

.author-info strong {
  font-size: 0.9rem;
  color: #2c2c2c;
  display: block;
}

.author-info span {
  font-size: 0.75rem;
  color: #666;
}

.fb-post p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #2c2c2c;
  margin-bottom: 0.8rem;
}

.post-engagement {
  display: flex;
  gap: 1rem;
}

.post-engagement span {
  font-size: 0.8rem;
  color: #666;
}

.community-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.community-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 3rem;
}

.community-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.community-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.community-stat .stat-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.community-stat .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4a574;
  line-height: 1;
}

.community-stat .stat-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.community-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.community-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.community-benefit .benefit-check {
  width: 24px;
  height: 24px;
  background: #d4a574;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.community-benefit span:last-child {
  color: #555;
  font-weight: 500;
}

.community-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-community-primary {
  background: #1877f2;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.btn-community-primary:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.btn-community-secondary {
  background: transparent;
  color: #d4a574;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #d4a574;
  transition: all 0.3s ease;
}

.btn-community-secondary:hover {
  background: #d4a574;
  color: white;
  transform: translateY(-2px);
}

/* Footer Minimal */
.footer-minimal {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-icon {
  font-size: 2rem;
  filter: sepia(1) saturate(2) hue-rotate(25deg);
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4a574 0%, #e6b885 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #d4a574;
  transform: translateX(-5px);
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-modern .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  /* .about-visual-section {
    order: -1;
  } */

  .visual-stack {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .visual-card.primary,
  .visual-card.secondary {
    transform: none;
  }

  .features-grid-modern {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .feature-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .stories-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .cta-actions {
    align-items: center;
  }

  /* New sections responsive */
  .live-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-card.featured {
    grid-column: 1 / -1;
    transform: none;
  }

  .ai-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .ai-visual {
    order: -1;
  }

  .ai-demo {
    flex-direction: column;
    gap: 1.5rem;
  }

  .demo-arrow {
    transform: rotate(90deg);
  }

  .ai-example {
    flex-direction: column;
    gap: 1.5rem;
  }

  .transform-arrow {
    transform: rotate(90deg);
  }

  .community-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .community-visual {
    order: -1;
  }

  .community-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .community-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 4rem 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-asymmetric {
    padding: 4rem 0;
  }

  .about-text-section h2 {
    font-size: 2.5rem;
  }

  .visual-stack {
    flex-direction: column;
    gap: 1.5rem;
  }

  .features-modern {
    padding: 4rem 0;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
  }

  .stories-magazine {
    padding: 4rem 0;
  }
  .countries-covered {
    padding: 4rem 0;
  }
  .about-yehaww {
    padding: 4rem 0;
  }

  .story-featured {
    padding: 2rem;
  }

  .cta-split {
    padding: 4rem 0;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-stats {
    max-width: none;
  }

  /* New sections mobile responsive */
  .live-stats {
    padding: 4rem 0;
  }

  .stats-header h2 {
    font-size: 2.5rem;
  }

  .live-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .ai-profile {
    padding: 4rem 0;
  }

  .ai-content h2 {
    font-size: 2.5rem;
  }

  .ai-demo {
    padding: 1.5rem;
  }

  .demo-step {
    padding: 0.5rem;
  }

  .step-content h4 {
    font-size: 0.9rem;
  }

  .step-content p {
    font-size: 0.75rem;
  }

  .ai-example {
    padding: 1.5rem;
  }

  .community-integration {
    padding: 4rem 0;
  }

  .community-content h2 {
    font-size: 2.5rem;
  }

  .facebook-preview {
    max-width: 100%;
  }

  .fb-header {
    padding: 1rem;
  }

  .fb-content {
    padding: 1rem;
  }

  .community-stats {
    /* flex-direction: column; */
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .community-stat {
    justify-content: center;
  }

  /* Job Categories responsive */
  .job-categories {
    padding: 4rem 0;
  }

  .categories-header h2 {
    font-size: 2.5rem;
  }

  .categories-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .category-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .jobs-grid,
  .disciplines-grid,
  .events-grid,
  .office-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .job-category-card.featured {
    transform: none;
  }

  .categories-cta {
    padding: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .hero-grid,
  .about-container,
  .features-container,
  .stories-container,
  .cta-container,
  .footer-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-text-section h2,
  .features-header-modern h2,
  .stories-header h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .story-featured {
    padding: 2rem;
  }

  .feature-card {
    padding: 2rem;
  }
}

/* Features Modern Section */
.features-modern {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-header-modern {
  text-align: center;
  margin-bottom: 5rem;
}

.features-label {
  display: inline-block;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.features-header-modern h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.feature-card.large {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.feature-visual {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4a574;
  font-weight: bold;
}

/* Stories Magazine Section */
.stories-magazine {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.countries-covered {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-yehaww {
  padding: 4rem 0;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  gap: 20px;
  /* text-align: center; */
  /* justify-content: space-between; */
  align-items: center;
  max-width: 1400px;
  margin: 0px auto;
}
.about-yehaww h2::after {
  display: none;
}
.about-yehaww img {
  width: 400px;
}

.stories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stories-header {
  text-align: center;
  margin-bottom: 5rem;
}

.stories-label {
  display: inline-block;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.stories-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

.stories-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-featured {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.1);
  position: relative;
}

.story-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a574, #e6b885);
  border-radius: 25px 25px 0 0;
}

.story-image {
  text-align: center;
  margin-bottom: 2rem;
}

.story-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto;
}

.story-content blockquote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.story-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #d4a574;
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: "Playfair Display", serif;
}

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

.story-author strong {
  display: block;
  font-size: 1.2rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.story-author span {
  color: #666;
  font-size: 0.95rem;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.15);
}

.story-mini-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
}

.story-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.story-mini-author strong {
  display: block;
  color: #2c2c2c;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.story-mini-author span {
  color: #666;
  font-size: 0.8rem;
}

/* CTA Split Section */
.cta-split {
  padding: 8rem 0;
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-split::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="cta-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><text x="50" y="50" text-anchor="middle" dominant-baseline="middle" font-size="30" opacity="0.03" fill="white">🐎</text></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>');
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.benefit-check {
  width: 24px;
  height: 24px;
  background: #d4a574;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.benefit span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #d4a574 0%, #e6b885 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-cta-primary:hover::before {
  left: 100%;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-style: italic;
}

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 300px;
}

.cta-stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cta-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.stat-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4a574;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Job Categories Section */
.job-categories {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.categories-header {
  text-align: center;
  margin-bottom: 4rem;
}

.categories-label {
  display: inline-block;
  background: linear-gradient(135deg, #d4a574, #e6b885);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.categories-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.categories-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Categories Tabs */
.categories-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.category-tab {
  background: white;
  border: 2px solid rgba(212, 165, 116, 0.2);
  color: #666;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.category-tab:hover::before {
  left: 100%;
}

.category-tab:hover {
  border-color: #d4a574;
  color: #d4a574;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.category-tab.active {
  background: linear-gradient(135deg, #d4a574, #e6b885);
  border-color: #d4a574;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

/* Category Panels */
.categories-content {
  position: relative;
  min-height: 600px;
}

.category-panel {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.category-panel.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* General Positions Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.job-category-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
  position: relative;
  overflow: hidden;
}

.job-category-card.featured {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 2px solid rgba(212, 165, 116, 0.2);
  transform: scale(1.02);
}

.job-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.job-category-card:hover::before {
  left: 100%;
}

.job-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.job-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.job-category-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.job-list span {
  background: rgba(212, 165, 116, 0.08);
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.job-list span:hover {
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
  transform: translateX(5px);
}

/* Disciplines Grid */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.discipline-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
  text-align: center;
}

.discipline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.discipline-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.discipline-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.discipline-roles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.discipline-roles span {
  background: rgba(212, 165, 116, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
}

.discipline-roles span:hover {
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.event-category {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.event-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.event-category h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212, 165, 116, 0.2);
}

.event-roles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.event-roles span {
  background: rgba(212, 165, 116, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
}

.event-roles span:hover {
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
}

/* Office Grid */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.office-category {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
  text-align: center;
}

.office-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.office-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.office-category h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.office-roles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.office-roles span {
  background: rgba(212, 165, 116, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
}

.office-roles span:hover {
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
}

/* Categories CTA */
.categories-cta {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  border: 2px solid rgba(212, 165, 116, 0.1);
  margin-top: 4rem;
}

.categories-cta .cta-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.categories-cta .cta-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-categories-primary {
  background: linear-gradient(135deg, #d4a574 0%, #e6b885 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-categories-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-categories-primary:hover::before {
  left: 100%;
}

.btn-categories-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

.btn-categories-secondary {
  background: transparent;
  color: #d4a574;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid #d4a574;
  transition: all 0.3s ease;
}

.btn-categories-secondary:hover {
  background: #d4a574;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}
.benefits-candidates ul li {
  list-style: none;
}
.benefits-employers ul li {
  list-style: none;
}

@media (max-width: 778px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-text {
    font-size: 0.7rem;
  }
  .about-asymmetric::before {
    content: none;
  }
  .about-yehaww {
    flex-direction: column;
  }
  .about-yehaww-title {
    text-align: center;
  }

  .about-yehaww-para {
    text-align: center;
  }
  .features-grid-modern {
    grid-template-columns: 1fr;
  }
  .stories-layout {
    grid-template-columns: 1fr;
  }
  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-modern::before {
    content: none;
  }
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-subtitle {
    text-align: center;
  }
  .jobs-grid {
    /* grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); */
    grid-template-columns: 1fr;
  }
  .btn-categories-secondary {
    padding: 0.6rem;
    font-size: 1rem;
  }
  .btn-categories-primary {
    padding: 1rem 2rem;
  }
  .about-yehaww img {
    width: 300px;
  }
  .job-category-card h3 {
    font-size: 1rem;
  }
  .hero-badge {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-stats-inline {
    justify-content: center;
  }
  .btn-primary {
    text-align: center;
  }
  .btn-secondary {
    text-align: center;
  }
  .card-header {
    text-align: center;
  }
  .card-content h3 {
    text-align: center;
  }
  .section-label {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-text-section h2,
  p {
    text-align: center;
  }
  .highlight-content h4,
  p {
    text-align: left;
  }
  .stat-content,
  .stat-trend,
  .stat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .stat-icon {
    width: auto;
    background: none;
  }
  .benefit-content p {
    text-align: left;
  }
  .ai-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .community-content h2 {
    text-align: center;
  }
  .btn-community-primary,
  .btn-community-secondary {
    text-align: center;
  }
  .job-category-card h3,
  .job-list span {
    text-align: center;
  }
  .job-icon,
  .feature-icon,
  .story-mini-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .story-mini-avatar {
    width: auto;
    background: none;
  }
  .feature-content h3,
  .feature-card h3 {
    text-align: center;
  }
  .benefit-check-para {
    width: 300px;
  }
}
