/* Global Styles */
:root {
  --primary-blue: #3b82f6;
  /* Blue for text highlights and buttons */
  --primary-coral: #ef4444;
  /* Redish coral for headlines and discount bg */
  --bg-blue: #f0f9ff;
  /* Light blue background for hero */
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --white: #ffffff;
  --success-green: #22c55e;
  --warning-yellow: #eab308;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #3b82f6, #ef4444);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  background-color: var(--white);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  /* Placeholder for actual logo usage from image looks white with purple stroke */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}


.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-info {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.header-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-info i {
  color: var(--primary-blue);
  /* Icons colored */
}

.header-info span:nth-child(2) i {
  color: var(--warning-yellow);
}

.header-info span:nth-child(3) i {
  color: var(--success-green);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon.linkedin {
  background-color: #107fdb;
}

.social-icon.instagram {
  /*background-color: #ff0000;*/
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);

}

.social-icon.youtube {
  background-color: #ff0000;
}

.social-icon.facebook {
  background-color: #1e7ffe;
}

/* Hero Section */
.hero-section {
  background-color: var(--bg-blue);
  padding: 60px 0 80px;
  text-align: center;
  /* Diagonal background effect */
  background-image: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-container {
  max-width: 900px;
  /* Constrain width for center text */
  position: relative;
}

.notification-banner {
  background-color: #ff6b6b;
  /* Salmon/Coral color */
  color: white;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
  position: relative;
  width: 100%;
  max-width: 800px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.highlight-coral {
  background: linear-gradient(90deg, #4a6cf7 0%, #8f75ff 40%, #f96874 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-blue {
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-blue);
}

.hero-subtitle span {
  color: #7c3aed;
  /* Purple/Blue distinctive */
}

/* Audience Pill */
.audience-pill {
  background: white;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid var(--primary-blue);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 15px;
}

.audience-pill i {
  color: var(--primary-blue);
  margin-right: 8px;
}

.blue-text {
  color: var(--primary-blue);
  font-weight: 600;
}

.hero-desc {
  margin-top: 20px;
  color: var(--text-gray);
  margin-bottom: 50px;
  font-size: 15px;
}

/* Assessment Card Style (formerly discount-card) */
.assessment-card-style {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 550px;
  margin: 0 auto 30px;
  /* Centered */
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Blue corner accent on card */
.assessment-card-style::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  transform: rotate(45deg);
}

.assessment-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.assessment-header i {
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 7px;
  margin-left: 1px;
}

.assessment-header h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.assessment-sub {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.assessment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group input {
  width: 100%;
  padding: 14px 14px 14px 45px;
  /* Space for icon */
  border: 1px solid #d1d5db;
  /* Gray border */
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: 0 0 0 4px #f3f4f6;
  /* Subtle outer ring like image */
}

.input-group input:focus {
  border-color: var(--primary-blue);
}

.input-group .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 18px;
  color: #64748b;
}

.assess-input {
  width: 100%;
  padding: 14px 14px 14px 55px !important;
  /* Override default input padding if needed */
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
  background-color: white;
}

.assess-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.cta-button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #4f46e5, #ec4899);
  /* Purple to Pink gradient */
  background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
  /* Fallback or adjustment */
  background: linear-gradient(90deg, #5b7fff 0%, #f67062 100%);
  /* Closer match */
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Specific Gradient from Image roughly */
.cta-button {
  background: linear-gradient(90deg, #4361ee 0%, #f72585 100%);
  background: linear-gradient(90deg, #3b82f6 0%, #ef4444 100%);
  /* Blue to Red */
  /* Actually looks more like solid coral or gradient blue-ish purple */
  background: linear-gradient(90deg, #5A8DEE 0%, #F07E78 100%);
  /* Adjusted */
}

/* Let's stick to a nice gradient */
.cta-button {
  background: linear-gradient(90deg, #4866E3 0%, #F56565 100%);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(72, 102, 227, 0.6);
  }

  50% {
    box-shadow: 0 0 30px rgba(72, 102, 227, 1), 0 0 15px rgba(245, 101, 101, 0.8), 0 0 5px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 10px rgba(72, 102, 227, 0.6);
  }
}

@keyframes glow-yellow {
  0% {
    box-shadow: 0 0 5px rgba(251, 191, 36, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 10px rgba(234, 179, 8, 0.6), 0 0 5px rgba(255, 255, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 5px rgba(251, 191, 36, 0.4);
  }
}

.cta-button {
  animation: glow 0.8s infinite;
}

.cta-button i {
  margin-right: 8px;
}


/* Trust Signals Below Form */
.trust-signals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-yellow {
  color: var(--warning-yellow);
}

.text-green {
  color: var(--success-green);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 30px;
}

.stars {
  display: flex;
  gap: 2px;
}

.separator {
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
}


/* Features Section */
.features-section {
  padding: 80px 0;
  background: white;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.features-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-gray);
  font-size: 16px;
}

.features-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

/* Image Column */
.image-wrapper {
  position: relative;
}

.feature-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  /* Big shadow */
  /* Adding a subtle yellow/orange glow effect as seen generally in such designs */
  box-shadow: 20px 20px 0px rgba(255, 200, 100, 0.2);
  object-fit: cover;
  height: 400px;
}

.floating-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #0ea5e9;
  /* Light Blue */
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
  z-index: 10;
}

/* Cards Column */
.features-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.green-bg {
  background-color: #22c55e;
}

.orange-bg {
  background-color: #f97316;
}

.blue-bg {
  background-color: #3b82f6;
}

.red-bg {
  background-color: #ef4444;
}

.card-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.card-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.stat-box {
  background: #dbeafe;
  /* Very Light Blue */
  padding: 20px 50px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
}

.stat-box h3 {
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-box p {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 500;
}


/* Responsive */
@media (max-width: 900px) {
  .features-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-image-col {
    order: -1;
    /* Image on top */
    text-align: center;
  }

  .feature-main-img {
    max-width: 500px;
  }

  .discount-banner {
    font-size: 12px;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .header-info,
  .nav {
    display: none;
    /* Simplify header for mobile */
  }

  .audience-pill {
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 20px;
  }

  .notification-banner {
    font-size: 12px;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
  }

  .comparison-table {
    font-size: 13px;
  }

  .assessment-header {
    flex-direction: column;
    gap: 5px;
  }
}

/* -------------------------------------------
   NEW SECTIONS STYLING
------------------------------------------- */

------------------------------------------- */

/* How Are We Different */
.different-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-gray);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.diff-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.diff-card:hover {
  transform: translateY(-5px);
}

/* Gradient corner decoration */
.diff-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.8;
}

.red-gradient {
  background: linear-gradient(135deg, #f87171, #ef4444);
}

.orange-gradient {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.yellow-gradient {
  background: linear-gradient(135deg, #facc15, #eab308);
}

.diff-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bg-red-soft {
  background: #fee2e2;
}

.bg-orange-soft {
  background: #ffedd5;
}

.bg-yellow-soft {
  background: #fef9c3;
}

.text-red {
  color: #ef4444;
}

.text-orange {
  color: #f97316;
}

.text-yellow-dark {
  color: #ca8a04;
}

.diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.diff-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.diff-link {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

/* Job Guidance Banner */
.job-guidance-section {
  padding: 40px 0;
}

.job-banner {
  background: linear-gradient(90deg, #3b82f6 0%, #f472b6 100%);
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: white;
  position: relative;
  overflow: hidden;
}

.job-banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.job-banner-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.job-banner-content p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.95;
  max-width: 800px;
}

.job-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.job-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Exclusive Access Section */
.exclusive-access-section {
  padding: 50px 0;
}

.exclusive-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #f3f4f6;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.circle-blue {
  width: 100px;
  height: 100px;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.circle-yellow {
  width: 80px;
  height: 80px;
  bottom: 20px;
  left: -20px;
  background: #facc15;
}

.circle-red {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 5%;
  background: #f87171;
  opacity: 0.4;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #3b82f6, #ec4899);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.exclusive-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.exclusive-subtitle {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 30px;
}

.exclusive-form {
  max-width: 500px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
}

.input-wrapper input {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  outline: none;
}

.exclusive-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #3b82f6, #ef4444);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
  animation: glow 0.8s infinite;
}

.exclusive-btn:hover {
  transform: translateY(-2px);
}

.exclusive-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  flex-wrap: wrap;
}

.exclusive-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Comparison Section */
.comparison-section {
  padding: 60px 0 100px;
}

.comparison-header-row {
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #3b82f6, #f87171);
  padding: 30px;
  border-radius: 16px 16px 0 0;
  /* Rounded top */
  color: white;
  margin-bottom: 0;
  /* Connected to table */
}

.comp-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.comparison-header-row h2 {
  font-size: 28px;
  font-weight: 700;
}

.comparison-table {
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-md);
  background: white;
  padding: 20px;
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 15px 0;
  border-bottom: 1px solid #f3f4f6;
  align-items: center;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row.header {
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: 20px;
}

.us-col {
  text-align: center;
}

.others-col {
  text-align: center;
  color: var(--text-gray);
  font-size: 14px;
}

.us-badge {
  background: linear-gradient(90deg, #3b82f6, #f87171);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
}

.icon-yes {
  color: var(--success-green);
  font-size: 18px;
}

.icon-no {
  color: #ef4444;
  font-size: 18px;
}

@media (max-width: 768px) {
  .job-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

/* -------------------------------------------
   INDUSTRY EXPERT SECTION
------------------------------------------- */
.expert-section {
  padding: 80px 0;
  background-color: #f8fafc;
  /* Very light gray/blue */
}

.expert-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mentor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.expert-text-col h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.expert-quote {
  font-size: 18px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 4px solid var(--primary-blue);
  padding-left: 15px;
}

.expert-bio {
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.expert-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.estat-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}

.estat-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f97316;
  /* Orange */
}

.estat-card:nth-child(2) h3 {
  color: #22c55e;
}

/* Green */
.estat-card:nth-child(3) h3 {
  color: #eab308;
}

/* Yellow */
.estat-card:nth-child(4) h3 {
  color: #ef4444;
}

/* Red */

.estat-card p {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.expertise-row h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ex-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.bg-blue {
  background-color: #3b82f6;
}

.bg-green {
  background-color: #22c55e;
}

.bg-yellow {
  background-color: #eab308;
}

.bg-red {
  background-color: #ef4444;
}


/* Expert Image Column */
.expert-image-col {
  position: relative;
}

.expert-img-wrapper {
  position: relative;
  display: inline-block;
  /* Or block to fit width */
  width: 100%;
}

.mentor-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  height: 500px;
  /* Force height for consistency */
  object-fit: cover;
}

.certified-badge {
  position: absolute;
  top: 20px;
  left: -15px;
  background: #22c55e;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.review-card-floating {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 250px;
  z-index: 10;
}

.rc-stars {
  font-size: 14px;
  margin-bottom: 8px;
}

.review-card-floating p {
  font-size: 13px;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 8px;
}

.rc-author {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 600;
}


/* -------------------------------------------
   LEARNING PATH SECTION
------------------------------------------- */
.path-section {
  padding: 80px 0;
  background: white;
}

.pill-yellow {
  background: #eab308;
  color: white;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.path-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

/* Timeline */
.path-timeline-col {
  position: relative;
  border-left: 2px dashed #e5e7eb;
  padding-left: 40px;
  /* Space for markers */
  margin-left: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.step-marker {
  position: absolute;
  left: -55px;
  /* Adjust to sit on the line */
  top: 0;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.green-marker {
  background: #22c55e;
  border-color: #22c55e;
  color: white;
}

.blue-marker {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.orange-marker {
  background: #f97316;
  border-color: #f97316;
  color: white;
}

.red-marker {
  background: #ef4444;
  border-color: #ef4444;
  color: white;
}

.step-content {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.step-content:hover {
  box-shadow: var(--shadow-md);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-content p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.st-tag {
  font-size: 11px;
  padding: 4px 10px;
  color: white;
  border-radius: 4px;
  font-weight: 600;
}

/* Path Image Col */
.path-image-col {
  position: sticky;
  top: 100px;
}

.path-img-wrapper {
  position: relative;
}

.path-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  height: 400px;
  object-fit: cover;
}

.days-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #f87171;
  /* Salmon */
  color: white;
  padding: 8px 16px;
  border-radius: 20px 0 20px 0;
  /* Leaf shape */
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.included-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 250px;
}

.included-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.included-card ul {
  list-style: none;
}

.included-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

/* Responsive for new sections */
@media (max-width: 900px) {

  .expert-content-grid,
  .path-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .expert-image-col {
    order: -1;
    text-align: center;
  }

  .review-card-floating {
    right: 0;
    /* Align simpler */
  }

  .path-image-col {
    order: -1;
    text-align: center;
    position: static;
    /* No sticky on mobile */
  }

  .included-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }

  .path-timeline-col {
    margin-left: 30px;
    /* More space for markers */
  }
}

/* -------------------------------------------
   TRANSFORM CAREER CTA SECTION
------------------------------------------- */
.transform-section {
  padding: 80px 0;
  background-color: #0ea5e9;
  /* Vivid Blue */
  color: white;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pill-yellow-dark {
  background: #fbbf24;
  color: #1e293b;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
}

.transform-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
}

.highlight-orange {
  color: #f97316;
}

.transform-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Pricing Alert Box */
.pricing-alert-box {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
}

.dot-red {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.alert-stats {
  display: flex;
  gap: 40px;
}

.alert-stats h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fbbf24;
}

.alert-stats p {
  font-size: 12px;
  opacity: 0.8;
}

.checklist-white {
  list-style: none;
  margin-bottom: 30px;
}

.checklist-white li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.checklist-white i {
  color: #22c55e;
}

/* Waitlist Card */
.waitlist-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

.waitlist-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.waitlist-card p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-form input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.waitlist-btn {
  padding: 12px;
  background: #fbbf24;
  color: #1e293b;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
  animation: glow-yellow 0.8s infinite;
}

.waitlist-btn:hover {
  transform: translateY(-2px);
}

.no-commit-text {
  font-size: 12px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Right Side Image */
.transform-image-col {
  position: relative;
}

.transform-img-wrapper {
  position: relative;
}

.transform-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trophy-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.rc-white {
  background: white;
  color: var(--text-dark);
}

/* -------------------------------------------
   NEW FOOTER Styling
------------------------------------------- */
.site-footer {
  background: white;
  padding: 60px 0 30px;
  border-top: 1px solid #f1f5f9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 350px;
}

.footer-socials {
  justify-content: flex-start;
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item strong {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.contact-item p {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Footer Community Card */
.community-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.community-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.community-card p {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.community-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 10px;
}

.community-form button {
  width: 100%;
  padding: 10px;
  background: #fbbf24;
  color: #1e293b;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-gray);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-gray);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

/* Responsive Final Sections */
@media (max-width: 900px) {
  .transform-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-alert-box {
    text-align: left;
    /* Keep internal alignment */
  }

  .alert-stats {
    justify-content: space-around;
  }

  .checklist-white li {
    justify-content: center;
  }

  .no-commit-text {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand,
  .footer-socials {
    justify-content: center;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-desc {
    margin: 0 auto 25px;
  }
}

/* Skill Evaluation Placeholder Text */
.input-placeholder-text {
  padding: 14px;
  font-size: 15px;
  color: #334155;
  font-weight: 600;
  display: block;
  width: 100%;
  border-radius: 8px;
  justify-self: center;
}

/* Global Tag Backgrounds for Variety */
.bg-green {
  background-color: #22c55e !important;
}

.bg-blue {
  background-color: #3b82f6 !important;
}

.bg-orange {
  background-color: #f97316 !important;
}

.bg-red {
  background-color: #ef4444 !important;
}

.bg-purple {
  background-color: #8b5cf6 !important;
}

.bg-pink {
  background-color: #ec4899 !important;
}

.bg-cyan {
  background-color: #06b6d4 !important;
}

.bg-indigo {
  background-color: #6366f1 !important;
}

.bg-teal {
  background-color: #14b8a6 !important;
}

.bg-yellow {
  background-color: #eab308 !important;
}

/* -------------------------------------------
   PREMIUM NOTIFICATION TOAST
------------------------------------------- */

.premium-toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  /* Allow clicking through if not hovering on toast */
}

.premium-toast {
  pointer-events: auto;
  min-width: 320px;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transform: translateY(-50px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.premium-toast.hide {
  transform: translateY(-20px);
  opacity: 0;
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-weight: 700;
  font-size: 15px;
  color: #1f2937;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.4;
}

.toast-close {
  cursor: pointer;
  color: #9ca3af;
  font-size: 16px;
  transition: color 0.2s;
  padding: 2px;
}

.toast-close:hover {
  color: #4b5563;
}

/* Toast Variants */
.toast-error .toast-icon {
  color: #ef4444;
  /* var(--primary-coral) */
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-success .toast-icon {
  color: #22c55e;
}

.toast-success {
  border-left: 4px solid #22c55e;
}

.toast-info .toast-icon {
  color: #3b82f6;
}

.toast-info {
  border-left: 4px solid #3b82f6;
}

/* Dashboard Result Card Styles */
.score-dashboard-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-align: left;
}

.score-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.score-metric-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.score-metric-value {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

.score-metric-value span {
  font-weight: 700;
  color: var(--text-dark);
}

.score-progress-track {
  width: 100%;
  height: 24px;
  background-color: #e2e8f0;
  /* Default slate-200 */
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.score-progress-fill {
  height: 100%;
  /* Gradient matching the purple bar in screenshot */
  background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%);
  width: 0%;
  transition: width 1s ease-out;
  border-radius: 4px;
}

.score-footer-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9ca3af;
  /* Gray-400 */
}

/* Result Texts Styling */
#result-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #3b82f6 0%, #ef4444 100%);
  /* Blue to Coral */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

#result-msg {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 30px;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Score Breakdown Section */
.breakdown-container {
  text-align: left;
  margin-bottom: 40px;
  padding-top: 10px;
}

.breakdown-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.breakdown-item {
  margin-bottom: 20px;
}

.breakdown-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.breakdown-track {
  width: 100%;
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  width: 0%;
  background: #8b5cf6;
  /* Purple base */
  background: linear-gradient(90deg, #818cf8 0%, #6366f1 100%);
  /* Indigo gradient */
  border-radius: 6px;
  transition: width 1s ease-out;
}

/* Specific colors if needed, but using Indigo for all as per screenshot look (cool blue/purple) */
#bar-aptitude {
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
}

#bar-technical {
  background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%);
}

#bar-career {
  background: linear-gradient(90deg, #f472b6 0%, #ec4899 100%);
}

.breakdown-note {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 25px;
  line-height: 1.6;
}

/* Dynamic Meter Colors */
.meter-red {
  background: linear-gradient(90deg, #ef4444 0%, #f87171 100%) !important;
}

.meter-yellow {
  background: linear-gradient(90deg, #eab308 0%, #fbbf24 100%) !important;
}

.meter-green {
  background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%) !important;
}

.phone-group {
  display: flex;
  gap: 8px;
}

.country-code {
  width: 130px;
  /* Reduced to fit longest code (+44-1624) + Flag */
  padding: 12px;
  border-radius: 8px;
  /* Matched to input radius */
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 14px;
  cursor: pointer;
}

.phone-input {
  flex: 1;
}

/* -------------------------------------------
   NEWSLETTER LAUNCHER
------------------------------------------- */
.newsletter-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s;
}

.newsletter-launcher.show {
  transform: scale(1);
}

.newsletter-launcher:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* -------------------------------------------
   NEWSLETTER SLIDE-IN
------------------------------------------- */
.newsletter-slidein {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 25px;
  z-index: 1000;
  transform: translateY(120%);
  /* Hidden initially */
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f9ff;
}

.newsletter-slidein.show {
  transform: translateY(0);
}

.close-slidein {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}

.close-slidein:hover {
  color: var(--primary-coral);
}

.slidein-content {
  text-align: center;
}

.slidein-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 50%;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px;
}

.slidein-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.slidein-content p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.4;
}

#newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

#newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

#newsletter-form input:focus {
  border-color: var(--primary-blue);
}

#newsletter-form button {
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

#newsletter-form button:hover {
  background: #2563eb;
}

.privacy-note {
  font-size: 11px !important;
  color: #9ca3af !important;
  margin-bottom: 0 !important;
}

@media (max-width: 480px) {
  .newsletter-slidein {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 20px;
  }
}