/* Navigation Bar Styling */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

[data-theme="dark"] .navbar-container {
  background-color: rgba(9, 9, 11, 0.8);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo sup {
  margin-left: -3px !important;
  font-size: 10px;
  font-weight: bold;
}

.nav-logo img {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link-item {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
}

.nav-link-item:hover {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-text {
  background: none;
  color: var(--text-secondary);
}

.btn-text:hover {
  color: var(--text-primary);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 38, 211, 0.2);
}

.btn-secondary {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.badge-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.badge-container span.accent {
  color: var(--color-accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-buttons .btn {
  padding: 14px 28px;
  font-size: 15px;
}

/* Client Brands Carousel */
.brand-carousel-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.brand-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.brand-carousel-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.brand-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.6;
}

.brand-item {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* Feature Showcase Grid */
.features-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header h2 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 38, 211, 0.3);
}

.feature-tag {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-card p.description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 15px;
}

.testimonial-box {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-top: auto;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  border: 1px solid var(--border-color);
}

.author-details h4 {
  font-size: 14px;
  font-weight: 600;
}

.author-details p {
  font-size: 12px;
  color: var(--text-muted);
}

/* AI Recruiter Banner Section */
.ai-recruiter-section {
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 100px 24px;
  border-radius: var(--radius-lg);
  max-width: 1152px;
  margin: 0 auto 100px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.ai-recruiter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 38, 211, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.ai-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.ai-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 24px;
}

.ai-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ai-title span {
  background: linear-gradient(135deg, #f472b6, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Integrations Section */
.integrations-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.integration-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.integration-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.integration-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  font-size: 24px;
}

.integration-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.integration-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 24px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-toggle-label.active {
  color: var(--text-primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--gradient-brand);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card.popular {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.popular::before {
  content: 'POPULAR';
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card p.tier-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Footer Section */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 24px 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-column ul a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   AI RESUME SUITE PROMOTION PANEL (LANDING)
   ========================================================================== */

.resume-suite-promo-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}

.promo-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 60px;
  overflow: hidden;
  position: relative;
  align-items: center;
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .promo-container {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
}

.promo-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.promo-badge {
  display: inline-block;
  background: var(--gradient-brand);
  color: #ffffff;
  font-size: 10px;
  font-weight: 750;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 1px;
  width: fit-content;
}

.promo-content h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-primary);
}

.promo-content h2 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.promo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

@media (max-width: 550px) {
  .promo-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.promo-feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-feature-item .icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.promo-feature-item strong {
  font-size: 13.5px;
  font-weight: 750;
  color: var(--text-primary);
}

.promo-feature-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.btn-launch {
  width: fit-content;
  padding: 12px 28px;
  font-size: 15px;
}

.promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
}

.glowing-orb {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.floating-cv-mock {
  width: 170px;
  height: 230px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  animation: float-mock 4s ease-in-out infinite;
}

@keyframes float-mock {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.mock-header {
  width: 50px;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  margin-bottom: 4px;
}

.mock-line {
  height: 5px;
  background-color: var(--border-color);
  border-radius: 3px;
}
.mock-line.long { width: 100%; }
.mock-line.medium { width: 70%; }

.mock-score-radial {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background-color: #10b981;
  color: #ffffff;
  font-weight: 800;
  font-size: 12.5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.nav-mobile-cta {
  display: none !important;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex !important;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    z-index: 999;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .nav-actions .btn {
    display: none !important;
  }
  .nav-links.active .nav-mobile-cta {
    display: inline-block !important;
  }
  .nav-links.active .nav-mobile-cta.btn-text {
    display: block !important;
    text-align: center;
    color: var(--text-primary);
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 44px;
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ai-recruiter-section {
    padding: 60px 20px;
    margin: 0 16px 60px;
  }
  .ai-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .integrations-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Testimonial Slider Styling */
.testimonial-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 40px;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
  background: var(--bg-tertiary);
  transform: translateY(-50%) scale(1.05);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0.5;
}

.slider-dot.active {
  background: var(--color-primary);
  opacity: 1;
  transform: scale(1.2);
}

/* Logo display rules based on theme */
.logo-light {
  display: inline-block !important;
}
.logo-dark {
  display: none !important;
}

[data-theme="dark"] .logo-light {
  display: none !important;
}
[data-theme="dark"] .logo-dark {
  display: inline-block !important;
}
