/* =====================================================

   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  --c-ink-dark: #303437;
  --c-ink-darker: #202325;
  --c-ink-lighter: #72777a;
  --c-neutral: #393939;
  --c-sky-base: #cdcfd0;
  --c-sky-white: #fdfcfc;
  --c-grey-3: #e2e2e2;
  --c-white: #ffffff;
  --c-black: #000000;

  --grad-brand: linear-gradient(
    113.57deg,
    #a91f24 23.53%,
    #881550 72.28%,
    rgba(148, 16, 43, 0.81) 96.67%
  );

  --shadow-card: 0 0 1px rgba(20, 20, 20, 0.04),
    0 0 8px rgba(20, 20, 20, 0.08);
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-header: 0 1px 4px rgba(12, 12, 13, 0.1),
    0 1px 4px rgba(12, 12, 13, 0.05);

  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 20px;

  --font-base: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
}

/* ---------- Reset cơ bản ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-ink-dark);
  background: var(--c-sky-white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  overflow-x: hidden;
  padding-top: 100px; /* for fixed header */
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  font-weight: 800;
  color: var(--c-white);
  border-radius: var(--radius-md);
  padding: 16px 42px;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 20px;
}

.btn:hover {
  opacity: 0.92;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--grad-brand);
  width: 100%;
}
.btn--primary-border {
  border: 2px solid #881550!important;
  background: transparent;
  color: #881550 !important;
  width: 100%;
}

.btn--small {
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  background: var(--grad-brand);
}

.btn--large {
  min-width: 280px;
}

/* ---------- Section primitives ---------- */
.section-title {
  font-size: 40px;
  line-height: 1.2;
  color: var(--c-black);
  font-weight: 700;
}

.section-title--center {
  text-align: center;
}

.section-lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink-dark);
  line-height: 24px;
  max-width: 770px;
}

.section-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- HEADER ---------- */
.site-header {
  width: 100%;
  padding: 10px 55px;
  position: fixed;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 20px 40px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
}

.navbar__logo {
  height: 34px;
  width: auto;
  cursor: pointer;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.navbar__menu a {
  color: var(--c-ink-dark);
}

.navbar__menu a:hover {
  color: #881550;
}

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

.navbar__partner-avatar {
  width: 36px;
  height: auto;
}

.navbar__partner-logo {
  width: 130px;
  height: auto;
}

/* Hamburger - mặc định ẩn, hiện ở mobile */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-ink-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- HERO ---------- */
.hero {
  background-image: url("../images/Hero@3x.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 80px 30px;
}

.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__content {
  flex: 1 1 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

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

.hero__brand-avatar {
  width: 44px;
}

.hero__brand-logo {
  width: 200px;
}

.hero__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-black);
}

.hero__lead {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--c-ink-dark);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__actions .btn {
  width: 204px;
}

.hero__visual {
  flex: 1 1 480px;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero__visual-card {
  position: absolute;
  top: -25px;
  right: 20px;
  width: 300px;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 10px 20px;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
  border-radius: 60px;
}

/* Hero Slider */
.hero-slider {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: var(--shadow-card); */
}

.hero-slider .swiper-wrapper {
  height: auto;
}

.hero-slider .swiper-slide {
  height: auto;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* Override Swiper button styles */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: none;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 18px;
  color: var(--c-ink-dark);
  font-weight: bold;
}

/* Override Swiper pagination */
.hero-slider .swiper-pagination {
  bottom: 15px;
}

.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 4px;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--grad-brand);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------- PARTNERSHIP ---------- */
.partnership {
  padding: 96px 83px 100px;
  /* background-image: url("../images/dong-hanh@3x.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat; */
}

.partnership__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.partnership__visual {
  flex: 1 1 420px;
  background: #6161ff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership__visual img {
  width: 100%;
  max-width: 566px;
  object-fit: cover;
}

.partnership__content {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 650px;
}

.partnership__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 600px;
}

.partnership__feature-btn {
  /* flex: 1 1 calc(50% - 8px); */
  flex-wrap: wrap;
  padding: 16px 24px;
  border: 2px solid #881550;
  border-radius: 60px;
  background-color: #ffffff;
  color: var(--c-ink-darker);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-base);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.partnership__feature-btn:hover {
  background: linear-gradient(87.22deg, #ffeed8, #ffbbf0);
  border-color: #a91f24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(136, 21, 80, 0.15);
}

.partnership__feature-btn--full {
  flex: 1 1 100%;
}

/* ---------- OPERATIONS ---------- */
.operations {
  padding: 60px 0 71px;
  /* background-image: url("../images/van-hanh@3x.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat; */
}

.operations__intro {
  max-width: 1020px;
  margin: 0 auto 41px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}


.operations__slider {
  overflow: hidden;
  padding: 0 80px 24px;
}

.operations__slider::-webkit-scrollbar {
  height: 8px;
}

.operations__slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.op-card {
  position: relative;
  /* width: 680px; */
  height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid #d0d4e4;
  padding: 30px 35px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.9);
  opacity: 0.5;
  transition: all 0.4s ease;
}

/* card ở giữa */
.swiper-slide-active .op-card {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}



.op-card--orange {
  background: #ff8940;
}

.op-card--lavender {
  background: #eddff7;
}

.op-card--green {
  background: #bcfe90;
}

.op-card--cyan {
  background: #abf0ff;
}

.op-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.op-card__icon {
  max-height: 60px;
  width: auto;
}

.op-card__body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.op-card__body h3 {
  flex: 1 1 248px;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: var(--c-black);
}

.op-card__body p {
  flex: 1 1 277px;
  font-size: 18px;
  line-height: 24px;
  color: var(--c-black);
}

.op-card__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.operations__nav,
.ecosystem__nav,
.pricing__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav-arrow img {
  width: 40px;
  height: 40px;
}

.nav-arrow--right img {
  transform: rotate(180deg);
}

/* ---------- DEPARTMENTS ---------- */
.departments {
  /* background: var(--c-white); */
  
  background-image: url("../images/van-hanh@3x.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat; 
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.departments__intro {
  max-width: 1010px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.departments__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.dept-tab {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: var(--c-black);
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.dept-tab--active {
  border-bottom-color: var(--c-black);
}

.dept-tab:hover {
  border-bottom-color: rgba(0, 0, 0, 1);
}

/* Departments Slider */
.departments__slider {
  overflow: visible;
  padding: 0 80px 24px;
}

.departments__slider::-webkit-scrollbar {
  height: 8px;
}

.departments__slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.dept-card {
  position: relative;
  height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid #d0d4e4;
  padding: 30px 35px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.9);
  opacity: 0.5;
}
.dept-card-fix{
  max-width: 838px;
  margin: 0 auto;
  opacity: 1;
}

/* Active card in center */
.swiper-slide-active .dept-card {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

/* Department card colors */
.dept-card--dark{
  background: #1c1d21;
}
.dept-card--purple {
  background: #f4f0ff;
}

.dept-card--blue {
  background: #e4f5ff;
}

.dept-card--yellow {
  background: #f7f3ea;
}

.dept-card--sky {
  background: #eff5fd;
}

.dept-card--pink {
  background: #fff0fc;
}

.dept-card--green {
  background: #f0fff4;
}

.dept-card--orange {
  background: #fff5f5;
}

.dept-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dept-card__icon {
  max-height: 60px;
  width: auto;
}

.dept-card__body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.dept-card__body h3 {
  flex: 1 1 248px;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: var(--c-black);
}

.dept-card__body p {
  flex: 1 1 277px;
  font-size: 18px;
  line-height: 24px;
  color: var(--c-black);
}

.dept-card__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 1;
}

.departments__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

/* Departments Tab Panes */
.departments__content {
  width: 100%;
  
}

.dept-pane {
  display: none;
  animation: fadeIn 0.3s ease;
  width: 100%;
}

.dept-pane--active {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  flex-wrap: wrap;
}

.dept-pane__content {
  flex: 1 1 400px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dept-pane__content h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--c-black);
}

.dept-pane__content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--c-ink-dark);
}

.dept-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.dept-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 20px;
  color: var(--c-ink-dark);
  padding-left: 24px;
  position: relative;
}

.dept-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #881550;
  font-weight: bold;
  font-size: 16px;
}

.dept-pane__visual {
  flex: 1 1 420px;
  background: #d9d7ff;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dept-pane__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.dept-card--dark img{
  width: 82%;
}
.dept-card-info {
    display: flex;
    gap: 15px;
    align-items: center;
}
.dept-card-info img{
  width: 60px;
}
.dept-card-info .info-text{
  color:#fff;
  font-size: 16px;
}
.dept-card-info .info-text p{
  font-size: 14px;
}
.dept-card--dark .btn--small{
  margin-top: 0;
}
.departments__content .note{
  text-align: center;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}

.dept-feature {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1248px;
  border-radius: var(--radius-xl);
  background: #f4f0ff;
  overflow: hidden;
  flex-wrap: wrap;
  transition: opacity 0.18s ease;
}

.dept-feature--pmo {
  background: #F4F0FF;
}

.dept-feature--marketing {
  background: #E4F5FF;
}

.dept-feature--sales {
  background: #FFF0FC;
}

.dept-feature--it {
  background: #F7F3EA;
}

.dept-feature--product {
  background: #EFF5FD;
}

.dept-feature--switching {
  opacity: 0.3;
}

.dept-tab {
  cursor: pointer;
}

.dept-feature__content {
  flex: 1 1 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dept-feature__eyebrow {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.dept-feature__title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--c-black);
}

.dept-feature .btn--small {
  align-self: flex-start;
}

.dept-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  margin-top: auto;
}

.dept-feature__tags li {
  border: 1px solid #c9b5ff;
  border-radius: 7px;
  padding: 3px 9px;
  line-height: 20px;
}

.dept-feature--pmo .dept-feature__tags li {
  border-color: #D9D7FF;
}

.dept-feature--marketing .dept-feature__tags li {
  border-color: #C6EAFF;
}

.dept-feature--sales .dept-feature__tags li {
  border-color: #FFDEF8;
}

.dept-feature--it .dept-feature__tags li {
  border-color: #FFE2A1;
}

.dept-feature--product .dept-feature__tags li {
  border-color: #C0D4FF;
}

.dept-feature__visual {
  flex: 1 1 420px;
  background: #d9d7ff;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dept-feature--pmo .dept-feature__visual {
  background: #D9D7FF;
}

.dept-feature--marketing .dept-feature__visual {
  background: #C6EAFF;
}

.dept-feature--sales .dept-feature__visual {
  background: #FFDEF8;
}

.dept-feature--it .dept-feature__visual {
  background: #FFE2A1;
}

.dept-feature--product .dept-feature__visual {
  background: #C0D4FF;
}

.dept-feature__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- ECOSYSTEM ---------- */
.ecosystem {
  padding: 66px 24px 74px;
  background-image: url("../images/he-sinh-thai-AI@3x.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.ecosystem__intro {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.ecosystem__intro .btn{
  width: 30%;
}

.ecosystem__cards {
  overflow: hidden;
  padding: 0 24px 24px;
  width: 100%;
}

.ecosystem__cards .swiper-wrapper {
  display: flex;
}

.ecosystem__cards .swiper-slide {
  width: calc((100% - 50px) / 3);
  flex: 0 0 auto;
}

.ecosystem__cards .eco-card {
  width: 100%;
  flex: 1 1 100%;
}

.eco-card {
  position: relative;
  flex: 0 0 300px;
  height: 580px;
  border-radius: var(--radius-xl);
  border: 1px solid #c0d4ff;
  overflow: hidden;
  padding: 20px 25px 0;
  scroll-snap-align: start;
}

.eco-card--blue {
  background: #e7ecff;
}

.eco-card--sky {
  background: #93beff;
}

.eco-card--cream {
  background: #f7f3ea;
  border-color: #c5c1b9;
}

.eco-card--lightblue {
  background: #e4f5ff;
  border-color: #c6eaff;
}

.eco-card--pink {
  background: #fff0fc;
  border-color: #ffdef8;
}

.eco-card__icon {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.eco-card h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--c-black);
  position: relative;
  z-index: 2;
}

.eco-card__bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 64%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  z-index: 1;
}

/* ---------- SERVICES ---------- */
.services {
  margin: 0 20px;
  padding: 60px 24px;
  border-radius: var(--radius-xl);
  background-image: url("../images/trien-khai@3x.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
}

.services__intro {
  max-width: 1011px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  width: 100%;
  max-width: 1128px;
}

.service-card {
  background: var(--c-sky-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 15px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 254px;
}

.service-card__title {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
  color: var(--c-neutral);
  text-align: left;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card__list img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.service-card__badge {
  margin-top: auto;
  background: linear-gradient(87.22deg, #ffeed8, #ffbbf0);
  border-radius: 24px;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  text-align: center;
}

.services__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.services__actions .btn {
  width: 300px;
}

/* ---------- TRUST BAR ---------- */
.trust {
  background: var(--c-white);
  padding: 86px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.trust__title {
  max-width: 791px;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: var(--c-black);
}

.trust__highlight {
  font-size: 50px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust__cta .btn {
  width: 300px;
}

/* Marquee — auto-scroll logos */
.trust__marquee {
  width: 100%;
  max-width: 1320px;
  padding-top: 30px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.trust__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: trust-scroll 40s linear infinite;
}

.trust__marquee:hover .trust__track {
  animation-play-state: paused;
}

.trust__logo {
  flex: 0 0 220px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
}

.trust__logo img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* dịch đúng nửa track (do duplicate) để loop seamless */
    transform: translateX(-50%);
  }
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 80px 24px;
  background: var(--c-sky-white);
}

.pricing__container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* Pricing Tabs */
.pricing__tabs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--c-ink-dark);
  padding: 8px 15px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  cursor: pointer;
  background: transparent;
}

.pricing-tab img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pricing-tab:hover {
  border-bottom-color: rgba(0, 0, 0, 0.3);
}

.pricing-tab--active {
  border-bottom-color: #881550;
  color: #881550;
}

/* Pricing Panes */
.pricing-pane {
  display: none;
  animation: fadeIn 0.3s ease;
  width: 100%;
}

.pricing-pane--active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pricing Grid - Swiper Slider */
.pricing__grid {
  overflow: hidden;
  padding: 0 24px 24px;
  width: 100%;
}

.pricing__grid.swiper {
  overflow: visible;
  padding: 0 0px 24px;
}

.pricing__grid .swiper-wrapper {
  display: flex;
}

.pricing__grid .swiper-slide {
  /* width: calc((100% - 90px) / 3); */
  flex: 0 0 auto;
}

.pricing__grid .pricing-card {
  width: 100%;
  flex: 1 1 100%;
  height: auto;
}
.pricing__grid .pricing-card:last-child {
  margin-right: 0 !important;
}

/* Pricing Navigation */
.pricing__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

/* Pricing Cards */
.pricing-card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 30px 15px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card--featured {
  border: 2px solid var(--grad-brand);
  box-shadow: 0 8px 24px rgba(136, 21, 80, 0.15);
  transform: scale(1.05);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: var(--c-white);
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-black);
  margin: 0;
  text-align: center;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pricing-card__offer{
  text-align: center;
}
.pricing-card__currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink-dark);
}

.pricing-card__amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--c-black);
  line-height: 1;
}

.pricing-card__period {
  font-size: 13px;
  color: var(--c-ink-lighter);
  white-space: nowrap;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pricing-card__features li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ink-dark);
  padding-left: 24px;
  position: relative;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #881550;
  font-weight: bold;
  font-size: 16px;
}

.pricing-card__features_highlight li::before {
  content: '';
  background-image: url('../images/monday-ai.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top:3px;
}
.pricing-card__features li span {
  color: #881550;
  font-weight: 600;
}
.priching-card__icon {
    justify-content: center;
    display: flex;
    margin: 8px 0;
}

.pricing-card__cta {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}

.pricing-card__divider {
  height: 1px;
  background: rgba(56, 56, 56, 0.08);
  margin: 0;
}

.pricing-card__credits {
}

.pricing-card__credits-amount {
  font-size: 13px;
  color: var(--c-ink-darker);
  margin: 0;
  font-weight: 500;
}

.pricing-card__benefits-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card__benefits-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-black);
  margin: 0;
}

.pricing-card__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pricing-card__benefit {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-ink-dark);
}

.pricing-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pricing-card__list li {
  font-size: 14px;
  color: var(--c-ink-dark);
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pricing {
    overflow-x: hidden;
  }

  .pricing__container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .pricing__grid.swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 18px 24px 24px;
    clip-path: inset(0 24px 0 24px);
  }

  .pricing-card {
    overflow: visible;
  }

  .pricing-card--featured {
    z-index: 2;
  }

  .pricing-card__badge {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }

  .pricing__grid.swiper .swiper-wrapper {
    display: flex;
    box-sizing: border-box;
    align-items: stretch;
  }

  .pricing__grid.swiper .swiper-slide {
    min-width: 0;
    height: auto !important;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
  }

  .pricing__grid.swiper .pricing-card {
    width: 100%;
    height: 990px;
    min-height: 990px;
    max-height: 990px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
  }

  .pricing__grid.swiper .pricing-card__features,
  .pricing__grid.swiper .pricing-card__benefits-section {
    flex: 0 0 auto;
  }

  .pricing__nav {
    display: flex;
    margin-top: 28px;
  }
}

@media (max-width: 767px) {

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .pricing-tab {
    font-size: 14px;
    padding: 6px 0;
  }
}

/* ---------- FINAL CTA ---------- */.final-cta {
  background: var(--c-sky-white);
  padding: 60px 24px;
}

.final-cta__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px;
  flex-wrap: wrap;
}

.final-cta__content {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.final-cta__logos {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.authorized_logo {
  width: auto;
  height: 60px;
  margin-left: -20px;
  /* background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border-radius: 60px; */
}

.final-cta__logo {
  width: 200px;
  height: auto;
}

.final-cta__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 901px) {
  .final-cta__title span {
    white-space: nowrap;
  }
}

.final-cta__lead {
  font-size: 16px;
  color: var(--c-ink-dark);
}

.final-cta .btn--large {
  width: 357px;
  max-width: 100%;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-ink-dark);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  color: var(--c-sky-white);
  padding: 46px 0;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 2fr;
  grid-template-rows: auto auto auto;
  gap: 32px 64px;
  grid-template-areas:
    "brand cols"
    "contact contact"
    "bottom bottom";
}

.site-footer__brand {
  grid-area: brand;
}

.site-footer__brand img {
  width: 160px;
  height: auto;
}

.site-footer__cols {
  grid-area: cols;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-grey-3);
}

.footer-col a:hover {
  color: var(--c-white);
}

.site-footer__contact {
  grid-area: contact;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 49px;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.site-footer__contact address {
  font-style: normal;
  flex: 1 1 600px;
}

.site-footer__contact a {
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  gap: 23px;
  align-items: center;
}

.site-footer__social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.site-footer__social a:hover img {
  opacity: 1;
}

.site-footer__bottom {
  grid-area: bottom;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 20px;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.site-footer__bottom p:last-child {
  text-align: right;
  max-width: 460px;
}

/* =====================================================
   MOBILE DRAWER
   ===================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 90;
}

.drawer-overlay--visible {
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 84vw);
  background: var(--c-white);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.3s ease;
  z-index: 100;
  padding: 20px;
}

.drawer--open {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-grey-3);
}

.drawer__logo {
  height: 32px;
  width: auto;
}

.drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: var(--c-ink-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.drawer__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.drawer__nav ul {
  display: flex;
  flex-direction: column;
}

.drawer__nav a {
  display: block;
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer__nav a:hover {
  color: #881550;
  padding-left: 14px;
}

.drawer__cta {
  padding-top: 20px;
}

.drawer__cta .btn {
  width: 100%;
}

/* =====================================================
   ANIMATE.CSS DELAY UTILITIES
   ===================================================== */
.animate__delay-1s {
  animation-delay: 0.3s !important;
}

.animate__delay-2s {
  animation-delay: 0.6s !important;
}

.animate__delay-3s {
  animation-delay: 0.9s !important;
}

/* =====================================================
   CONTACT MODAL
   ===================================================== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.22s ease;
  padding: 20px;
  pointer-events: none;
}

.modal[hidden] {
  display: none !important;
}

.modal--open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  background: var(--c-white);
  border-radius: 16px;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 48px 56px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: auto;
}

.modal--open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: var(--c-ink-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: rotate(90deg);
}

.modal__header {
  text-align: center;
  margin-bottom: 32px;
}

.modal__title {
  font-size: 28px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.modal__subtitle {
  font-size: 15px;
  color: var(--c-ink-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1101px) {
  .final-cta__container {
    flex-wrap: nowrap;
  }

  .final-cta__content {
    flex: 1 1 0;
    min-width: 0;
  }

  .contact-form {
    flex: 0 0 576px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .final-cta__content {
    flex: 0 1 576px;
    width: 100%;
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
  }

  .final-cta__logos {
    justify-content: center;
  }

  .final-cta__title {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-form {
    flex: 0 1 576px;
    width: 100%;
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  position: relative;
  padding-bottom: 15px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  color: var(--c-ink-dark);
  font-weight: 500;
}

.form-field__required {
  position: absolute;
  z-index: 9;
  top: -8px;
  color: #d23434;
  margin-left: 2px;
  font-size: 20px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--c-ink-dark);
  background: var(--c-white);
  border: 1px solid #d8dadc;
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303437' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--c-ink-lighter);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #881550;
  box-shadow: 0 0 0 3px rgba(136, 21, 80, 0.12);
}

.form-field .is-invalid,
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: #d23434;
  box-shadow: 0 0 0 3px rgba(210, 52, 52, 0.12);
}

.form-field .field-error {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  margin-top: 0 !important;
  color: #dc3545;
  font-size: 12px;
  line-height: 1.15;
}

.contact-form__submit {
  width: 100%;
  padding: 18px 42px;
  font-size: 15px;
  border-radius: 14px;
}

.contact-form__submit:disabled {
  cursor: default;
  opacity: 0.85;
}

/* Modal footer */
.modal__footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--c-grey-3);
}

.modal__footer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink-dark);
  margin-bottom: 14px;
}

.modal__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 15px;
  color: #881550;
  font-weight: 600;
}

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

.modal__contact:hover {
  text-decoration: underline;
}

.modal__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #881550;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1366px) {
  .dept-card{
    height: 440px;
  }
  .site-header__inner {
    max-width: 1260px;
    margin: inherit;
  }
  .dept-card-fix{
    width: 547px;
  }
}
@media (max-width: 1200px) {
  .site-header {
    padding: 16px 24px;
  }

  .navbar {
    padding: 16px 24px;
  }

  .partnership {
    padding: 60px 32px 64px;
  }

  .services {
    padding: 48px 24px;
  }
  
}

@media (max-width: 900px) {
  .navbar {
    gap: 12px;
  }

  /* Ẩn menu desktop, hiện hamburger */
  .navbar__menu {
    display: none;
  }

  .navbar__partner {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    order: -1;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero__container {
    gap: 24px;
  }

  .hero__title,
  .section-title {
    font-size: 24px;
    line-height: 38px;
  }

  .trust__title {
    font-size: 20px;
    line-height: 40px;
  }

  .trust__highlight {
    font-size: 40px;
  }

  .final-cta__title {
    font-size: 24px;
    line-height: 40px;
  }

  .partnership {
    padding: 56px 24px;
  }

  .ecosystem,
  .operations {
    padding: 48px 0;
  }

  .operations__slider {
    padding: 0 24px 24px;
  }

  .op-card {
    flex-basis: 86%;
  }

  .dept-feature__visual {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    min-height: 280px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "cols"
      "contact"
      "bottom";
    padding: 0 32px;
  }

  .site-footer__bottom p:last-child {
    text-align: left;
  }
}
@media (max-width: 767px) {
 .site-header__inner {
        max-width: 380px;
 }
 .dept-card{
    height: 320px !important;
 }
  .dept-card-fix {
    width: 380px;
    margin-left:-20px;
  }
  .op-card{
    gap: 15px;
  }
  .op-card__head,
  .dept-card__head{
    flex-wrap: wrap;
    gap: 10px;
  }
  .btn--small{
    margin-top: 0;
  }
}

@media (max-width: 600px) {
 
  .ecosystem__intro{
    padding-right: 20px;
    padding-left: 20px;
  }
  .contact-form{
    width: 100%;
  }
  .site-header {
    padding: 12px 16px;
  }

  /* Modal full-screen feel trên mobile */
  .modal {
    padding: 0;
  }

  .modal__dialog {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
    padding: 56px 20px 24px;
  }

  .modal__title {
    font-size: 22px;
  }

  .modal__subtitle {
    font-size: 14px;
  }

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

  .modal__contacts {
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
  }

  /* Pricing slider mobile - để swiper tự điều chỉnh */
  .pricing__grid .pricing-card {
    width: 100%;
    max-width: 100%;
  }

  .pricing__grid .swiper-slide {
    width: 100% !important;
    flex: 0 0 100%;
    margin-top: 30px;
  }

  .pricing__grid.swiper {
    /* padding: 0 40px 16px;
    overflow: hidden; */
  }

  .pricing__nav {
    display: flex;
  }

  .hero__title,
  .section-title {
    font-size: 24px;
    line-height: 30px;
  }

  .section-title br {
    display: none;
  }

  .hero__actions .btn,
  .services__actions .btn,
  .trust__cta .btn {
    width: 100%;
    padding: 14px 20px;
  }

  .hero__visual {
    min-height: 280px;
  }

  .authorized_logo {
    height: 30px;
  }

  .partnership__features h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .op-card {
    flex-basis: 92%;
    height: 400px;
    padding: 25px 15px 0;
    padding-bottom: 220px;
  }

  .op-card__body h3 {
    font-size: 20px;
    line-height: 26px;
    flex: 1 1 70px;
  }

  .op-card__body p {
    font-size: 14px;
    line-height: 20px;
  }

  .op-card__body {
    flex-direction: column;
  }

  .eco-card {
    flex-basis: 86%;
    height: 480px;
  }

  .dept-feature__content {
    padding: 24px 20px;
  }

  .dept-pane--active {
    flex-direction: column;
  }

  .dept-pane__content {
    flex: 1 1 auto;
    padding: 24px 20px;
  }

  .dept-pane__visual {
    flex: 1 1 auto;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    min-height: 280px;
  }

  .dept-pane__content h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .dept-pane__content p {
    font-size: 14px;
    line-height: 20px;
  }

  .dept-features li {
    font-size: 14px;
  }

  .services {
    margin: 0 12px;
    padding: 36px 16px;
  }

  .service-card {
    min-height: auto;
  }

  .trust {
    padding: 48px 16px;
    gap: 28px;
  }

  .trust__highlight {
    font-size: 32px;
  }

  .final-cta__title {
    font-size: 24px;
    line-height: 32px;
  }

  .site-footer__inner {
    padding: 0 20px;
  }
  .departments__tabs{
    gap: 15px;
  }

  .departments__slider {
    padding: 0 24px 24px;
  }

  .dept-card {
    flex-basis: 92%;
    height: 400px;
    padding: 25px 15px 0;
    padding-bottom: 220px;
  }

  .dept-card__body h3 {
    font-size: 20px;
    line-height: 26px;
    flex: 1 1 70px;
  }

  .dept-card__body p {
    font-size: 14px;
    line-height: 20px;
  }

  .dept-card__body {
    flex-direction: column;
  }
  .hero-slider{
    max-width: 380px;
  }
  .hero__visual-card{
    width: 210px;
    top: -7px;
  }
  .hero__actions .btn{
    margin-top: 0;
  }
  .ecosystem__intro .btn {
    width: 100%;
  }
}

/* =====================================================
   ENTERPRISE AI PRICING CARD
   ===================================================== */
.pricing_card_enterprise_ai {
  background: linear-gradient(135deg, #D9D7FF 0%, #F4F0FF 100%);
  border-radius: 16px;
  padding: 24px 20px;
  margin: 16px 0;
  border: 1px solid #D9D7FF;
  text-align: center;
}

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

.enterprise_ai__icon {
  font-size: 18px;
  color: #1976d2;
}

.enterprise_ai__title {
  font-size: 13px;
  font-weight: 700;
  color: #1976d2;
  margin: 0;
}

.enterprise_ai__desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-ink-dark);
  margin: 0 0 16px 0;
  font-weight: 500;
}

.enterprise_ai__subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-black);
  margin: 0 0 20px 0;
}

.enterprise_ai__products {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing_note{
  text-align: right;
  margin-bottom: 20px;
  font-weight: 600;
}

.enterprise_ai__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.enterprise_ai__product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.enterprise_ai__product-icon--vibe {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6b8a 100%);
}

.enterprise_ai__product-icon--vibe::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.enterprise_ai__product-icon--sidekick {
  background: linear-gradient(135deg, #7b68ee 0%, #9b59b6 100%);
}

.enterprise_ai__product-icon--sidekick::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.enterprise_ai__product-icon--credits {
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
}

.enterprise_ai__product-icon--credits::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.enterprise_ai__product p {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-dark);
  margin: 0;
}

@media (max-width: 600px) {
  .pricing_card_enterprise_ai {
    padding: 20px 16px;
  }

  .enterprise_ai__products {
    gap: 12px;
  }

  .enterprise_ai__product-icon {
    width: 48px;
    height: 48px;
  }

  .enterprise_ai__product-icon--vibe::before,
  .enterprise_ai__product-icon--sidekick::before,
  .enterprise_ai__product-icon--credits::before {
    width: 24px;
    height: 24px;
  }

  .enterprise_ai__product p {
    font-size: 12px;
  }

  /* Pricing slider mobile adjustments */
  .pricing__grid {
    padding: 0 16px 24px;
  }

  .pricing__grid.swiper {
    overflow: hidden;
    padding: 0 0 24px;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .pricing__nav {
    margin-top: 16px;
  }
}

@media (max-width: 1199px) {
  .pricing__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 767px) {
  .pricing__grid.swiper {
    padding-bottom: 0;
    overflow: hidden;
  }

  .pricing__grid.swiper .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
  }

  .pricing__grid.swiper .swiper-slide {
    height: auto !important;
    padding-bottom: 40px;
    box-sizing: border-box;
  }

  .pricing__grid.swiper .pricing-card {
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 0;
  }

  .pricing__grid.swiper .pricing-card__features,
  .pricing__grid.swiper .pricing-card__benefits-section {
    flex: 0 0 auto;
  }

  .pricing__nav {
    margin-top: 8px;
    gap: 18px;
    position: relative;
    z-index: 20;
  }
}

/* ---------- ReCAPTCHA ---------- */
.g-recaptcha-placeholder {
  display: block;
  width: fit-content;
}

.g-recaptcha-placeholder.recaptcha-error {
  position: relative;
  padding: 10px;
  background-color: #fff5f5;
  border-radius: 8px;
  border: 3px solid #dc3545;
}
.g-recaptcha-placeholder.recaptcha-error iframe {
  border-radius: 4px;
}

@media (max-width: 767px) {
  .pricing__nav {
    margin-top: 44px !important;
  }
}

@media (max-width: 767px) {
  .final-cta__title {
    font-size: 24px;
    line-height: 32px;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .final-cta__title br {
    display: none;
  }

  .final-cta__content {
    gap: 18px;
  }

  .final-cta__logos {
    align-items: center;
    gap: 8px;
  }

  .final-cta__logo {
    width: 140px;
  }

  .authorized_logo {
    max-width: calc(100% - 148px);
    height: 42px;
    margin-left: 0;
    object-fit: contain;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pricing__grid.swiper {
    padding-top: 28px;
    clip-path: inset(-24px 24px 0 24px);
  }

  .pricing__grid.swiper .pricing-card {
    height: 990px;
    min-height: 990px;
    max-height: 990px;
    overflow: visible;
  }

  .pricing__grid.swiper .pricing-card__features,
  .pricing__grid.swiper .pricing-card__benefits-section {
    flex: 0 0 auto;
  }

  .pricing__grid.swiper .pricing-card--featured {
    z-index: 5;
  }

  .pricing__grid.swiper .pricing-card__badge {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .pricing__grid.swiper .pricing_card_enterprise_ai {
    padding: 16px 12px;
    margin: 12px 0;
    border-radius: 12px;
  }

  .pricing__grid.swiper .enterprise_ai__header {
    gap: 6px;
    margin-bottom: 10px;
  }

  .pricing__grid.swiper .enterprise_ai__desc {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .pricing__grid.swiper .enterprise_ai__subtitle {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .pricing__grid.swiper .enterprise_ai__products {
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pricing__grid.swiper .enterprise_ai__product {
    flex: 1 1 0;
    min-width: 0;
    gap: 6px;
  }

  .pricing__grid.swiper .enterprise_ai__product-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .pricing__grid.swiper .enterprise_ai__product p {
    font-size: 10px;
    line-height: 1.25;
  }

  .pricing__grid.swiper .pricing-card__benefits-section {
    gap: 12px;
  }

  .pricing__grid.swiper .pricing-card__features {
    gap: 9px;
  }

  .pricing__grid.swiper .pricing-card__features li {
    font-size: 12px;
    line-height: 1.42;
    padding-left: 20px;
  }

  .pricing__nav {
    margin-top: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .final-cta {
    position: relative;
    z-index: 30;
    isolation: isolate;
  }

  .final-cta__container,
  .contact-form,
  .form-grid,
  .g-recaptcha-placeholder {
    position: relative;
    z-index: 31;
  }

  .g-recaptcha-placeholder,
  .g-recaptcha-placeholder iframe {
    pointer-events: auto;
  }

  .pricing {
    position: relative;
    z-index: 1;
  }

  .modal {
    z-index: 200;
    isolation: isolate;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 20px;
  }

  .modal__overlay {
    z-index: 0;
  }

  .modal__dialog {
    position: relative;
    z-index: 1;
    max-height: none;
    overflow: visible;
    transform: none;
    margin: auto;
  }

  .modal--open .modal__dialog {
    transform: none;
  }

  .modal .contact-form,
  .modal .form-grid,
  .modal .g-recaptcha-placeholder {
    position: relative;
    z-index: 2;
  }

  .modal .g-recaptcha-placeholder,
  .modal .g-recaptcha-placeholder iframe {
    pointer-events: auto;
    touch-action: manipulation;
  }

  .modal .g-recaptcha-placeholder iframe {
    display: block;
    position: relative;
    z-index: 3;
  }
}

/* ---------- Featured articles ---------- */
.article-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(17, 24, 39, 0.06);
  filter: saturate(0.92) brightness(0.98);
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.article-card .img-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.6;
}

.article-card .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .img-thumb img {
  transform: scale(1.05);
}

.article-card .img-thumb .thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 18, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-card .img-thumb .thumb-overlay span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.article-card:hover .img-thumb .thumb-overlay {
  opacity: 1;
}

.article-card .article-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--Primary-Base, #881550);
  text-transform: capitalize;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 0 20px;
}

.article-card .article-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-ink-darker, #202325);
  margin-bottom: 12px;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
  padding: 0 20px;
}

.article-card .article-title a {
  color: inherit;
  text-decoration: none;
}

.article-card .article-title a:hover {
  color: var(--Primary-Base, #881550);
}

.article-card .article-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #6c7275;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 62px;
  padding: 0 20px;
}

.article-card .article-date {
  font-size: 13px;
  color: #8292a6;
  padding: 0 20px 20px;
  margin-top: auto;
}

.featured-articles {
  padding: 80px 0;
  background-color: #fcfcfd;
}

.featured-articles__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.featured-articles__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.featured-articles__head .section-title {
  margin-bottom: 0;
}

.featured-articles__nav {
  display: flex;
  gap: 12px;
}

.featured-articles__nav.is-hidden {
  display: none;
}

.featured-articles__nav .nav-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.featured-articles__nav .nav-arrow.swiper-button-disabled {
  opacity: 1;
  pointer-events: auto;
}

.featured-articles__slider {
  padding-bottom: 40px;
  overflow: hidden;
}

.featured-articles__slider .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-articles__slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.featured-articles__slider .swiper-slide .article-card {
  width: 100%;
}

.featured-articles__slider .swiper-slide.is-featured-front .article-card {
  transform: translateY(-6px);
  border-color: rgba(136, 21, 80, 0.22);
  box-shadow: 0 18px 42px rgba(136, 21, 80, 0.14), 0 8px 22px rgba(17, 24, 39, 0.08);
  filter: saturate(1.06) brightness(1.02);
}

.featured-articles__slider .swiper-slide.is-featured-front .img-thumb img {
  transform: scale(1.03);
}

.featured-articles__slider .swiper-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.featured-articles__slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #d0d5dd;
  opacity: 1;
  transition: width 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.featured-articles__slider .swiper-pagination-bullet-active {
  background: var(--Primary-Base, #881550);
  width: 24px;
  border-radius: 4px;
  transform: translateY(-1px);
}

.featured-articles__slider .swiper-pagination.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .featured-articles {
    padding: 50px 0;
  }

  .featured-articles__container {
    padding: 0 20px;
  }

  .featured-articles__head {
    margin-bottom: 24px;
  }
}
