/* =========================================
   HOME BANNER
========================================= */


.hero-slider {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #0037ab 0%, #0a43c9 55%, #0d46cb 100%);
    }

    .hero-slider__inner {
      width: 100%;
      max-width: 2048px;
      margin: 0 auto;
      position: relative;
      min-height: 550px;
    }

    .hero-slides {
      position: relative;
      min-height: 550px;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .55s ease, visibility .55s ease;
    }

    .hero-slide.is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      z-index: 2;
    }

    .hero-slide__grid {
      display: grid;
      grid-template-columns: minmax(0, 44%) minmax(0, 56%);
      min-height: 550px;
      align-items: stretch;
    }

    .hero-slide__content {
      position: relative;
      z-index: 2;
      background: linear-gradient(180deg, #0633a0 0%, #0b40c1 100%);
      color: #fff;
      display: flex;
      align-items: center;
      padding: 56px 56px 72px 64px;
      overflow: hidden;
    }

    .hero-slide__content::after {
      content: "";
      position: absolute;
      top: 0;
      right: -1px;
      width: 44px;
      height: 100%;
      background: linear-gradient(90deg, rgba(0, 55, 171, 0) 0%, rgba(0, 55, 171, .22) 100%);
      pointer-events: none;
    }

    .hero-content-inner {
      max-width: 720px;
      width: 100%;
    }

    .hero-badge,
    .hero-title,
    .hero-desc,
    .hero-actions {
      opacity: 0;
      transform: translate3d(0, 24px, 0);
      will-change: transform, opacity;
    }

    .hero-slider .hero-actions {justify-content: initial !important}

    .hero-title.fix-font-size {font-size: 72px !important; font-weight: 600 !important;}

    .hero-slide.is-active .hero-badge {
      animation: fadeUp .65s cubic-bezier(.22,1,.36,1) .06s forwards;
    }

    .hero-slide.is-active .hero-title {
      animation: fadeUp .75s cubic-bezier(.22,1,.36,1) .15s forwards;
    }

    .hero-slide.is-active .hero-desc {
      animation: fadeUp .75s cubic-bezier(.22,1,.36,1) .26s forwards;
    }

    .hero-slide.is-active .hero-actions {
      animation: fadeUp .75s cubic-bezier(.22,1,.36,1) .36s forwards;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 5px 22px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.2);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 14px;
      font-weight: 400;
      margin-bottom: 30px;
    }

    .hero-badge__icon {
      color: #ff7a00;
      font-size: 18px;
      line-height: 1;
    }

    .hero-title {
      margin: 0;
      color: #fff;
      font-size: 96px;
      line-height: .98;
      letter-spacing: -0.045em;
      font-weight: 800;
    }

    .hero-desc {
      margin: 30px 0 0;
      max-width: 760px;
      color: rgba(255,255,255,.88);
      font-size: 20px;
      line-height: 1.5;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 42px;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 82px;
      padding: 0 34px;
      border-radius: 999px;
      font-size: 22px;
      font-weight: 800;
      transition: all .25s ease;
      white-space: nowrap;
    }

    .hero-btn--primary {
      color: #fff;
      background: #ff7a00;
      box-shadow: 0 18px 40px rgba(255, 122, 0, .24);
    }

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

    .hero-btn--ghost {
      color: #fff;
      border: 2px solid rgba(255,255,255,.38);
      background: transparent;
    }

    .hero-btn--ghost:hover {
      background: rgba(255,255,255,.08);
    }

    .hero-btn__icon {
      display: inline-flex;
      width: 24px;
      height: 24px;
    }

    .hero-btn__icon svg {
      width: 100%;
      height: 100%;
    }

    .hero-slide__media {
      position: relative;
      min-height: 550px;
      overflow: hidden;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
    }

    .hero-media-wrap {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 550px;
      overflow: hidden;
    }

    .hero-media-image {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transform: translate3d(34px, 0, 0) scale(1.06);
      transform-origin: center center;
      will-change: transform, opacity;
    }

    .hero-slide.is-active .hero-media-image {
      animation: imageIn 1.05s cubic-bezier(.22,1,.36,1) .08s forwards;
    }

    .hero-media-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 54, 170, .18) 0%, rgba(8, 54, 170, .08) 10%, rgba(8, 54, 170, 0) 24%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-floating-card {
      position: absolute;
      left: 52px;
      bottom: 40px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 28px;
      border-radius: 26px;
      background: rgba(255,255,255,.96);
      box-shadow: 0 22px 48px rgba(12, 22, 49, .18);
      opacity: 0;
      transform: translate3d(0, 22px, 0) scale(.96);
      will-change: transform, opacity;
    }

    .hero-slide.is-active .hero-floating-card {
      animation: cardIn .8s cubic-bezier(.22,1,.36,1) .34s forwards;
    }

    .hero-floating-card__icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      background: #f8e5d7;
      color: #ff7a00;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-floating-card__icon svg {
      width: 28px;
      height: 28px;
    }

    .hero-floating-card__label {
      font-size: 14px;
      line-height: 1.2;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #8f96a4;
      margin-bottom: 7px;
    }

    .hero-floating-card__value {
      font-size: 24px;
      line-height: 1;
      font-weight: 600;
      color: #0b45c7;
    }

    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 6;
      width: 64px;
      height: 64px;
      border: 1.5px solid rgba(255,255,255,.22);
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      color: #fff;
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .25s ease;
      box-shadow: 0 10px 24px rgba(9, 20, 49, .12);
    }

    .hero-arrow:hover {
      background: rgba(255,255,255,.18);
      transform: translateY(-50%) scale(1.04);
    }

    .hero-arrow svg {
      width: 24px;
      height: 24px;
    }

    .hero-arrow--prev {
      left: 32px;
    }

    .hero-arrow--next {
      right: 24px;
    }

    .hero-dots {
      position: absolute;
      left: 50%;
      bottom: 28px;
      transform: translateX(-50%);
      z-index: 6;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      border: 0;
      background: rgba(255,255,255,.36);
      padding: 0;
      cursor: pointer;
      transition: all .25s ease;
    }

    .hero-dot.is-active {
      width: 38px;
      background: #fff;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
      }
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes imageIn {
      from {
        opacity: 0;
        transform: translate3d(34px, 0, 0) scale(1.06);
      }
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }
    }

    @keyframes cardIn {
      from {
        opacity: 0;
        transform: translate3d(0, 22px, 0) scale(.96);
      }
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }
    }

    @keyframes imageInMobile {
      from {
        opacity: 0;
        transform: translate3d(18px, 0, 0) scale(1.04);
      }
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }
    }

    @media (max-width: 1400px) {
      .hero-title {
        font-size: 78px;
      }

      .hero-desc {
        font-size: 22px;
      }

      .hero-btn {
        min-height: 72px;
        font-size: 20px;
      }
    }

    @media (max-width: 1199.98px) {
      .hero-title {
        font-size: 68px;
      }

      .hero-desc {
        font-size: 20px;
      }

      .hero-slide__content {
        padding: 48px 40px 68px;
      }

      .hero-floating-card {
        left: 34px;
        bottom: 34px;
      }
    }

    @media (max-width: 1023.98px) {
      .hero-slider__inner {
        min-height: unset;
      }

      .hero-title.fix-font-size {font-size: 48px !important}

      .hero-slides {
        min-height: unset;
        position: relative;
      }

      .hero-slide {
        position: relative;
        inset: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        transition: none;
      }

      .hero-slide.is-active {
        display: block;
        pointer-events: auto;
      }

      .hero-slide__grid {
        grid-template-columns: 1fr;
        min-height: unset;
      }

      .hero-slide__media {
        order: 1;
        min-height: 480px;
      }

      .hero-media-wrap {
        min-height: 480px;
      }

      .hero-slide__content {
        order: 2;
        padding: 34px 24px 54px;
      }

      .hero-slide__content::after {
        display: none;
      }

      .hero-title {
        font-size: 54px;
        max-width: 100%;
      }

      .hero-desc {
        font-size: 18px;
        max-width: 100%;
        margin-top: 18px;
      }

      .hero-actions {
        margin-top: 28px;
        gap: 14px;
      }

      .hero-btn {
        min-height: 60px;
        font-size: 17px;
        padding: 0 24px;
      }

      .hero-arrow {
        width: 50px;
        height: 50px;
      }

      .hero-arrow--prev {
        left: 14px;
      }

      .hero-arrow--next {
        right: 14px;
      }

      .hero-floating-card {
        left: 22px;
        bottom: 22px;
        min-width: 220px;
        padding: 14px 18px;
        border-radius: 18px;
      }

      .hero-floating-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
      }

      .hero-floating-card__value {
        font-size: 24px;
      }
    }

    @media (max-width: 767.98px) {
      .hero-slide__media {
        min-height: 350px;
        height: 350px;
      }

      .hero-media-wrap {
        min-height: 350px;
        height: 350px;
      }

      .hero-badge {
        min-height: 36px;
        padding: 0 16px;
        font-size: 14px;
        margin-bottom: 20px;
      }

      .hero-slide__media .hero-floating-card {display: none;}

      .hero-title {
        font-size: 36px;
        line-height: 1.04;
      }

      .hero-desc {
        font-size: 16px;
        line-height: 1.55;
        margin-top: 14px;
      }

      .hero-slide__content {
        padding: 40px 20px 56px;
      }

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

      .hero-btn {
        width: 100%;
        min-height: 54px;
        font-size: 16px;
      }

      .hero-media-image {
        transform: translate3d(18px, 0, 0) scale(1.04);
      }

      .hero-slide.is-active .hero-media-image {
        animation: imageInMobile .95s cubic-bezier(.22,1,.36,1) .08s forwards;
      }

      .hero-floating-card {
        left: 18px;
        bottom: 18px;
        gap: 12px;
        min-width: 190px;
        padding: 14px 16px;
      }

      .hero-floating-card__label {
        font-size: 11px;
      }

      .hero-floating-card__value {
        font-size: 20px;
      }

      .hero-arrow {
        width: 42px;
        height: 42px;
      }

      .hero-arrow svg {
        width: 20px;
        height: 20px;
      }

      .hero-dots {
        bottom: 14px;
      }

      .hero-dot {
        width: 10px;
        height: 10px;
      }

      .hero-dot.is-active {
        width: 30px;
      }
    }


/*============End Home Banner=================*/

.a2e-mini-stats {
  position: relative;
  padding: 46px 20px 42px;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}

.a2e-mini-stats__container {
  max-width: 1440px;
  margin: 0 auto;
}

.a2e-mini-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.a2e-mini-stat-card {
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 36px, 0);
}

.a2e-mini-stat-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a2e-mini-stat-card__icon svg {
  width: 34px;
  height: 34px;
}

.a2e-mini-stat-card__icon--blue {
  background: #eef1fb;
  color: #1147bc;
}

.a2e-mini-stat-card__icon--orange {
  background: #fdf1ea;
  color: #ff7a00;
}

.a2e-mini-stat-card__value {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -1px;
  color: #ff6f00;
}

.a2e-mini-stat-card__label {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #5f6778;
  font-weight: 400;
}

.a2e-mini-stats.in-view .a2e-mini-stat-card:nth-child(1) {
  animation: a2eMiniStatUp .7s cubic-bezier(0.22, 1, 0.36, 1) .1s forwards;
}

.a2e-mini-stats.in-view .a2e-mini-stat-card:nth-child(2) {
  animation: a2eMiniStatUp .7s cubic-bezier(0.22, 1, 0.36, 1) .25s forwards;
}

.a2e-mini-stats.in-view .a2e-mini-stat-card:nth-child(3) {
  animation: a2eMiniStatUp .7s cubic-bezier(0.22, 1, 0.36, 1) .4s forwards;
}

.a2e-mini-stats.in-view .a2e-mini-stat-card:nth-child(4) {
  animation: a2eMiniStatUp .7s cubic-bezier(0.22, 1, 0.36, 1) .55s forwards;
}

@keyframes a2eMiniStatUp {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 991px) {
  .a2e-mini-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .a2e-mini-stat-card__value {
    font-size: 44px;
  }

  .a2e-mini-stat-card__label {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .a2e-mini-stats {
    padding: 34px 16px 30px;
  }

  .a2e-mini-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .a2e-mini-stat-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .a2e-mini-stat-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .a2e-mini-stat-card__value {
    font-size: 32px;
  }

  .a2e-mini-stat-card__label {
    font-size: 14px;
    margin-top: 6px;
  }
}

/* =========================
   STEPS ANIMATION
========================= */

.home-steps-section {
  padding: 90px 0 110px;
  background: #ffffff;
}

.home-steps-section .container {
  margin: 0 auto;
}

.steps-heading {
  text-align: center;
  margin-bottom: 56px;
}

.steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 55, 171, 0.14);
  background: #fff;
  color: #0037ab;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(20, 40, 120, 0.08);
  margin-bottom: 26px;
}

.steps-badge__icon {
  font-size: 15px;
  line-height: 1;
}

.steps-title {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #243b8f;
}

.steps-title span {
  background: linear-gradient(90deg, #4b4ea4 0%, #ff7a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.steps-subtitle {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  color: #5c677d;
}

.wrap-group-box {
  width: 100%;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 42px 42px 40px;
  background: #fff;
  border: 2px solid transparent;
  box-shadow:
    0 10px 30px rgba(17, 24, 39, 0.06),
    0 2px 8px rgba(17, 24, 39, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 44px rgba(17, 24, 39, 0.1),
    0 6px 18px rgba(17, 24, 39, 0.06);
}

.step-card__number {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 118px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.035;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-card__number {
  opacity: 0.06;
}

.step-card__glow {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.step-card:hover .step-card__glow {
  opacity: 0.16;
}

.step-card__inner {
  position: relative;
  z-index: 2;
}

.step-card__icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.12);
}

.step-card__icon svg {
  width: 42px;
  height: 42px;
}

.step-card__label {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.62;
}

.step-card__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1.15;
  font-weight: 800;
}

.step-card__desc {
  margin: 0;
  max-width: 500px;
  color: #5f6b82;
  font-size: 17px;
  line-height: 1.72;
}

/* BLUE */
.step-card--blue {
  border-color: rgba(0, 55, 171, 0.08);
}

.step-card--blue .step-card__number,
.step-card--blue .step-card__label,
.step-card--blue .step-card__title,
.step-card--blue .step-card__icon {
  color: #0037ab;
}

.step-card--blue .step-card__icon {
  background: linear-gradient(135deg, rgba(0, 55, 171, 0.08), rgba(0, 55, 171, 0.14));
}

.step-card--blue .step-card__glow {
  background: rgba(0, 55, 171, 0.7);
}

/* ORANGE */
.step-card--orange {
  border-color: rgba(255, 115, 0, 0.08);
}

.step-card--orange .step-card__number,
.step-card--orange .step-card__label,
.step-card--orange .step-card__title,
.step-card--orange .step-card__icon {
  color: #ff7300;
}

.step-card--orange .step-card__icon {
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.08), rgba(255, 115, 0, 0.145));
}

.step-card--orange .step-card__glow {
  background: rgba(255, 115, 0, 0.7);
}

@media (max-width: 991px) {
  .home-steps-section {
    padding: 70px 0 84px;
  }

  .steps-heading {
    margin-bottom: 38px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-card {
    padding: 28px 24px 26px;
    border-radius: 22px;
  }

  .step-card__number {
    top: 18px;
    right: 20px;
    font-size: 82px;
  }

  .step-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .step-card__icon svg {
    width: 34px;
    height: 34px;
  }

  .step-card__title {
    margin-bottom: 14px;
  }

  .step-card__desc {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 767px) {
  .home-steps-section .container {
    width: min(100%, calc(100% - 24px));
  }

  .steps-badge {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
    margin-bottom: 18px;
  }

  .steps-title {
    margin-bottom: 12px;
    font-size: 38px;
  }

  .steps-subtitle {
    font-size: 17px;
    line-height: 1.5;
  }

  .step-card__number {
    font-size: 66px;
  }

  .step-card__label {
    font-size: 14px;
  }

  .step-card__title {
    font-size: 24px;
  }

  .step-card__desc {
    font-size: 15px;
  }
}

/* =========================
   STEPS SECTION ANIMATION
========================= */

.steps-fade-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: transform, opacity;
}

.step-card-animate {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  will-change: transform, opacity;
}

.home-steps-section.in-view .steps-fade-item {
  animation: stepsFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-steps-section.in-view .steps-delay-1 {
  animation-delay: 0.08s;
}

.home-steps-section.in-view .steps-delay-2 {
  animation-delay: 0.22s;
}

.home-steps-section.in-view .steps-delay-3 {
  animation-delay: 0.36s;
}

.home-steps-section.in-view .step-card-animate:nth-child(1) {
  animation: stepCardFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

.home-steps-section.in-view .step-card-animate:nth-child(2) {
  animation: stepCardFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

.home-steps-section.in-view .step-card-animate:nth-child(3) {
  animation: stepCardFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.76s forwards;
}

.home-steps-section.in-view .step-card-animate:nth-child(4) {
  animation: stepCardFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

@keyframes stepsFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes stepCardFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 38px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/********************/


.a2e-solution-section {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
  overflow: hidden;
}

.a2e-solution-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.a2e-solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 56px;
}

.a2e-solution-content {
  max-width: 560px;
}

.a2e-solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 122, 0, 0.18);
  color: #ff7a00;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.a2e-solution-badge__icon {
  font-size: 12px;
  line-height: 1;
}

.a2e-solution-title {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b43b9;
}

.a2e-solution-title span {
  background: linear-gradient(90deg, #ff7a00 0%, #4f4f8d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.a2e-solution-desc {
  margin-bottom: 28px;
}

.a2e-solution-desc p {
  margin: 0 0 24px;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}

.a2e-solution-desc p:last-child {
  margin-bottom: 0;
}

.a2e-solution-desc strong {
  color: #3c4858;
  font-weight: 700;
}

.a2e-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.a2e-solution-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbe4f2;
  color: #5672b8;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(28, 58, 120, 0.08);
}

.a2e-solution-actions {
  margin-top: 8px;
}

.a2e-solution-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 420px;
  min-height: 64px;
  padding: 16px 28px;
  border-radius: 18px;
  background: linear-gradient(90deg, #ff8a00 0%, #ff7300 100%);
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.a2e-solution-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 122, 0, 0.34);
}

.a2e-solution-btn__icon {
  font-size: 22px;
  line-height: 1;
}

.a2e-solution-media {
  position: relative;
}

.a2e-solution-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(22, 34, 66, 0.16);
  background: #fff;
}

.a2e-solution-image {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .a2e-solution-grid {
    gap: 36px;
  }

  .a2e-solution-btn {
    min-width: 340px;
    font-size: 20px;
  }

  .a2e-solution-image {
    height: 460px;
  }
}

@media (max-width: 991px) {
  .a2e-solution-section {
    padding: 80px 0;
  }

  .a2e-solution-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .a2e-solution-content {
    max-width: 100%;
  }

  .a2e-solution-title br {
    display: none;
  }

  .a2e-solution-btn {
    min-width: 100%;
    width: 100%;
    font-size: 18px;
    min-height: 58px;
    border-radius: 16px;
  }

  .a2e-solution-image {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .a2e-solution-container {
    width: min(100%, calc(100% - 24px));
  }

  .a2e-solution-badge {
    margin-bottom: 18px;
  }

  .a2e-solution-title {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .a2e-solution-desc p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .a2e-solution-tags {
    gap: 10px;
    margin-bottom: 22px;
  }

  .a2e-solution-tag {
    font-size: 12px;
    padding: 7px 13px;
  }

  .a2e-solution-image-wrap {
    border-radius: 22px;
  }

  .a2e-solution-image {
    height: 280px;
  }
}

/* =========================
   A2E SOLUTION ANIMATION
========================= */

.a2e-solution-fade-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: transform, opacity;
}

.a2e-solution-media-animate {
  opacity: 0;
  transform: translate3d(52px, 0, 0);
  will-change: transform, opacity;
}

/* left column fade nhẹ */
.a2e-solution-section.in-view .a2e-solution-fade-item {
  animation: a2eSolutionFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.a2e-solution-section.in-view .a2e-solution-delay-1 {
  animation-delay: 0.08s;
}

.a2e-solution-section.in-view .a2e-solution-delay-2 {
  animation-delay: 0.18s;
}

.a2e-solution-section.in-view .a2e-solution-delay-3 {
  animation-delay: 0.3s;
}

.a2e-solution-section.in-view .a2e-solution-delay-4 {
  animation-delay: 0.42s;
}

/* media phải: xuất hiện nhanh từ phải */
.a2e-solution-section.in-view .a2e-solution-media-animate {
  animation: a2eSolutionFadeRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}


@keyframes a2eSolutionFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes a2eSolutionFadeRight {
  from {
    opacity: 0;
    transform: translate3d(52px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes a2eSolutionFadeLeft {
  from {
    opacity: 0;
    transform: translate3d(-22px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/************************/

.a2e-address-section {
  padding: 110px 0;
  background: rgb(255, 255, 255);
  overflow: hidden;
}

.a2e-address-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.a2e-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 56px;
  align-items: center;
}

.a2e-address-content {
  max-width: 610px;
}

.a2e-address-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 122, 0, 0.18);
  color: #ff7a00;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(20, 40, 120, 0.08);
}

.a2e-address-badge__icon {
  font-size: 12px;
  line-height: 1;
}

.a2e-address-title {
  margin: 0 0 26px;
  color: #0b43b9;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.06;
  font-weight: 700;
}

.a2e-address-desc {
  margin-bottom: 30px;
}

.a2e-address-desc p {
  margin: 0 0 22px;
  color: #667085;
  font-size: 20px;
  line-height: 1.5;
}

.a2e-address-desc p:last-child {
  margin-bottom: 0;
}

.a2e-address-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 540px;
}

.a2e-address-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #dbe4f2;
  color: #4b68b3;
  font-size: 15px;
  font-weight: 400;
  box-shadow: 0 4px 12px rgba(28, 58, 120, 0.06);
}

.a2e-address-tag__icon {
  color: #ff7a00;
  font-size: 13px;
  line-height: 1;
}

.a2e-address-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.a2e-address-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.a2e-address-card {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 28px 28px 26px;
  box-shadow:
    0 12px 28px rgba(17, 24, 39, 0.07),
    0 4px 10px rgba(17, 24, 39, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.a2e-address-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.10),
    0 8px 14px rgba(17, 24, 39, 0.06);
}

.a2e-address-card--large {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.a2e-address-card-row .a2e-address-card {
  min-height: 220px;
}

.a2e-address-card--blue {
  border: 1px solid rgba(0, 55, 171, 0.12);
}

.a2e-address-card--orange {
  border: 1px solid rgba(255, 122, 0, 0.12);
}

.a2e-address-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.10);
}

.a2e-address-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.a2e-address-card--blue .a2e-address-card__icon {
  background: linear-gradient(135deg, rgba(0, 55, 171, 0.08), rgba(0, 55, 171, 0.15));
  color: #0b43b9;
}

.a2e-address-card--orange .a2e-address-card__icon {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 122, 0, 0.15));
  color: #ff7a00;
}

.a2e-address-card__title {
  margin: 0 0 10px;
  line-height: 1.35;
}

.a2e-address-card--large .a2e-address-card__title {font-size: 24px;}
.a2e-address-card-row .a2e-address-card__title {font-size: 18px;}

.a2e-address-card__text {
  margin: 0;
  color: oklch(0.446 0.03 25);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.a2e-address-card--blue .a2e-address-card__title {
  color: #0b43b9;
}

.a2e-address-card--orange .a2e-address-card__title {
  color: #ff7a00;
}

@media (max-width: 1199px) {
  .a2e-address-grid {
    grid-template-columns: 1fr 460px;
    gap: 36px;
  }

  .a2e-address-desc p {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .a2e-address-section {
    padding: 80px 0;
  }

  .a2e-address-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .a2e-address-content {
    max-width: 100%;
  }

  .a2e-address-cards {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .a2e-address-container {
    width: min(100%, calc(100% - 24px));
  }

  .a2e-address-badge {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .a2e-address-title {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .a2e-address-desc p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .a2e-address-tags {
    gap: 10px;
  }

  .a2e-address-tag {
    min-height: 38px;
    padding: 7px 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  /*.a2e-address-card-row {
    grid-template-columns: 1fr;
  }*/

  .a2e-address-card,
  .a2e-address-card--large,
  .a2e-address-card-row .a2e-address-card {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .a2e-address-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .a2e-address-card__title {
    font-size: 20px;
  }

  .a2e-address-card__text {
    font-size: 14px;
  }
}

/* =========================
   A2E ADDRESS ANIMATION
========================= */

.a2e-address-content-animate {
  opacity: 0;
  transform: translate3d(-42px, 0, 0);
  will-change: transform, opacity;
}

.a2e-address-cards-animate {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  will-change: transform, opacity;
}

.a2e-address-card-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: transform, opacity;
}

/* content bên trái */
.a2e-address-section.in-view .a2e-address-content-animate {
  animation: a2eAddressFadeLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* cards container */
.a2e-address-section.in-view .a2e-address-cards-animate {
  animation: a2eAddressFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

/* từng card xuất hiện so le */
.a2e-address-section.in-view .a2e-address-card-item:nth-child(1) {
  animation: a2eAddressCardUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.a2e-address-section.in-view .a2e-address-card-row .a2e-address-card-item:nth-child(1) {
  animation: a2eAddressCardUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.a2e-address-section.in-view .a2e-address-card-row .a2e-address-card-item:nth-child(2) {
  animation: a2eAddressCardUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

/* keyframes */

@keyframes a2eAddressFadeLeft {
  from {
    opacity: 0;
    transform: translate3d(-42px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes a2eAddressFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes a2eAddressCardUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/************************/

 * {
    box-sizing: border-box;
  }

  .hero-global {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a43c9 0%, #2453cf 45%, #2d57cf 100%);
    min-height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 100px;
    color: #fff;
  }

  .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
  }

  .hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    pointer-events: none;
    z-index: 1;
  }

  .hero-circle-top {
    width: 245px;
    height: 245px;
    right: 80px;
    top: 32px;
  }

  .hero-circle-bottom {
    width: 172px;
    height: 172px;
    left: 50px;
    bottom: 72px;
  }

  .hero-title {
    margin: 0;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    font-size: 128px;
  }

  .hero-subtitle {
    margin: 26px 0 0;
    font-size: 36px;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
  }

  .hero-actions {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero-btn {
    min-width: 280px;
    height: 68px;
    padding: 0 34px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .hero-btn-primary {
    background: #ff7a00;
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.25);
  }

  .hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(255, 122, 0, 0.32);
  }

  .hero-btn-outline {
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
  }

  .hero-btn-outline:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.13);
  }

  .hero-btn-arrow {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
  }

  .hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(4px);
  }

  .hero-stats {
    margin-top: 92px;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 40px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  }

  .hero-stat-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
  }

  .hero-stat-number {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    letter-spacing: -1px;
  }

  .hero-stat-label {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255,255,255,0.82);
  }

  /* CSS animation kiểu wow */
  .reveal-up {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
    will-change: opacity, transform;
  }

  .hero-global.is-visible .reveal-up {
    animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-global.is-visible .delay-1 { animation-delay: 0.15s; }
  .hero-global.is-visible .delay-2 { animation-delay: 0.35s; }
  .hero-global.is-visible .delay-3 { animation-delay: 0.55s; }
  .hero-global.is-visible .delay-4 { animation-delay: 0.75s; }
  .hero-global.is-visible .delay-5 { animation-delay: 0.95s; }
  .hero-global.is-visible .delay-6 { animation-delay: 1.15s; }

  @keyframes revealUp {
    0% {
      opacity: 0;
      transform: translate3d(0, 48px, 0);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @media (max-width: 1199px) {
    .hero-title {
      font-size: 72px;
    }

    .hero-subtitle {
      font-size: 24px;
    }
  }

  @media (max-width: 991px) {
    .hero-global {
      min-height: auto;
      padding: 80px 20px 70px;
    }

    .hero-title {
      font-size: 56px;
      letter-spacing: -1px;
    }

    .hero-subtitle {
      font-size: 22px;
    }

    .hero-stats {
      gap: 28px;
    }

    .hero-stat-number {
      font-size: 40px;
    }
  }

  @media (max-width: 767px) {
    .hero-title {
      font-size: 40px;
      line-height: 1.12;
    }

    .hero-subtitle {
      font-size: 18px;
      margin-top: 18px;
    }

    .hero-actions {
      margin-top: 36px;
      flex-direction: column;
      gap: 14px;
    }

    .hero-btn {
      width: 100%;
      min-width: 100%;
      max-width: 360px;
      height: 58px;
      border-radius: 16px;
      font-size: 16px;
    }

    .hero-stats {
      margin-top: 56px;
      grid-template-columns: 1fr;
      gap: 26px;
      max-width: 360px;
    }

    .hero-stat-icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      margin-bottom: 12px;
    }

    .hero-stat-number {
      font-size: 38px;
    }

    .hero-stat-label {
      font-size: 16px;
    }

    .hero-circle-top {
      width: 170px;
      height: 170px;
      right: -30px;
      top: 20px;
    }

    .hero-circle-bottom {
      width: 130px;
      height: 130px;
      left: -28px;
      bottom: 30px;
    }
  }

   * {
    box-sizing: border-box;
  }

  .why-a2e-section {
    position: relative;
    padding: 90px 20px 110px;
    background: #f5f6f8;
    overflow: hidden;
  }

  .why-a2e-container {
    /*max-width: 1240px;*/
    margin: 0 auto;
  }

  .why-a2e-head {
    text-align: center;
    margin-bottom: 72px;
  }

  .why-a2e-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 122, 0, 0.12);
    color: #ff7a00;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
    margin-bottom: 26px;
  }

  .why-a2e-badge-icon {
    font-size: 14px;
    line-height: 1;
  }

  .why-a2e-title {
    margin: 0;
    font-size: 78px;
    line-height: 1.06;
    letter-spacing: -2px;
    font-weight: 800;
    color: #0e43b7;
  }

  .why-a2e-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  .why-card {
    /*opacity: 0;
    transform: translate3d(-46px, 0, 0);*/
    height: 100%;
    perspective: 1000px; /* để rotateY có chiều sâu */
  }

  /*.why-card-inner {
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 28px;
    padding: 38px 38px 34px;
    min-height: 520px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  }*/

  .why-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 28px;
    padding: 38px 38px 34px;
    min-height: 520px;

    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08),
                0 2px 6px rgba(15, 23, 42, 0.04);

    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
    transform-style: preserve-3d;
  }

  /* phần list đẩy xuống để card đều */
  .why-card-list {
    margin-top: auto;
  }

  /* hover effect */
  .why-card:hover .why-card-inner {
    transform: translateY(-12px) rotateY(5deg);
    box-shadow: 
      0 22px 50px rgba(15, 23, 42, 0.18),
      0 6px 18px rgba(15, 23, 42, 0.08);
  }

  /* optional: hover icon nhẹ cho đẹp hơn */
  .why-card:hover .why-card-icon {
    transform: translateY(-2px) scale(1.04);
    transition: all 0.3s ease;
  }

  /* mobile disable rotate cho đỡ lỗi UX */
  @media (max-width: 767px) {
    .why-card:hover .why-card-inner {
      transform: translateY(-8px);
    }
  }

  .why-card-icon-wrap,
  .why-card-title,
  .why-card-list li {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  .why-card-icon-wrap {
    margin-bottom: 28px;
  }

  .why-card-icon {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    background: linear-gradient(180deg, #eef2ff 0%, #e9eefc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  }

  .why-card-icon svg {
    width: 40px;
    height: 40px;
    color: #1247bf;
  }

  .why-card-title {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 500;
    color: #1147bc;
    text-transform: uppercase;
  }

  .why-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .why-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 17px;
    line-height: 1.65;
    color: #5f6778;
  }

  .why-card-list li + li {
    margin-top: 18px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 4px;
    border-radius: 50%;
    border: 2px solid #ff7a00;
    position: relative;
  }

  .check-icon::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 3px;
    border-left: 2px solid #ff7a00;
    border-bottom: 2px solid #ff7a00;
    transform: rotate(-45deg);
    left: 5px;
    top: 5px;
  }

  /* heading animation */
  .reveal-fade,
  .reveal-up {
    opacity: 0;
  }

  .reveal-up {
    transform: translate3d(0, 32px, 0);
  }

  .why-a2e-section.in-view .reveal-fade {
    animation: fadeInSoft .8s ease forwards;
  }

  .why-a2e-section.in-view .reveal-up {
    animation: revealUpSoft .9s cubic-bezier(0.22, 1, 0.36, 1) .15s forwards;
  }

  /* card xuất hiện từ trái qua phải */
  .why-a2e-section.in-view .why-card:nth-child(1) {
    animation: cardSlideIn .7s cubic-bezier(0.22, 1, 0.36, 1) .2s forwards;
  }

  .why-a2e-section.in-view .why-card:nth-child(2) {
    animation: cardSlideIn .7s cubic-bezier(0.22, 1, 0.36, 1) .45s forwards;
  }

  .why-a2e-section.in-view .why-card:nth-child(3) {
    animation: cardSlideIn .7s cubic-bezier(0.22, 1, 0.36, 1) .7s forwards;
  }

  .why-a2e-section.in-view .why-card:nth-child(4) {
    animation: cardSlideIn .7s cubic-bezier(0.22, 1, 0.36, 1) .95s forwards;
  }

  /* text bên trong từng card xuất hiện tuần tự từ trên xuống dưới */
  .why-a2e-section.in-view .why-card:nth-child(1) .item-1 { animation: itemReveal .55s ease .85s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(1) .item-2 { animation: itemReveal .55s ease 1s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(1) .item-3 { animation: itemReveal .55s ease 1.15s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(1) .item-4 { animation: itemReveal .55s ease 1.3s forwards; }

  .why-a2e-section.in-view .why-card:nth-child(2) .item-1 { animation: itemReveal .55s ease 1.1s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(2) .item-2 { animation: itemReveal .55s ease 1.25s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(2) .item-3 { animation: itemReveal .55s ease 1.4s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(2) .item-4 { animation: itemReveal .55s ease 1.55s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(2) .item-5 { animation: itemReveal .55s ease 1.7s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(2) .item-6 { animation: itemReveal .55s ease 1.85s forwards; }

  .why-a2e-section.in-view .why-card:nth-child(3) .item-1 { animation: itemReveal .55s ease 1.35s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(3) .item-2 { animation: itemReveal .55s ease 1.5s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(3) .item-3 { animation: itemReveal .55s ease 1.65s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(3) .item-4 { animation: itemReveal .55s ease 1.8s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(3) .item-5 { animation: itemReveal .55s ease 1.95s forwards; }

  .why-a2e-section.in-view .why-card:nth-child(4) .item-1 { animation: itemReveal .55s ease 1.6s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(4) .item-2 { animation: itemReveal .55s ease 1.75s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(4) .item-3 { animation: itemReveal .55s ease 1.9s forwards; }
  .why-a2e-section.in-view .why-card:nth-child(4) .item-4 { animation: itemReveal .55s ease 2.05s forwards; }

  @keyframes fadeInSoft {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes revealUpSoft {
    from {
      opacity: 0;
      transform: translate3d(0, 32px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes cardSlideIn {
    from {
      opacity: 0;
      transform: translate3d(-46px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes itemReveal {
    from {
      opacity: 0;
      transform: translate3d(0, 26px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @media (max-width: 1200px) {
    .why-a2e-title {
      font-size: 62px;
    }

    .why-a2e-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-card-inner {
      min-height: 460px;
    }
  }

  @media (max-width: 767px) {
    .why-a2e-section {
      padding: 70px 16px 80px;
    }

    .why-a2e-head {
      margin-bottom: 42px;
    }

    .why-a2e-badge {
      font-size: 14px;
      min-height: 38px;
      padding: 8px 14px;
      margin-bottom: 18px;
    }

    .why-a2e-title {
      font-size: 42px;
      letter-spacing: -1px;
      line-height: 1.12;
    }

    .why-a2e-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .why-card-inner {
      min-height: auto;
      padding: 28px 22px 26px;
      border-radius: 22px;
    }

    .why-card-icon {
      width: 78px;
      height: 78px;
      border-radius: 20px;
    }

    .why-card-icon svg {
      width: 34px;
      height: 34px;
    }

    .why-card-title {
      font-size: 22px;
      margin-bottom: 18px;
    }

    .why-card-list li {
      font-size: 16px;
      line-height: 1.6;
    }
  }

   * {
    box-sizing: border-box;
  }

  .testimonial-section {
    padding: 90px 20px 110px;
    background: #f5f6f8;
    overflow: hidden;
  }

  .testimonial-container {
    max-width: 1320px;
    margin: 0 auto;
  }

  .testimonial-head {
    text-align: center;
    margin-bottom: 70px;
  }

  .testimonial-title {
    margin: 0;
    font-size: 78px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
    color: #384a9b;
  }

  .testimonial-title span {
    background: linear-gradient(90deg, #4a54a5 0%, #f37a1f 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .testimonial-subtitle {
    margin: 24px auto 0;
    max-width: 980px;
    font-size: 24px;
    line-height: 1.5;
    color: #5a6576;
    font-weight: 400;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    align-items: stretch;
  }

  .testimonial-card {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    height: 100%;
  }

  .testimonial-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8edf6;
    border-radius: 24px;
    padding: 34px 40px 34px;
    min-height: 345px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08),
                0 2px 6px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
  }

  .testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14),
                0 8px 18px rgba(15, 23, 42, 0.08);
  }

  .testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .testimonial-stars {
    display: flex;
    gap: 6px;
    color: #ff7a00;
    font-size: 18px;
    line-height: 1;
  }

  .testimonial-quote-mark {
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: rgba(243, 122, 31, 0.08);
    margin-top: 8px;
  }

  .testimonial-content {
    font-size: 20px;
    line-height: 1.55;
    color: #475266;
    margin-bottom: 32px;
    flex: 1;
  }

  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
  }

  .testimonial-avatar {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    background: linear-gradient(135deg, #2647a9 0%, #f37a1f 100%);
  }

  .testimonial-name {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
    color: #1844bf;
  }

  .testimonial-role {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.4;
    color: #7a8493;
    font-weight: 400;
  }

  .reveal-up {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  .testimonial-section.in-view .reveal-up {
    animation: testimonialRevealUp .8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .testimonial-section.in-view .delay-1 {
    animation-delay: .15s;
  }

  .testimonial-section.in-view .testimonial-card:nth-child(1) {
    animation: testimonialCardIn .75s cubic-bezier(0.22, 1, 0.36, 1) .2s forwards;
  }

  .testimonial-section.in-view .testimonial-card:nth-child(2) {
    animation: testimonialCardIn .75s cubic-bezier(0.22, 1, 0.36, 1) .45s forwards;
  }

  .testimonial-section.in-view .testimonial-card:nth-child(3) {
    animation: testimonialCardIn .75s cubic-bezier(0.22, 1, 0.36, 1) .7s forwards;
  }

  @keyframes testimonialRevealUp {
    from {
      opacity: 0;
      transform: translate3d(0, 28px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes testimonialCardIn {
    from {
      opacity: 0;
      transform: translate3d(-50px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @media (max-width: 1200px) {
    .testimonial-title {
      font-size: 60px;
    }

    .testimonial-subtitle {
      font-size: 22px;
    }

    .testimonial-grid {
      gap: 24px;
    }

    .testimonial-card-inner {
      padding: 30px 28px;
    }

    .testimonial-content {
      font-size: 18px;
    }
  }

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

    .testimonial-card-inner {
      min-height: auto;
    }
  }

  @media (max-width: 767px) {
    .testimonial-section {
      padding: 70px 16px 80px;
    }

    .testimonial-head {
      margin-bottom: 42px;
    }

    .testimonial-title {
      font-size: 42px;
      line-height: 1.12;
      letter-spacing: -1px;
    }

    .testimonial-subtitle {
      font-size: 18px;
      margin-top: 16px;
    }

    .testimonial-grid {
      gap: 18px;
    }

    .testimonial-card-inner {
      border-radius: 20px;
      padding: 24px 20px;
    }

    .testimonial-stars {
      font-size: 16px;
      gap: 4px;
    }

    .testimonial-quote-mark {
      font-size: 48px;
    }

    .testimonial-content {
      font-size: 17px;
      margin-bottom: 24px;
    }

    .testimonial-avatar {
      width: 52px;
      height: 52px;
      min-width: 52px;
      font-size: 24px;
    }

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

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

    .testimonial-card:hover .testimonial-card-inner {
      transform: translateY(-8px) scale(1.01);
    }
  }

  .cta-section {
    padding: 110px 20px 120px;
    background: #fff;
    text-align: center;
    overflow: hidden;
  }

  .cta-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  /* badge */
  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 122, 0, 0.15);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    color: #1e4db7;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 26px;
  }

  /* 🔥 icon rotate liên tục */
  .cta-badge-icon {
    display: inline-block;
    color: #ff7a00;
    animation: spin360 3s linear infinite;
  }

  @keyframes spin360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* title */
  .cta-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;
    color: rgb(0, 55, 171);
  }

  .cta-subtitle {
    margin: 28px auto 0;
    max-width: 820px;
    font-size: 24px;
    line-height: 1.6;
    color: #5a6576;
  }

  /* button */
  .cta-action {
    margin-top: 50px;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 44px;
    border-radius: 24px;
    background: #ff7a00;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 18px 40px rgba(255, 122, 0, 0.25);
  }

  .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(255, 122, 0, 0.35);
  }

  .cta-arrow {
    font-size: 26px;
    transition: transform 0.3s ease;
  }

  .cta-btn:hover .cta-arrow {
    transform: translateX(6px);
  }

  /* note */
  .cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: oklch(0.551 0.027 264.364);
  }

  /* animation */
  .reveal-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  .cta-section.in-view .reveal-up {
    animation: ctaRevealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .cta-section.in-view .delay-1 { animation-delay: 0.2s; }
  .cta-section.in-view .delay-2 { animation-delay: 0.4s; }
  .cta-section.in-view .delay-3 { animation-delay: 0.6s; }
  .cta-section.in-view .delay-4 { animation-delay: 0.8s; }

  @keyframes ctaRevealUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  /* responsive */
  @media (max-width: 1200px) {
    .cta-title {
      font-size: 60px;
    }
    .cta-subtitle {
      font-size: 22px;
    }
  }

  @media (max-width: 767px) {
    .cta-section {
      padding: 80px 16px;
    }

    .cta-title {
      font-size: 40px;
      line-height: 1.2;
      letter-spacing: -1px;
    }

    .cta-subtitle {
      font-size: 18px;
      margin-top: 18px;
    }

    .cta-btn {
      width: 100%;
      max-width: 320px;
      padding: 16px 20px;
      font-size: 18px;
      border-radius: 18px;
    }

    .cta-note {
      font-size: 14px;
    }
  }

/*=============================*/
/* PAGE BUSINESS
/*==============================*/

.a2e-export-hero{
  position:relative;
  overflow:hidden;
  background:#ffffff;
  padding:56px 0 15px;
  min-height:calc(100vh - 90px);
}

.a2e-export-hero .a2e-sp-t {font-size: 14px; color: rgb(0, 55, 171); font-weight: 300;}

.a2e-export-hero__grid-bg{
  position:absolute;
  inset:0;
  opacity:.02;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(0, 55, 171, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 55, 171, 0.25) 1px, transparent 1px);
  background-size:64px 64px;
}

.a2e-export-hero__blur{
  position:absolute;
  border-radius:999px;
  pointer-events:none;
}

.a2e-export-hero__blur--blue{
  top:-100px;
  left:-60px;
  width:480px;
  height:480px;
  background:rgba(0, 55, 171, 0.07);
  filter:blur(130px);
}

.a2e-export-hero__blur--orange{
  right:-40px;
  bottom:-60px;
  width:380px;
  height:380px;
  background:rgba(255, 115, 0, 0.06);
  filter:blur(110px);
}

.a2e-export-hero__container{
  max-width:1840px;
  margin:0 auto;
  padding:0 48px;
  position:relative;
  z-index:1;
}

.a2e-export-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1.05fr);
  gap:54px;
  align-items:stretch;
  min-height:calc(100vh - 120px);
}

.a2e-export-hero__content,
.a2e-export-hero__media{
  height:100%;
}

.a2e-export-hero__content{
  padding-left:2px;
  display:flex;
  align-items:center;
}

.a2e-export-hero__content-inner{
  width:100%;
}

.a2e-export-hero__features .ft-sp-text {font-size: 14px; color: rgb(0, 55, 171); font-weight: 400;}

.a2e-export-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:42px;
  padding:0 18px;
  border:1.5px solid #c8d7f6;
  border-radius:999px;
  background:rgba(255,255,255,0.78);
  color:#4f73c6;
  font-size:16px;
  font-weight:600;
  margin-bottom:34px;
  box-shadow:0 8px 24px rgba(26, 71, 170, 0.05);
}

.a2e-export-hero__badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff8a00;
  flex:0 0 auto;
}

.a2e-export-hero__title{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:0.95;
}

.a2e-export-hero__title-blue{
  color:#0d46c3;
  font-weight: 700;
  font-size:72px;
}

.a2e-export-hero__title-orange{
  color:#ff831c;
  font-size:72px;
  font-weight: 700;
}

.a2e-export-hero__desc{
  margin-top:36px;
  max-width:860px;
  color:rgb(0, 55, 171);
  font-size:18px;
  line-height:1.65;
  font-weight:400;
}

.a2e-export-hero__features{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  margin-top:28px;
}

.a2e-export-hero__feature{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#5670b8;
  font-size:16px;
  font-weight:600;
}

.a2e-export-hero__feature-icon{
  width:18px;
  height:18px;
  color:#ff8a00;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.a2e-export-hero__feature-icon svg{
  width:18px;
  height:18px;
}

.a2e-export-hero__actions{
  margin-top:36px;
}

.a2e-export-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 30px;
  border-radius:999px;
  background:#0d46c3;
  color:#fff !important;
  font-size:18px;
  text-decoration:none !important;
  box-shadow:0 16px 34px rgba(13, 70, 195, 0.22);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.a2e-export-hero__btn:hover{
  background:#0b3fb1;
  transform:translateY(-1px);
  box-shadow:0 20px 38px rgba(13, 70, 195, 0.26);
}

.a2e-export-hero__btn-icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.a2e-export-hero__btn-icon svg{
  width:18px;
  height:18px;
}

.a2e-export-hero__media{
  position:relative;
  display:flex;
}

.a2e-export-hero__image-wrap{
  position:relative;
  width:100%;
  height:100%;
  border-radius:28px;
  overflow:hidden;
  /*box-shadow:0 20px 60px rgba(32, 65, 124, 0.12);*/
  background:#d9e8f6;
}

.a2e-export-hero__image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.a2e-export-hero__card{
  position:absolute;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(8px);
  box-shadow:0 14px 32px rgba(32, 65, 124, 0.12);
  z-index:2;
}

.a2e-export-hero__card--top{
  top:26px;
  right:24px;
  min-width:216px;
  padding:18px 20px 16px;
  border-radius:24px;
}

.a2e-export-hero__card-big{
  color:rgb(0, 55, 171);
  font-size:24px;
  line-height:1;
  font-weight:400;
  margin-bottom:8px;
}

.a2e-export-hero__card-small{
  color:rgb(0, 55, 171);
  font-size:12px;
  line-height:1.45;
  font-weight:400;
}

.a2e-export-hero__card--bottom{
  left:24px;
  right:24px;
  bottom:24px;
  min-height:78px;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 18px;
}

.a2e-export-hero__market-label{
  color:rgb(0, 55, 171);
  font-size:12px;
  line-height:1.2;
  letter-spacing:0.12em;
  margin-bottom:8px;
}

.a2e-export-hero__market-value{
  color:rgb(0, 55, 171);
  font-size:16px;
  line-height:1.3;
}

.a2e-export-hero__country-list{
  display:flex;
  align-items:center;
  gap:0;
  flex-shrink:0;
}

.a2e-export-hero__country-list span{
  width:34px;
  height:34px;
  margin-left:-4px;
  border-radius:50%;
  background:#fff;
  border:2px solid #e8eefb;
  color:rgb(0, 55, 171);
  font-size:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(20, 40, 90, 0.05);
}

.a2e-export-hero__country-list span:first-child{
  margin-left:0;
}

@media (max-width: 1399.98px){
  .a2e-export-hero__title-blue{
    font-size:68px;
  }

  .a2e-export-hero__title-orange{
    font-size:66px;
  }

  .a2e-export-hero__desc{
    font-size:19px;
  }
}

@media (max-width: 1199.98px){
  .a2e-export-hero{
    padding:42px 0 58px;
    min-height:auto;
  }

  .a2e-export-hero__container{
    padding:0 28px;
  }

  .a2e-export-hero__grid{
    grid-template-columns:1fr;
    gap:34px;
    min-height:auto;
  }

  .a2e-export-hero__content,
  .a2e-export-hero__media{
    height:auto;
  }

  .a2e-export-hero__title-blue{
    font-size:58px;
  }

  .a2e-export-hero__title-orange{
    font-size:56px;
  }

  .a2e-export-hero__image-wrap{
    min-height:520px;
    height:520px;
  }
}

@media (max-width: 767.98px){
  .a2e-export-hero{
    padding:24px 0 42px;
  }

  .a2e-export-hero__container{
    padding:0 16px;
  }

  .a2e-export-hero__blur--blue{
    top:-120px;
    left:-110px;
    width:360px;
    height:360px;
    filter:blur(100px);
  }

  .a2e-export-hero__blur--orange{
    right:-70px;
    bottom:-90px;
    width:260px;
    height:260px;
    filter:blur(90px);
  }

  .a2e-export-hero__grid-bg{
    background-size:40px 40px;
  }

  .a2e-export-hero__badge{
    font-size:13px;
    min-height:38px;
    padding:0 14px;
    margin-bottom:22px;
  }

  .a2e-export-hero__title-blue{
    font-size:40px;
  }

  .a2e-export-hero__title-orange{
    font-size:38px;
  }

  .a2e-export-hero__desc{
    margin-top:20px;
    font-size:16px;
    line-height:1.7;
  }

  .a2e-export-hero__features{
    gap:12px 18px;
    margin-top:20px;
  }

  .a2e-export-hero__feature{
    font-size:14px;
  }

  .a2e-export-hero__actions{
    margin-top:26px;
  }

  .a2e-export-hero__btn{
    width:100%;
    min-height:52px;
    font-size:16px;
  }

  .a2e-export-hero__image-wrap{
    min-height:420px;
    height:420px;
    border-radius:20px;
  }

  .a2e-export-hero__card--top{
    top:16px;
    right:16px;
    min-width:170px;
    padding:14px 16px;
    border-radius:18px;
  }

  .a2e-export-hero__card-big{
    font-size:24px;
  }

  .a2e-export-hero__card-small{
    font-size:12px;
  }

  .a2e-export-hero__card--bottom{
    left:16px;
    right:16px;
    bottom:16px;
    padding:14px 14px;
    border-radius:18px;
    align-items:flex-start;
    flex-direction:column;
  }

  .a2e-export-hero__market-value{
    font-size:15px;
  }

  .a2e-export-hero__country-list span{
    width:30px;
    height:30px;
    font-size:11px;
  }
}

.a2e-stats-section {
  border-top: 2px solid #f5f5f5;
  padding: 48px 20px;
}

.a2e-stats-container {
  max-width: 1600px;
  margin: 0 auto;
}

.a2e-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.a2e-stat-item {
  text-align: center;
}

.a2e-stat-number {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 10px;
  white-space: nowrap;
}

.a2e-stat-number .blue {
  color: #0b43b8;
  font-size: 48px;
}

.a2e-stat-number .orange {
  color: #ff6a00;
  font-size: 48px;
}

.a2e-stat-number .text-normal {
  font-weight: 400;
}

.a2e-stat-label {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0b43b8;
  line-height: 1.4;
}

.a2e-stat-label .highlight {
  background: #ff6a00;
  color: #fff;
  padding: 0 4px;
  display: inline-block;
  line-height: 1.1;
}

/* Tablet */
@media (max-width: 1024px) {
  .a2e-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .a2e-stat-number {
    font-size: 56px;
  }

  .a2e-stat-label {
    font-size: 16px;
    letter-spacing: 2px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .a2e-stats-section {
    padding: 36px 16px;
  }

  .a2e-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .a2e-stat-number .blue {font-size: 40px}

  .a2e-stat-number {
    font-size: 48px;
  }

  .a2e-stat-label {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
}


.a2e-marquee-bar {
  position: relative;
  overflow: hidden;
  background: #0037ab;
  padding: 20px 0;
  width: 100%;
}

.a2e-marquee-track {
  display: flex;
  width: max-content;
  animation: a2eMarqueeMove 36s linear infinite;
}

.a2e-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.a2e-marquee-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 300;
  margin: 0 40px 0 14px;
}

.a2e-marquee-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7a00;
  flex: 0 0 10px;
}

@keyframes a2eMarqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* hover thì pause, thích thì giữ hoặc xoá */
.a2e-marquee-bar:hover .a2e-marquee-track {
  animation-play-state: paused;
}

@media (max-width: 1024px) {
  .a2e-marquee-bar {
    padding: 16px 0;
  }

  .a2e-marquee-item {
    font-size: 13px;
    letter-spacing: 0.14em;
    margin: 0 22px;
  }

  .a2e-marquee-dot {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }

  .a2e-marquee-track {
    animation-duration: 18s;
  }
}

@media (max-width: 767px) {
  .a2e-marquee-item {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin: 0 16px;
  }

  .a2e-marquee-track {
    animation-duration: 14s;
  }
}


.a2e-strategy-section {
  padding: 100px 0;
  background-color: rgb(248, 250, 252);
  font-family: "Inter", sans-serif;
}

.a2e-strategy-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.a2e-strategy-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.a2e-strategy-media {
  position: relative;
}

.a2e-strategy-image-wrap {
  position: relative;
  max-width: 700px;
}

.a2e-strategy-image {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.a2e-strategy-stat-card {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 235px;
  background: #ffffff;
  border-radius: 24px;
  padding: 18px 20px 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.a2e-strategy-stat-label {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

.a2e-strategy-stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.a2e-strategy-stat-number {
  font-size: 36px;
  line-height: 1;
  color: rgb(0, 55, 171);
}

.a2e-strategy-stat-status {
  font-size: 14px;
  color: #16a34a;
  white-space: nowrap;
}

.a2e-strategy-stat-status > svg {display: inline !important;}

.a2e-strategy-stat-bar {
  display: flex;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(0, 55, 171), rgb(255, 115, 0));
}

.a2e-strategy-stat-bar-blue {
  width: 55%;
  background: #0a43c9;
}

.a2e-strategy-stat-bar-orange {
  width: 45%;
  background: #f97316;
}

/* RIGHT */
.a2e-strategy-content {
  max-width: 620px;
}

.a2e-strategy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e6ecfb;
  color: #2e5bd1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.a2e-strategy-title {
  margin: 0 0 26px;
  font-size: 48px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #09162f;
}

.a2e-strategy-title-blue {
  color: #1a4fe0;
}

.a2e-strategy-title-orange {
  color: #e16f1e;
}

.a2e-strategy-desc {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.8;
  color: #5d6b82;
  max-width: 95%;
}

.a2e-strategy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 18px;
}

.a2e-strategy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #344256;
  font-size: 16px;
  line-height: 1.6;
}

.a2e-strategy-check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: #1447c8;
  margin-top: 3px;
}

.a2e-strategy-check svg {
  display: block;
  width: 100%;
  height: 100%;
}

.a2e-strategy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0a43c9;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(10, 67, 201, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.a2e-strategy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 67, 201, 0.28);
  background: #0839ac;
}

.a2e-strategy-btn-arrow {
  font-size: 18px;
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .a2e-strategy-grid {
    gap: 42px;
  }

  .a2e-strategy-image {
    height: 460px;
  }

  .a2e-strategy-stat-card {
    right: 16px;
    bottom: -24px;
  }

  .a2e-strategy-title {
    font-size: clamp(36px, 4vw, 58px);
  }
}

@media (max-width: 991px) {
  .a2e-strategy-section {
    padding: 72px 0;
  }

  .a2e-strategy-container {
    width: min(100%, calc(100% - 32px));
  }

  .a2e-strategy-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .a2e-strategy-media,
  .a2e-strategy-content {
    max-width: 100%;
  }

  .a2e-strategy-image-wrap {
    max-width: 100%;
  }

  .a2e-strategy-image {
    height: 460px;
  }

  .a2e-strategy-stat-card {
    right: 16px;
    bottom: -18px;
  }

  .a2e-strategy-desc {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .a2e-strategy-section {
    padding: 56px 0;
  }

  .a2e-strategy-container {
    width: min(100%, calc(100% - 20px));
  }

  .a2e-strategy-grid {
    gap: 42px;
  }

  .a2e-strategy-image {
    height: 320px;
    border-radius: 22px;
  }

  .a2e-strategy-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
    border-radius: 20px;
  }

  .a2e-strategy-badge {
    margin-bottom: 18px;
    font-size: 12px;
    min-height: 30px;
    padding: 7px 14px;
  }

  .a2e-strategy-title {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.12;
  }

  .a2e-strategy-desc {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .a2e-strategy-list {
    gap: 14px;
    margin-bottom: 28px;
  }

  .a2e-strategy-list li {
    font-size: 15px;
    gap: 12px;
  }

  .a2e-strategy-btn {
    min-height: 50px;
    padding: 0 22px;
    font-size: 17px;
  }

  .a2e-strategy-stat-number {
    font-size: 42px;
  }
}

.a2e-advantage {
  padding: 100px 0;
}

.a2e-container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEAD */
.a2e-advantage-head {
  margin-bottom: 60px;
}

.a2e-advantage-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  color: #ff6a00;
  font-size: 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
  background-color: rgba(255, 115, 0, 0.094);
}

.a2e-advantage-title {
  font-size: 48px;
  font-weight: 700;
  color: #0b1a3a;
}

.a2e-advantage-title span {
  background: linear-gradient(90deg, #1d4ed8, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.a2e-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD BASE */
.a2e-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

/* Hover lift */
.a2e-card:hover {
  transform: translateY(-10px);
}

/* TOP */
.a2e-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.a2e-card-index {
  font-size: 60px;
  color: #e5e7eb;
  font-weight: 400;
}

.a2e-card-icon {
  font-size: 20px;
  opacity: 0.8;
}

/* TEXT */
.a2e-card-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  color: #0037ab;
}

.a2e-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.a2e-card-desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.a2e-card-link {
  font-size: 14px;
  color: #94a3b8;
}

/* =========================
   BLUE HOVER (card 1,2)
========================= */
.a2e-card--blue:hover {
  background: #0b3aa5;
  color: #fff;
  box-shadow: 0 20px 40px rgba(11, 58, 165, 0.3);
}

.a2e-card--blue:hover .a2e-card-desc,
.a2e-card--blue:hover .a2e-card-link {
  color: rgba(255,255,255,0.8);
}

.a2e-card--blue:hover .a2e-card-index {
  color: rgba(255,255,255,0.2);
}

.a2e-card--blue:hover .a2e-card-label {
  color: #fff;
}

/* =========================
   ORANGE HOVER (card 3,4)
========================= */
.a2e-card--orange:hover {
  background: linear-gradient(135deg, #ff7a00, #ff5a00);
  color: #fff;
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.35);
}

.a2e-card--orange:hover .a2e-card-desc,
.a2e-card--orange:hover .a2e-card-link {
  color: rgba(255,255,255,0.85);
}

.a2e-card--orange:hover .a2e-card-index {
  color: rgba(255,255,255,0.25);
}

.a2e-card--orange:hover .a2e-card-label {
  color: #fff;
}

/* =========================
   ICON animation
========================= */
.a2e-card:hover .a2e-card-icon {
  /*transform: scale(1.2) rotate(6deg);*/
  transition: all 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .a2e-advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.a2e-case-study {
  position: relative;
  padding: 72px 0 90px;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.a2e-case-study__top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #f97316;
}

.a2e-case-study__container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.a2e-case-study__grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 72px;
}

/* LEFT */
.a2e-case-study__content {
  max-width: 760px;
}

.a2e-case-study__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 4px 18px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 999px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  margin-bottom: 34px;
}

.a2e-case-study__quote {
  margin: 0;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #123eb5;
}

.a2e-case-study__quote span {
  display: inline;
}

.a2e-case-study__quote-blue {
  color: #123eb5;
}

.a2e-case-study__quote-orange {
  color: #f97316;
}

.a2e-case-study__author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.a2e-case-study__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0f43c6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  box-shadow: 0 10px 24px rgba(15, 67, 198, 0.18);
}

.a2e-case-study__author-name {
  font-size: 16px;
  line-height: 1.2;
  color: #123eb5;
  font-weight: 400;
  margin-bottom: 4px;
}

.a2e-case-study__author-role {
  font-size: 16px;
  line-height: 1.4;
  color: #123eb5;
  font-weight: 400;
}

.a2e-case-study__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(18, 62, 181, 0.12);
}

.a2e-case-study__stat-value {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #f97316;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.a2e-case-study__stat-label {
  font-size: 14px;
  line-height: 1.45;
  color: #123eb5;
  font-weight: 400;
}

/* RIGHT */
.a2e-case-study__media {
  position: relative;
}

.a2e-case-study__image-wrap {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.a2e-case-study__image {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.a2e-case-study__overlay-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 22px 28px 24px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.a2e-case-study__overlay-label {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #123eb5;
  margin-bottom: 5px;
  font-weight: 500;
}

.a2e-case-study__overlay-title {
  font-size: 16px;
  line-height: 1.4;
  color: #123eb5;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 1279px) {
  .a2e-case-study__grid {
    gap: 48px;
  }

  .a2e-case-study__image {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .a2e-case-study {
    padding: 60px 0 72px;
  }

  .a2e-case-study__container {
    width: min(100%, calc(100% - 32px));
  }

  .a2e-case-study__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .a2e-case-study__content {
    max-width: 100%;
  }

  .a2e-case-study__image {
    height: 460px;
  }
}

@media (max-width: 767px) {
  .a2e-case-study {
    padding: 48px 0 56px;
  }

  .a2e-case-study__container {
    width: min(100%, calc(100% - 20px));
  }

  .a2e-case-study__badge {
    min-height: 36px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 12px;
  }

  .a2e-case-study__quote {
    font-size: 28px;
    line-height: 1.42;
  }

  .a2e-case-study__author {
    gap: 14px;
    margin-top: 30px;
  }

  .a2e-case-study__avatar {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .a2e-case-study__author-name {
    font-size: 18px;
  }

  .a2e-case-study__author-role {
    font-size: 15px;
  }

  .a2e-case-study__stats {
    gap: 22px;
    margin-top: 28px;
    padding-top: 24px;
  }

  .a2e-case-study__stat-value {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .a2e-case-study__stat-label {
    font-size: 15px;
  }

  .a2e-case-study__image-wrap {
    border-radius: 24px;
  }

  .a2e-case-study__image {
    height: 320px;
  }

  .a2e-case-study__overlay-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px 18px 18px;
    border-radius: 18px;
  }

  .a2e-case-study__overlay-label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .a2e-case-study__overlay-title {
    font-size: 16px;
  }
}

.a2e-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .3s ease;
}

/* SVG */
.a2e-feature-icon svg {
  width: 22px;
  height: 22px;
  transition: all .3s ease;
}

/* BLUE (giống card 1,2) */
.a2e-feature-icon--blue {
  background: #eaf1ff;
}

.a2e-feature-icon--blue svg {
  color: #1d4ed8;
}

/* ORANGE (giống card 3,4) */
.a2e-feature-icon--orange {
  background: #fff3e8;
}

.a2e-feature-icon--orange svg {
  color: #f97316;
}

/* 🔥 HOVER giống hình */
.a2e-feature-card:hover .a2e-feature-icon--blue {
  background: #1d4ed8;
  /*transform: translateY(-2px);
  box-shadow: 0 8p*/x 18px rgba(29, 78, 216, 0.25);
}

.a2e-feature-card:hover .a2e-feature-icon--blue svg {
  color: #fff;
}

.a2e-feature-card:hover .a2e-feature-icon--orange {
  background: #f97316;
  /*transform: translateY(-2px);
  box-shad*/ow: 0 8px 18px rgba(249, 115, 22, 0.25);
}

.a2e-feature-card:hover .a2e-feature-icon--orange svg {
  color: #fff;
}


/*===========================*/
/* PAGE CAREER NEW
/*===========================*/

.a2e-export-hero{
  position:relative;
  overflow:hidden;
  background:#ffffff;
  padding:0 0 5px;
  min-height:calc(100vh - 90px);
}

.a2e-export-hero .a2e-sp-t {font-size: 14px; color: rgb(0, 55, 171); font-weight: 300;}

.a2e-export-hero__grid-bg{
  position:absolute;
  inset:0;
  opacity:.02;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(0, 55, 171, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 55, 171, 0.25) 1px, transparent 1px);
  background-size:64px 64px;
}

.a2e-export-hero__blur{
  position:absolute;
  border-radius:999px;
  pointer-events:none;
  z-index: 999;
}

.a2e-export-hero__blur--blue{
  top:-100px;
  left:-60px;
  width:480px;
  height:480px;
  background:rgba(0, 55, 171, 0.07);
  filter:blur(130px);
}

.a2e-export-hero__blur--orange{
  right:-40px;
  bottom:-60px;
  width:380px;
  height:380px;
  background:rgba(255, 115, 0, 0.06);
  filter:blur(110px);
}

.a2e-export-hero__container{
  max-width:1840px;
  margin:0 auto;
  padding:0 48px;
  position:relative;
  z-index:1;
}

.a2e-export-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1.05fr);
  gap:54px;
  align-items:stretch;
  min-height:calc(100vh - 120px);
}

.a2e-export-hero__content,
.a2e-export-hero__media{
  height:100%;
}

.a2e-export-hero__content{
  padding-left:2px;
  display:flex;
  align-items:center;
}

.a2e-export-hero__content-inner{
  width:100%;
}

.a2e-export-hero__features .ft-sp-text {font-size: 14px; color: rgb(0, 55, 171); font-weight: 400;}

.a2e-export-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:42px;
  padding:0 18px;
  border:1.5px solid #c8d7f6;
  border-radius:999px;
  background:rgba(255,255,255,0.78);
  color:#4f73c6;
  font-size:16px;
  font-weight:600;
  margin-bottom:34px;
  box-shadow:0 8px 24px rgba(26, 71, 170, 0.05);
}

.a2e-export-hero__badge.badge-pink {
  border-color: rgba(255, 115, 0, 0.25);
  background-color: rgba(255, 115, 0, 0.082);
}

.a2e-export-hero__badge.badge-pink .a2e-sp-t {color: rgb(255, 115, 0) !important}

.a2e-export-hero__badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff8a00;
  flex:0 0 auto;
}

.a2e-export-hero__title{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:0.95;
}

.a2e-export-hero__title-blue, .a2e-export-hero__title-gray{
  color:#0d46c3;
  font-weight: 700;
  font-size:72px;
}

.a2e-export-hero__title-gray {
  color: rgba(0, 55, 171, 0.376);
}

.a2e-export-hero__title-orange{
  color:#ff831c;
  font-size:72px;
  font-weight: 700;
}

.a2e-export-hero__desc{
  margin-top:36px;
  max-width:860px;
  color:rgb(0, 55, 171);
  font-size:18px;
  line-height:1.65;
  font-weight:400;
}

.a2e-export-hero__features{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  margin-top:28px;
}

.a2e-export-hero__feature{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#5670b8;
  font-size:16px;
  font-weight:600;
}

.a2e-export-hero__feature-icon{
  width:18px;
  height:18px;
  color:#ff8a00;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.a2e-export-hero__feature-icon svg{
  width:18px;
  height:18px;
}

.a2e-export-hero__actions{
  margin-top:36px;
}

.a2e-export-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 30px;
  border-radius:999px;
  background:#0d46c3;
  color:#fff !important;
  font-size:18px;
  text-decoration:none !important;
  box-shadow:0 16px 34px rgba(13, 70, 195, 0.22);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.a2e-export-hero__btn:hover{
  background:#0b3fb1;
  transform:translateY(-1px);
  box-shadow:0 20px 38px rgba(13, 70, 195, 0.26);
}

.a2e-export-hero__btn-icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.a2e-export-hero__btn-icon svg{
  width:18px;
  height:18px;
}

.a2e-export-hero__media{
  position:relative;
  display:flex;
}

.a2e-export-hero__image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.a2e-export-hero__card{
  position:absolute;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(8px);
  box-shadow:0 14px 32px rgba(32, 65, 124, 0.12);
  z-index:2;
}

.a2e-export-hero__card--top{
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  top:26px;
  right:24px;
  min-width:216px;
  padding:18px 20px 16px;
  border-radius:24px;
}

.a2e-export-hero__card--bottom{
  left:24px;
  right:24px;
  bottom:24px;
  min-height:78px;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 18px;
}

.a2e-export-hero__market-label{
  color:rgb(0, 55, 171);
  font-size:12px;
  line-height:1.2;
  letter-spacing:0.12em;
  margin-bottom:8px;
}

.a2e-export-hero__market-value{
  color:rgb(0, 55, 171);
  font-size:16px;
  line-height:1.3;
}

.a2e-export-hero__country-list{
  display:flex;
  align-items:center;
  gap:0;
  flex-shrink:0;
}

.a2e-export-hero__country-list span{
  width:34px;
  height:34px;
  margin-left:-4px;
  border-radius:50%;
  background:#fff;
  border:2px solid #e8eefb;
  color:rgb(0, 55, 171);
  font-size:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(20, 40, 90, 0.05);
}

.a2e-export-hero__country-list span:first-child{
  margin-left:0;
}

@media (max-width: 1399.98px){
  .a2e-export-hero__title-blue, .a2e-export-hero__title-gray{
    font-size:68px;
  }

  .a2e-export-hero__title-orange{
    font-size:66px;
  }

  .a2e-export-hero__desc{
    font-size:19px;
  }
}

@media (max-width: 1199.98px){
  .a2e-export-hero{
    padding:42px 0 58px;
    min-height:auto;
  }

  .a2e-export-hero__container{
    padding:0 28px;
  }

  .a2e-export-hero__grid{
    grid-template-columns:1fr;
    gap:34px;
    min-height:auto;
  }

  .a2e-export-hero__content,
  .a2e-export-hero__media{
    height:auto;
  }

  .a2e-export-hero__title-blue, .a2e-export-hero__title-gray{
    font-size:58px;
  }

  .a2e-export-hero__title-orange{
    font-size:56px;
  }

  .a2e-export-hero__image-wrap{
    min-height:520px;
    height:520px;
  }
}

@media (max-width: 767.98px){
  .a2e-export-hero{
    padding:24px 0 42px;
  }

  .a2e-export-hero__container{
    padding:0 16px;
  }

  .a2e-export-hero__blur--blue{
    top:-120px;
    left:-110px;
    width:360px;
    height:360px;
    filter:blur(100px);
  }

  .a2e-export-hero__blur--orange{
    right:-70px;
    bottom:-90px;
    width:260px;
    height:260px;
    filter:blur(90px);
  }

  .a2e-export-hero__grid-bg{
    background-size:40px 40px;
  }

  .a2e-export-hero__badge{
    font-size:13px;
    min-height:38px;
    padding:0 14px;
    margin-bottom:22px;
  }

  .a2e-export-hero__title-blue, .a2e-export-hero__title-gray{
    font-size:40px;
  }

  .a2e-export-hero__title-orange{
    font-size:38px;
  }

  .a2e-export-hero__desc{
    margin-top:20px;
    font-size:16px;
    line-height:1.7;
  }

  .a2e-export-hero__features{
    gap:12px 18px;
    margin-top:20px;
  }

  .a2e-export-hero__feature{
    font-size:14px;
  }

  .a2e-export-hero__actions{
    margin-top:26px;
  }

  .a2e-export-hero__btn{
    width:100%;
    min-height:52px;
    font-size:16px;
  }

  .a2e-export-hero__image-wrap{
    min-height:420px;
    height:420px;
    border-radius:20px;
  }

  .a2e-export-hero__card--top{
    top:16px;
    right:16px;
    min-width:170px;
    padding:14px 16px;
    border-radius:18px;
  }

  .a2e-export-hero__card-big{
    font-size:24px;
  }

  .a2e-export-hero__card-small{
    font-size:12px;
  }

  .a2e-export-hero__card--bottom{
    left:16px;
    right:16px;
    bottom:16px;
    padding:14px 14px;
    border-radius:18px;
    align-items:flex-start;
    flex-direction:column;
  }

  .a2e-export-hero__market-value{
    font-size:15px;
  }

  .a2e-export-hero__country-list span{
    width:30px;
    height:30px;
    font-size:11px;
  }
}

.stats-box {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 34px 24px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.06);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.stats-box .stats-item {
  flex: 1 1 0;
  text-align: center;
}

.stats-box .stats-number {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #ff6a00;
  letter-spacing: -0.02em;
}

.stats-box .stats-label {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
  color: rgb(0, 55, 171);
}

@media (max-width: 991px) {
  .stats-box {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px 18px;
    border-radius: 22px;
    gap: 10px;
  }

  .stats-box .stats-number {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .stats-box .stats-label {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .stats-box {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px 10px;
    border-radius: 18px;
    gap: 6px;
  }

  .stats-box .stats-number {
    font-size: 22px;
  }

  .stats-box .stats-label {
    font-size: 12px;
  }
}

.a2e-why {
  padding: 80px 0;
  background: rgba(0, 55, 171, 0.02);
  font-family: Inter, sans-serif;
}

.a2e-why__container {
  width: 1200px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.a2e-why__head {
  text-align: center;
  margin-bottom: 50px;
}

.a2e-why__badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e8eefc;
  color: #1d4ed8;
  margin-bottom: 12px;
}

.a2e-why__title {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
}

.a2e-why__title .blue {
  color: #1d4ed8;
}

.a2e-why__title .orange {
  color: #f97316;
}

/* GRID */
.a2e-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.a2e-why__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  cursor: pointer;
}

.a2e-why__card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.a2e-why__card h3 {
  font-size: 18px;
  color: #1d4ed8;
  margin-bottom: 10px;
  font-weight: 600;
}

.a2e-why__card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* 🔥 HOVER giống hình 2 */
.a2e-why__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}

.a2e-why__card:hover .icon {
  background: #dbeafe;
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .a2e-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .a2e-why__title {
    font-size: 28px;
  }
}

.a2e-office {
  padding: 72px 0 56px;
  background: #f7f8fb;
  font-family: Inter, Arial, sans-serif;
}

.a2e-office__container {
  width: 1280px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.a2e-office__head {
  text-align: center;
  margin-bottom: 38px;
}

.a2e-office__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.10);
  color: #ff7a00;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.a2e-office__title {
  margin: 0;
  color: #0f1830;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.a2e-office__gallery {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(320px, 1fr);
  gap: 22px;
  margin-bottom: 42px;
}

.a2e-office__photo {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  background: #e9edf5;
}

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

.a2e-office__photo--large {
  min-height: 376px;
}

.a2e-office__photo--small {
  min-height: 376px;
}

.a2e-office__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.a2e-office__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  background: #fff;
  color: #596780;
  font-size: 17px;
  line-height: 1.45;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.a2e-office__benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  border-color: #d8e0ec;
}

.a2e-office__benefit-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #ff7a00;
  margin-top: 2px;
}

.a2e-office__benefit-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .a2e-office__title {
    font-size: 46px;
  }

  .a2e-office__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .a2e-office {
    padding: 56px 0 44px;
  }

  .a2e-office__container {
    max-width: calc(100% - 32px);
  }

  .a2e-office__title {
    font-size: 38px;
  }

  .a2e-office__gallery {
    grid-template-columns: 1fr;
  }

  .a2e-office__photo--large,
  .a2e-office__photo--small {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .a2e-office__benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .a2e-office__title {
    font-size: 30px;
  }

  .a2e-office__benefit {
    font-size: 15px;
    min-height: unset;
    padding: 16px 16px;
  }

  .a2e-office__photo--large,
  .a2e-office__photo--small {
    min-height: 220px;
    border-radius: 18px;
  }
}

.a2e-jobs {
  padding: 84px 0 60px;
  background: #f7f8fb;
  font-family: Inter, Arial, sans-serif;
}

.a2e-jobs__container {
  width: 980px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.a2e-jobs__head {
  text-align: center;
  margin-bottom: 36px;
}

.a2e-jobs__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e9efff;
  color: #5f7fd8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.a2e-jobs__title {
  margin: 0 0 12px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111b37;
}

.a2e-jobs__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #7d879c;
}

.a2e-jobs__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.a2e-jobs__card {
  padding: 22px 28px 20px;
  background: #fff;
  border: 1px solid #dfe7f2;
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(17, 24, 39, 0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.a2e-jobs__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.10);
  border-color: #d6dfed;
}

.a2e-jobs__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.a2e-jobs__name {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #1748c6;
}

.a2e-jobs__tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ff7a00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.a2e-jobs__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  color: #7a859c;
  font-size: 13px;
  line-height: 1.5;
}

.a2e-jobs__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.a2e-jobs__text {
  margin: 0 0 16px;
  color: #7a859c;
  font-size: 14px;
  line-height: 1.7;
}

.a2e-jobs__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.a2e-jobs__btn {
  text-decoration: none;
  transition: all .25s ease;
}

.a2e-jobs__btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #cfd8ea;
  border-radius: 12px;
  color: #2451c8;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

.a2e-jobs__btn--ghost:hover {
  border-color: #2451c8;
  background: #f4f7ff;
}

.a2e-jobs__btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: #1748c6;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(23, 72, 198, 0.18);
}

.a2e-jobs__btn--primary:hover {
  background: #123aa2;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .a2e-jobs__title {
    font-size: 42px;
  }

  .a2e-jobs__card {
    padding: 20px 20px 18px;
  }
}

@media (max-width: 767px) {
  .a2e-jobs {
    padding: 64px 0 44px;
  }

  .a2e-jobs__container {
    max-width: calc(100% - 24px);
  }

  .a2e-jobs__title {
    font-size: 32px;
  }

  .a2e-jobs__desc {
    font-size: 14px;
  }

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

  .a2e-jobs__meta {
    gap: 10px;
    font-size: 12px;
  }

  .a2e-jobs__text {
    font-size: 13px;
  }

  .a2e-jobs__actions {
    gap: 8px;
  }

  .a2e-jobs__btn--ghost,
  .a2e-jobs__btn--primary {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}

/* =========================
   A2E TRACKING
========================= */

.a2e-subhero {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, rgb(0, 55, 171) 0%, rgba(0, 55, 171, 0.867) 100%);
  font-family: Inter, sans-serif;
}

/* background layer */
.a2e-subhero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.1), transparent 30%);
}

/* glow */
.a2e-subhero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .3;
}

.a2e-subhero__glow--left {
  width: 300px;
  height: 300px;
  left: -80px;
  top: 40px;
  background: #3b82f6;
}

.a2e-subhero__glow--right {
  width: 400px;
  height: 400px;
  right: -120px;
  top: 0;
  background: rgba(255,255,255,0.15);
}

/* content */
.a2e-subhero__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* badge */
.a2e-subhero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  margin-bottom: 28px;
}

.a2e-subhero__badge-icon {
  width: 18px;
  height: 18px;
}

.a2e-subhero__badge-icon svg {
  width: 100%;
  height: 100%;
}

/* title */
.a2e-subhero__title {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* desc */
.a2e-subhero__desc {
  color: rgba(255,255,255,.9);
  font-size: 20px
  max-width: 900px;
  margin: 0 auto;
}

/* animation */
.a2e-reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all .8s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0s);
}

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


.a2e-tracking-form-section {
  padding: 24px 20px 48px;
  background: #f5f7fb;
  font-family: Inter, Arial, sans-serif;
}

.a2e-tracking-form-wrap, .a2e-video__container {
  max-width: 896px;
  margin: 0 auto;
}

.a2e-tracking-form-card {
  background: #fff;
  border: 1px solid #e6edf7;
  border-radius: 28px;
  padding: 58px 58px 52px;
  box-shadow: 0 24px 50px rgba(16, 24, 40, 0.10);
}

.a2e-tracking-form-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 38px;
}

.a2e-tracking-form-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(0, 55, 171, 0.082), rgba(0, 55, 171, 0.145));
  color: #1248bf;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(18, 72, 191, 0.12);
}

.a2e-tracking-form-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.a2e-tracking-form-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: #1248bf;
}

.a2e-tracking-form-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #7b879c;
}

.a2e-tracking-form {
  display: block;
}

.a2e-tracking-form-input-wrap {
  position: relative;
  margin-bottom: 20px;
}

.a2e-tracking-form-input {
  width: 100%;
  height: 58px;
  border-radius: 30px;
  border: 2px solid #e4ebf5;
  background: #fff;
  padding: 0 86px 0 30px;
  font-size: 22px;
  color: #1c2740;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.a2e-tracking-form-input::placeholder {
  color: #a0a7b4;
}

.a2e-tracking-form-input:focus {
  border-color: #c9d8f7;
  box-shadow: 0 0 0 4px rgba(18, 72, 191, 0.06);
}

.a2e-tracking-form-input-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  color: #c8ced8;
  pointer-events: none;
}

.a2e-tracking-form-input-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.a2e-tracking-form-btn {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-radius: 30px;
  background: #ff7a00;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.a2e-tracking-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(255, 122, 0, 0.28);
  background: #f17300;
}

.a2e-tracking-form-btn:active {
  transform: translateY(0);
}

.a2e-tracking-form-btn-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.a2e-tracking-form-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.a2e-tracking-form-divider {
  height: 1px;
  background: #e8edf4;
  margin: 30px 0 28px;
}

.a2e-tracking-form-samples-label {
  margin-bottom: 16px;
  font-size: 18px;
  color: #7b879c;
  line-height: 1.5;
}

.a2e-tracking-form-sample-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.a2e-tracking-form-sample {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  border: 2px solid #dfe7f3;
  background: #fff;
  color: #1248bf;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}

.a2e-tracking-form-sample:hover {
  border-color: #1248bf;
  background: #f4f7ff;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .a2e-tracking-form-card {
    padding: 36px 24px 34px;
    border-radius: 24px;
  }

  .a2e-tracking-form-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .a2e-tracking-form-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .a2e-tracking-form-icon svg {
    width: 28px;
    height: 28px;
  }

  .a2e-tracking-form-title {
    font-size: 26px;
  }

  .a2e-tracking-form-desc {
    font-size: 14px;
  }

  .a2e-tracking-form-input {
    height: 76px;
    border-radius: 24px;
    font-size: 18px;
    padding: 0 72px 0 22px;
  }

  .a2e-tracking-form-btn {
    height: 72px;
    border-radius: 24px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .a2e-mobile-lang 

  .a2e-export-hero__actions .a2e-btn {margin-bottom: 15px;}
  .a2e-tracking-form-section {
    padding: 18px 12px 32px;
  }

  .a2e-tracking-form-card {
    padding: 24px 16px 24px;
    border-radius: 20px;
  }

  .a2e-tracking-form-head {
    align-items: flex-start;
  }

  .a2e-tracking-form-title {
    font-size: 22px;
  }

  .a2e-tracking-form-desc {
    font-size: 15px;
  }

  .a2e-tracking-form-input {
    height: 64px;
    border-radius: 20px;
    font-size: 16px;
    padding: 0 58px 0 18px;
  }

  .a2e-tracking-form-input-icon {
    right: 18px;
    width: 24px;
    height: 24px;
  }

  .a2e-tracking-form-btn {
    height: auto;
    border-radius: 20px;
    font-size: 16px;
    gap: 10px;
  }

  .a2e-tracking-form-btn-icon {
    width: 22px;
    height: 22px;
  }

  .a2e-tracking-form-samples-label {
    font-size: 16px;
  }

  .a2e-tracking-form-sample {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 14px;
  }
}

.a2e-video {
  padding: 80px 20px;
  background: #f5f7fb;
  font-family: Inter, sans-serif;
}

.a2e-video__container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.a2e-video__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff3e8;
  color: #ff7a00;
  margin-bottom: 16px;
}

.a2e-video__title {
  font-size: 40px;
  color: #1748c6;
  margin-bottom: 12px;
}

.a2e-video__desc {
  color: #6b7280;
  margin-bottom: 40px;
}

/* preview box */
.a2e-video__preview {
  position: relative;
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(135deg, #5a7bd8, #2f56b8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
}

.a2e-video__preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* play button */
.a2e-video__play {
  width: 70px;
  height: 70px;
  background: #ff7a00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 20px rgba(255,122,0,.4);
}

/* time */
.a2e-video__time {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,.3);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* button */
.a2e-video__actions {
  margin-top: 24px;
}

.a2e-video__btn {
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  background: #ff7a00;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.a2e-video__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,122,0,.3);
}

/* MODAL */
.a2e-video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.a2e-video-modal.active {
  display: flex;
}

.a2e-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.a2e-video-modal__content {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
}

.a2e-video-modal video {
  width: 100%;
  height: auto;
}

/* close */
.a2e-video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.support-help {
  padding: 40px 20px;
}

.support-help__container {
  max-width: 768px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.05);
  border: 1px solid #e9edf5;
}

.support-help__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef2ff 0%, #dfe6f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 20px rgba(15, 23, 42, 0.08);
}

.support-help__icon span {
  width: 40px;
  height: 40px;
  border: 4px solid #0f43b3;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f43b3;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.support-help__content {
  flex: 1;
  padding-top: 6px;
}

.support-help__title {
  margin: 0 0 15px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
  color: #0f43b3;
}

.support-help__desc {
  margin: 0 0 25px;
  font-size: 16xpx;
  line-height: 1.55;
  font-weight: 400;
  color: #5c667a;
}

.support-help__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 304px;
  height: 94px;
  padding: 0 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ff8400 0%, #ff7a00 100%);
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  box-shadow:
    0 12px 20px rgba(255, 122, 0, 0.2),
    0 6px 10px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-help__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 24px rgba(255, 122, 0, 0.24),
    0 8px 14px rgba(15, 23, 42, 0.1);
}

.a2e-s-btn-sm {width: auto; min-width: auto; min-height: auto; font-size: 16px; font-weight: 400; padding: 12px 28px;}

@media (max-width: 1200px) {
  .support-help__container {
    padding: 48px 40px;
  }

  .support-help__title {
    font-size: 24px;
  }

  .support-help__desc {
    font-size: 16px;
  }

  .support-help__btn {
    min-width: 240px;
    height: 76px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .support-help__container {
    gap: 18px;
    padding: 32px 24px 36px;
    border-radius: 24px;
  }

  .support-help__icon span {
    width: 30px;
    height: 30px;
    font-size: 20px;
    border-width: 3px;
  }

  .support-help__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .support-help__desc {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .support-help__btn {
    min-width: 100%;
    height: 60px;
    font-size: 20px;
    border-radius: 18px;
  }
  .a2e-subhero__title {
    font-size: 32px;
  }
  .a2e-video__title {
    font-size: 24px;
  }
  .a2e-subhero {padding-top: 70px}
  .hero-arrow  {display: none;}
}


