/* ResearchMentor — landing styles */

:root {
  --bg: #0b1220;
  --bg-elevated: #111a2e;
  --surface: #151d32;
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent-start: #ff7e5f;
  --accent-end: #feb47b;
  --accent-pink: #f472b6;
  --badge-bg: rgba(120, 53, 15, 0.45);
  --footer-bar-bg: rgba(69, 26, 3, 0.55);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 999px;
  --shadow-card:
    0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--surface-border);
  --shadow-btn: 0 8px 32px rgba(255, 126, 95, 0.35);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  color: black;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  border-bottom: 1px solid #e2e8f0;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.nav {
  justify-self: center;
}

.logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo__icon {
  display: flex;
  align-items: center;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
}

.text-highlight {
  color: #e67e22;
}

.logo__icon-small img {
  height: 28px;
  /* chiều cao cố định */
  width: auto;
  object-fit: contain;
  display: block;
}

.logo__text {
  display: flex;
  align-items: center;
}

.logo__text img {
  height: 30px;
  /* text name thường thấp hơn icon một chút */
  width: auto;
  object-fit: contain;
  display: block;
}

.logo__text_footer img {
  height: 50px;
  /* text name thường thấp hơn icon một chút */
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  align-items: center;
}

.nav__list a {
  color: black;
  opacity: 0.92;
  transition:
    color 0.2s,
    opacity 0.2s,
    background 0.2s;
}

.nav__list a:hover {
  color: var(--accent-start);
  opacity: 1;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: linear-gradient(1000deg, #dc2626, #f97316);
  color: #fff !important;
  font-weight: 600;
  box-shadow: var(--shadow-btn);
}

.nav__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--header {
  justify-self: end;
  flex-shrink: 0;
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(1000deg, #dc2626, #f97316);
  color: white;
  box-shadow: var(--shadow-btn);
  transition:
    transform 0.2s,
    filter 0.2s;
}

/* ── Active nav link ── */
.nav__list a.nav-active {
  color: #f97316;
  opacity: 1 !important;
  font-weight: 600;
  position: relative;
}

.nav__list a.nav-active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: #f97316;
  border-radius: 1px;
}

.nav__list a.nav-active:hover {
  color: #111111 !important;
}

.btn--header:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--surface-border);
  color: black !important;
  color: black !important;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

/* Hero */
.hero--bg-image {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: center;
  padding: 4rem 3rem 2rem;
  background-image: url("./assests/HeroBanner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero__content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.hero__main {
  max-width: 1325px;
  margin-left: 80px;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.hero__brand svg {
  color: var(--accent-start);
}

.hero__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.28em;
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  padding-top: 50px;
}

.hero__container {
  position: relative;
}

.hero__container .hero__logo {
  position: absolute;
  top: -100%;
  left: 30%;
  width: 35%;
}

.hero__title .logo__text_footer {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.hero__title .larger img {
  height: 1.9em;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__steps {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.hero-step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 2rem;
  border-radius: var(--radius-lg);
  min-width: 300px;
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero-step-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.hero-step__title {
  color: var(--accent-start);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0;
}

.hero-step__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hero__steps {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-step-card {
    min-width: 315px;
    padding: 1.5rem 1.75rem;
  }

  .hero-step__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero--bg-image {
    padding: 4rem 1.5rem 3rem;
    min-height: 70vh;
    text-align: center;
  }

  .hero__main {
    margin-left: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__brand {
    justify-content: center;
  }

  .hero__title {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

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

.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  background: linear-gradient(140deg, #f97316 0%, #dc2626 100%);
  color: #ffffff;

  box-shadow:
    0 10px 25px rgba(220, 38, 38, 0.22),
    0 4px 10px rgba(249, 115, 22, 0.16);

  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

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

  filter: brightness(1.05);

  box-shadow:
    0 14px 30px rgba(220, 38, 38, 0.28),
    0 6px 14px rgba(249, 115, 22, 0.2);
}

.btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn--secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 1rem 1.75rem;

  font-size: 1rem;
  font-weight: 700;

  border-radius: var(--radius-md);
  cursor: pointer;

  background: #ffffff;

  border: 1.5px solid transparent;

  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(140deg, #f97316 0%, #dc2626 100%);

  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow:
    0 8px 18px rgba(220, 38, 38, 0.1),
    0 3px 8px rgba(249, 115, 22, 0.08);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.btn--secondary-cta span {
  background: linear-gradient(140deg, #f97316 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  transition: all 0.22s ease;
}

.btn--secondary-cta:hover {
  transform: translateY(-2px);

  background: linear-gradient(140deg, #f97316 0%, #dc2626 100%);

  box-shadow:
    0 14px 30px rgba(220, 38, 38, 0.28),
    0 6px 14px rgba(249, 115, 22, 0.2);

  filter: brightness(1.05);
}

.btn--secondary-cta:hover span {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.btn--secondary-cta:active {
  transform: translateY(0);

  filter: brightness(0.98);
}

.btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Highlight animation */
.btn--pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(249, 115, 22, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

/* Stats card */

.hero__visual {
  position: relative;
}

.stats-card {
  position: relative;
  padding: 1.75rem 1.75rem 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-card);
}

.stats-card__head {
  margin-bottom: 1.5rem;
}

.stats-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.stats-card__subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stats-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.stat {
  padding: 1.1rem 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
}

.stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.stats-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 -1.75rem;
  padding: 1rem 1.75rem;
  background: var(--footer-bar-bg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border-top: 1px solid rgba(251, 146, 60, 0.15);
}

.stats-card__avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #64748b, #334155);
  border: 2px solid var(--surface);
  border-radius: 50%;
}

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

.stats-card__slots {
  margin: 0;
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.stats-card__slots strong {
  color: var(--text);
}

.toast {
  position: absolute;
  right: -0.5rem;
  bottom: 5.5rem;
  max-width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0f172a;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: #22c55e;
  border-radius: 50%;
}

/* Wave */

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: #ffffff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='black' d='M0 40 Q360 0 720 40 T1440 40 L1440 80 L0 80 Z'/%3E%3C/svg%3E");
  mask-size: 1440px 80px;
  mask-repeat: repeat-x;
  mask-position: center bottom;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='black' d='M0 40 Q360 0 720 40 T1440 40 L1440 80 L0 80 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 1440px 80px;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: center bottom;
  pointer-events: none;
}

/* About (Về chúng tôi) */

.about {
  --about-accent: #e67e22;
  --about-text: #0f172a;
  --about-muted: #64748b;
  background: #ffffff;
  color: var(--about-text);
  padding: 5.5rem 0 5.5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
  align-items: start;
}

.about__label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--about-accent);
}

.about__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.about__title-accent {
  color: var(--about-accent);
}

.about__text {
  margin-bottom: 2rem;
}

.about__text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--about-muted);
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.about-stat {
  flex: 1 1 100px;
  min-width: 100px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-align: center;
}

.about-stat--orange {
  background: linear-gradient(140deg,
      rgb(249, 115, 22) 0%,
      rgb(220, 38, 38) 100%);
}

.about-stat--pink {
  background: #fceef5;
}

.about-stat--blue {
  background: #e8f4fc;
}

.about-stat__value {
  display: block;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.15;
  color: white;
}

.about-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: white;
  line-height: 1.35;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 1.5rem 1.35rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.value-card:hover {
  border-color: rgba(230, 126, 34, 0.25);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.12);
  color: var(--about-accent);
}

.value-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.value-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--about-muted);
}

@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .about__cards {
    grid-template-columns: 1fr;
  }

  .about__stats {
    flex-direction: column;
  }

  .about-stat {
    flex: 1 1 auto;
  }
}

/* ── VISION SECTION ── */
.vision {
  background: #ffffff;
  padding: 5rem 0 0;
}

.vision__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 2.25rem 2.75rem;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.vision__top:hover {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.vision__tag {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  position: relative;
  padding-left: 1rem;
}

.vision__tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, #f97316, #dc2626);
  border-radius: 2px;
}

.vision__text-block p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #64748b;
}

/* 3 cards */
.vision__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.vision__card {
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.vision__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #dc2626);
  opacity: 0;
  transition: opacity 0.2s;
}

.vision__card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.09);
  transform: translateY(-3px);
}

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

.vision__card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.vision__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.12);
  color: #f97316;
}

.vision__card-icon svg {
  width: 2rem;
  height: 2rem;
}

.vision__card-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Marquee */
.vision__marquee-wrap {
  overflow: hidden;
  padding: 1.1rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;

  /* Full width phá container */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.vision__marquee {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
  width: max-content;
}

.vision__marquee span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
}

.vision__dot {
  color: #f97316 !important;
  font-size: 0.45rem !important;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.vision__marquee-wrap:hover .vision__marquee {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 1024px) {
  .vision__top {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1080px) {
  .footer__links {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .footer__list--contact li {
    align-items: flex-start;
    flex-wrap: wrap;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .footer__list--contact li span {
    margin-top: 0.15rem;
  }
}

@media (max-width: 768px) {
  .vision {
    padding: 3rem 0 0;
  }

  .vision__top {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

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

  .vision__marquee-wrap {
    margin-top: 2rem;
  }
}

/* Services (Dịch vụ) */

.services {
  --svc-accent: #e67e22;
  --svc-text: #0f172a;
  --svc-muted: #64748b;
  --svc-bg: #e8ecf1;
  background: #f9fafb;
  color: var(--svc-text);
  padding: 4.75rem 0 5.5rem;
}

.services__header {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.services__label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-accent);
}

.services__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--svc-text);
}

.services__subtitle {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--svc-muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 1.75rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.service-card--featured {
  border: 2px solid var(--svc-accent);
  box-shadow: 0 16px 48px rgba(230, 126, 34, 0.18);
  padding-top: 2.35rem;
}

.service-card--featured:hover {
  transform: translateY(-2px);
}

.service-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #e67e22, #ea580c);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  white-space: nowrap;
}

.service-card__badge-star {
  font-size: 0.75rem;
  line-height: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.service-card__icon--muted {
  background: #e2e8f0;
  color: #64748b;
}

.service-card__icon--accent {
  background: rgba(230, 126, 34, 0.15);
  color: var(--svc-accent);
}

.service-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card__desc {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--svc-muted);
  flex-grow: 0;
}

.service-card__features {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--svc-text);
  flex-grow: 1;
}

.service-card__features li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.service-card__check {
  color: var(--svc-accent);
  display: flex;
  align-items: center;
  margin-top: 0.15rem;
}

.service-card__features-more {
  color: var(--svc-muted);
  font-weight: 500;
  display: block;
}

.service-card__features-more::before {
  content: none !important;
}

.service-card__features-more {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.service-tag {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--svc-muted);
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-card__price {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--svc-accent);
}

.service-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin-top: auto;
  padding: 0.9rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  transition:
    transform 0.2s,
    filter 0.2s,
    background 0.2s;
}

.service-card__btn--secondary {
  background: #e8ecf1;
  color: var(--svc-text);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.service-card__btn--secondary:hover {
  background: #dde3ea;
}

.service-card__btn--primary {
  background: linear-gradient(90deg, #ff7e5f, #ea580c);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.service-card__btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }

  .service-card--featured {
    order: -1;
  }
}

/* Blog */

.blog {
  --blog-accent: #e67e22;
  --blog-text: #0f172a;
  --blog-muted: #64748b;
  background: #ffffff;
  color: var(--blog-text);
  padding: 4.75rem 0 5.5rem;
}

.blog__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.75rem;
}

.blog__label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blog-accent);
}

.blog__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.blog__link-all {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blog-accent);
  transition: opacity 0.2s;
}

.blog__link-all:hover {
  opacity: 0.85;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  min-height: 580px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.blog-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e8ecf1;
  overflow: hidden;
}

.blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #e67e22, #ea580c);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.blog-card__category {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: calc(100% - 5.5rem);
  padding: 0.35rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #f1f5f9;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  line-height: 1.25;
}

.blog-card__cat-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--blog-muted);
}

.blog-card__time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card__meta-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.blog-card__sep {
  opacity: 0.6;
}

.blog-card__headline {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.blog-card__headline a {
  color: inherit;
  transition: color 0.2s;
}

.blog-card__headline a:hover {
  color: var(--blog-accent);
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--blog-muted);
  flex-grow: 1;
}

.blog-card__read {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blog-accent);
  align-self: flex-start;
  transition: opacity 0.2s;
}

.blog-card__read:hover {
  opacity: 0.85;
}

@media (max-width: 960px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog-card__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonials slider ── */
.testimonials {
  background: #ffffff;
  padding: 4.75rem 0 5.5rem;
}

.testimonials__header {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.testimonials__label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f97316;
}

.testimonials__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
}

/* ── Slider shell ── */
.ts-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.ts-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ts-quote {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.5;
  color: rgba(249, 115, 22, 0.2);
  user-select: none;
}

.ts-stars {
  font-size: 1rem;
  color: #ea580c;
  letter-spacing: 2px;
}

.ts-text {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(30, 41, 59, 0.88);
  font-style: italic;
  flex: 1;
  max-width: 72ch;
}

.ts-footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.ts-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: #ea580c;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
}

.ts-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  font-style: normal;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.ts-role {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(51, 65, 85, 0.78);
  line-height: 1.4;
}

/* ── Progress bar ── */
.ts-progress {
  height: 3px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.ts-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #f97316, #dc2626);
  width: 0%;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Controls ── */
.ts-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ts-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #f97316;
  background: transparent;
  color: #f97316;
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.ts-btn:hover {
  background: #f97316;
  color: #fff;
}

.ts-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ts-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.25s,
    border-radius 0.25s;
  border: none;
  padding: 0;
}

.ts-dot.active {
  background: #f97316;
  width: 20px;
  border-radius: 4px;
}

/* ── 3-card page layout ── */
.ts-page {
  min-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ts-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;

  /* nền cam nhạt hơn */
  background: linear-gradient(140deg,
      rgba(251, 146, 60, 0.18) 0%,
      rgba(249, 115, 22, 0.14) 100%);

  /* glass effect nhẹ */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* viền kính */
  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 18px;

  /* shadow mềm */
  box-shadow:
    0 10px 30px rgba(249, 115, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ts-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ts-slide {
    padding: 2rem 1.5rem 1.75rem;
  }

  .ts-text {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .ts-slide {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .ts-quote {
    font-size: 3.5rem;
  }
}

/* ── Team Section ── */
.team {
  background: #f9fafb;
  color: #0f172a;
  padding: 4.75rem 0 5.5rem;
  scroll-margin-top: 100px;
}

.careers {
  scroll-margin-top: 120px;
}

.team__header {
  max-width: 50rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.team__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f97316;
}

.team__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.team__subtitle {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #64748b;
}

/* Grid 2 cột */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Card */
.team-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  padding: 1.25rem 1.35rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
}

.team-card:hover {
  box-shadow: 0 10px 32px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.22);
  transform: translateY(-2px);
}

/* Avatar tròn */
.team-card__avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #f97316;
  background: #f3f4f6;
  align-self: center;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.team-card__body {
  flex: 1;
  min-width: 0;
}

.team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.team-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.team-card__meta-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Label cố định */
.team-card__meta-label {
  width: 90px;
  min-width: 90px;
  font-weight: 600;
  color: #64748b;
  flex-shrink: 0;
}

/* Nội dung */
.team-card__meta-content {
  flex: 1;
  min-width: 0;
}

/* Text */
.team-card__meta-value {
  color: #475569;
  word-break: break-word;
}

/* Badge */
.team-card__badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
}

.team-card__link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f97316;
  word-break: break-all;
  transition: opacity 0.2s;
}

.team-card__link:hover {
  opacity: 0.78;
}

/* Badge Q1/Q2/Q3/Q4 */
.team-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 999px;
  margin-left: 0.3rem;
  vertical-align: middle;
}

.badge--q1 {
  background: #fef3c7;
  color: #b45309;
}

.badge--q2 {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge--q3 {
  background: #f0fdf4;
  color: #15803d;
}

.badge--q4 {
  background: #eef2ff;
  color: #4f46e5;
}

.team-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f97316;
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.team-card__btn span:last-child {
  transition: transform 0.2s ease;
}

.team-card__btn:hover {
  color: #ea580c;
}

.team-card__btn:hover span:last-child {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .team__grid {
    display: none;
    /* ẩn grid desktop */
  }

  /* Slider wrapper */
  .team__slider {
    overflow: hidden;
    position: relative;
  }

  .team__slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  /* Mỗi slide = 1 cột 4 card */
  .team__slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 0 0.25rem;
  }

  /* Card trên mobile */
  .team__slide .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1.1rem 1rem;
  }

  .team__slide .team-card__avatar {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }

  /* Tên căn giữa */
  .team__slide .team-card__name {
    text-align: center;
  }

  /* Body full width để meta text căn trái bình thường */
  .team__slide .team-card__body {
    width: 100%;
    text-align: left;
  }

  /* Dots */
  .team__slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.25rem;
  }

  .team__slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
      background 0.2s,
      width 0.25s,
      border-radius 0.25s;
  }

  .team__slider-dot.active {
    background: #f97316;
    width: 20px;
    border-radius: 4px;
  }
}

/* Ẩn slider trên desktop */
.team__slider {
  display: none;
}

@media (max-width: 768px) {
  .team__slider {
    display: block;
  }
}

/* Careers (Tuyển dụng) */

.careers {
  --careers-accent: #f97316;
  --careers-text: #0f172a;
  --careers-muted: #64748b;
  --careers-why-bg: #fff7ed;
  background: #ffffff;
  color: var(--careers-text);
  padding: 4.75rem 0 5.5rem;
}

.careers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 1.5rem;
  align-items: start;
}

.careers__label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--careers-accent);
}

.careers__title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.careers__highlight {
  color: var(--careers-accent);
}

.careers__lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--careers-muted);
}

.careers__why {
  padding: 1.35rem 1.4rem 1.4rem;
  background: var(--careers-why-bg);
  border-radius: 14px;
  border: 1px solid rgba(230, 126, 34, 0.15);
}

.careers__why-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.careers__why-list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--careers-muted);
  list-style-type: disc;
  list-style-position: outside;
}

.careers__why-list li {
  margin-bottom: 0.55rem;
  padding-left: 0.15rem;
}

.careers__why-list li::marker {
  color: #f97316;
}

.careers__why-list li:last-child {
  margin-bottom: 0;
}

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

.job-card {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.job-card[open] {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.09);
}

.job-card__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.job-card__summary::-webkit-details-marker {
  display: none;
}

.job-card__main {
  min-width: 0;
}

.job-card__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.job-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 32px;
  padding: 0.45rem 0.85rem;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;

  white-space: nowrap;

  border: 1px solid transparent;

  background: #f8fafc;
  color: #475569;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

/* Hover */
.job-pill:hover {
  transform: translateY(-1px);
}

/* Orange */
.job-pill--accent {
  background: #fff7ed;
  color: #ea580c;
  border-color: rgba(234, 88, 12, 0.15);
}

/* Blue */
.job-pill--blue {
  background: #eff6ff;
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.15);
}

/* Neutral */
.job-pill--muted {
  background: #f1f5f9;
  color: #64748b;
  border-color: rgba(100, 116, 139, 0.12);
}

.job-card__chevron {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #94a3b8;
  transition: transform 0.25s ease;
}

.job-card[open] .job-card__chevron {
  transform: rotate(180deg);
}

.job-card__panel {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.job-card__desc {
  margin: 0 0 1rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--careers-muted);
}

.job-card__cta {
  display: inline-block;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--careers-accent);
  cursor: pointer;
  pointer-events: auto;
}

.job-card__cta:hover {
  opacity: 0.88;
}

@media (max-width: 960px) {
  .careers__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Mobile nav & responsive */

.nav__item--mobile-only {
  display: none;
}

@media (max-width: 960px) {
  .nav__item--mobile-only {
    display: block;
    margin-top: 0.25rem;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 50%;
    padding: 1rem;
    width: min(calc(100% - 2rem), 400px);
    background: white;
    color: black;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    transition:
      opacity 0.2s,
      transform 0.2s,
      visibility 0.2s;
    z-index: 75;
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    z-index: 999;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav__list a {
    color: #111827;
  }

  .nav__cta {
    color: #fff !important;
  }

  .nav__list a,
  .nav__cta {
    width: 100%;
  }

  .nav__cta {
    margin-top: 0.25rem;
  }

  .nav__toggle {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 80;
    background: #fff;
    border: 1px solid var(--surface-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .nav__toggle span {
    background: #111827;
  }

  .btn--header {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__visual {
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .toast {
    right: 0.75rem;
    bottom: 4.5rem;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .stats-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .btn--primary,
  .btn--secondary {
    justify-content: center;
  }
}

/* Footer */
.footer {
  margin-top: 0;
  padding-top: 4rem;
  border-top: 1px solid var(--surface-border);
  background: var(--bg);
}

.footer__cta {
  text-align: center;
  max-width: 65rem;
  width: 100%;
  margin: 0 auto 5rem;
  padding: 0 1.25rem;
}

.footer-cta-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url("./assests/FooterSection.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 0.25rem;
}

.footer__cta-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.footer__cta-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.footer__cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}

.footer__cta-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
}

.footer__cta-actions .btn--secondary {
  border-color: rgba(255, 255, 255, 0.15);
}

.footer__cta-actions .btn--docs {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.footer__cta-actions .btn--docs svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.footer__cta-actions .btn--docs span {
  line-height: 1;
}

.footer__cta-contact {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__cta-contact span {
  color: var(--accent-end);
  font-weight: 600;
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--surface-border);
}

.footer__brand {
  flex: 1 1 300px;
}

.footer__desc {
  margin: 1.5rem 0;
  max-width: 320px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.2s;
  font-size: 0.875rem;
  font-weight: 600;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

.footer__links {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}

.footer__col {
  min-width: 0;
}

.footer__col-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer__list a,
.footer__list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--accent-start);
}

.footer__list--contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__list--contact li span {
  flex: 0 0 auto;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--accent-start);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Giữ hero hiển thị ngay, không cần reveal */
.hero,
.hero * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 2.5rem;
  }

  .footer-cta-section {
    padding: 2.5rem 0 0;
  }

  .footer__cta {
    margin-bottom: 2rem;
  }

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

  .footer__cta-actions .btn {
    width: 100%;
  }

  .footer__main {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    padding: 1.25rem 0;
  }
}

.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.floating-actions__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-actions__item:hover {
  transform: translateX(-4px);
}

.floating-actions__item--zalo {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 20%;
  box-shadow: var(--shadow-btn);
  background-color: transparent;
}

.floating-actions__item--zalo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .floating-actions {
    right: 1rem;
    bottom: 3rem;
  }

  .floating-actions__item--zalo {
    width: 50px;
    height: 50px;
  }

  .floating-actions__item--zalo img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1080px) {
  .floating-actions {
    right: 1rem;
    bottom: 3rem;
  }

  .floating-actions__item--zalo {
    width: 50px;
    height: 50px;
  }

  .floating-actions__item--zalo img {
    width: 100%;
    height: 100%;
  }
}
