:root {
  /* Page / surfaces — matched to Figma support design */
  --bg-0: #010d12;
  --bg-1: #01151a;
  --bg-2: #042028;
  --panel: #062632;
  --panel-soft: #072a36;
  --card-bg: #072a36;
  --card-bg-hover: #0a3342;
  --glass: rgba(255, 255, 255, 0.04);
  --text-main: #edf8fb;
  --text-soft: #9fb7c0;
  --text-muted: #6f909a;
  /* Accents */
  --cyan: #5bf8e6;
  --cyan-bright: #67fcff;
  --cyan-soft: rgba(91, 248, 230, 0.45);
  --green: #95f45e;
  --green-bright: #a2ff00;
  --glow-cyan: 0 0 15px rgba(91, 248, 230, 0.35);
  --glow-mint: 0 0 14px rgba(149, 244, 94, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 82% 14%, rgba(91, 248, 230, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 12% 2%, rgba(149, 244, 94, 0.06) 0%, transparent 36%),
    linear-gradient(180deg, #01151a 0%, #011017 45%, #010d12 100%);
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}

body.page-home {
  background: #01141a;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

body::before {
  inset: 0;
  background:
    radial-gradient(circle at 8% 22%, rgba(34, 211, 238, 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 58%, rgba(34, 211, 238, 0.08) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 87% 44%, rgba(149, 244, 94, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 79% 74%, rgba(149, 244, 94, 0.06) 0 1.5px, transparent 2.5px);
}

body::after {
  inset: 0;
  background:
    radial-gradient(80% 30% at 50% 0%, rgba(34, 211, 238, 0.07), transparent 65%),
    radial-gradient(60% 20% at 50% 100%, rgba(34, 211, 238, 0.05), transparent 75%);
}

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 64% 4% 12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 35%, rgba(34, 211, 238, 0.1) 0, transparent 32%),
    radial-gradient(circle at 76% 50%, rgba(149, 244, 94, 0.08) 0, transparent 38%);
  filter: blur(10px);
  z-index: -1;
}

.container {
  max-width: 1312px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ========== Navbar ========== */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
  z-index: 100;
}

header {
  position: relative;
  z-index: 100;
}

.nav-shell {
  min-height: 58px;
  border-radius: 8px;
  background: #01161b;
  border-bottom: 0;
  box-shadow: none;
  padding: 0 20px;
}

.brand-logo {
  width: 150px;
  max-width: 100%;
}

.navbar-brand {
  margin-right: 22px;
  padding: 0;
}

.nav-links {
  gap: 2px;
}

.nav-links .nav-link {
  color: #deeff3;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 14px;
  margin: 0 3px;
  line-height: 1;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links .nav-link:hover {
  color: var(--cyan);
}

.nav-links .nav-link.active {
  color: #69d5cf;
}

.nav-links .nav-link.active::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: -7px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(82, 232, 224, 0.18) 0%, rgba(82, 232, 224, 0.9) 50%, rgba(82, 232, 224, 0.18) 100%);
  box-shadow: 0 0 8px rgba(82, 232, 224, 0.55);
}

.nav-actions {
  gap: 12px;
}

.btn-login,
.btn-signup {
  min-height: 38px;
  border-radius: 8px;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1px;
}

.btn-login {
  color: #f2f9fc;
  border: 1px solid rgba(201, 234, 242, 0.72);
  background: rgba(6, 25, 36, 0.46);
}

.btn-login:hover {
  box-shadow: 0 0 10px rgba(94, 226, 238, 0.24);
}

.btn-signup {
  color: #082214;
  border: 0;
  background: linear-gradient(90deg, #3adba0 0%, #9ff45f 100%);
}

.btn-signup:hover {
  box-shadow: 0 0 14px rgba(149, 244, 94, 0.36);
}

.btn-signup.is-active {
  box-shadow: 0 0 14px rgba(149, 244, 94, 0.4);
  outline: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========== Hero / Create Account ========== */
.hero-section {
  padding-top: 20px;
  padding-bottom: 12px;
}

.hero-row {
  min-height: 781px;
  align-items: center !important;
}

.signup-panel {
  width: 470px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.hero-title {
  margin: 0 0 8px;
  font-size: clamp(34px, 3.8vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #ffffff;
  white-space: nowrap;
}

.hero-title span {
  color: #95f45e;
  text-shadow: 0 0 14px rgba(149, 244, 94, 0.35);
}

.hero-text {
  max-width: 100%;
  color: #edf8fb;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
}

.signup-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  width: 470px;
  max-width: 100%;
  height: 458px;
  box-sizing: border-box;
  overflow: visible;
}

.field-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  height: 54px;
  flex: 0 0 auto;
  padding: 7px 14px 7px 7px;
  border-radius: 12px;
  background: rgba(4, 22, 28, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(120, 160, 170, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: text;
}

.field-group:hover {
  border-color: rgba(149, 244, 94, 0.35);
  box-shadow: 0 0 12px rgba(149, 244, 94, 0.1);
}

.field-group:focus-within {
  border-color: rgba(149, 244, 94, 0.55);
  background: rgba(5, 28, 34, 0.94);
  box-shadow:
    0 0 0 1px rgba(149, 244, 94, 0.12),
    0 0 16px rgba(149, 244, 94, 0.16);
}

.field-icon {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #95f45e;
  font-size: 18px;
  pointer-events: none;
  z-index: 1;
  background: rgba(149, 244, 94, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(149, 244, 94, 0.28);
  box-shadow:
    inset 0 0 10px rgba(149, 244, 94, 0.08),
    0 0 10px rgba(149, 244, 94, 0.12);
}

.field-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding-right: 28px;
}

.field-label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1px;
}

.field-group input,
.field-group select {
  width: 100%;
  height: auto;
  min-height: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #edf8fb;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.3;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

.field-group input::placeholder {
  color: #8aa4ad;
  font-weight: 400;
  opacity: 1;
}

.field-group select {
  color: #7a9ea8;
  cursor: pointer;
}

.field-group select:valid,
.field-select.has-value select {
  color: #c5dbe1;
}

.field-group select option {
  background: #042433;
  color: #edf8fb;
}

.field-group select option:disabled {
  color: #7a9ea8;
}

.field-select {
  cursor: pointer;
  position: relative;
  overflow: visible;
  z-index: 5;
}

.field-select.is-open {
  z-index: 30;
  border-color: rgba(34, 211, 238, 0.78);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.16),
    0 0 16px rgba(34, 211, 238, 0.22);
}

.country-trigger {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.field-select .field-body {
  flex: 1;
  min-width: 0;
  padding-right: 8px;
}

.field-select .field-placeholder {
  display: block;
  color: #8aa4ad;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.field-select.has-value .field-placeholder {
  color: #edf8fb;
}

.field-chevron {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  margin-left: auto;
  margin-right: 4px;
  color: #95f45e;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.field-select.is-open .field-chevron {
  color: #a2ff00;
  transform: rotate(180deg);
}

.field-select>select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.country-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 12px;
  background: rgba(4, 28, 38, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(34, 211, 238, 0.12);
  z-index: 40;
  max-height: 220px;
  overflow-y: auto;
}

.country-menu[hidden] {
  display: none !important;
}

.country-menu li {
  padding: 10px 14px;
  border-radius: 8px;
  color: #edf8fb;
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.country-menu li:hover,
.country-menu li.is-active {
  background: rgba(34, 211, 238, 0.14);
  color: #ffffff;
}

.country-menu li[aria-selected="true"] {
  background: rgba(34, 211, 238, 0.2);
  color: #a8fff0;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #8aa4ad;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.toggle-password:hover {
  color: #95f45e;
}

.btn-create-account {
  width: 100%;
  min-height: 48px;
  height: 48px;
  margin-top: auto;
  border: 0;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #082214;
  background: linear-gradient(90deg, #3adba0 0%, #9ff45f 100%);
  box-shadow: 0 0 18px rgba(149, 244, 94, 0.28);
  transition: box-shadow 0.3s ease, transform 0.2s ease, filter 0.25s ease;
  flex: 0 0 auto;
}

.btn-create-account:hover {
  color: #04180f;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 0 24px rgba(149, 244, 94, 0.4),
    0 0 32px rgba(58, 219, 160, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-create-account:active {
  transform: translateY(0);
}

.signup-footer {
  margin: 16px 0 0;
  color: #8fb0bb;
  font-size: 13px;
  line-height: 1.4;
}

.login-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(149, 244, 94, 0.25);
  margin-left: 4px;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #b6ff7a;
}

/* Hero 3D illustration */
.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-visual-col {
    justify-content: flex-end;
  }
}

.hero-image-wrap {
  width: 781px;
  height: 781px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  isolation: isolate;
  animation: heroFloatDrift 5.5s ease-in-out infinite;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(34, 211, 238, 0.48) 0%,
      rgba(46, 203, 194, 0.28) 36%,
      rgba(24, 117, 132, 0.14) 58%,
      transparent 100%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  animation: heroGlowPulse 5.5s ease-in-out infinite;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 781px;
  height: 781px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: rotate(0deg) scale(1);
  transition: transform 0.18s linear;
  transform-style: preserve-3d;
  transform-origin: center center;
  filter: drop-shadow(0 14px 28px rgba(11, 70, 90, 0.4));
  will-change: transform;
}

@keyframes heroFloatDrift {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroGlowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0.95;
    transform: translateY(6px) scale(1.06);
  }
}

/* ========== Contact cards ========== */
.contact-section {
  padding: 28px 0 20px;
}

.section-title {
  margin: 0 0 6px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.section-subtitle {
  margin: 0 0 22px;
  color: #89a8b2;
  font-size: 13px;
  line-height: 1.4;
}

.contact-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 20px;
}

.contact-card {
  min-height: 190px;
  padding: 18px 22px;
  border-radius: 14px;
  background: #01151a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(91, 248, 230, 0.35);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow:
    0 0 0 1px rgba(91, 248, 230, 0.08),
    0 0 18px rgba(91, 248, 230, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(125deg,
      rgba(91, 248, 230, 0.7) 0%,
      rgba(57, 170, 190, 0.28) 54%,
      rgba(149, 244, 94, 0.22) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 248, 230, 0.55);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.32), 0 0 18px rgba(91, 248, 230, 0.22);
}

.icon-orb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(4, 28, 36, 0.55) 0%, rgba(1, 12, 16, 0.72) 100%);
  border: 1px solid rgba(91, 248, 230, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(91, 248, 230, 0.04);
  position: relative;
  overflow: visible;
}

.icon-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(from 40deg,
      transparent 0deg,
      transparent 95deg,
      rgba(91, 248, 230, 0.08) 130deg,
      rgba(91, 248, 230, 0.75) 165deg,
      rgba(103, 252, 255, 0.9) 185deg,
      rgba(91, 248, 230, 0.55) 210deg,
      transparent 245deg,
      transparent 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 1px));
  filter: drop-shadow(0 0 6px rgba(91, 248, 230, 0.45));
}

.icon-orb::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 42%;
  height: 28%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(91, 248, 230, 0.35) 0%, transparent 70%);
  filter: blur(6px);
  opacity: 0.9;
}

.icon-orb img {
  width: 64px;
  height: 76px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 8px rgba(91, 248, 230, 0.25));
}

.contact-card>div:last-child {
  min-width: 0;
  flex: 1;
}

.contact-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.contact-card p {
  margin: 0 0 10px;
  color: #9fb7c0;
  font-size: 13.5px;
  line-height: 1.35;
}

.card-link {
  color: #95f45e;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(149, 244, 94, 0.2);
  transition: color 0.2s ease;
}

.card-link:hover {
  color: #b6ff7a;
}

/* ========== Help banner (exact Figma match 1312x183) ========== */
/* ========== Help banner (Figma Group 1432 exact) ========== */
.help-banner-section {
  padding: 22px 0 36px;
  position: relative;
}

.help-banner-section::before {
  content: "";
  position: absolute;
  inset: 8px 2% 10px;
  pointer-events: none;
  background: radial-gradient(circle at 86% 50%, rgba(123, 233, 184, 0.12) 0%, transparent 50%);
  filter: blur(16px);
}

/* Rectangle 342 */
.help-banner {
  width: 100%;
  max-width: 1312px;
  height: 183px;
  min-height: 183px;
  margin: 0 auto;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 55% 120% at 12% 50%, rgba(8, 48, 58, 0.55) 0%, transparent 62%),
    radial-gradient(ellipse 40% 90% at 88% 45%, rgba(6, 40, 48, 0.4) 0%, transparent 70%),
    linear-gradient(180deg, #03161c 0%, #010d12 55%, #00090c 100%);
  border: 2px solid var(--cyan);
  box-shadow:
    0 0 18px rgba(91, 248, 230, 0.22),
    inset 0 1px 0 rgba(91, 248, 230, 0.08);
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  column-gap: 0;
  padding: 0 28px 0 0;
  position: relative;
  overflow: hidden;
}

.help-banner-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hb-vec {
  position: absolute;
  box-sizing: border-box;
  border: 1px dashed rgba(103, 252, 255, 0.5);
  box-shadow: 2px 2px 33.9px #29c8cb;
  filter: blur(0.7px);
  background: transparent;
}

/* Left HUD — dashed curves + horizontals from glowing nodes */
.hb-hud-left {
  position: absolute;
  left: 338px;
  top: 48px;
  width: 200px;
  height: 160px;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.hb-hud-line {
  stroke: rgba(103, 252, 255, 0.5);
  stroke-width: 1.2;
  stroke-linecap: round;
  fill: none;
  filter:
    drop-shadow(2px 2px 33.9px #29c8cb) blur(0.35px);
}

.hb-hud-node {
  fill: #4bd7d8;
  filter:
    drop-shadow(0 0 4px #b7fffb) drop-shadow(0 0 8px rgba(192, 253, 250, 0.6));
}

.hb-v1 {
  width: 197px;
  height: 113px;
  left: 881px;
  top: 18px;
}

.hb-v5 {
  width: 66.64px;
  height: 16.01px;
  left: 1221px;
  top: 12px;
  transform: matrix(0.92, -0.39, 0.39, 0.92, 0, 0);
}

.hb-v6 {
  width: 66.64px;
  height: 16.01px;
  left: 1218px;
  top: 3px;
  transform: matrix(0.84, -0.54, 0.54, 0.84, 0, 0);
}

.hb-v7 {
  width: 47.39px;
  height: 3.28px;
  left: 1181px;
  top: 9px;
  transform: matrix(0.64, -0.77, -0.77, -0.64, 0, 0);
}

.hb-trail {
  position: absolute;
  display: block;
}

.hb-trail .hb-glow {
  position: absolute;
  display: block;
  background: #d9d9d9;
  filter: blur(1.7px);
}

.hb-trail .hb-dash {
  position: absolute;
  display: block;
  box-sizing: border-box;
  border: 1px dashed rgba(103, 252, 255, 0.5);
  box-shadow: 2px 2px 33.9px #29c8cb;
  filter: blur(0.7px);
  background: transparent;
}

.hb-trail-l1 {
  width: 92.5px;
  height: 4px;
  left: 324px;
  top: 125px;
  transform: rotate(179.54deg);
}

.hb-trail-l1 .hb-glow {
  width: 85px;
  height: 0.99px;
  left: 3.5px;
  top: 1.5px;
}

.hb-trail-l1 .hb-dash {
  width: 92.36px;
  height: 1.46px;
  left: 0;
  top: 0;
  transform: matrix(-1, 0.04, -0.13, -0.99, 0, 0);
}

.hb-trail-l2 {
  width: 92.5px;
  height: 5.16px;
  left: 373px;
  top: 161.44px;
  transform: rotate(179.54deg);
}

.hb-trail-l2 .hb-glow {
  width: 85px;
  height: 1.28px;
  left: 3.5px;
  top: 1.9px;
}

.hb-trail-l2 .hb-dash {
  width: 92.39px;
  height: 1.88px;
  left: 0;
  top: 0;
  transform: matrix(-1, 0.04, -0.1, -0.99, 0, 0);
}

.hb-hud-right {
  position: absolute;
  left: 870px;
  top: 4px;
  width: 420px;
  height: 160px;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.hb-trail-r1 {
  width: 92.5px;
  height: 5.16px;
  left: 1085px;
  top: 96px;
}

.hb-trail-r1 .hb-glow {
  width: 85px;
  height: 1.28px;
  left: 4px;
  top: 2px;
}

.hb-trail-r1 .hb-dash {
  width: 92.39px;
  height: 1.88px;
  left: 0;
  top: 0;
  transform: matrix(1, -0.04, 0.09, 1, 0, 0);
}

.hb-trail-r2 {
  width: 92.5px;
  height: 4px;
  left: 1073px;
  top: 109px;
}

.hb-trail-r2 .hb-glow {
  width: 85px;
  height: 0.99px;
  left: 4px;
  top: 1.56px;
}

.hb-trail-r2 .hb-dash {
  width: 92.36px;
  height: 1.46px;
  left: 0;
  top: 0;
  transform: matrix(1, -0.03, 0.12, 0.99, 0, 0);
}

.hb-trail-r3 {
  width: 92.5px;
  height: 5.16px;
  left: 1145px;
  top: 135px;
}

.hb-trail-r3 .hb-glow {
  width: 85px;
  height: 1.28px;
  left: 4px;
  top: 2px;
}

.hb-trail-r3 .hb-dash {
  width: 92.39px;
  height: 1.88px;
  left: 0;
  top: 0;
  transform: matrix(1, -0.04, 0.09, 1, 0, 0);
}

.hb-trail-r4 {
  width: 92.5px;
  height: 4px;
  left: 1120px;
  top: 151px;
}

.hb-trail-r4 .hb-glow {
  width: 85px;
  height: 0.99px;
  left: 4px;
  top: 1.56px;
}

.hb-trail-r4 .hb-dash {
  width: 92.36px;
  height: 1.46px;
  left: 0;
  top: 0;
  transform: matrix(1, -0.03, 0.12, 0.99, 0, 0);
}

.hb-trail-top {
  width: 64.96px;
  height: 10px;
  left: 1083px;
  top: 32px;
}

.hb-trail-top .hb-glow {
  width: 55px;
  height: 2px;
  left: 0;
  top: 5px;
}

/* Figma glow streaks (circled paths near button) */
.hb-streak {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hb-streak-line {
  position: absolute;
  display: block;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(217, 217, 217, 0.35) 18%,
      rgba(217, 217, 217, 0.95) 50%,
      rgba(217, 217, 217, 0.35) 82%,
      transparent 100%);
  filter: blur(1.7px);
  box-shadow: 0 0 8px rgba(75, 215, 216, 0.35);
}

/* Top streak + node (Group 1287): left 1145-62=1083, top 988-956=32 */
.hb-streak-top {
  width: 65px;
  height: 10px;
  left: 1083px;
  top: 32px;
}

.hb-streak-top .hb-streak-line {
  width: 55px;
  top: 4px;
}

/* Dual mid trails left of button — identical style to bottom r3/r4 */
.hb-trail-mid1 {
  width: 92.5px;
  height: 5.16px;
  left: 920px;
  top: 80px;
}

.hb-trail-mid1 .hb-glow {
  width: 85px;
  height: 1.28px;
  left: 4px;
  top: 2px;
}

.hb-trail-mid1 .hb-dash {
  width: 92.39px;
  height: 1.88px;
  left: 0;
  top: 0;
  transform: matrix(1, -0.04, 0.09, 1, 0, 0);
}

.hb-trail-mid2 {
  width: 92.5px;
  height: 4px;
  left: 908px;
  top: 96px;
}

.hb-trail-mid2 .hb-glow {
  width: 85px;
  height: 0.99px;
  left: 4px;
  top: 1.56px;
}

.hb-trail-mid2 .hb-dash {
  width: 92.36px;
  height: 1.46px;
  left: 0;
  top: 0;
  transform: matrix(1, -0.03, 0.12, 0.99, 0, 0);
}

.hb-dot {
  position: absolute;
  border-radius: 50%;
  background: #4bd7d8;
  box-shadow:
    0 0 4px #b7fffb,
    0 0 4px rgba(192, 253, 250, 0.6),
    0 0 50px rgba(202, 252, 255, 0.3),
    0 4px 4px rgba(0, 0, 0, 0.25);
}

.hb-dot.d37 {
  width: 6px;
  height: 6px;
  left: 347px;
  top: 76px;
}

.hb-dot.d22 {
  width: 6px;
  height: 6px;
  left: 347px;
  top: 97px;
}

.hb-dot.d35 {
  width: 7px;
  height: 6px;
  left: 347px;
  top: 125px;
}

.hb-dot.d34 {
  width: 7px;
  height: 6px;
  left: 373px;
  top: 142px;
}

.hb-dot.d36 {
  width: 7px;
  height: 6px;
  left: 402px;
  top: 162px;
}

.hb-dot.d29 {
  width: 3px;
  height: 3px;
  left: 662px;
  top: 149px;
}

.hb-dot.d30 {
  width: 9px;
  height: 9px;
  left: 868px;
  top: 86px;
}

.hb-dot.d18a {
  width: 9.96px;
  height: 10px;
  left: 1138px;
  top: 32px;
}

.hb-dot.d18b {
  width: 5px;
  height: 5px;
  left: 1047px;
  top: 70px;
}

.hb-dot.d19 {
  width: 5px;
  height: 5px;
  left: 1218px;
  top: 14px;
}

.hb-dot.d21 {
  width: 2px;
  height: 2px;
  left: 1182px;
  top: 48px;
}

.hb-dot.d20 {
  width: 3px;
  height: 3px;
  left: 1284px;
  top: 85px;
}

.help-code {
  position: absolute;
  color: rgba(183, 255, 255, 0.18);
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  text-shadow: 0 0 3px #4bd7d8;
  z-index: 1;
}

.help-code-a {
  left: 36.46%;
  top: 22%;
  transform: none;
}

.help-code-b {
  left: 64.1%;
  top: 28%;
  font-size: 13px;
  transform: none;
  opacity: 0.85;
}

.help-banner-media {
  width: 320px;
  height: 100%;
  border-radius: 18px 0 0 18px;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  overflow: hidden;
  background: transparent;
}

.help-banner-media::before,
.help-banner-media::after {
  content: none;
}

.help-banner-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: transparent;
}

.help-banner-content {
  min-width: 0;
  z-index: 3;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 0;
  gap: 22px;
  margin-left: -40px;
}

.help-banner h3 {
  margin: 0;
  width: 272px;
  height: 29px;
  color: #ffffff;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-align: center;
  white-space: nowrap;
}

.help-banner h3 span {
  color: #a2ff00;
  text-shadow: 0 0 10px rgba(162, 255, 0, 0.28);
}

.help-banner p {
  margin: 0;
  width: 315px;
  height: 38px;
  color: #ffffff;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  text-align: center;
}

/* Frame 62 */
.btn-help-centre {
  width: 197px;
  min-width: 197px;
  height: 43px;
  border-radius: 8px;
  border: 0.5px solid #5bf8e6;
  background: linear-gradient(90.09deg, #0f291c 1.87%, #2d7e1c 53.48%, #254520 100.23%);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 10px 26px;
  z-index: 3;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.2s ease, filter 0.2s ease;
  letter-spacing: 0;
  flex-shrink: 0;
  text-decoration: none;
  white-space: nowrap;
}

.btn-help-centre:hover {
  transform: translateY(-1px);
  color: #ffffff;
  filter: brightness(1.08);
  box-shadow: 4px 4px 10px rgba(72, 193, 117, 0.35);
}

.btn-help-centre::before,
.btn-help-centre::after {
  content: none;
}


/* ========== Footer ========== */
.site-footer {
  width: 100%;
  border-top: 1px solid rgba(91, 248, 230, 0.4);
  padding: 32px 0 16px;
  background:
    radial-gradient(circle at 88% 28%, rgba(91, 248, 230, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, rgba(1, 21, 26, 0) 0%, #011017 48%, #010d12 100%);
  position: relative;
}

.footer-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 48px;
  padding-right: 48px;
}

.footer-logo {
  width: 138px;
  margin-bottom: 12px;
}

.footer-about {
  max-width: 280px;
  color: #e8f3f6;
  font-size: 11.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: #f2fbfd;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(8, 38, 52, 0.55);
  font-size: 13px;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.16);
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover {
  color: var(--cyan-bright);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact li,
.footer-contact a {
  color: #f2f8fa;
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan-bright);
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact i {
  color: #f2f8fa;
  margin-right: 8px;
  font-size: 13px;
  vertical-align: -1px;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

.footer-illustration {
  width: min(100%, 220px);
  height: auto;
  margin-top: auto;
  margin-left: auto;
  margin-right: 0;
  display: block;
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.32));
  mix-blend-mode: screen;
  align-self: flex-end;
}

.copyright {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(34, 211, 238, 0.22);
  text-align: center;
  color: #e4f1f4;
  font-size: 12px;
  position: relative;
  letter-spacing: 0.2px;
}

.copyright::before,
.copyright::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 88px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(34, 211, 238, 0.85) 56%,
      transparent 100%);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.35);
}

.copyright::before {
  left: calc(50% - 210px);
}

.copyright::after {
  right: calc(50% - 210px);
}

.site-footer .row {
  position: relative;
}

.site-footer .col-lg-2,
.site-footer .col-lg-3:last-child {
  position: relative;
}

@media (min-width: 992px) {

  .site-footer .row,
  .footer-row {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.7fr 0.8fr 1.1fr;
    column-gap: clamp(24px, 3vw, 48px);
    align-items: stretch;
  }

  .site-footer .col-lg-3,
  .site-footer .col-lg-2 {
    width: auto;
    max-width: none;
    flex: initial;
  }

  .footer-contact-col {
    min-height: 100%;
  }

  .site-footer .row>[class*="col-"]:nth-child(2)::before,
  .site-footer .row>[class*="col-"]:nth-child(3)::before,
  .site-footer .row>[class*="col-"]:nth-child(4)::before,
  .site-footer .row>[class*="col-"]:nth-child(5)::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 24px;
    width: 2px;
    height: 100px;
    border-radius: 999px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(34, 211, 238, 0.7) 28%,
        rgba(34, 211, 238, 0.7) 72%,
        transparent 100%);
    filter: blur(1.2px);
    opacity: 0.85;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
  }

  .footer-contact {
    width: auto;
    max-width: none;
  }
}

/* Motion helpers */
.floating {
  animation: heroFloatDrift 5.5s ease-in-out infinite;
}

.floating-slow {
  animation: floatingSlow 9s ease-in-out infinite;
}

@keyframes floatingSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ========== Responsive ========== */
@media (max-width: 1199.98px) {
  .contact-card h3 {
    font-size: 20px;
  }

  .site-footer h4 {
    font-size: 17px;
  }

  .hero-title {
    font-size: clamp(32px, 3.5vw, 40px);
  }
}

@media (max-width: 991.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-shell {
    min-height: 54px;
    height: auto;
    width: 100%;
    padding: 6px 14px;
    flex-wrap: wrap;
    border-bottom: 0;
  }

  .navbar-toggler {
    padding: 4px 6px;
    border: 0;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar .collapse {
    flex-basis: 100%;
    width: 100%;
    margin-top: 12px;
    background: rgba(3, 22, 34, 0.98);
    border: 1px solid rgba(65, 234, 208, 0.28);
    border-radius: 12px;
    padding: 10px 12px 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }

  .navbar .collapse.show,
  .navbar .collapsing {
    display: block;
  }

  .nav-links {
    width: 100%;
    margin: 0 0 10px !important;
    gap: 0;
  }

  .nav-links .nav-item {
    width: 100%;
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 12px 14px;
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
    border-radius: 8px;
    text-align: left;
  }

  .nav-links .nav-link:hover {
    background: rgba(34, 211, 238, 0.08);
    color: var(--cyan);
  }

  .nav-links .nav-link.active {
    color: #69d5cf;
    background: rgba(34, 211, 238, 0.1);
  }

  .nav-links .nav-link.active::after {
    left: 14px;
    right: auto;
    bottom: 6px;
    width: 36px;
    height: 1.5px;
  }

  .nav-actions {
    width: 100%;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(65, 234, 208, 0.22);
    display: flex;
    gap: 10px;
  }

  .nav-actions .btn-login,
  .nav-actions .btn-signup {
    flex: 1;
    min-height: 42px;
    font-size: 14px;
    padding: 8px 12px;
  }

  .hero-section {
    padding-top: 16px;
  }

  .hero-row {
    min-height: auto;
  }

  .signup-panel,
  .signup-form {
    width: 100%;
    max-width: 470px;
  }

  .signup-form {
    height: auto;
    min-height: 0;
    gap: 12px;
  }

  .hero-title {
    font-size: clamp(28px, 5vw, 38px);
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-visual-col {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-image-wrap {
    width: min(781px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .hero-image {
    width: 100%;
    height: 100%;
  }

  .section-title {
    font-size: 34px;
  }

  .contact-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }

  .contact-card {
    min-height: 150px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .help-banner {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 0 0 22px;
    border-radius: 20px;
    row-gap: 16px;
  }

  .help-banner-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
  }

  .help-banner-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .help-banner-content {
    padding: 0 18px;
    text-align: center;
    margin-left: 0;
    gap: 12px;
    width: 100%;
  }

  /* Desktop FX coords don't scale — art already has paths */
  .help-banner-fx {
    display: none;
  }

  .help-banner h3 {
    width: auto;
    height: auto;
    max-width: 100%;
    font-size: 22px;
    line-height: 1.25;
    white-space: normal;
  }

  .help-banner p {
    width: auto;
    height: auto;
    max-width: 315px;
    font-size: 14px;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-help-centre {
    width: auto;
    min-width: 180px;
    margin: 4px auto 0;
  }

  .footer-illustration {
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
  }

  .site-footer h4 {
    font-size: 16px;
  }

  .footer-row {
    --bs-gutter-y: 28px;
  }

  .footer-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 110px;
  }

  .hero-title {
    font-size: clamp(24px, 7vw, 32px);
    white-space: nowrap;
  }

  .hero-text {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .signup-form {
    gap: 10px;
    height: auto;
  }

  .field-group {
    min-height: 54px;
    height: 54px;
    padding: 7px 10px 7px 7px;
    gap: 10px;
  }

  .field-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
    color: #95f45e;
  }

  .field-label {
    font-size: 13px;
    color: #ffffff;
  }

  .field-group input,
  .field-group select {
    font-size: 12px;
  }

  .btn-create-account {
    min-height: 48px;
    height: 48px;
    font-size: 14.5px;
  }

  .hero-image-wrap {
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .contact-row {
    --bs-gutter-y: 14px;
  }

  .contact-card {
    min-height: 132px;
    gap: 14px;
    padding: 14px 16px;
  }

  .icon-orb {
    width: 72px;
    height: 72px;
  }

  .icon-orb img {
    width: 44px;
    height: 52px;
  }

  .contact-card h3 {
    font-size: 18px;
  }

  .contact-card p {
    font-size: 12px;
  }

  .card-link {
    font-size: 14px;
  }

  .help-banner {
    padding: 0 0 20px;
    row-gap: 14px;
    border-radius: 18px;
  }

  .help-banner-media {
    aspect-ratio: 16 / 10;
    min-height: 180px;
    border-radius: 16px 16px 0 0;
  }

  .help-banner-content {
    padding: 0 14px;
    gap: 10px;
  }

  .help-banner h3 {
    width: auto;
    height: auto;
    max-width: 100%;
    font-size: 18px;
    line-height: 1.3;
    white-space: normal;
  }

  .help-banner p {
    width: auto;
    height: auto;
    max-width: 280px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .btn-help-centre {
    width: 180px;
    min-width: 180px;
    font-size: 13px;
    gap: 10px;
    padding: 8px 16px;
  }

  .site-footer {
    padding: 28px 0 18px;
  }

  .footer-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 22px;
  }

  .footer-row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-row>[class*="col-"]:nth-child(1) {
    grid-column: 1 / -1;
  }

  .footer-row>[class*="col-"]:nth-child(4),
  .footer-row>[class*="col-"]:nth-child(5) {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 10px;
  }

  .footer-about {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .social-links {
    gap: 10px;
    margin-bottom: 0;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .site-footer h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 7px;
  }

  .footer-links a,
  .footer-contact li,
  .footer-contact a {
    font-size: 12.5px;
  }

  .footer-contact-col {
    align-items: flex-start;
  }

  .footer-illustration {
    width: min(100%, 150px);
    margin-top: 12px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
  }

  .copyright {
    margin-top: 20px;
    padding: 14px 8px 0;
    font-size: 11.5px;
    line-height: 1.4;
  }

  .copyright::before,
  .copyright::after {
    width: 36px;
  }

  .copyright::before {
    left: calc(50% - 130px);
  }

  .copyright::after {
    right: calc(50% - 130px);
  }
}

@media (max-width: 575.98px) {
  .hero-visual-col {
    margin-top: 4px;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .signup-form {
    width: 100%;
    height: auto;
  }

  .contact-card {
    flex-direction: row;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .btn {
    flex: 1;
  }

  /* Footer mobile — clean balanced layout */
  .site-footer {
    padding: 22px 0 14px;
    text-align: left;
  }

  .footer-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
    row-gap: 20px;
  }

  .footer-row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* Brand block full width */
  .footer-row>[class*="col-"]:nth-child(1) {
    grid-column: 1 / -1;
  }

  /* Courses | support | Platform map — equal 3 columns */
  .footer-row>[class*="col-"]:nth-child(2),
  .footer-row>[class*="col-"]:nth-child(3),
  .footer-row>[class*="col-"]:nth-child(4) {
    grid-column: auto;
  }

  /* Contact full width */
  .footer-row>[class*="col-"]:nth-child(5) {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 110px;
    margin-bottom: 8px;
  }

  .footer-about {
    font-size: 11.5px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .site-footer h4 {
    font-size: 13.5px;
    margin-bottom: 8px;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 6px;
  }

  .footer-links a,
  .footer-contact li,
  .footer-contact a {
    font-size: 11.5px;
    line-height: 1.35;
    word-break: break-word;
  }

  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-contact i {
    margin-right: 0;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .footer-contact-col {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title title"
      "info art";
    column-gap: 12px;
    align-items: end;
  }

  .footer-contact-col h4 {
    grid-area: title;
  }

  .footer-contact-col .footer-contact {
    grid-area: info;
  }

  .footer-contact-col .footer-illustration {
    grid-area: art;
    width: 110px;
    margin: 0;
    align-self: end;
    justify-self: end;
  }

  .copyright {
    margin-top: 16px;
    padding-top: 12px;
    font-size: 11px;
  }

  .copyright::before,
  .copyright::after {
    display: none;
  }
}

/* ========== Support / Help page ========== */
.page-support .support-hero {
  padding-top: 8px;
  padding-bottom: 8px;
}

.page-support .support-hero-row {
  min-height: 462px;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(91, 248, 230, 0.58);
  background: rgba(7, 42, 54, 0.85);
  color: #9deec5;
  font-size: 12px;
  font-weight: 500;
}

.support-badge i {
  color: var(--green);
  font-size: 12px;
}

.page-support .support-hero-title {
  margin-top: 20px !important;
  margin-bottom: 10px;
  font-size: clamp(48px, 5.1vw, 66px);
  line-height: 1.04;
  font-weight: 500;
  max-width: 560px;
  letter-spacing: 0;
}

.page-support .support-hero-text {
  max-width: 500px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.42;
  margin-bottom: 20px;
}

.search-box {
  max-width: 390px;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(91, 248, 230, 0.5);
  background: linear-gradient(180deg, #072a36 0%, #052430 100%);
  box-shadow:
    inset 0 0 12px rgba(11, 90, 106, 0.18),
    0 0 14px rgba(91, 248, 230, 0.12);
  padding: 5px;
  display: flex;
  align-items: center;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
}

.search-input-wrap i {
  color: #86a4ae;
  font-size: 18px;
}

.search-input-wrap .form-control {
  border: 0;
  background: transparent;
  color: #dceff4;
  box-shadow: none;
  font-size: 14px;
}

.search-input-wrap .form-control::placeholder {
  color: #6f909a;
}

.btn-search {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  background: linear-gradient(180deg, #34d7c1 0%, #95e74f 100%);
  color: #10231d;
  font-size: 14px;
  font-weight: 700;
}

.btn-search:hover {
  box-shadow: 0 0 14px rgba(145, 245, 99, 0.34);
  color: #10231d;
}

.page-support .support-hero-image-wrap {
  width: min(700px, 100%);
  height: auto;
  position: relative;
  z-index: 1;
  transform: translate(4px, 0);
  animation: heroFloat 6.2s ease-in-out infinite;
}

.page-support .support-hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 800 / 462;
}

@keyframes heroFloat {
  0% {
    transform: translate(4px, 0) rotate(-0.2deg) scale(1);
  }

  25% {
    transform: translate(4px, -10px) rotate(0.15deg) scale(1.008);
  }

  50% {
    transform: translate(4px, -18px) rotate(0.25deg) scale(1.012);
  }

  75% {
    transform: translate(4px, -10px) rotate(0.1deg) scale(1.008);
  }

  100% {
    transform: translate(4px, 0) rotate(-0.2deg) scale(1);
  }
}

@keyframes heroGlowFloat {
  0% {
    opacity: 0.72;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0.9;
    transform: translateY(7px) scale(1.08);
  }

  100% {
    opacity: 0.72;
    transform: translateY(0) scale(1);
  }
}

.page-support .support-hero-image-wrap::after {
  animation: heroGlowFloat 6.2s ease-in-out infinite;
}

a.btn-signup {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .page-support .support-hero-row {
    min-height: auto;
  }

  .page-support .support-hero-title {
    font-size: clamp(38px, 6vw, 52px);
    max-width: 100%;
  }

  .page-support .support-hero-text {
    max-width: 100%;
  }

  .search-box {
    max-width: 100%;
  }

  .page-support .support-hero-image-wrap {
    width: min(620px, 100%);
    transform: translate(0, 0);
  }
}

@media (max-width: 767.98px) {
  .page-support .support-hero-title {
    font-size: 42px;
  }

  .search-box {
    min-height: 50px;
    border-radius: 10px;
    padding: 4px;
  }

  .search-input-wrap {
    gap: 6px;
    padding-left: 6px;
  }

  .search-input-wrap i {
    font-size: 15px;
  }

  .search-input-wrap .form-control {
    font-size: 13px;
  }

  .btn-search {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
}

/* ========== Testimonials page ========== */
.page-testimonials .testimonials-hero {
  padding-top: 28px;
  padding-bottom: 18px;
}

.page-testimonials .testimonials-hero-row {
  min-height: 0;
  --bs-gutter-x: 48px;
  --bs-gutter-y: 24px;
}

.page-testimonials .testimonials-hero-copy {
  width: 100%;
  max-width: 425px;
}

.page-testimonials .testimonials-hero-title {
  margin: 0 0 16px;
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 425px;
  letter-spacing: -0.4px;
}

.page-testimonials .testimonials-hero-title span {
  color: var(--green);
  text-shadow: 0 0 16px rgba(149, 244, 94, 0.38);
}

.page-testimonials .testimonials-hero-text {
  max-width: 425px;
  color: #d7e8ee;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.page-testimonials .testimonials-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-testimonials .testimonials-hero-image-wrap {
  width: 403px;
  max-width: 100%;
  height: 231px;
  aspect-ratio: 403 / 231;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: testimonialsHeroFloat 6.4s ease-in-out infinite;
  will-change: transform;
}

.page-testimonials .testimonials-hero-image {
  width: 100%;
  max-width: 403px;
  height: 100%;
  max-height: 231px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(91, 248, 230, 0.18));
}

.page-testimonials .testimonials-hero-image-wrap::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 0;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(91, 248, 230, 0.2) 0%, rgba(149, 244, 94, 0.12) 42%, transparent 72%);
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
  animation: heroGlowFloat 6.4s ease-in-out infinite;
}

@keyframes testimonialsHeroFloat {
  0% {
    transform: translateY(0) rotate(-0.15deg) scale(1);
  }

  25% {
    transform: translateY(-10px) rotate(0.15deg) scale(1.01);
  }

  50% {
    transform: translateY(-18px) rotate(0.25deg) scale(1.015);
  }

  75% {
    transform: translateY(-10px) rotate(0.1deg) scale(1.01);
  }

  100% {
    transform: translateY(0) rotate(-0.15deg) scale(1);
  }
}

.testimonials-section {
  padding: 32px 0 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1317px;
  margin: 0 auto;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  width: 100%;
  max-width: 644px;
  min-height: 302px;
  height: 100%;
  margin: 0 auto;
  padding: 26px 28px 24px 24px;
  border-radius: 14px;
  background: #00151a;
  border: 1px solid rgba(42, 157, 143, 0.45);
  box-shadow:
    0 0 0 1px rgba(136, 216, 64, 0.08),
    0 0 18px rgba(42, 157, 143, 0.14);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(105deg,
      #88d840 0%,
      rgba(136, 216, 64, 0.75) 18%,
      rgba(42, 157, 143, 0.55) 55%,
      rgba(42, 157, 143, 0.7) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #88d840 0%, #ccff00 100%);
  box-shadow: 0 0 10px rgba(136, 216, 64, 0.55);
  z-index: 3;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(136, 216, 64, 0.45);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(42, 157, 143, 0.22);
}

.testimonial-quote {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Figma: 43 × 36 */
.testimonial-quote-top {
  top: 18px;
  right: 24px;
  width: 43px;
  height: 36px;
  object-fit: contain;
  opacity: 0.9;
  filter:
    brightness(0) saturate(100%) invert(48%) sepia(24%) saturate(980%) hue-rotate(127deg) brightness(95%) contrast(90%) drop-shadow(0 0 8px rgba(42, 157, 143, 0.4));
}

/* Figma: 74 × 74 */
.testimonial-quote-bottom {
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  object-fit: contain;
  opacity: 1;
  transform: none;
  filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.45));
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 47px;
  position: relative;
  z-index: 2;
  margin-bottom: 2px;
  padding-right: 56px;
  padding-left: 4px;
}

/* Figma: 132 × 132, border 3px #1A9B91 → #9BC33C */
.testimonial-avatar-ring {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 3px;
  background: linear-gradient(180deg, #1a9b91 0%, #9bc33c 100%);
  box-shadow:
    2px 2px 2px #9bc33c,
    inset 2px 2px 2px #0c9289;
  overflow: hidden;
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: #00151a;
  aspect-ratio: 1 / 1;
  box-shadow: none;
}

/* Figma Group: 177 × 85.34 */
.testimonial-meta {
  width: 177px;
  min-width: 177px;
  max-width: 177px;
  min-height: 85.34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-meta h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.testimonial-role {
  margin: 0 0 10px;
  color: #006d5b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: none;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffcc00;
  font-size: 13px;
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.35));
}

.testimonial-stars i {
  color: #ffcc00;
}

/* Figma review body — larger, readable white text */
.testimonial-text {
  position: relative;
  z-index: 2;
  width: min(380px, calc(100% - 100px));
  max-width: 380px;
  min-height: 0;
  margin: -2px 0 0;
  margin-left: calc(132px + 47px + 4px);
  padding: 0 88px 12px 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.page-testimonials .testimonials-banner-section {
  padding-top: 28px;
}

.page-testimonials .testimonials-banner-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
}

.page-testimonials .testimonials-banner-art {
  width: 88%;
  height: auto;
  max-height: 168px;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 8px 18px rgba(91, 248, 230, 0.2));
}

.page-testimonials .testimonials-banner-content {
  width: 324px;
  max-width: 324px;
  height: auto;
  min-height: 111px;
  gap: 10px;
  margin-left: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  justify-self: center;
  text-align: start;
  position: relative;
  z-index: 4;
}

.page-testimonials .testimonials-banner h3 {
  width: 324px;
  max-width: 324px;
  height: auto;
  margin: 0;
  white-space: normal;
  line-height: 1.15;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  text-align: start;
}

.page-testimonials .testimonials-banner h3 span {
  display: block;
  margin-top: 2px;
  background: linear-gradient(90deg, #18bb9e 0%, #83c841 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: none;
}

.page-testimonials .testimonials-banner p {
  width: 324px;
  max-width: 324px;
  height: auto;
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  text-align: start;
}

.page-testimonials .btn-explore-courses {
  width: auto;
  min-width: 210px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #3adba0 0%, #9ff45f 100%);
  color: #082214;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
  letter-spacing: 0.1px;
}

.page-testimonials .btn-explore-courses:hover {
  color: #082214;
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(149, 244, 94, 0.36);
}

@media (max-width: 1199.98px) {
  .testimonials-grid {
    gap: 24px;
    max-width: 100%;
  }

  .testimonial-card {
    max-width: none;
    min-height: 280px;
    padding: 24px 26px 26px 26px;
  }

  .testimonial-meta h3 {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 16.5px;
    line-height: 1.56;
    max-width: 380px;
    width: min(380px, calc(100% - 60px));
  }

  .page-testimonials .testimonials-banner h3 {
    font-size: 20px;
    max-width: 324px;
  }

  .page-testimonials .testimonials-banner-content {
    margin-left: 0;
    width: 324px;
    max-width: 324px;
    height: auto;
    min-height: 111px;
  }
}

@media (max-width: 991.98px) {
  .page-testimonials .testimonials-hero {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .page-testimonials .testimonials-hero-row {
    min-height: auto;
    --bs-gutter-x: 24px;
  }

  .page-testimonials .testimonials-hero-copy {
    max-width: 100%;
  }

  .page-testimonials .testimonials-hero-title {
    font-size: clamp(36px, 6vw, 50px);
    max-width: 100%;
  }

  .page-testimonials .testimonials-hero-text {
    max-width: 100%;
  }

  .page-testimonials .testimonials-hero-visual {
    justify-content: center;
  }

  .page-testimonials .testimonials-hero-image-wrap {
    width: min(403px, 100%);
    height: auto;
    aspect-ratio: 403 / 231;
    margin: 0 auto;
    animation-name: testimonialsHeroFloatTablet;
  }

  .page-testimonials .testimonials-hero-image {
    max-height: none;
    height: auto;
  }

  @keyframes testimonialsHeroFloatTablet {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-12px) scale(1.012);
    }
  }

  .testimonials-section {
    padding-top: 20px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .testimonial-card {
    min-height: 280px;
    padding: 22px 20px 22px 20px;
  }

  .testimonial-avatar-ring {
    width: 110px;
    height: 110px;
    padding: 3px;
  }

  .testimonial-head {
    gap: 28px;
  }

  .testimonial-meta {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }

  .testimonial-text {
    width: min(320px, calc(100% - 80px));
    max-width: 320px;
    min-height: auto;
    margin-left: calc(110px + 28px + 4px);
    margin-top: -2px;
    font-size: 16px;
    line-height: 1.5;
    padding-right: 72px;
    padding-bottom: 10px;
  }

  .testimonial-quote-top {
    width: 43px;
    height: 36px;
    top: 14px;
    right: 14px;
  }

  .testimonial-quote-bottom {
    width: 64px;
    height: 64px;
    right: 12px;
    bottom: 12px;
  }

  .page-testimonials .testimonials-banner-content {
    margin-left: 0;
    width: 100%;
    max-width: 324px;
    height: auto;
  }

  .page-testimonials .testimonials-banner h3 {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
  }

  .page-testimonials .testimonials-banner p {
    width: 100%;
    max-width: 100%;
    font-size: 12.5px;
  }

  .page-testimonials .testimonials-banner-art {
    max-height: none;
    width: min(280px, 70%);
  }
}

@media (max-width: 767.98px) {
  .page-testimonials .testimonials-hero-title {
    font-size: 38px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    min-height: 0;
    max-width: 100%;
    padding: 22px 18px 24px 20px;
  }

  .testimonial-card::after {
    top: 12px;
    bottom: 12px;
    width: 2.5px;
  }

  .testimonial-head {
    gap: 16px;
    padding-right: 44px;
    margin-bottom: 2px;
  }

  .testimonial-avatar-ring {
    width: 84px;
    height: 84px;
    padding: 2.5px;
  }

  .testimonial-meta {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 0;
  }

  .testimonial-meta h3 {
    font-size: 18px;
  }

  .testimonial-role {
    font-size: 14px;
  }

  .testimonial-text {
    width: auto;
    max-width: 100%;
    min-height: 0;
    margin-left: 0;
    margin-top: 0;
    padding-right: 64px;
    padding-bottom: 8px;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .testimonial-quote-top {
    width: 38px;
    height: 32px;
    top: 12px;
    right: 12px;
  }

  .testimonial-quote-bottom {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 12px;
  }

  .page-testimonials .btn-explore-courses {
    min-width: 180px;
  }
}

@media (max-width: 575.98px) {
  .testimonials-grid {
    gap: 14px;
  }
}

/* ========== Project Detail ========== */
.page-project-detail .project-detail-section {
  padding: 10px 0 56px;
}

.page-project-detail .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 5px 14px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(91, 248, 230, 0.6);
  background: rgba(2, 18, 24, 0.78);
  color: #f2fbfd;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(91, 248, 230, 0.1);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.page-project-detail .btn-back i {
  font-size: 13px;
  color: #e8fbff;
  transition: transform 0.25s ease;
}

.page-project-detail .btn-back:hover {
  color: var(--cyan-bright);
  border-color: rgba(91, 248, 230, 0.9);
  background: rgba(4, 30, 38, 0.9);
  box-shadow: 0 0 14px rgba(91, 248, 230, 0.2);
}

.page-project-detail .btn-back:hover i {
  transform: translateX(-3px);
  color: var(--cyan-bright);
}

.page-project-detail .project-detail-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
  align-items: flex-start;
}

/* Desktop: Figma ~868 / 424 ≈ 67.2% / 32.8% */
@media (min-width: 992px) {
  .page-project-detail .project-col-viewer {
    flex: 0 0 67.2%;
    max-width: 67.2%;
  }

  .page-project-detail .project-col-share {
    flex: 0 0 32.8%;
    max-width: 32.8%;
  }

  .page-project-detail .project-viewer-card {
    width: 100%;
    max-width: 868px;
    min-height: 553px;
  }

  .page-project-detail .project-share-card {
    width: 100%;
    max-width: 424px;
    min-height: 584px;
    margin-left: auto;
  }

  .page-project-detail .project-video-shell {
    width: 100%;
    max-width: 791px;
  }

  .page-project-detail .project-video-stage {
    height: 364px;
    aspect-ratio: auto;
  }

  .page-project-detail .project-share-art {
    width: 284px;
    max-width: 100%;
  }
}

.page-project-detail .project-viewer-card,
.page-project-detail .project-share-card {
  position: relative;
  border-radius: 14px;
  background: rgba(0, 18, 24, 0.82);
  border: 1px solid rgba(91, 248, 230, 0.38);
  box-shadow:
    0 0 0 1px rgba(91, 248, 230, 0.04),
    0 0 22px rgba(91, 248, 230, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: visible;
}

.page-project-detail .project-viewer-card {
  padding: 20px 22px 22px;
}

.page-project-detail .project-code-float {
  position: absolute;
  top: -26px;
  right: -8px;
  width: 118px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 12px rgba(91, 248, 230, 0.16));
  animation: projectCodeFloat 5.8s ease-in-out infinite;
}

@keyframes projectCodeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

.page-project-detail .project-viewer-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-right: 100px;
}

.page-project-detail .project-avatar-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 2.5px;
  background: linear-gradient(145deg, #5bf8e6 0%, #67fcff 50%, #95f45e 100%);
  box-shadow:
    0 0 0 1px rgba(91, 248, 230, 0.25),
    0 0 16px rgba(91, 248, 230, 0.5);
}

.page-project-detail .project-avatar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, #0a3a46 0%, #02141a 100%);
  color: #9ffff4;
  font-size: 26px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.35);
}

.page-project-detail .project-username {
  margin: 0 0 3px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.page-project-detail .project-type {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #95f45e;
  text-shadow: 0 0 8px rgba(149, 244, 94, 0.3);
}

.page-project-detail .project-video-shell {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000b0d;
  border: 1px solid rgba(91, 248, 230, 0.28);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.page-project-detail .project-video-stage {
  position: relative;
  aspect-ratio: 791 / 364;
  background: #000b0d;
}

.page-project-detail .project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000b0d;
}

.page-project-detail .project-video-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: #000b0d;
}

.page-project-detail .project-video-cover.is-hidden {
  display: none;
}

.page-project-detail .project-video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-project-detail .project-video-cover-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-bright);
  font-size: 30px;
  background: rgba(4, 28, 36, 0.72);
  border: 1px solid rgba(91, 248, 230, 0.55);
  box-shadow: 0 0 22px rgba(91, 248, 230, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-project-detail .project-video-cover-play i {
  margin-left: 3px;
}

.page-project-detail .project-video-cover:hover .project-video-cover-play {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 28px rgba(91, 248, 230, 0.4);
}

.page-project-detail .project-video-controls {
  padding: 8px 12px 10px;
  background: linear-gradient(180deg, rgba(0, 10, 14, 0.72) 0%, rgba(0, 8, 12, 0.96) 100%);
  border-top: 1px solid rgba(91, 248, 230, 0.08);
}

.page-project-detail .project-progress {
  margin-bottom: 6px;
  outline: none;
}

.page-project-detail .project-progress-track {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(220, 235, 240, 0.38);
  overflow: visible;
}

.page-project-detail .project-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: #95f45e;
  box-shadow: 0 0 8px rgba(149, 244, 94, 0.55);
}

.page-project-detail .project-progress-thumb {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #95f45e;
  border: 0;
  box-shadow: 0 0 8px rgba(149, 244, 94, 0.7);
  transform: translate(-50%, -50%);
}

.page-project-detail .project-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-project-detail .project-controls-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-project-detail .project-time {
  font-size: 12px;
  color: #edf8fb;
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
}

.page-project-detail .project-control-actions {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
}

.page-project-detail .project-more-wrap {
  position: relative;
}

.page-project-detail .project-more-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 148px;
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(2, 18, 24, 0.96);
  border: 1px solid rgba(91, 248, 230, 0.35);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(91, 248, 230, 0.12);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.page-project-detail .project-more-menu[hidden] {
  display: none;
}

.page-project-detail .project-more-label {
  margin: 0 8px 8px;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(159, 183, 192, 0.9);
}

.page-project-detail .project-more-item {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #edf8fb;
  text-align: left;
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-project-detail .project-more-item:hover {
  background: rgba(91, 248, 230, 0.1);
  color: var(--cyan-bright);
}

.page-project-detail .project-more-item.is-active {
  background: rgba(149, 244, 94, 0.12);
  color: #95f45e;
}

.page-project-detail .project-ctrl-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #edf8fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease;
}

.page-project-detail .project-ctrl-btn:hover {
  color: var(--cyan-bright);
  background: rgba(91, 248, 230, 0.08);
}

.page-project-detail .project-share-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 24px 26px;
  text-align: center;
}

.page-project-detail .project-share-head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 10px;
}

.page-project-detail .project-share-orb {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 6px rgba(149, 244, 94, 0.25));
}

.page-project-detail .project-share-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.page-project-detail .project-share-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 242px;
  padding: 12px 0 8px;
}

.page-project-detail .project-share-art {
  width: min(284px, 88%);
  height: auto;
  display: block;
  transform-origin: center bottom;
  animation: projectShareFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 18px rgba(91, 248, 230, 0.16));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.page-project-detail .project-share-art:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.04);
  filter:
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 24px rgba(149, 244, 94, 0.35)) drop-shadow(0 0 28px rgba(91, 248, 230, 0.28));
}

@keyframes projectShareFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
    filter:
      drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 14px rgba(91, 248, 230, 0.14)) drop-shadow(0 0 10px rgba(149, 244, 94, 0.12));
  }

  50% {
    transform: translateY(-14px) rotate(1.5deg);
    filter:
      drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 26px rgba(91, 248, 230, 0.28)) drop-shadow(0 0 22px rgba(149, 244, 94, 0.28));
  }
}

.page-project-detail .project-share-text {
  margin: 0 0 20px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
}

.page-project-detail .btn-copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 248px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1.5px dashed rgba(91, 248, 230, 0.85);
  background: transparent;
  color: #5bf8e6;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: none;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.page-project-detail .btn-copy-link i {
  font-size: 18px;
  color: #5bf8e6;
}

.page-project-detail .btn-copy-link:hover,
.page-project-detail .btn-copy-link.is-hovered {
  border-color: rgba(91, 248, 230, 1);
  background: rgba(91, 248, 230, 0.12);
  box-shadow:
    0 0 14px rgba(91, 248, 230, 0.28),
    0 0 26px rgba(91, 248, 230, 0.12);
  color: #9ffff4;
}

.page-project-detail .btn-copy-link:hover i,
.page-project-detail .btn-copy-link.is-hovered i {
  color: #9ffff4;
}

.page-project-detail .btn-copy-link.is-copied {
  border-style: solid;
  border-color: rgba(149, 244, 94, 0.75);
  color: #95f45e;
  background: rgba(149, 244, 94, 0.08);
  box-shadow: 0 0 16px rgba(149, 244, 94, 0.22);
}

.page-project-detail .btn-copy-link.is-copied i {
  color: #95f45e;
}

@media (max-width: 1199.98px) {
  .page-project-detail .project-code-float {
    width: 104px;
    top: -20px;
    right: -4px;
  }

  .page-project-detail .project-viewer-head {
    padding-right: 88px;
  }

  .page-project-detail .project-share-art {
    width: min(250px, 86%);
  }
}

/* Tablet / mobile: stack video on top, share underneath */
@media (max-width: 991.98px) {
  .page-project-detail .project-detail-section {
    padding-bottom: 36px;
  }

  .page-project-detail .project-detail-row {
    --bs-gutter-y: 18px;
  }

  .page-project-detail .project-col-viewer,
  .page-project-detail .project-col-share {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-project-detail .project-viewer-card,
  .page-project-detail .project-share-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    margin-left: 0;
  }

  .page-project-detail .project-video-shell {
    max-width: 100%;
  }

  .page-project-detail .project-video-stage {
    height: auto;
    aspect-ratio: 791 / 364;
  }

  .page-project-detail .project-share-card {
    padding: 20px 18px 22px;
  }

  .page-project-detail .project-share-visual {
    min-height: 220px;
  }

  .page-project-detail .project-code-float {
    width: 96px;
    top: -16px;
    right: 6px;
  }

  .page-project-detail .project-viewer-head {
    padding-right: 90px;
  }
}

@media (max-width: 767.98px) {
  .page-project-detail .btn-back {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .page-project-detail .project-detail-row {
    --bs-gutter-y: 14px;
  }

  .page-project-detail .project-viewer-card {
    padding: 16px 14px 14px;
  }

  .page-project-detail .project-viewer-head {
    gap: 12px;
    padding-right: 70px;
    margin-bottom: 12px;
  }

  .page-project-detail .project-avatar-ring {
    width: 48px;
    height: 48px;
  }

  .page-project-detail .project-avatar-inner {
    font-size: 22px;
  }

  .page-project-detail .project-username {
    font-size: 18px;
  }

  .page-project-detail .project-type {
    font-size: 12.5px;
  }

  .page-project-detail .project-code-float {
    width: 74px;
    top: -10px;
    right: 2px;
  }

  .page-project-detail .project-share-head h2 {
    font-size: 18px;
  }

  .page-project-detail .project-share-text {
    font-size: 13px;
    max-width: 240px;
  }

  .page-project-detail .project-share-art {
    width: min(210px, 78%);
  }

  .page-project-detail .project-share-orb {
    width: 32px;
    height: 32px;
  }

  .page-project-detail .btn-copy-link {
    font-size: 14px;
    max-width: 220px;
  }
}

@media (max-width: 575.98px) {
  .page-project-detail .project-detail-section {
    padding-bottom: 28px;
  }

  .page-project-detail .project-video-controls {
    padding: 7px 10px 9px;
  }

  .page-project-detail .project-progress-track {
    height: 3.5px;
  }

  .page-project-detail .project-progress-thumb {
    width: 10px;
    height: 10px;
  }

  .page-project-detail .project-time {
    font-size: 11px;
  }

  .page-project-detail .project-ctrl-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .page-project-detail .project-share-card {
    padding: 16px 14px 18px;
  }

  .page-project-detail .btn-copy-link {
    max-width: 100%;
  }
}

/* ========== Home / Landing page ========== */
.page-home .home-hero {
  padding-top: 36px;
  padding-bottom: 8px;
}

.page-home .home-hero-row {
  min-height: 560px;
  align-items: flex-start !important;
}

.page-home .home-hero-copy {
  padding-top: 8px;
  margin-top: 0;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 16px;
  border: 1px solid rgba(91, 248, 230, 0.55);
  background: rgba(7, 42, 54, 0.85);
  color: #9deec5;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 18px;
  box-shadow: 0 0 14px rgba(91, 248, 230, 0.14);
}

.home-badge i {
  color: var(--green);
  font-size: 13px;
}

.home-hero-heading-block {
  width: 466px;
  max-width: 100%;
}

.page-home .home-hero-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.18;
  font-weight: 700;
  white-space: normal;
  max-width: 100%;
}

.page-home .home-hero-title span {
  color: #95f45e;
  text-shadow: 0 0 18px rgba(149, 244, 94, 0.4);
}

.page-home .home-hero-text {
  max-width: 100%;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

.home-search-box {
  width: 482px;
  height: 50px;
  min-height: 50px;
  max-width: 100%;
  margin: 22px 0 26px;
  background: rgba(7, 42, 54, 0.4);
  border-color: rgba(91, 248, 230, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 12px rgba(11, 90, 106, 0.18),
    0 0 14px rgba(91, 248, 230, 0.1);
}

.home-social-proof {
  display: flex;
  align-items: center;
  width: 436px;
  max-width: 100%;
  min-height: 64px;
  gap: 16px;
  margin-bottom: 26px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #01151a;
  box-shadow: 0 0 0 1px rgba(91, 248, 230, 0.4);
  margin-left: -12px;
  background: #052430;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-stack-item:first-child {
  margin-left: 0;
}

.avatar-stack-more {
  color: #dceff4;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #072a36 0%, #0a3342 100%);
}

.home-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-rating-label {
  color: #edf8fb;
  font-size: 14px;
  font-weight: 600;
}

.home-rating-stars {
  display: flex;
  gap: 3px;
  color: #ffcc00;
  font-size: 13px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.35));
}

.home-cta-row {
  display: flex;
  align-items: center;
  width: 368px;
  max-width: 100%;
  min-height: 56px;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-start-learning {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 10px;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #082214;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, #3adba0 0%, #9ff45f 100%);
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.btn-start-learning:hover {
  box-shadow: 0 0 18px rgba(149, 244, 94, 0.4);
  transform: translateY(-2px);
  color: #082214;
}

.btn-browse-courses {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  color: #edf8fb;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(91, 248, 230, 0.6);
  background: rgba(7, 42, 54, 0.4);
  text-decoration: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-browse-courses:hover {
  border-color: rgba(91, 248, 230, 0.95);
  box-shadow: 0 0 14px rgba(91, 248, 230, 0.24);
  color: #edf8fb;
  transform: translateY(-2px);
}

.page-home .home-hero-image-wrap {
  width: min(757px, 100%);
  height: auto;
  aspect-ratio: 757 / 495;
  margin-left: auto;
  margin-top: 8px;
  padding-top: 0;
  position: relative;
  z-index: 1;
  align-items: flex-start;
  justify-content: center;
}

.page-home .home-hero-visual-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 8px;
  margin-top: 0;
}

.page-home .home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-cert-badge {
  position: absolute;
  top: 10%;
  left: 46%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 14px;
  background: rgba(4, 28, 36, 0.9);
  border: 1px solid rgba(149, 244, 94, 0.55);
  box-shadow: 0 0 16px rgba(149, 244, 94, 0.22), 0 8px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

.hero-cert-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(149, 244, 94, 0.25) 0%, rgba(4, 28, 36, 0.9) 100%);
  border: 1px solid rgba(149, 244, 94, 0.5);
  color: var(--green);
  font-size: 15px;
}

.hero-cert-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-cert-text strong {
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-cert-text span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

/* ---------- Stats bar ---------- */
.stats-bar-section {
  padding: 34px 0 20px;
}

.stats-bar-card {
  width: 1278px;
  max-width: 100%;
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 30px;
  padding: 18px 36px;
}

.stats-bar-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  flex-shrink: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #128e7e;
  font-size: 38px;
  line-height: 1;
}

.stat-icon i {
  -webkit-text-stroke: 0.5px #128e7e;
}

.stat-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.stat-number {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.stat-label {
  color: #b5c7cd;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.stats-bar-divider {
  width: 1px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(18, 142, 126, 0.35);
}

.stats-bar-divider-lg {
  height: 46px;
}

.trusted-by-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.trusted-by-label {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.trusted-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b9d4d9;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0.85;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.trusted-logo i {
  font-size: 20px;
}

.trusted-logo-google i {
  color: #7fb2ff;
}

.trusted-logo-microsoft i {
  color: #7fd0ff;
}

.trusted-logo-amazon i {
  color: #ffc078;
}

.trusted-logo-meta i {
  color: #8fa6ff;
}

.trusted-logo-spotify i {
  color: #8ff0b0;
}

.trusted-logo:hover {
  color: var(--cyan-bright);
  opacity: 1;
}

/* ---------- About the instructor ---------- */
.about-instructor-section {
  padding: 42px 0 46px;
}

.instructor-visual-wrap {
  position: relative;
  width: min(501px, 100%);
  aspect-ratio: 501 / 502;
  margin: 0 auto;
  display: inline-flex;
}

.instructor-visual-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(91, 248, 230, 0.22) 0%, transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.instructor-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(91, 248, 230, 0.6);
  box-shadow:
    0 0 0 6px rgba(91, 248, 230, 0.08),
    0 0 30px rgba(91, 248, 230, 0.28),
    0 18px 30px rgba(0, 0, 0, 0.4);
}

.instructor-eyebrow {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.25;
  font-weight: 700;
}

.instructor-eyebrow-accent {
  color: var(--green);
  text-shadow: 0 0 16px rgba(149, 244, 94, 0.35);
}

.instructor-name {
  margin: 0 0 20px;
  color: var(--cyan-bright);
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 0 16px rgba(103, 252, 255, 0.3);
}

.instructor-bio-block {
  width: 701px;
  max-width: 100%;
}

.instructor-bio {
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.instructor-bio:last-of-type {
  margin-bottom: 0;
}

.instructor-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 742px;
  max-width: 100%;
  min-height: 74px;
  gap: 18px;
  margin-top: 28px;
  padding: 12px 0;
  border-top: 1px solid rgba(91, 248, 230, 0.16);
}

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

.instructor-stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #128e7e;
  font-size: 38px;
  line-height: 1;
}

.instructor-stat-icon i {
  -webkit-text-stroke: 0.5px #128e7e;
}

.instructor-stat-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.instructor-stat-number {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.instructor-stat-label {
  color: #b5c7cd;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .page-home .home-hero-row {
    min-height: auto;
  }

  .home-hero-heading-block,
  .home-search-box,
  .home-social-proof,
  .home-cta-row {
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .home-hero-image-wrap {
    width: min(460px, 100%);
    margin: 28px auto 0;
  }

  .hero-cert-badge {
    padding: 6px 12px 6px 6px;
    gap: 8px;
  }

  .hero-cert-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .hero-cert-text strong {
    font-size: 11px;
  }

  .hero-cert-text span {
    font-size: 10px;
  }

  .stats-bar-card {
    padding: 22px 20px;
    gap: 18px 24px;
  }

  .stats-bar-row {
    justify-content: center;
    width: 100%;
  }

  .trusted-by-row {
    justify-content: center;
    width: 100%;
  }

  .about-instructor-row {
    text-align: center;
  }

  .instructor-stats-row {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .page-home .home-hero-title {
    font-size: clamp(30px, 7vw, 40px);
  }

  .home-social-proof {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-start-learning,
  .btn-browse-courses {
    min-height: 44px;
    font-size: 14px;
    padding: 0 20px;
  }

  .stats-bar-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    gap: 32px;
    padding: 16px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .stats-bar-card::-webkit-scrollbar {
    display: none;
  }

  .stats-bar-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    width: auto !important;
  }

  .stats-bar-divider {
    height: 34px;
    display: inline-block !important;
  }

  .stats-bar-divider-lg {
    display: inline-block !important;
    height: 46px;
    width: 1px;
    background: rgba(91, 248, 230, 0.25);
  }

  .trusted-by-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex-shrink: 0;
    width: auto !important;
  }

  .trusted-by-label {
    text-align: left;
  }

  .trusted-by-logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }

  .instructor-visual-wrap {
    width: min(250px, 70%);
    margin-bottom: 20px;
  }

  .instructor-eyebrow {
    font-size: 26px;
  }

  .instructor-name {
    font-size: 17px;
  }

  .instructor-stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px 0;
  }

  .instructor-stat {
    width: 48%;
    justify-content: flex-start;
    text-align: left;
  }

  .instructor-stats-row .stats-bar-divider {
    display: none !important;
  }

  .instructor-stat-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .stat-icon {
    font-size: 28px;
  }

  .stat-number {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .home-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .avatar-stack-item {
    width: 38px;
    height: 38px;
  }

  .home-social-proof {
    width: 100%;
    justify-content: space-between;
  }

  .home-cta-row {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .btn-start-learning,
  .btn-browse-courses {
    justify-content: center;
    flex: 1;
    padding: 0 4px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-cert-badge {
    display: none;
  }
}

/* ---------- Shared section head row (title + link) ---------- */
.section-head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-bright);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, gap 0.2s ease;
}

.section-head-link i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.section-head-link:hover {
  color: var(--green);
}

.section-head-link:hover i {
  transform: translateX(3px);
}

/* ---------- Popular Category ---------- */
.popular-category-section {
  padding: 26px 0 12px;
}

.category-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.category-nav-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 42, 54, 0.4);
  border: 1px solid rgba(91, 248, 230, 0.35);
  color: #edf8fb;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.category-nav-btn:hover {
  border-color: rgba(91, 248, 230, 0.8);
  box-shadow: 0 0 14px rgba(91, 248, 230, 0.28);
  color: var(--cyan-bright);
  transform: translateY(-2px);
}

.category-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-card {
  width: 202px;
  min-width: 202px;
  height: 237px;
  padding: 16px 14px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #081e26;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.category-card-media {
  flex: 1;
  min-height: 0;
  width: 100%;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
}

.category-card-media img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.category-card-title {
  margin: auto 0 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.category-card-count {
  margin: 0;
  color: #d1e2e8;
  font-size: 13px;
  font-weight: 400;
}

/* ---------- All Course ---------- */
.all-course-section {
  padding: 26px 0 12px;
}

.all-course-subtitle {
  max-width: 620px;
}

.course-grid {
  --bs-gutter-y: 20px;
  max-width: 1306px;
}

.course-card {
  width: 100%;
  max-width: 313px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #081e26;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
}

.course-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  flex-shrink: 0;
  background: transparent;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.course-card-media img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.course-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #e5e7eb;
  border: none;
  color: #000000;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: lowercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.course-card-title {
  margin: 16px 18px 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.course-card-level {
  margin: 0 18px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
}

.course-level-dot {
  color: rgba(159, 183, 192, 0.6);
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 18px 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.course-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.course-card-rating i {
  color: #ffcc00;
  font-size: 13px;
}

.course-rating-count {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.course-card-avatars {
  display: flex;
  align-items: center;
}

.course-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #081e26;
  margin-left: -8px;
  background: #081e26;
}

.course-avatar:first-child {
  margin-left: 0;
}

/* ---------- Why choose Skillvex ---------- */
.why-choose-section {
  padding: 32px 0 20px;
}

.why-choose-features-card {
  width: 610px;
  max-width: 100%;
  min-height: 284px;
  margin-top: 22px;
  padding: 8px 28px;
  border-radius: 18px;
  background: #000E17;
  border: 1.5px solid #08262E;
  box-shadow: 0 0 0 4px #2F3E43, 0 8px 32px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature-row {
  display: grid;
  grid-template-columns: 44px 175px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.feature-icon {
  width: 44px;
  flex-shrink: 0;
  font-size: 32px;
  line-height: 1;
  text-align: center;
}

.feature-copy {
  display: contents;
}

.feature-copy h3 {
  margin: 0;
  color: var(--green);
  font-size: 15.5px;
  font-weight: 700;
}

.feature-copy p {
  margin: 0;
  color: #8fa8b8;
  font-size: 13px;
  line-height: 1.4;
}

.why-choose-visual-wrap {
  display: inline-flex;
  width: min(724px, 100%);
}

.why-choose-visual {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 22px rgba(91, 248, 230, 0.18));
}

/* ---------- Students Project ---------- */
.students-project-section {
  padding: 26px 0 12px;
}

.project-showcase-grid {
  --bs-gutter-y: 20px;
}

.project-showcase-card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1e28;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.project-showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.project-showcase-media {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #050e14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

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

.project-showcase-foot {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
  gap: 14px;
  background: #0a1e28;
}

.project-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-title-row h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.project-like-icon {
  font-size: 15px;
}

.project-creator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.creator-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.creator-name {
  color: #94aab6;
  font-size: 13px;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.project-views {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #728b96;
  font-size: 13px;
}

.project-views i {
  font-size: 17px;
  color: #728b96;
}

.btn-project-view {
  padding: 7px 22px;
  border-radius: 8px;
  background: #e8eef1;
  color: #0b1a20;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-project-view:hover {
  background: #ffffff;
  transform: translateY(-1px);
  color: #0b1a20;
}

/* ---------- What our students says (mini testimonials) ---------- */
.mini-testimonials-section {
  padding: 26px 0 12px;
}

.mini-testimonial-grid {
  --bs-gutter-y: 20px;
}

.mini-testimonial-card {
  position: relative;
  height: 100%;
  padding: 24px;
  border-radius: 16px;
  background: #0a1820;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* no left border accent */

.mini-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.mini-testimonial-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-testimonial-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
  border: 2px solid #5c7b84;
}

.mini-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.mini-testimonial-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.mini-testimonial-head p {
  margin: 0;
  color: #5d7580;
  font-size: 13.5px;
  font-weight: 500;
}

.mini-testimonial-stars {
  display: flex;
  gap: 3px;
  color: #c9f300;
  font-size: 14px;
  margin-top: 2px;
  margin-bottom: 0;
}

.mini-testimonial-text {
  margin: 0;
  color: #f0f5f7;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* ---------- Journey banner (variant of .help-banner) ---------- */
.page-home .journey-banner-section {
  padding-top: 30px;
}

.page-home .journey-banner-section::before {
  display: none;
}

.page-home .journey-banner {
  background: #061217;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 3px solid #253E43;
  border-right: 3px solid #253E43;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  grid-template-columns: 200px 1fr 220px;
  height: auto;
  min-height: 160px;
  padding: 0;
}

.page-home .journey-banner-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.page-home .journey-banner-icon {
  width: 85%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(91, 248, 230, 0.35));
  animation: floatingSlow 5s ease-in-out infinite;
}

.page-home .journey-banner-content {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.page-home .journey-banner h3 {
  width: auto;
  max-width: none;
  white-space: normal;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: left;
}

.page-home .journey-banner h3 span {
  color: #ffffff;
  text-shadow: none;
}

.page-home .journey-banner p {
  width: auto;
  max-width: none;
  height: auto;
  color: #e6edf0;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}

.page-home .btn-start-learning {
  padding: 9px 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, #38c88f 0%, #a2ea5b 100%);
  color: #0b1a20;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  margin: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.page-home .btn-start-learning:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* ---------- Company banner (variant of .help-banner) ---------- */
.page-home .company-banner-section {
  padding-top: 8px;
  padding-bottom: 44px;
}

.page-home .company-banner {
  grid-template-columns: 240px 1fr 240px;
  height: auto;
  min-height: 200px;
  padding: 0;
  column-gap: 20px;
  border-top: 1px solid #1c2d33;
  border-left: 1px solid #1c2d33;
  border-bottom: 3px solid #31585c;
  border-right: 3px solid #31585c;
}

.page-home .company-banner-media-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  background: transparent;
  height: 100%;
}

.page-home .company-banner-media-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  background: transparent;
  height: 100%;
}

.page-home .company-banner-logo,
.page-home .company-banner-logo-right {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(91, 248, 230, 0.15));
}

.page-home .company-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding: 24px 0;
  width: 100%;
  max-width: 520px;
}

.page-home .company-banner h3 {
  width: 100%;
  height: auto;
  white-space: normal;
  text-align: left;
  line-height: 1.3;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.page-home .company-banner h3 span {
  color: #a0d841;
  text-shadow: none;
  font-weight: 600;
}

.page-home .company-banner p {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 11.5px;
  color: #f0f5f7;
  line-height: 1.5;
  margin-bottom: 16px;
}

.page-home .btn-company-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: #061116;
  border: 1px solid #486a34;
  border-radius: 6px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .btn-company-more:hover {
  background: #0a1c24;
  border-color: #629646;
  color: #ffffff;
}

.page-home .btn-company-more i {
  font-size: 16px;
}

.page-home .btn-learn-more-company {
  width: auto;
  min-width: 230px;
  background: linear-gradient(90deg, #3adba0 0%, #9ff45f 100%);
  color: #082214;
  border: 0;
}

.page-home .btn-learn-more-company:hover {
  color: #082214;
  box-shadow: 0 0 14px rgba(149, 244, 94, 0.36);
}

/* ---------- Responsive: new landing sections ---------- */
@media (max-width: 991.98px) {
  .why-choose-visual-wrap {
    margin-top: 20px;
  }

  .page-home .journey-banner-content,
  .page-home .company-banner-content {
    margin-left: 0;
  }

  .page-home .company-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 20px;
    min-height: 0;
    row-gap: 20px;
    column-gap: 0;
  }

  .page-home .company-banner-media-right {
    display: none;
  }

  .page-home .company-banner-media-left {
    height: auto;
    width: 150px;
  }

  .page-home .company-banner-logo {
    max-height: 150px;
  }

  .page-home .company-banner-content {
    text-align: center;
    align-items: center;
    padding: 0;
    max-width: 100%;
  }

  .page-home .company-banner h3,
  .page-home .company-banner p {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .section-head-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .category-card {
    width: 172px;
    min-width: 172px;
    height: 208px;
  }

  .course-card-title {
    font-size: 15px;
    min-height: 0;
  }

  /* Show 2 course and project cards per row on mobile */
  .course-grid .col-lg-3,
  .course-grid .col-md-4,
  .course-grid .col-sm-6,
  .project-showcase-grid .col-lg-3,
  .project-showcase-grid .col-md-4,
  .project-showcase-grid .col-sm-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .course-card,
  .project-showcase-card {
    max-width: 100%;
  }

  .project-showcase-foot {
    padding: 10px 10px 12px;
    gap: 8px;
  }
  
  .project-title-row h3 {
    font-size: 12px;
  }
  
  .project-creator {
    gap: 5px;
  }
  
  .creator-avatar {
    width: 20px;
    height: 20px;
  }
  
  .creator-name {
    font-size: 10px;
  }
  
  .project-views {
    font-size: 11px;
  }
  
  .btn-project-view {
    padding: 4px 10px;
    font-size: 11px;
  }

  .course-card-title {
    font-size: 13px;
    margin: 10px 12px 4px;
  }

  .course-card-level {
    font-size: 11px;
    margin: 0 12px;
  }

  .course-card-footer {
    margin: 12px 12px 12px;
    padding-top: 10px;
    gap: 6px;
  }

  .course-card-rating {
    font-size: 11px;
  }

  .course-card-rating i {
    font-size: 11px;
  }

  .course-avatar {
    width: 22px;
    height: 22px;
  }

  .mini-testimonial-grid,
  .project-showcase-grid {
    row-gap: 16px;
  }

  .page-home .journey-banner-content,
  .page-home .journey-banner h3,
  .page-home .journey-banner p {
    width: 100%;
    max-width: 100%;
  }

  .page-home .journey-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 16px;
    min-height: 0;
    row-gap: 16px;
  }

  .page-home .journey-banner-media {
    width: 160px;
    height: 160px;
    order: -1;
  }

  .page-home .journey-banner-icon {
    max-height: 150px;
    width: auto;
  }

  .page-home .journey-banner-content {
    align-items: center;
    text-align: center;
  }

  .page-home .journey-banner h3,
  .page-home .journey-banner p {
    text-align: center;
  }

  .page-home .btn-start-learning {
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .category-carousel {
    gap: 8px;
    justify-content: center;
  }

  .category-track {
    flex: 0 0 calc(100vw - 100px);
    max-width: calc(100vw - 100px);
    scroll-snap-type: x mandatory;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 10px;
  }
  
  .category-track::-webkit-scrollbar {
    display: none;
  }

  .category-nav-btn {
    display: flex;
    width: 38px;
    height: 38px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .category-card {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
    height: 190px;
    padding: 14px 10px 14px;
    scroll-snap-align: start;
  }

  .category-card-title {
    font-size: 14px;
  }

  .feature-row {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .feature-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .feature-icon {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .category-track {
    flex: 0 0 calc(100vw - 90px);
    max-width: calc(100vw - 90px);
  }

  .category-card {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
    height: 170px;
  }

  .category-nav-btn {
    width: 34px;
    height: 34px;
  }

  .stat-icon {
    font-size: 24px;
  }

  .course-card-media img {
    width: 55%;
    height: 55%;
  }
}