/* Ez.Park static landing — design tokens & BEM blocks (prefix: ez-) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --ez-color-primary: #f05628;
  --ez-color-secondary: #4c4c4c;
  --ez-color-accent: #515151;
  --ez-color-white: #ffffff;
  --ez-color-gray-50: #f9fafb;
  --ez-color-gray-100: #f3f4f6;
  --ez-color-gray-200: #e5e7eb;
  --ez-color-gray-400: #9ca3af;
  --ez-color-gray-500: #6b7280;
  --ez-color-gray-600: #4b5563;
  --ez-font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --ez-container: 80rem;
  --ez-header-height: 5rem;
  --ez-radius-pill: 9999px;
  --ez-radius-card: 2.5rem;
  --ez-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --ez-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ez-font-sans);
  color: var(--ez-color-secondary);
  background: var(--ez-color-white);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
}

/* Utilities */
.ez-u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ez-u-container {
  width: 100%;
  max-width: var(--ez-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ez-u-text-shadow-white {
  text-shadow: 3px 4px 4px rgba(255, 255, 255, 1);
}

/* Selection */
::selection {
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
}

/* ---------- Site shell ---------- */
.ez-site {
  min-height: 100vh;
  background: var(--ez-color-white);
}

.ez-site__main {
  display: block;
}

/* ---------- Header ---------- */
.ez-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: transparent;
}

.ez-header.is-scrolled {
  background: var(--ez-color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.ez-header__inner {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ez-header__brand img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .ez-header__brand img {
    height: 4rem;
  }
}

.ez-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ez-header__nav {
    display: flex;
  }
}

.ez-header__nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ez-color-secondary);
  transition: color 0.2s;
}

.ez-header__nav-link:hover {
  color: var(--ez-color-primary);
}

.ez-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--ez-color-primary);
  transition: width 0.3s ease;
}

.ez-header__nav-link:hover::after {
  width: 100%;
}

.ez-header__lang {
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ez-color-secondary);
}

.ez-header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--ez-color-secondary);
}

@media (min-width: 1024px) {
  .ez-header__menu-toggle {
    display: none;
  }
}

/* Mobile drawer */
.ez-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.ez-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.ez-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.ez-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(18rem, 92vw);
  background: var(--ez-color-white);
  box-shadow: var(--ez-shadow-2xl);
  z-index: 70;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

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

.ez-drawer__close-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.ez-drawer__close {
  background: none;
  border: none;
  padding: 0.25rem;
  color: var(--ez-color-secondary);
}

.ez-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ez-drawer__link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ez-color-secondary);
  transition: color 0.2s;
}

.ez-drawer__link:hover {
  color: var(--ez-color-primary);
}

.ez-drawer__lang-wrap {
  padding-top: 1rem;
  border-top: 1px solid var(--ez-color-gray-100);
}

/* ---------- Hero ---------- */
.ez-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ez-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ez-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ez-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.ez-hero__inner {
  position: relative;
  z-index: 10;
  max-width: var(--ez-container);
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ez-hero__inner {
    flex-direction: row;
    align-items: center;
    padding-top: 6rem;
  }
}

.ez-hero__title-block {
  color: var(--ez-color-white);
  text-align: center;
}

@media (min-width: 768px) {
  .ez-hero__title-block {
    text-align: left;
  }
}

.ez-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.35));
}

.ez-hero__lead {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  max-width: 32rem;
  opacity: 0.9;
}

.ez-hero__form-wrap {
  width: 100%;
  max-width: 24rem;
}

.ez-lead-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: var(--ez-radius-card);
  box-shadow: var(--ez-shadow-2xl);
}

.ez-lead-form__title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--ez-color-primary);
}

.ez-lead-form__field {
  margin-bottom: 1rem;
}

.ez-lead-form__label {
  display: block;
  color: var(--ez-color-white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ez-lead-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--ez-radius-pill);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ez-color-secondary);
  outline: none;
}

.ez-lead-form__input:focus {
  box-shadow: 0 0 0 2px var(--ez-color-primary);
}

.ez-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border: none;
  border-radius: var(--ez-radius-pill);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.ez-btn--primary {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
}

.ez-btn--primary:hover {
  filter: brightness(0.95);
  transform: scale(1.02);
}

.ez-btn--primary:active {
  transform: scale(0.98);
}

.ez-btn--inline {
  width: auto;
  padding: 0.75rem 2rem;
}

.ez-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ---------- Overview / tabs ---------- */
#master-plan button:hover {
  background: var(--ez-color-primary)!important;
  color: var(--ez-color-white);
}

.ez-overview {
  padding: 5rem 1.5rem 2rem;
}

.ez-overview__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: -8rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 20;
}

@media (min-width: 768px) {
  .ez-overview__tabs {
    margin-top: -8rem;
    gap: 1.5rem;
  }
}

.ez-overview__tab {
  flex: 1 1 280px;
  min-height: 4rem;
  padding: 0 1rem;
  border-radius: var(--ez-radius-card);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  box-shadow: var(--ez-shadow-xl);
  border: 1px solid var(--ez-color-gray-100);
  background: var(--ez-color-white);
  color: var(--ez-color-secondary);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ez-overview__tab:hover {
  color: var(--ez-color-primary);
}

.ez-overview__tab.is-active {
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  border-color: transparent;
  box-shadow: var(--ez-shadow-xl), 0 10px 40px rgba(240, 86, 40, 0.25);
}

@media (min-width: 768px) {
  .ez-overview__tab {
    min-height: 5rem;
  }
}

.ez-overview__panel-wrap {
  position: relative;
  background: var(--ez-color-gray-50);
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--ez-shadow-2xl);
  height: 450px;
}

@media (min-width: 768px) {
  .ez-overview__panel-wrap {
    height: 650px;
  }
}

/* Không dùng thuộc tính HTML hidden — ẩn bằng CSS để ảnh các tab vẫn load sẵn, đổi tab không chờ decode */
.ez-overview__panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.ez-overview__panel.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ez-overview__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ez-overview__card {
  position: absolute;
  top: 2rem;
  left: 2rem;
  max-width: 20rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: var(--ez-radius-card);
  box-shadow: var(--ez-shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ez-overview__card-title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}

.ez-overview__card-text {
  margin: 0 0 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ez-color-secondary);
}

.ez-overview__card-link {
  font-weight: 700;
  color: var(--ez-color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.ez-overview__card-link:hover {
  color: var(--ez-color-primary);
}

/* ---------- Why choose us ---------- */
.ez-why {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.ez-why__bg {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  overflow-x: clip;
}

.ez-why__bg-inner {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.ez-why__bg img {
  width: 100%;
  height: auto;
}

.ez-why__inner {
  position: relative;
  z-index: 10;
  max-width: var(--ez-container);
  margin: 0 auto;
}

.ez-why__heading {
  text-align: center;
  margin-bottom: 4rem;
}

.ez-why__heading-line {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.ez-why__heading-line--muted {
  color: var(--ez-color-accent);
}

.ez-why__heading-line--accent {
  color: var(--ez-color-primary);
}

.ez-why__badge {
  display: inline-block;
  margin-top: 2rem;
  background: var(--ez-color-white);
  padding: 1rem 3rem;
  border-radius: var(--ez-radius-pill);
  box-shadow: var(--ez-shadow-2xl);
  border: 1px solid var(--ez-color-gray-50);
}

.ez-why__badge-text {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ez-color-secondary);
}

.ez-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ez-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ez-incentive-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--ez-color-white);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: var(--ez-shadow-2xl);
  border: 1px solid var(--ez-color-gray-50);
  transition: border-color 0.2s;
}

.ez-incentive-card:hover {
  border-color: rgba(240, 86, 40, 0.2);
}

.ez-incentive-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ez-color-primary);
  opacity: 0.8;
  flex-shrink: 0;
}

.ez-incentive-card__divider {
  width: 1px;
  height: 4rem;
  background: var(--ez-color-gray-200);
  flex-shrink: 0;
}

.ez-incentive-card__body {
  flex: 1;
  min-width: 0;
}

.ez-incentive-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ez-color-secondary);
}

.ez-incentive-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ez-incentive-card__stat-label {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}

.ez-incentive-card__stat-sub {
  font-size: 0.75rem;
  color: var(--ez-color-gray-500);
  font-weight: 500;
}

.ez-incentive-card__text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ez-color-primary);
}

/* ---------- Support ---------- */
.ez-support {
  position: relative;
  padding: 6rem 1.5rem;
  background: var(--ez-color-white);
  overflow: hidden;
}

.ez-support__bg {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  overflow-x: clip;
}

.ez-support__bg-inner {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.ez-support__bg img {
  width: 100%;
  height: auto;
}

.ez-support__stage {
  position: relative;
  z-index: 1;
  max-width: var(--ez-container);
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ez-support__animate-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ez-support__animate-wrap .ez-support__ring-wrap,
.ez-support__animate-wrap .ez-support__item {
  pointer-events: auto;
}

.ez-support__lines {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 768px) {
  .ez-support__lines {
    display: block;
  }
}

.ez-support__ring-wrap {
  position: relative;
  z-index: 10;
  width: 18rem;
  height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .ez-support__ring-wrap {
    width: 41.25rem;
    height: 41.25rem;
  }
}

.ez-support__ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(240, 86, 40, 0.2);
  border-radius: 50%;
  animation: ez-spin 60s linear infinite;
}

@keyframes ez-spin {
  to {
    transform: rotate(360deg);
  }
}

.ez-support__hub {
  position: relative;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--ez-color-white);
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 50px rgba(240, 86, 40, 0.3);
  overflow: hidden;
  background-color: var(--ez-color-primary);
  top: -29px;
}

@media (min-width: 768px) {
  .ez-support__hub {
    width: 24rem;
    height: 24rem;
  }
}

.ez-support__hub-text {
  position: relative;
  z-index: 1;
}

.ez-support__hub-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: inherit;
}

.ez-support__hub-line1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

.ez-support__hub-line2 {
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  font-weight: 300;
  font-style: italic;
  margin: 0.25rem 0;
}

.ez-support__hub-line3 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.ez-support__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  z-index: 10;
  width: 100%;
  max-width: 300px;
}

@media (min-width: 768px) {
  .ez-support__item {
    position: absolute;
    margin-top: 0;
  }

  .ez-support__item--tl {
    top: 15%;
    left: 5%;
    flex-direction: row;
    text-align: right;
  }

  .ez-support__item--tl .ez-support__item-text {
    order: 1;
  }

  .ez-support__item--tl .ez-support__item-icon-wrap {
    order: 2;
  }

  .ez-support__item--bl {
    bottom: 15%;
    left: 5%;
    flex-direction: row;
    text-align: right;
  }

  .ez-support__item--bl .ez-support__item-text {
    order: 1;
  }

  .ez-support__item--bl .ez-support__item-icon-wrap {
    order: 2;
  }

  .ez-support__item--tr {
    top: 15%;
    right: 5%;
    flex-direction: row-reverse;
  }

  .ez-support__item--br {
    bottom: 15%;
    right: 5%;
    flex-direction: row-reverse;
  }
}

.ez-support__item-title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}

.ez-support__item-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ez-color-secondary);
  line-height: 1.4;
}

.ez-support__item-icon-wrap {
  flex-shrink: 0;
  width: 62.71px;
  height: 62.71px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ez-color-white);
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.11);
}

.ez-support__item-icon-wrap img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

/* ---------- Process ---------- */
.ez-process {
  width: 100%;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

.ez-process__title {
  margin: 0 0 3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.ez-process__title span {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--ez-color-accent);
}

.ez-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--ez-container);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ez-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ez-process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ez-process__step {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 146px;
  padding: 1rem 1.75rem 1rem 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ez-color-secondary);
  font-size: 1rem;
  line-height: 1.35;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  transition: transform 0.2s;
}

.ez-process__step:hover {
  transform: scale(1.02);
}

.ez-process__step p {
  margin: 0;
  text-align: center;
}

/* ---------- Advantages ---------- */
.ez-advantages {
  position: relative;
  padding: 8rem 1.5rem;
  overflow: hidden;
  background: var(--ez-color-white);
}

.ez-advantages__bg {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  margin-top: 10rem;
  overflow-x: clip;
}

.ez-advantages__bg-inner {
  position: relative;
  width: 100%;
  max-width: 2000px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.ez-advantages__bg img {
  width: 100%;
  height: auto;
}

.ez-advantages__inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
}

.ez-advantages__orbit {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ez-advantages__ring {
  position: absolute;
  border-radius: 50%;
  border: 20px solid var(--ez-color-gray-50);
}

.ez-advantages__ring--1 {
  inset: 0;
}

.ez-advantages__ring--2 {
  inset: 3rem;
  border-color: var(--ez-color-gray-100);
}

.ez-advantages__ring--3 {
  inset: 6rem;
  border-color: var(--ez-color-gray-200);
}

.ez-advantages__center {
  position: relative;
  z-index: 20;
  width: 16rem;
  height: 16rem;
  background: var(--ez-color-white);
  border-radius: 50%;
  box-shadow: var(--ez-shadow-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--ez-color-gray-100);
}

@media (min-width: 768px) {
  .ez-advantages__center {
    width: 24rem;
    height: 24rem;
  }
}

.ez-advantages__center-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--ez-color-accent);
  line-height: 1.15;
}

.ez-advantages__center-link {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ez-color-primary);
}

.ez-advantages__center-link:hover {
  text-decoration: underline;
}

.ez-adv-bubble {
  position: absolute;
  z-index: 30;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(#f97316 0deg 70deg, #fff3e8 70deg 290deg, #f97316 290deg 360deg);
  box-shadow: var(--ez-shadow-xl);
  transition: transform 0.2s;
}

.ez-adv-bubble:hover {
  transform: scale(1.05);
}

.ez-adv-bubble--tc:hover,
.ez-adv-bubble--bc:hover {
  transform: translateX(-50%) scale(1.05);
}

@media (min-width: 768px) {
  .ez-adv-bubble {
    width: 11rem;
    height: 11rem;
  }
}

.ez-adv-bubble--tl {
  top: 10%;
  left: -10%;
}

.ez-adv-bubble--tc {
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.ez-adv-bubble--tr {
  top: 10%;
  right: -10%;
}

.ez-adv-bubble--br {
  bottom: 10%;
  right: -10%;
}

.ez-adv-bubble--bc {
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.ez-adv-bubble--bl {
  bottom: 10%;
  left: -10%;
}

.ez-adv-bubble__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--ez-color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.ez-adv-bubble__inner img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .ez-adv-bubble__inner img {
    width: 3rem;
    height: 3rem;
  }
}

.ez-adv-bubble__label {
  font-size: 0.625rem;
  color: var(--ez-color-secondary);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .ez-adv-bubble__label {
    font-size: 0.75rem;
  }
}

.ez-adv-bubble__value {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ez-color-primary);
}

@media (min-width: 768px) {
  .ez-adv-bubble__value {
    font-size: 0.875rem;
  }
}

/* ---------- News ---------- */
.ez-news {
  padding: 6rem 1.5rem;
  background: var(--ez-color-white);
}

.ez-news__title {
  margin: 0 0 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}

.ez-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ez-news__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ez-news__article-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ez-color-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.ez-news__article-title:hover {
  color: var(--ez-color-primary);
}

.ez-news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--ez-color-gray-500);
}

.ez-news__excerpt {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--ez-color-secondary);
}

.ez-news__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ez-color-gray-400);
  margin-bottom: 1.5rem;
}

.ez-news__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--ez-shadow-2xl);
}

.ez-news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ez-news__nav {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.ez-news__nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--ez-color-primary);
  background: transparent;
  color: var(--ez-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.ez-news__nav-btn:hover {
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
}

/* ---------- Footer / Contact ---------- */
.ez-footer-wrap {
  position: relative;
  overflow-x: hidden;
}

.ez-footer-wrap__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ez-footer-wrap__glow-item {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.ez-footer-wrap__glow-item--a {
  width: 400px;
  height: 400px;
  top: 350px;
  left: calc(-1 * 400px / 2);
  background: radial-gradient(circle, rgba(240, 86, 40, 0.4) 0%, transparent 70%);
}

.ez-footer-wrap__glow-item--b {
  width: 600px;
  height: 600px;
  top: -10vh;
  left: calc(50vw - 600px * 2 / 3);
  background: radial-gradient(circle, rgba(240, 86, 40, 0.35) 0%, transparent 70%);
  filter: blur(50px);
}

.ez-footer-wrap__glow-item--c {
  width: 350px;
  height: 350px;
  top: calc(50px + 20vh);
  right: 0;
  background: radial-gradient(circle, rgba(240, 86, 40, 0.3) 0%, transparent 70%);
}

.ez-footer {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.ez-contact {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.ez-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .ez-contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ez-contact__title {
  margin: 0 0 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ez-color-accent);
}

.ez-contact__grid > .ez-contact__widget {
  min-width: 0;
}

.ez-contact__widget-title {
  margin: 0 0 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ez-color-accent);
}

.ez-contact__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ez-contact__row {
  display: flex;
  gap: 1rem;
}

.ez-contact__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--ez-color-white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-color-primary);
}

.ez-contact__row-title {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--ez-color-secondary);
}

.ez-contact__row-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ez-color-gray-600);
  line-height: 1.6;
}

.ez-contact-form {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border: 2px solid var(--ez-color-white);
  padding: 2rem;
  border-radius: 2.5rem;
  box-shadow: var(--ez-shadow-2xl);
}

@media (min-width: 768px) {
  .ez-contact-form {
    padding: 3rem;
  }
}

.ez-contact-form__title {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--ez-color-primary);
}

.ez-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ez-contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ez-contact-form__field--full {
  grid-column: 1 / -1;
}

.ez-contact-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ez-color-secondary);
}

.ez-contact-form__input,
.ez-contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ez-radius-pill);
  border: 1px solid var(--ez-color-gray-100);
  background: var(--ez-color-white);
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ez-contact-form__input:focus,
.ez-contact-form__textarea:focus {
  box-shadow: 0 0 0 2px var(--ez-color-primary);
}

.ez-contact-form__textarea {
  border-radius: 1.5rem;
  min-height: 8rem;
  resize: vertical;
}

.ez-contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.ez-contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  font-weight: 700;
  border: none;
  border-radius: var(--ez-radius-pill);
  box-shadow: 0 10px 15px -3px rgba(240, 86, 40, 0.25);
  transition: transform 0.2s, filter 0.2s;
}

.ez-contact-form__submit:hover {
  filter: brightness(0.95);
  transform: scale(1.05);
}

.ez-footer-links {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-bottom: 1px solid var(--ez-color-gray-100);
}

@media (min-width: 768px) {
  .ez-footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ez-footer-links {
    grid-template-columns: repeat(6, 1fr);
  }
}

.ez-footer-links__heading {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ez-color-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.ez-footer-links__heading:hover {
  color: var(--ez-color-primary);
}

.ez-footer-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ez-footer-links__list li {
  margin-bottom: 0.5rem;
}

.ez-footer-links__list a {
  font-size: 0.75rem;
  color: var(--ez-color-gray-500);
  transition: color 0.2s;
}

.ez-footer-links__list a:hover {
  color: var(--ez-color-primary);
}

.ez-footer-brand {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding: 4rem 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

/* ===== FLOATING CONTACT GROUP ===== */
.floating-contact-group {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* --- Base button --- */
.fcg-btn {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.fcg-btn .pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: pulseRing 2.2s ease-out infinite;
  pointer-events: none;
}
.fcg-btn .pulse-ring:nth-child(2) {
  animation-delay: 0.7s;
  opacity: 0.55;
}
.fcg-btn .btn-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.22),
    0 1px 4px rgba(0,0,0,0.12);
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.18s ease;
  animation: shake 4s ease-in-out infinite;
}
.fcg-btn:hover .btn-icon {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.15);
  animation: none;
}
.fcg-btn .btn-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.fcg-btn .badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  background: #ff3b30;
  border-radius: 50%;
  border: 2.5px solid #fff;
  animation: badgePop 0.4s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: 1s;
}

/* --- Tooltip --- */
.fcg-btn .tooltip {
  position: absolute;
  right: 72px;
  bottom: 50%;
  transform: translateY(50%);
  background: #1c1e21;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, right 0.2s ease;
  letter-spacing: 0.01em;
}
.fcg-btn .tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1c1e21;
}
.fcg-btn:hover .tooltip {
  opacity: 1;
  right: 76px;
}

/* --- Màu Phone (xanh lá) --- */
.fcg-phone .pulse-ring {
  background: rgba(37, 211, 102, 0.35);
}
.fcg-phone .btn-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 1px 4px rgba(0,0,0,0.12);
}
.fcg-phone:hover .btn-icon {
  box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.15);
}

/* --- Màu Zalo (xanh dương) --- */
.fcg-zalo .pulse-ring {
  background: rgba(0, 104, 255, 0.30);
}
.fcg-zalo .btn-icon {
  background: #0068ff;
  box-shadow: 0 4px 16px rgba(0,104,255,0.45), 0 1px 4px rgba(0,0,0,0.12);
}
.fcg-zalo:hover .btn-icon {
  box-shadow: 0 8px 28px rgba(0,104,255,0.55), 0 2px 8px rgba(0,0,0,0.15);
}
.fcg-zalo .btn-icon svg {
    width: 53px;
    height: 38px;
    margin-left: -9px;
}

/* --- Màu Messenger (tím xanh) --- */
.fcg-messenger .pulse-ring {
  background: rgba(0, 132, 255, 0.30);
}
.fcg-messenger .btn-icon {
  background: linear-gradient(135deg, #0084ff 0%, #a334fa 100%);
  box-shadow: 0 4px 16px rgba(0,132,255,0.45), 0 1px 4px rgba(0,0,0,0.12);
}
.fcg-messenger:hover .btn-icon {
  box-shadow: 0 8px 28px rgba(0,132,255,0.55), 0 2px 8px rgba(0,0,0,0.15);
}

/* ===== KEYFRAMES ===== */
@keyframes shake {
  0%, 55%, 100%  { transform: rotate(0deg); }
  57%  { transform: rotate(-12deg); }
  59%  { transform: rotate(12deg); }
  61%  { transform: rotate(-10deg); }
  63%  { transform: rotate(10deg); }
  65%  { transform: rotate(-6deg); }
  67%  { transform: rotate(6deg); }
  69%  { transform: rotate(-2deg); }
  71%  { transform: rotate(0deg); }
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.8; }
  80%  { transform: scale(2.0); opacity: 0; }
  100% { transform: scale(2.0); opacity: 0; }
}
@keyframes badgePop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .floating-contact-group {
    bottom: 16px;
    right: 12px;
    gap: 10px;
  }
  .fcg-btn .btn-icon {
    width: 52px;
    height: 52px;
  }
  .fcg-btn .pulse-ring {
    width: 52px;
    height: 52px;
  }
  .fcg-btn .tooltip {
    display: none;
  }
}




@media (min-width: 768px) {
  .ez-footer-brand {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ez-footer-brand__logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.ez-footer-brand__text {
  font-size: 0.875rem;
  color: var(--ez-color-gray-600);
  line-height: 1.6;
}

.ez-footer-brand__text a:hover {
  color: var(--ez-color-primary);
}

.ez-footer-brand__copy {
  font-size: 0.75rem;
  color: var(--ez-color-gray-400);
  margin-top: 1rem;
}

.ez-footer-brand .widget {
  margin: 0 0 1rem;
}

.ez-footer-brand .widget:last-child {
  margin-bottom: 0;
}

.ez-footer-brand .widget-title {
  font-size: inherit;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--ez-color-gray-800);
}

.ez-footer-brand__cta-wrap {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .ez-footer-brand__cta-wrap {
    justify-content: flex-end;
  }
}

.ez-footer-brand__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  font-weight: 700;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: filter 0.2s;
}

.ez-footer-brand__cta:hover {
  filter: brightness(0.95);
}

.ez-footer-brand__cta-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Floating toolbar ---------- */
.ez-float {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ez-float__btn {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ez-color-white);
  border: 1px solid var(--ez-color-gray-50);
  box-shadow: var(--ez-shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-color-gray-400);
  transition: color 0.2s, transform 0.2s;
}

.ez-float__btn:hover {
  color: var(--ez-color-primary);
  transform: scale(1.1);
}

.ez-float__tooltip {
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25rem 0.75rem;
  background: var(--ez-color-secondary);
  color: var(--ez-color-white);
  font-size: 0.75rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.ez-float__btn:hover .ez-float__tooltip {
  opacity: 1;
}

/* ---------- Sticky CTA ---------- */
.ez-sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 105;
  padding: 1rem 2rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  font-weight: 700;
  border: none;
  border-radius: var(--ez-radius-pill);
  box-shadow: var(--ez-shadow-2xl);
  transition: transform 0.2s, filter 0.2s;
}

.ez-sticky-cta:hover {
  filter: brightness(0.95);
  transform: scale(1.05);
}

.ez-sticky-cta:active {
  transform: scale(0.95);
}

@media (min-width: 768px) {
  .ez-sticky-cta--mobile-only {
    display: none;
  }
}

.ez-sticky-cta--desktop {
  display: none;
  bottom: 2rem;
  left: 2rem;
}

@media (min-width: 768px) {
  .ez-sticky-cta--desktop {
    display: block;
  }
}

/* Anchor offset for fixed header */
[id] {
  scroll-margin-top: calc(var(--ez-header-height) + 0.5rem);
}

/* ---------- Scroll reveal (on scroll) ---------- */
.ez-reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.ez-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ez-reveal--fade-left {
  transform: translate3d(-2rem, 0, 0);
}

.ez-reveal--fade-right {
  transform: translate3d(2rem, 0, 0);
}

.ez-reveal--fade {
  transform: none;
}

.ez-reveal--scale {
  transform: scale(0.94);
}

.ez-reveal--scale.is-visible {
  transform: scale(1);
}

/* Bubbles giữ căn giữa (translateX) + scale */
.ez-adv-bubble.ez-reveal--scale {
  transform: translateX(-50%) scale(0.92);
}

.ez-adv-bubble.ez-reveal--scale.is-visible {
  transform: translateX(-50%) scale(1);
}

.ez-adv-bubble--tl.ez-reveal--scale,
.ez-adv-bubble--tr.ez-reveal--scale,
.ez-adv-bubble--br.ez-reveal--scale,
.ez-adv-bubble--bl.ez-reveal--scale {
  transform: scale(0.92);
}

.ez-adv-bubble--tl.ez-reveal--scale.is-visible,
.ez-adv-bubble--tr.ez-reveal--scale.is-visible,
.ez-adv-bubble--br.ez-reveal--scale.is-visible,
.ez-adv-bubble--bl.ez-reveal--scale.is-visible {
  transform: scale(1);
}

/* Stagger: delay theo thứ tự con trực tiếp */
.ez-reveal-stagger > .ez-reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(4) {
  transition-delay: 0.22s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(5) {
  transition-delay: 0.28s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(6) {
  transition-delay: 0.34s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(7) {
  transition-delay: 0.4s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(8) {
  transition-delay: 0.46s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(9) {
  transition-delay: 0.52s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(10) {
  transition-delay: 0.58s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(11) {
  transition-delay: 0.64s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(12) {
  transition-delay: 0.7s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(13) {
  transition-delay: 0.76s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(14) {
  transition-delay: 0.82s;
}
.ez-reveal-stagger > .ez-reveal:nth-child(15) {
  transition-delay: 0.88s;
}

/* Lợi thế: center + bubble (có ring không animate xen giữa) */
.ez-advantages__orbit > .ez-advantages__center.ez-reveal {
  transition-delay: 0.06s;
}
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(5) {
  transition-delay: 0.1s;
}
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(6) {
  transition-delay: 0.14s;
}
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(7) {
  transition-delay: 0.18s;
}
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(8) {
  transition-delay: 0.22s;
}
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(9) {
  transition-delay: 0.26s;
}
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(10) {
  transition-delay: 0.3s;
}

/* Giữ hover bubble sau khi đã reveal */
.ez-adv-bubble.ez-reveal--scale.is-visible:hover {
  transform: scale(1.05);
}

.ez-adv-bubble--tc.ez-reveal--scale.is-visible:hover,
.ez-adv-bubble--bc.ez-reveal--scale.is-visible:hover {
  transform: translateX(-50%) scale(1.05);
}

.ez-overview__tab.ez-reveal {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.ez-process__step.ez-reveal {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.ez-process__step.ez-reveal.is-visible:hover {
  transform: scale(1.02);
}

.ez-incentive-card.ez-reveal {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .ez-reveal {
    opacity: 1 !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .ez-reveal:not(.ez-adv-bubble) {
    transform: none !important;
  }

  .ez-advantages__center.ez-reveal--scale {
    transform: none !important;
  }

  .ez-adv-bubble--tc.ez-reveal--scale,
  .ez-adv-bubble--bc.ez-reveal--scale {
    transform: translateX(-50%) scale(1) !important;
  }

  .ez-adv-bubble--tl.ez-reveal--scale,
  .ez-adv-bubble--tr.ez-reveal--scale,
  .ez-adv-bubble--br.ez-reveal--scale,
  .ez-adv-bubble--bl.ez-reveal--scale {
    transform: scale(1) !important;
  }
}
