/**
 * SKILLORBIT Academy — Page Sections
 * Hero, stats, why, courses, batches, distance learning, placements,
 * projects, certification, testimonials, trainers, blog, FAQ, contact,
 * about, comparison, career support
 */

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-h) - var(--announce-h, 0px));
  padding-block: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero--dark,
.hero--light {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(118, 214, 106, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(54, 168, 74, 0.16), transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 90%, rgba(22, 130, 56, 0.1), transparent 45%),
    linear-gradient(180deg, #f3faf5 0%, #ffffff 45%, #f6faf7 100%);
  color: var(--near-black);
}

.hero--dark .hero__title,
.hero--dark h1,
.hero--light .hero__title,
.hero--light h1 {
  color: var(--near-black);
}

.hero--dark .hero__subtitle,
.hero--dark .lead,
.hero--light .hero__subtitle,
.hero--light .lead {
  color: var(--muted);
}

.hero--dark .eyebrow,
.hero--light .eyebrow,
.hero--dark .hero__eyebrow,
.hero--light .hero__eyebrow {
  color: var(--deep);
  background: rgba(54, 168, 74, 0.12);
  border: 1px solid rgba(54, 168, 74, 0.2);
}

.hero--dark .hero__title .highlight,
.hero--dark .hero__title em,
.hero--light .hero__title .highlight,
.hero--light .hero__title em {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--dark .hero__trust,
.hero--light .hero__trust {
  color: var(--muted);
}

.hero--dark .hero__trust a,
.hero--light .hero__trust a {
  color: var(--deep);
  font-weight: 600;
}

.hero--dark .hero__trust a:hover,
.hero--light .hero__trust a:hover {
  color: var(--primary);
}

.hero--dark .btn--outline,
.hero--light .btn--outline {
  border-color: rgba(22, 130, 56, 0.35) !important;
  color: var(--deep) !important;
  background: rgba(255, 255, 255, 0.65);
}

.hero--dark .btn--outline:hover,
.hero--light .btn--outline:hover {
  background: var(--white) !important;
  border-color: var(--primary) !important;
  color: var(--deep) !important;
}

.hero--brand {
  background: var(--gradient-brand);
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-dark);
  opacity: 0.85;
}

.hero__glow {
  position: absolute;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  border-radius: 50%;
  background: var(--gradient-glow);
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.hero__glow--tl { top: -20%; left: -10%; }
.hero__glow--br { bottom: -25%; right: -15%; }

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__grid,
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  margin-bottom: var(--space-4);
}

.hero--dark .eyebrow {
  color: var(--primary-soft);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.hero__title .highlight,
.hero__title em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--dark .hero__title .highlight,
.hero--dark .hero__title em {
  background: linear-gradient(135deg, #76D66A, #A8E89A);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.hero--dark .hero__trust,
.hero--light .hero__trust {
  color: var(--muted);
}

.hero__trust-avatars {
  display: flex;
}

.hero__trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -10px;
  object-fit: cover;
}

.hero__trust-avatars img:first-child {
  margin-left: 0;
}

.hero--dark .hero__trust-avatars img {
  border-color: var(--dark-green);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  z-index: 0;
  isolation: isolate;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--glow-green-soft);
}

.hero__image img {
  width: 100%;
  height: auto;
}

.hero__float-card {
  position: absolute;
  z-index: 2;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(54, 168, 74, 0.18);
  box-shadow: 0 12px 32px rgba(16, 21, 20, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  animation: float 5s ease-in-out infinite;
}

.hero__float-card--1 {
  top: 8%;
  left: 0;
  animation-delay: 0s;
}

.hero__float-card--2 {
  bottom: 15%;
  right: 0;
  animation-delay: 1.5s;
}

.hero__float-card--3 {
  top: 40%;
  left: -8%;
  animation-delay: 0.8s;
}

.hero__float-card-value {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--deep);
}

.hero__float-card-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  animation: float 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(transparent, var(--primary-soft));
  border-radius: 2px;
}

/* Orbit stage (decorative) */
.orbit-stage {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.orbit-stage__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--glow-primary);
  z-index: 2;
}

.orbit-stage__core img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.orbit-stage__ring {
  --orbit-duration: 30s;
  --orbit-direction: normal;
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(54, 168, 74, 0.35);
  border-radius: 50%;
  animation: orbit-spin var(--orbit-duration) linear infinite var(--orbit-direction);
}

.orbit-stage__ring--2 {
  --orbit-duration: 22s;
  --orbit-direction: reverse;
  inset: 12%;
}

.orbit-stage__ring--3 {
  --orbit-duration: 18s;
  --orbit-direction: normal;
  inset: 24%;
}

.orbit-stage__slot {
  position: absolute;
  width: 0;
  height: 0;
}

.orbit-stage__slot--1 { top: 0; left: 50%; }
.orbit-stage__slot--2 { top: 50%; left: 100%; }
.orbit-stage__slot--3 { top: 100%; left: 50%; }
.orbit-stage__slot--4 { top: 50%; left: 0; }

.orbit-stage__node {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  max-width: 9.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  height: auto;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--deep);
  line-height: 1.15;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation: orbit-node-level var(--orbit-duration) linear infinite var(--orbit-direction);
  cursor: pointer;
  z-index: 2;
}

.orbit-stage__node:hover,
.orbit-stage__node:focus-visible {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  color: var(--primary-dark, var(--deep));
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 70% 55% at 20% 0%, rgba(118, 214, 106, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 20%, rgba(54, 168, 74, 0.12), transparent 50%),
    linear-gradient(180deg, #f3faf5 0%, #ffffff 100%);
  color: var(--near-black);
  overflow: hidden;
  text-align: center;
  border: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--near-black);
  margin-bottom: var(--space-3);
}

.page-hero__subtitle {
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 36rem;
  margin-inline: auto;
}

.page-hero--light {
  background:
    radial-gradient(ellipse 70% 55% at 20% 0%, rgba(118, 214, 106, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 20%, rgba(54, 168, 74, 0.12), transparent 50%),
    linear-gradient(180deg, #f3faf5 0%, #ffffff 100%);
  color: var(--near-black);
}

.page-hero--light .page-hero__title {
  color: var(--near-black);
}

.page-hero--light .page-hero__subtitle {
  color: var(--text-muted);
}

/* ==========================================================================
   Stats section
   ========================================================================== */
.stats {
  position: relative;
  z-index: 2;
}

.stats--overlap {
  margin-top: -60px;
  padding-top: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.stats--dark .stats__grid {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.stats__item {
  position: relative;
  text-align: center;
  padding: var(--space-4);
}

.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-color);
}

.stats--dark .stats__item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.12);
}

.stats__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__label {
  margin-top: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
}

.stats--dark .stats__label {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Why / features
   ========================================================================== */
.why,
.features {
  position: relative;
}

.why__grid,
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.why__card,
.features__card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
}

.why__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--duration);
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), var(--glow-green-soft);
  border-color: rgba(54, 168, 74, 0.35);
}

.why__card:hover::before {
  opacity: 1;
}

.why__number {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--primary-lighter);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.why__icon {
  margin-bottom: var(--space-4);
}

.why__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.why__text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ==========================================================================
   Courses section
   ========================================================================== */
.courses {
  position: relative;
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.courses__filters {
  margin-bottom: var(--space-6);
}

.courses__cta {
  text-align: center;
  margin-top: var(--space-8);
}

/* ==========================================================================
   Batches section
   ========================================================================== */
.batches {
  position: relative;
}

.batches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.batches__calendar {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
}

.batches__legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.batches__legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: var(--space-2);
  vertical-align: middle;
}

.batches__legend-dot--open { background: var(--success); }
.batches__legend-dot--filling { background: var(--warning); }
.batches__legend-dot--full { background: var(--danger); }

/* ==========================================================================
   Distance learning
   ========================================================================== */
.distance-learning {
  position: relative;
  overflow: hidden;
}

.distance-learning__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.distance-learning__content .lead {
  margin-bottom: var(--space-6);
}

.distance-learning__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.distance-learning__feature {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.distance-learning__feature-icon {
  flex-shrink: 0;
}

.distance-learning__feature-title {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}

.distance-learning__feature-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* Distance learning — university / program counselling layout */
.dl-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.dl-trust__item {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.dl-uni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.dl-uni-card {
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.dl-uni-card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 168, 74, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.dl-uni-card__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.dl-uni-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}

.dl-uni-card__text {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.dl-group-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 var(--space-4);
}

.dl-group-title + .dl-program-grid {
  margin-bottom: var(--space-8);
}

.dl-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.dl-program-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-5);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.dl-program-card:hover {
  border-color: rgba(54, 168, 74, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.dl-program-card__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-ink, #1a5c28);
  background: rgba(54, 168, 74, 0.12);
  border-radius: var(--radius-sm);
}

.dl-program-card__uni {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dl-program-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.dl-program-card__text {
  flex: 1;
  margin: 0 0 1rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

.dl-program-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--text);
}

.dl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.dl-steps__item {
  position: relative;
  padding: var(--space-5);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
}

.dl-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.875rem;
  color: #fff;
  background: var(--gradient-brand, var(--primary));
}

.dl-steps__title {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.dl-steps__text {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

/* Timeline shared */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: var(--space-6);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--deep), transparent);
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-6);
  padding-left: var(--space-5);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: calc(-1 * var(--space-6) + 2px);
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--primary), var(--glow-green-soft);
  z-index: 1;
}

.timeline__item.is-complete .timeline__dot {
  background: var(--deep);
}

.timeline__item.is-active .timeline__dot {
  background: var(--primary-soft);
  animation: pulse-ring 2s ease-out infinite;
}

.timeline__time {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: var(--space-1);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-1);
}

.timeline__text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

.timeline--horizontal {
  flex-direction: row;
  padding-left: 0;
  padding-top: var(--space-6);
  gap: var(--space-4);
  overflow-x: auto;
}

.timeline--horizontal::before {
  left: 0;
  right: 0;
  top: 14px;
  bottom: auto;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--deep));
}

.timeline--horizontal .timeline__item {
  flex: 1;
  min-width: 180px;
  padding-left: 0;
  padding-top: var(--space-5);
  padding-bottom: 0;
}

.timeline--horizontal .timeline__dot {
  left: 0;
  top: calc(-1 * var(--space-6) + 8px);
}

/* Dashboard mockup */
.dashboard-mockup {
  position: relative;
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl), var(--glow-green-soft);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform var(--duration-slow) var(--ease-out);
}

.dashboard-mockup:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(0deg);
}

.dashboard-mockup__chrome {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border-color);
}

.dashboard-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.dashboard-mockup__dot:nth-child(1) { background: #FF5F57; }
.dashboard-mockup__dot:nth-child(2) { background: #FEBC2E; }
.dashboard-mockup__dot:nth-child(3) { background: #28C840; }

.dashboard-mockup__url {
  flex: 1;
  margin-left: var(--space-3);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border-color);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-align: center;
}

.dashboard-mockup__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
}

.dashboard-mockup__sidebar {
  padding: var(--space-4);
  background: var(--dark-green);
  color: rgba(255, 255, 255, 0.8);
}

.dashboard-mockup__nav-item {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  margin-bottom: var(--space-1);
}

.dashboard-mockup__nav-item.is-active {
  background: rgba(54, 168, 74, 0.35);
  color: var(--white);
}

.dashboard-mockup__main {
  padding: var(--space-4);
  background: var(--bg-light);
}

.dashboard-mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.dashboard-mockup__stat {
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-color);
}

.dashboard-mockup__stat-value {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--deep);
}

.dashboard-mockup__stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.dashboard-mockup__chart {
  height: 120px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: var(--space-3);
}

.dashboard-mockup__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--gradient-brand);
  opacity: 0.85;
}

.dashboard-mockup__float {
  position: absolute;
  z-index: 3;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  animation: float 5s ease-in-out infinite;
}

.dashboard-mockup__float--live {
  top: 20%;
  right: -12px;
  color: var(--success);
}

.dashboard-mockup__float--live::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  margin-right: 6px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ==========================================================================
   Placements
   ========================================================================== */
.placements {
  position: relative;
}

.placements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.placements__grid--stories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.placements__grid--stories .placement-card {
  min-width: 0;
  height: 100%;
  flex-wrap: nowrap;
}

.placements__grid--stories .placement-card > div {
  min-width: 0;
}

.placements__logos {
  margin-top: var(--space-8);
}

.placements__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.placement-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.placement-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(54, 168, 74, 0.35);
}

.placement-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-lighter);
  flex-shrink: 0;
}

.placement-card__name {
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

.placement-card__role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.placement-card__company {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--deep);
  margin-top: 2px;
}

.placement-card__package {
  margin-left: auto;
  text-align: right;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--deep);
  flex-shrink: 0;
}

.placement-timeline {
  margin-top: var(--space-6);
}

/* ==========================================================================
   Projects
   ========================================================================== */
.projects {
  position: relative;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.projects__grid--featured {
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.projects__grid--featured .project-card:first-child {
  grid-row: 1 / -1;
  aspect-ratio: auto;
  height: 100%;
  min-height: 400px;
}

/* ==========================================================================
   Certification
   ========================================================================== */
.certification {
  position: relative;
  overflow: hidden;
}

.certification__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

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

.certification__certificate {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1.4 / 1;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-xl), var(--glow-green-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-2deg);
  transition: transform var(--duration) var(--ease-out);
}

.certification__certificate:hover {
  transform: rotate(0deg) scale(1.02);
}

.certification__seal {
  width: 72px;
  height: 72px;
  margin-bottom: var(--space-4);
  border-radius: 50%;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  box-shadow: var(--glow-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-sm);
}

.certification__cert-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.certification__cert-meta {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.certification__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.certification__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.certification__list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary-lighter);
  color: var(--deep);
  display: grid;
  place-items: center;
}

.certification__list-title {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}

.certification__list-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.testimonials__grid .testimonial-card {
  min-height: 240px;
}

.testimonials__featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  background: var(--gradient-brand);
  color: var(--white);
  margin-bottom: var(--space-8);
}

.testimonials__featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--white);
}

.testimonials__featured-quote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.testimonials__video {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--near-black);
}

.testimonials__video img {
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.testimonials__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--glow-primary);
  transition: transform var(--duration) var(--ease-out);
}

.testimonials__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--white);
}

/* ==========================================================================
   Trainers
   ========================================================================== */
.trainers {
  position: relative;
}

.trainers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog {
  position: relative;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.blog__featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding: var(--space-3);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.blog__featured-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 280px;
}

.blog__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-5);
  gap: var(--space-3);
}

.blog-article {
  max-width: 720px;
  margin-inline: auto;
  padding-block: var(--space-8);
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.blog-article__cover {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
  aspect-ratio: 16 / 9;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
}

/* ==========================================================================
   FAQ section
   ========================================================================== */
.faq-section {
  position: relative;
}

.faq-section__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
}

.faq-section__intro {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact__card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact__card:hover {
  border-color: rgba(54, 168, 74, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.contact__card-icon {
  flex-shrink: 0;
}

.contact__card-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact__card-value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text);
}

.contact__card-value a {
  color: inherit;
}

.contact__card-value a:hover {
  color: var(--deep);
}

.contact__form-wrap {
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.contact__form-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.contact__map {
  margin-top: var(--space-8);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.about__image-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.about__mission {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
  margin-block: var(--space-8);
}

.about__mission-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-4);
  max-width: 40rem;
  margin-inline: auto;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.about__value {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
}

.about__value-icon {
  margin: 0 auto var(--space-4);
}

.about__value-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.about__value-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.about__story {
  max-width: 720px;
  margin-inline: auto;
}

/* ==========================================================================
   Comparison
   ========================================================================== */
.comparison {
  position: relative;
  overflow-x: auto;
}

.comparison__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-color);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.comparison__table-wrap > .text-muted,
.comparison__table-wrap > p {
  padding: 0.75rem 1.25rem 1rem;
  margin: 0;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 0.75rem;
  text-align: center;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  line-height: 1.35;
}

/* Feature column — left aligned, slightly wider */
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 1.25rem;
  padding-right: 1rem;
  width: 22%;
  font-weight: var(--fw-medium);
  color: var(--text);
}

.comparison-table thead th {
  background: var(--surface-muted);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--text);
  white-space: nowrap;
  text-align: center;
  height: 4.25rem;
  padding: 0.65rem 0.75rem;
  vertical-align: middle;
  box-sizing: border-box;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.is-highlight {
  background: var(--gradient-brand);
  color: var(--white);
  position: relative;
  padding: 0.5rem 0.65rem 0.65rem;
}

.comparison-table thead th.is-highlight .badge {
  position: static;
  display: block;
  width: max-content;
  margin: 0 auto 0.3rem;
  transform: none;
  left: auto;
  top: auto;
  background: var(--near-black);
  color: var(--white);
  white-space: nowrap;
  font-size: 0.65rem;
  line-height: 1.2;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.comparison-table thead th.is-highlight .comparison-table__label {
  display: block;
  line-height: 1.2;
}

.comparison-table tbody tr:hover {
  background: var(--primary-lighter);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td.is-highlight {
  background: rgba(54, 168, 74, 0.06);
  font-weight: var(--fw-semibold);
  color: var(--deep);
  text-align: center;
}

.comparison-table .check,
.comparison-table .cross {
  text-align: center;
}

.comparison-table .check {
  color: var(--success);
  font-weight: var(--fw-bold);
  font-size: 1rem;
}

.comparison-table .cross {
  color: var(--text-muted);
  opacity: 0.55;
}

.comparison__cards {
  display: none;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.comparison-card {
  padding: var(--space-5);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.comparison-card.is-highlight {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-lighter) 0%, var(--surface) 30%);
  box-shadow: var(--glow-green-soft), var(--shadow-card);
}

.comparison-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-color);
}

.comparison-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.comparison-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--deep);
}

.comparison-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.comparison-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.comparison-card__feature.is-missing {
  color: var(--text-muted);
  opacity: 0.6;
}

/* ==========================================================================
   Career support
   ========================================================================== */
.career-support {
  position: relative;
}

.career-support__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.career-support__card {
  position: relative;
  padding: var(--space-6) var(--space-5);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}

.career-support__card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 168, 74, 0.4);
  box-shadow: var(--shadow-card-hover), var(--glow-green-soft);
}

.career-support__step {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  box-shadow: var(--glow-green-soft);
}

.career-support__title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.career-support__text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

.career-support__process {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface-muted);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   Partners / logos strip
   ========================================================================== */
.partners {
  padding-block: var(--space-8);
}

.partners__label {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

/* ==========================================================================
   Pricing (bonus for EdTech)
   ========================================================================== */
.pricing {
  position: relative;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.is-featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-lighter) 0%, var(--surface) 25%);
  box-shadow: var(--glow-green-soft), var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.is-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--deep);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.pricing-card__price span {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
}

.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-color);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

/* ==========================================================================
   Lead / enquiry strip
   ========================================================================== */
.lead-strip {
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--gradient-brand);
  color: var(--white);
}

.lead-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.lead-strip__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--white);
}

.lead-strip__text {
  opacity: 0.9;
  font-size: var(--fs-sm);
  margin-top: var(--space-1);
}

/* ==========================================================================
   Video section
   ========================================================================== */
.video-section {
  position: relative;
}

.video-section__player {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--near-black);
  box-shadow: var(--shadow-xl);
}

.video-section__player img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.video-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--glow-primary);
  transition: transform var(--duration) var(--ease-spring);
}

.video-section__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--white);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  max-width: 480px;
  margin: var(--space-5) auto 0;
}

.newsletter__form .input {
  flex: 1;
  min-width: 200px;
}
