/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');
/*************** ADD CUSTOM CSS HERE.   ***************/

:root {
  --primary: #005EAF;
  --secondary: #FD7F00;
  --primary-hover: #0B2265;
  --secondary-hover: #FF9940;
  --flatsome-primary: var(--primary);
  --flatsome-secondary: var(--secondary);
  --color-primary: var(--primary);
  --color-secondary: var(--secondary);
  --navy: #0B2265;
  --navy-2: #12306E;
  --blue: #0061AF;
  --orange: #FD7F00;
  --blue-light: #EAF1FF;
  --text-muted: #4B5670;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Afacad Flux', Arial, sans-serif;
  background: #fff;
}

.section-text {
    font-family: 'Afacad Flux', Arial, sans-serif !important;
}
.section.section-hero {
    background-image: url('/wp-content/uploads/2026/07/banner1.jpg');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    height: 80vh;
}
.section.section-hero .section-bg {
       position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 32%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0.12) 68%, rgba(255, 255, 255, 0) 78%);
}
.hero-right{
    position:relative;
}

.hero-overlay{
    position:absolute;
    left:0%;
    top:0;

    width:60%;
    height:100%;

    background:linear-gradient(
        to right,
        #fff 0%,
        rgba(255,255,255,.95) 15%,
        rgba(255,255,255,.6) 45%,
        rgba(255,255,255,0) 100%
    );

    z-index:5;
}

.hero-title{
  font-family: 'Afacad Flux', Arial, sans-serif;
  font-size:48px;
  font-weight:800;
  line-height: 1.3em;
  color:var(--primary);
}

.hero-title > p {
  margin-bottom:10px
}

.hero-desc{
    font-family: 'Afacad Flux', Arial, sans-serif;
    max-width:540px;
    color:var(--primary);
    font-size: 20px;
    margin-bottom: 30px;
}

/* ===============================
   CTA Wrapper
================================= */

.hero-cta-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

/* ===============================
   Voucher
================================= */
.section-hero .banner-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 276px;
    height: 75px;
    padding: 10px;
    border-radius: 8px;
}

.section-hero .hero-voucher-btn{
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, var(--secondary-hover) 0%, var(--secondary) 100%);
    transition: .25s;
    margin-right: 10px
}

.section-hero .hero-voucher-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(255,121,0,.28);
}

.section-hero .hero-voucher-btn span{
 font-family: 'Afacad Flux', Arial, sans-serif;
    font-size:18px;
    font-weight:500;
    line-height:1.1;

}

.section-hero .hero-voucher-btn strong{
font-family: 'Afacad Flux', Arial, sans-serif;

    margin-top:5px;

    font-size:20px;
    font-weight:800;
    line-height:1.15;

}

/* ===============================
   PDF
================================= */

.section-hero .hero-profile-btn.banner-button{
    flex-direction: row; 
    gap: 15px;
    border: 1px solid var(--blue);
    width: max-content;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 22px rgba(0, 97, 175, 0.16);
}

.section-hero .hero-profile-btn.banner-button::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,.76) 0%,
        rgba(255,255,255,.66) 45%,
        rgba(255,255,255,.48) 100%
    );
    z-index: 0;
}

.section-hero .hero-profile-btn.banner-button > *{
    position: relative;
    z-index: 1;
}

.hero-profile-btn:hover{
    transform:translateY(-2px);
}
.section-hero .hero-profile-btn img{
     width: 46px;
   height: 46px;
   object-fit: contain;
    display:block;
}

.hero-profile-icon{
    width:72px;
    height:72px;
    margin-right:16px;
    flex-shrink:0;

}

.hero-profile-icon img{
    width:100%;
    display:block;

}

.hero-profile-content{
font-family: 'Afacad Flux', Arial, sans-serif;
    display:flex;
    flex-direction:column;
    justify-content:center;

}

.hero-profile-content strong{
    font-family: 'Afacad Flux', Arial, sans-serif;
    font-size:22px;
    font-weight:800;
    color:#0B66B8;
    line-height:1.1;
    text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.hero-profile-content small{
font-family: 'Afacad Flux', Arial, sans-serif;

    margin-top:6px;
    width: max-content;
    font-size:16px;
    color:#0B66B8;
    text-shadow: 0 1px 0 rgba(255,255,255,.6);

}

/* ===============================
   Responsive
================================= */

@media (max-width:991px){

    .hero-profile-btn{

        transform:translateX(20px);

        margin-left:16px;

    }

    .hero-profile-content strong{

        font-size:19px;

    }

    .hero-profile-content small{

        font-size:15px;

    }

}

@media (max-width:768px){

    .section.section-hero {
        height: auto;
        min-height: unset;
        background-size: contain;
        background-position: right bottom;
        background-repeat: no-repeat;
        padding: 18px 16px 22px !important;
        overflow: hidden;
    }

    .section.section-hero .section-bg {
        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 48%,
            rgba(255, 255, 255, 0.96) 62%,
            rgba(255, 255, 255, 0.65) 78%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .hero-right {
        width: 100%;
        margin-top: 12px;
    }

    .hero-overlay {
        display: none;
        background: linear-gradient(
            to bottom,
            #fff 0%,
            rgba(255,255,255,.92) 20%,
            rgba(255,255,255,.72) 58%,
            rgba(255,255,255,0) 100%
        );
    }

    .section-hero .hero-title,
    .section-hero h1 {
        font-size: clamp(30px, 10vw, 44px);
        line-height: 1;
        letter-spacing: -0.03em;
        margin: 0 0 16px;
        padding-right: 12px;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .section-hero .hero-title > p {
        margin-bottom: 6px;
    }

    .section-hero .hero-desc {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.45;
        margin-bottom: 20px;
        padding-right: 12px;
    }

    .hero-cta-wrapper{

        flex-direction:column;
        align-items:flex-start;

        gap:12px;
        width: 100%;
        padding-right: 12px;

    }

    .hero-profile-btn{

        margin-left:0;
        transform:none;

        width:max-content;
        max-width:100%;
    }


}

@media (max-width:549px){

    .section-hero .hero-voucher-btn{
        height:78px;
        margin-right: 0px;
        width: max-content;
        min-width: 250px
    }

    .hero-profile-btn{

        height:auto;

    }

    .hero-profile-icon{

        width:60px;
        height:60px;
        flex-basis:60px;

    }

    .hero-profile-content strong{

        font-size:18px;
        color:#0B66B8;

    }

    .hero-profile-content small{

        font-size:14px;
        color:#0B66B8;

    }

    .section-hero .hero-title,
    .section-hero h1 {
        font-size: clamp(28px, 12vw, 31px);
    }

    .section-hero .hero-desc {
        font-size: 16px;
    }

    .section.section-hero {
        padding: 16px 14px 20px !important;
    }

}

.stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

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

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-num {
  font-weight: 800;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.1;
}

.stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .3px;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 20px 32px;
  }

  .section-hero {
    min-height: unset;
  }

  .hero-bg img {
    position: relative;
    width: 100%;
    height: 260px;
    object-fit: cover;
  }

  .white-overlay {
    background: linear-gradient(to bottom, #fff 55%, rgba(255, 255, 255, 0.85) 75%, rgba(255, 255, 255, 0.2) 100%);
  }

  h1 {
    font-size: 28px;
  }

  .stats {
    gap: 20px;
  }
}


/* Khung cha */
.process-wrapper {
  position: relative;
  min-height: 590px;
  overflow: visible;
  margin-top: 0;
}

/* Wrapper của hình chính */
.process-main {
  position: absolute;
  width: min(680px, 60vw);
  max-width: 680px;
  left: 51%;
  top: 70px;
  transform: translateX(-50%);
}

/* Bắt ảnh bên trong Flatsome hiển thị đúng */
.process-main img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.process-icon-right,
.process-icon-top {
  position: absolute;
  width: 60px !important;
  margin: 0;
  z-index: 6;
  pointer-events: none;
  overflow: visible;
  border-radius: 50%;
}

.process-icon-left {
  width: 4% !important
}

.process-icon-left {
  left: 31%;
  top: 314px;
}

.process-icon-right {
  right: 29%;
  top: 322px;
}

.process-icon-top {
  right: 47%;
  top: 94px;
}

.process-text-top,
.process-text-left,
.process-text-right {
  position: absolute;
  font-family: "Afacad Flux", Arial, sans-serif;
  z-index: 4;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.22;
}

.process-text-top {
  width: 300px;
  left: 51%;
  top: -22px;
  transform: translateX(-50%);
  text-align: center;
}

.process-text-top p {
  margin: 0;
}

.process-text-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 4px;
  height: 34px;
  transform: translateX(-50%);
  background: #111;
  border-radius: 999px;
}

.process-text-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 32px);
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #2f5fb4;
}

.process-text-left {
  width: 180px;
  left: 4%;
  top: 350px;
  transform: translateY(-50%);
  text-align: right;
}

.process-text-right {
  width: 180px;
  right: 2%;
  top: 350px;
  transform: translateY(-50%);
  text-align: left;
}

.process-text-left::after,
.process-text-right::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 62px;
  height: 4px;
  transform: translateY(-50%);
  background: #111;
  border-radius: 999px;
}

.process-text-left::before,
.process-text-right::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #50a3df;
}

.process-text-left::after {
  right: -70px;
}

.process-text-left::before {
  right: -92px;
}

.process-text-right::after {
  left: -70px;
}

.process-text-right::before {
  left: -92px;
}

/* Section: ecosystem diagram */
.section-process {
  padding: 72px 18px 28px;
  background: #fff;
}

.section-process>.section-content {
  max-width: 1500px;
  margin: 0 auto;
}

.section-process>.section-content>.text {
  text-align: center;
  margin-bottom: 46px;
}

.section-process>.section-content>.text p {
  margin: 0;
  color: #0c66b6;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.section-process>.section-content>.text strong {
  font-weight: 900;
  color: inherit;
}

/* Text */


.section-integration {
  position: relative;
  height: 480px;
}


.process-attt {
  position: relative;
  height: max-content;
  overflow: visible;
}

.process-attt-step {
  position: absolute;
  width: 500px;
  height: auto;
  top: 50px;
  z-index: 1;
}

/* =====================================
   MOBILE
===================================== */
@media only screen and (max-width: 30em) {
  .section-process {
    padding: 24px 10px 20px;
  }

  .section-process > .section-content > .text {
    margin-bottom: 20px;
    padding: 0 8px;
  }

  .section-process > .section-content > .text p {
    font-size: 19px;
    line-height: 1.25;
  }

  .process-wrapper {
    min-height: 540px;
    overflow: visible;
  }

  /* Vòng tròn */
  .process-main {
    width: min(94vw, 420px);
    left: 50%;
    top: 112px;
    transform: translateX(-50%);
  }

  /* Icon */
  .process-icon-left,
  .process-icon-right,
  .process-icon-top {
    width: 38px !important;
  }

  .process-icon-left {
    width: 25px !important;
  }

  .process-icon-top {
    left: 50%;
    right: auto;
    top: 158px;
    transform: translateX(-50%);
  }

  .process-icon-left {
    left: 11%;
    top: 277px;
  }

  .process-icon-right {
    right: 8%;
    left: auto;
    top: 273px;
  }

  /* Nhãn trên */
  .process-text-top {
    width: calc(100% - 32px);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-size: 19px;
  }

  .process-text-top::after {
    top: calc(100% + 7px);
    width: 3px;
    height: 26px;
  }

  .process-text-top::before {
    top: calc(100% + 30px);
    width: 13px;
    height: 13px;
  }

  /*
   * Hai nhãn đưa xuống dưới vòng tròn.
   * Không để nằm hai bên vì sẽ đè vào icon.
   */
  .process-text-left,
  .process-text-right {
    top: 425px;
    width: 46%;
    transform: none;
    font-size: 16px;
    line-height: 1.3;
  }

  .process-text-left {
    left: 2%;
    text-align: center;
  }

  .process-text-right {
    right: 2%;
    text-align: center;
  }

  /* Ẩn đường nối ngang trên mobile */
  .process-text-left::after,
  .process-text-left::before,
  .process-text-right::after,
  .process-text-right::before {
    display: none;
  }
}
/* =====================================
   TABLET
===================================== */
@media only screen and (max-width: 48em) {
  .section-process {
    padding: 30px 14px 24px;
    overflow: hidden;
  }

  .section-process > .section-content > .text {
    margin-bottom: 28px;
  }

  .section-process > .section-content > .text p {
    font-size: 22px;
    line-height: 1.25;
  }

  .process-wrapper {
    width: 100%;
    min-height: 570px;
    margin: 0 auto;
    overflow: visible;
  }

  /* Vòng tròn chính */
  .process-main {
    width: min(76vw, 520px);
    max-width: 520px;
    left: 50%;
    top: 86px;
    transform: translateX(-50%);
  }

  .process-main img {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
  }

  /* Icon chung */
  .process-icon-left,
  .process-icon-right,
  .process-icon-top {
    width: 40px !important;
    height: auto !important;
  }

  .process-icon-left {
    width: 25px !important;
    height: auto !important;
  }

  .process-icon-top {
    left: 50%;
    right: auto;
    top: 96px;
    transform: translateX(-50%);
  }

  .process-icon-left {
    left: 11%;
    top: 244px;
  }

  .process-icon-right {
    left: auto;
    right: 9%;
    top: 239px;
  }

  /* Text trên */
  .process-text-top {
    width: 260px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-size: 20px;
  }

  .process-text-top::after {
    top: calc(100% + 8px);
    height: 34px;
  }

  .process-text-top::before {
    top: calc(100% + 39px);
    width: 15px;
    height: 15px;
  }

  /* Text trái và phải */
  .process-text-left,
  .process-text-right {
    width: 150px;
    top: 340px;
    font-size: 18px;
    line-height: 1.25;
  }

  .process-text-left {
    left: -11%;
  }

  .process-text-right {
    right: -11%;
  }

    .process-text-left::after {
    top: calc(100% + 8px);
    height: 34px;
  }

  .process-text-left::before {
    top: calc(100% + 39px);
    width: 15px;
    height: 15px;
  }

  .process-text-left::after,
  .process-text-right::after {
    width: 32px;
    height: 3px;
  }

  .process-text-left::after {
    right: -38px;
  }

  .process-text-left::before {
    right: -51px;
    width: 15px;
    height: 15px;
  }

  .process-text-right::after {
    left: -38px;
  }

  .process-text-right::before {
    left: -51px;
    width: 15px;
    height: 15px;
  }
}

/* ATTT process timeline block */
.attt-process {
  padding: 50px 0 60px;
  background: #fff;
}

.attt-process__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 24px;
}

.attt-process__title {
  text-align: center;
  margin-bottom: 34px;
}

.attt-process__eyebrow {
  margin: 0 0 10px;
  color: #49a3ff;
  font-family: "Afacad Flux", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.attt-process__headline {
  margin: 0;
  color: #0d5fb5;
  font-family: "Afacad Flux", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.attt-process__card {
  background: linear-gradient(180deg, #0d74c7 0%, #2d8fe8 55%, #46a5ff 100%);
  border-radius: 12px;
  padding: 26px 28px 30px;
  box-shadow: 0 18px 40px rgba(13, 95, 181, 0.18);
}

.attt-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Elementor Section/Column fallback */
.attt-process__steps.elementor-section>.elementor-container>.elementor-row,
.attt-process__steps .elementor-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  width: 100%;
}

.attt-process__steps.elementor-section>.elementor-container>.elementor-row>.elementor-column,
.attt-process__steps .elementor-row>.elementor-column {
  width: auto;
}

.attt-process__item {
  position: relative;
  min-width: 0;
  text-align: center;
  color: #fff;
  padding: 0 18px;
}

.attt-process__number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .5px;
}

.attt-process__icon {
  width: 102px;
  height: 102px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f7fbff 38%, #e9f3ff 64%, #d8eaff 100%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12), 0 10px 22px rgba(9, 61, 120, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attt-process__icon img,
.attt-process__icon svg {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.attt-process__label {
  margin: 0;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 700;
  color: #ffffff;
}

.attt-process__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 86px;
  right: -24px;
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%);
}

.attt-process__item:not(:last-child)::before {
  content: "→";
  position: absolute;
  top: 86px;
  right: -44px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .attt-process__headline {
    font-size: 24px;
  }

  .attt-process__eyebrow {
    font-size: 20px;
  }

  .attt-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    width: 100%;
  }

  .attt-process__steps.elementor-section>.elementor-container>.elementor-row,
  .attt-process__steps .elementor-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .attt-process__item:not(:last-child)::before,
  .attt-process__item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .attt-process {
    padding: 32px 0 44px;
  }

  .attt-process__inner {
    padding: 0 16px;
  }

  .attt-process__title {
    margin-bottom: 22px;
  }

  .attt-process__headline {
    font-size: 18px;
  }

  .attt-process__eyebrow {
    font-size: 16px;
  }

  .attt-process__card {
    padding: 22px 16px 18px;
    border-radius: 10px;
  }

  .attt-process__steps {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .attt-process__steps.elementor-section>.elementor-container>.elementor-row,
  .attt-process__steps .elementor-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .attt-process__number {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .attt-process__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 12px;
  }

  .attt-process__icon img,
  .attt-process__icon svg {
    width: 44px;
    height: 44px;
  }

  .attt-process__label {
    font-size: 16px;
  }
}

/* Legal process section */
.attt-legal-process {
  padding: 46px 18px 26px;
}

.attt-legal-process>.section-content {
  max-width: 1520px;
  margin: 0 auto;
}

.attt-legal-process>.section-content>.text {
  text-align: center;
  padding-bottom: 26px;
}

.attt-legal-process>.section-content>.text h3 {
  margin: 0 0 18px;
  color: #4aa3ff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.attt-legal-process>.section-content>.text>p {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.attt-legal-process>.section-content>.text>p:first-of-type {
  color: #f11f1f;
}

.attt-legal-process>.section-content>.text>p:not(:first-of-type) {
  color: #111;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 500;
  text-transform: none;
}

.attt-legal-process>.section-content>.text strong {
  color: inherit;
}

.attt-legal-process>.section-content>.row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 20px 28px;
  align-items: start;
  padding: 20px 22px 22px;
  border: 1px solid #157de6;
  border-radius: 16px;
  background: #fff;
}

.attt-legal-process>.section-content>.row>.col {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.attt-legal-process>.section-content>.row>.col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 0;
  color: #0d5fb5;
}

.attt-legal-process>.section-content>.row>.col:last-child {
  padding-top: 0;
}

.attt-legal-process>.section-content>.row>.col:first-child p {
  margin: 0;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  margin: 0;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(1) {
  margin-left: 84px;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(2) {
  margin-top: -8px;
  margin-left: 38px;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(3) {
  margin-top: -8px;
  margin-left: 0;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col {
  position: relative;
  min-height: 132px;
  overflow: visible;
  float: none !important;
  width: auto !important;
  max-width: none !important;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:first-child {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 132px;
  margin: 0;
  border-radius: 18px 18px 18px 18px;
  box-shadow: 0 10px 22px rgba(13, 66, 130, 0.20);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(1)>.col:first-child {
  background: linear-gradient(180deg, #5472a6 0%, #466494 100%);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(2)>.col:first-child {
  background: linear-gradient(180deg, #0da4d9 0%, #0982b6 100%);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(3)>.col:first-child {
  background: linear-gradient(180deg, #3d77d6 0%, #2f62c8 100%);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 16px;
  height: 100%;
  border-radius: 0 18px 18px 0;
  background: rgba(3, 24, 54, 0.55);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:first-child::before {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(1)>.col:first-child::before {
  content: "03";
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(2)>.col:first-child::before {
  content: "02";
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(3)>.col:first-child::before {
  content: "01";
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:first-child>* {
  display: none !important;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:last-child {
  margin-left: -16px;
  min-height: 88px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(13, 66, 130, 0.16);
  display: flex;
  align-items: center;
  padding: 0 30px 0 50px;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(1)>.col:last-child {
  background: linear-gradient(180deg, #6884b7 0%, #5874a5 100%);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(2)>.col:last-child {
  background: linear-gradient(180deg, #19add8 0%, #0f95ca 100%);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(3)>.col:last-child {
  background: linear-gradient(180deg, #4f86eb 0%, #3972dd 100%);
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:last-child::before {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .2px;
  display: block;
  width: 100%;
  white-space: nowrap;
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(1)>.col:last-child::before {
  content: "BẢO VỆ TRƯỚC HỘI ĐỒNG";
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(2)>.col:last-child::before {
  content: "BIÊN SOẠN HỒ SƠ";
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(3)>.col:last-child::before {
  content: "KHẢO SÁT & QUY HOẠCH";
}

.attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:last-child>* {
  display: none !important;
}

.attt-legal-process>.section-content>.row>.col:last-child .img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.attt-legal-process>.section-content>.row>.col:last-child img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Hide leftover editor-only artifacts inside the section */
.attt-legal-process .uxb-empty-message {
  display: none !important;
}

/* Rule section */
.section-rule {
  padding: 48px 18px 30px;
  background: #fff;
  font-family: 'Afacad Flux', Arial, sans-serif;
  font-size: 24px
}

.section-rule>.section-content {
  margin: 0 auto;
}

.section-rule>.section-content>.row:first-child {
  margin: 0 auto;
}

.section-rule>.section-content>.row:first-child .text {
  text-align: center;
}

.section-rule>.section-content>.row:first-child .text>p:first-child {
  margin: 0 0 12px;
  font-size: 0 !important;
  line-height: 0 !important;
  font-family: 'Afacad Flux', Arial, sans-serif;
}

.section-rule>.section-content>.row:first-child .text>p:first-child::before,
.section-rule>.section-content>.row:first-child .text>p:first-child::after {
  display: inline;
  font-size: clamp(22px, 2.35vw, 38px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.section-rule>.section-content>.row:first-child .text>p:first-child::before {
  content: "BẮT BUỘC TUÂN THỦ ";
  font-family: 'Afacad Flux', Arial, sans-serif;
  color: #49a2ff;   
  font-size: 36px
}

.section-rule>.section-content>.row:first-child .text>p:first-child::after {
  content: "AN TOÀN THÔNG TIN THEO CẤP ĐỘ";
  font-family: 'Afacad Flux', Arial, sans-serif;
  color: #f11f1f;
  font-size: 36px
}

.section-rule>.section-content>.row:first-child .text>p:last-child {
  margin: 10px auto 0;
  max-width: 1180px;
  color: #111 !important;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  font-weight: 400;
  text-transform: none;
  font-family: 'Afacad Flux', Arial, sans-serif;
}

.section-rule>.section-content>.row:first-child .text>p:last-child br {
  content: "";
}

.section-rule>.section-content>.row.align-middle {
  align-items: stretch;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
  gap: 18px;
  padding-top: 18px;
  width: 100% !important;
  max-width: 1380px !important;
  margin-left: auto;
  margin-right: auto;
}

.section-rule>.section-content>.row.align-middle>.col {
  min-width: 0;
  border-radius: 16px;
  padding: 28px 26px;
  overflow: hidden;
  min-height: 345px;
  box-shadow: 0 10px 28px rgba(16, 56, 120, 0.12);
  height: 100%;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
}

.section-rule>.section-content>.row.align-middle>.col>.col-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.section-rule>.section-content>.row.align-middle>.col>.col-inner,
.section-rule>.section-content>.row.align-middle>.col>.col-inner>.row,
.section-rule>.section-content>.row.align-middle>.col>.col-inner>.row>.col {
  background: transparent !important;
}

.section-rule>.section-content>.row.align-middle>.col>.col-inner>.row {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
}

.section-rule>.section-content>.row.align-middle>.col:first-child>.col-inner>.row>.col:first-child,
.section-rule>.section-content>.row.align-middle>.col:nth-child(2)>.col-inner>.row>.col:first-child {
  position: static;
  flex: 0 0 84px;
  max-width: 84px;
}

.section-rule>.section-content>.row.align-middle>.col:first-child>.col-inner>.row>.col:last-child,
.section-rule>.section-content>.row.align-middle>.col:nth-child(2)>.col-inner>.row>.col:last-child {
  position: static;
  flex: 1 1 auto;
  min-width: 0;
}

.section-rule>.section-content>.row.align-middle>.col:last-child>.col-inner>.row>.col:first-child {
  position: static;
  flex: 1 1 62%;
  min-width: 0;
}

.section-rule>.section-content>.row.align-middle>.col:last-child>.col-inner>.row>.col:last-child {
  position: static;
  flex: 0 0 34%;
  max-width: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-rule>.section-content>.row.align-middle>.col>.col-inner>.row>.col {
  min-width: 0;
}

.section-rule>.section-content>.row.align-middle>.col:nth-child(1),
.section-rule>.section-content>.row.align-middle>.col:nth-child(2) {
  background: linear-gradient(180deg, #0f68b2 0%, #083c72 62%, #04111f 100%);
}

.section-rule>.section-content>.row.align-middle>.col:nth-child(3) {
  background: linear-gradient(180deg, #e91111 0%, #860000 62%, #2c0000 100%);
}

.section-rule>.section-content>.row.align-middle>.col .text,
.section-rule>.section-content>.row.align-middle>.col .text p,
.section-rule>.section-content>.row.align-middle>.col .text strong {
  color: #fff !important;
}

.section-rule>.section-content>.row.align-middle>.col .text p {
  margin: 0;
}

.section-rule>.section-content>.row.align-middle>.col .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.section-rule>.section-content>.row.align-middle>.col .text strong {
  font-weight: 800;
}

.section-rule>.section-content>.row.align-middle>.col .img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-rule>.section-content>.row.align-middle>.col .img img {
  display: block;
  max-width: 100%;
  height: auto;
}

.section-rule>.section-content>.row.align-middle>.col:first-child .img img,
.section-rule>.section-content>.row.align-middle>.col:nth-child(2) .img img {
  max-width: 90px;
}

.section-rule>.section-content>.row.align-middle>.col:first-child .text,
.section-rule>.section-content>.row.align-middle>.col:nth-child(2) .text {
  text-align: left;
  padding-left: 10px;
}

.section-rule>.section-content>.row.align-middle>.col:first-child .row,
.section-rule>.section-content>.row.align-middle>.col:nth-child(2) .row {
  gap: 18px;
}

.section-rule>.section-content>.row.align-middle>.col .text p:first-child {
  font-size: clamp(20px, 1.3vw, 28px) !important;
  line-height: 1.15;
  font-weight: 800;
}

.section-rule>.section-content>.row.align-middle>.col .text p:last-child {
  font-size: clamp(16px, 1.1vw, 21px) !important;
  line-height: 1.5;
  font-weight: 400;
}

.section-rule>.section-content>.row.align-middle>.col:last-child .text p:first-child {
  font-size: clamp(19px, 1.25vw, 24px) !important;
}

.section-rule>.section-content>.row.align-middle>.col:last-child .text p:last-child {
  font-size: clamp(17px, 1.15vw, 22px) !important;
  line-height: 1.55;
}

.section-rule>.section-content>.row.align-middle>.col:last-child>.col-inner>.row>.col:first-child {
  order: 1;
}

.section-rule>.section-content>.row.align-middle>.col:last-child>.col-inner>.row>.col:last-child {
  order: 2;
}

.section-rule>.section-content>.row.align-middle>.col:last-child .img img {
  max-width: 250px;
  width: 100%;
  object-fit: contain;
}

.section-rule>.section-content>.row.align-middle>.col:last-child .text {
  padding-right: 6px;
}

@media (max-width: 1024px) {
  .section-rule {
    padding: 36px 14px 24px;
  }

  .section-rule>.section-content>.row:first-child .text>p:first-child::before,
  .section-rule>.section-content>.row:first-child .text>p:first-child::after {
    font-size: 22px;
  }

  .section-rule>.section-content>.row:first-child .text>p:last-child {
    font-size: 17px;
  }

  .section-rule>.section-content>.row.align-middle {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-rule>.section-content>.row.align-middle>.col {
    min-height: 300px;
    padding: 22px 20px;
  }
}

@media (max-width: 767px) {

  .section-rule>.section-content>.row:first-child .text>p:first-child::before,
  .section-rule>.section-content>.row:first-child .text>p:first-child::after {
    display: inline;
    font-size: 18px;
  }

  .section-rule>.section-content>.row:first-child .text>p:last-child {
    font-size: 15px;
  }

  .section-rule>.section-content>.row.align-middle>.col .text p:first-child {
    font-size: 18px !important;
  }

  .section-rule>.section-content>.row.align-middle>.col .text p:last-child {
    font-size: 15px !important;
  }

  .section-rule>.section-content>.row.align-middle>.col {
    min-height: unset;
  }

  .section-rule>.section-content>.row.align-middle>.col:first-child .row,
  .section-rule>.section-content>.row.align-middle>.col:nth-child(2) .row {
    flex-direction: row;
    align-items: center;
  }

  .section-rule>.section-content>.row.align-middle>.col:last-child .row {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .attt-legal-process {
    padding: 36px 14px 24px;
  }

  .attt-legal-process>.section-content>.text {
    padding-bottom: 24px;
  }

  .attt-legal-process>.section-content>.row {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 22px;
  }

  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(1),
  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(2),
  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row:nth-of-type(3) {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .attt-legal-process>.section-content>.text h3 {
    font-size: 18px;
  }

  .attt-legal-process>.section-content>.text>p:first-of-type {
    font-size: 20px;
  }

  .attt-legal-process>.section-content>.text>p:not(:first-of-type) {
    font-size: 15px;
    line-height: 1.45;
  }

  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:first-child {
    width: 96px;
    min-height: 104px;
  }

  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:first-child::before {
    font-size: 28px;
  }

  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:last-child {
    min-height: 74px;
    padding: 0 18px 0 36px;
  }

  .attt-legal-process>.section-content>.row>.col:first-child>.col-inner>.row>.col:last-child::before {
    font-size: 16px;
  }

  .partner-logo {
    margin-right: 21px;
  }
}

#voucher-popup.lightbox-content {
    font-family: 'Afacad Flux', Arial, sans-serif;
    max-width: 920px;
    max-height: 66vh;
    padding: 0 !important;
    border: 3px solid white;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.voucher-form {
    width: 100%;
    max-height: 66vh;
    padding: 22px 32px 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.voucher-form__header {
    margin-bottom: 20px;
    text-align: center;
}

.voucher-form__header h2 {
    margin: 0;
    color: #ff7600;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.18;
    font-weight: 800;
}

.voucher-form__row {
    display: grid;
    gap: 10px;
}

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

.voucher-form__field {
    margin-bottom: 12px;
}

.voucher-form__field label {
    display: block;
    font-family: 'Afacad Flux', Arial, sans-serif;
    margin-bottom: 6px;
    color: #111;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.voucher-form__field label span {
    color: red;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #b9b9b9;
    border-radius: 11px;
    background: #fff;
    box-shadow: none;
    color: #222;
    font-size: 14px;
}

input::placeholder {
    color: #a8a8a8;
    opacity: 1;
}

input:focus,
select:focus {
    border-color: #ff8500;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 133, 0, 0.12);
}

.voucher-form__needs {
    margin-top: 2px;
    margin-bottom: 0;
    font-family: 'Afacad Flux', Arial, sans-serif;
}

.voucher-form__needs .wpcf7-checkbox {
    display: flex !important;
    flex-direction: column !important;
    gap: 13px !important;
    padding-left: 0 !important;
}

.voucher-form__needs .wpcf7-list-item {
    color: black;
    display: block !important;
    margin: 0 !important;
    width: 100% !important;
}

.voucher-form__needs .wpcf7-list-item label {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    width: 100% !important;
    white-space: normal !important;
}

.voucher-form__needs .wpcf7-list-item-label {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    color: black !important;
    display: inline !important;
    line-height: 1.35 !important;
    white-space: normal !important;
}

.voucher-form__needs input[type="checkbox"] {
    width: 22px !important;
    height: 22px !important;
    margin: 3px 0 0 !important;
    flex: 0 0 22px !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.voucher-form__actions {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

@media (max-width: 849px) {
   .voucher-form__actions {
    justify-content: center;
    }
}
@media (max-width: 549px) {
   .voucher-form__actions {
    justify-content: center;
    }
}

.voucher-form__cancel,
input[type="submit"].voucher-form__submit {
    height: 56px;
    margin: 0 !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.voucher-form__cancel {
    min-width: 94px;
    padding: 0 20px;
    border: 1px solid #aaa;
    background: #fff;
    color: #999;
    margin-right:10px
}

input[type="submit"].voucher-form__submit {
    min-width: 296px;
    padding: 0 22px;
    border: 0;
    background: linear-gradient(90deg, #ff9a38, #ff7800);
    color: #fff;
}

.wpcf7-spinner {
    position: absolute;
}

p {
    margin: 0;
}

@media (max-width: 849px) {
    .voucher-form {
        max-height: calc(66vh - 6px);
        padding: 18px 16px 16px;
    }

    .voucher-form__row--2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .voucher-form__header h2 {
        font-size: 20px;
    }

    .voucher-form__needs .wpcf7-checkbox {
        padding-left: 0;
    }

    .voucher-form__field {
        margin-bottom: 10px;
    }

    .voucher-form__field label {
        font-size: 14px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select {
        height: 40px;
        font-size: 13px;
    }
}

@media (max-width: 549px) {
    .voucher-form {
        max-height: 66vh;
        padding: 14px 14px 12px;
    }

    .voucher-form__header {
        margin-bottom: 14px;
    }

    .voucher-form__header h2 {
        font-size: 18px;
        line-height: 1.15;
    }

    .voucher-form__actions > p {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0;
    }


    .voucher-form__cancel,
    input[type="submit"].voucher-form__submit {
        width: 100%;
        min-width: 0;
    }

    .voucher-form__needs .wpcf7-checkbox {
        gap: 10px;
    }

    .voucher-form__needs .wpcf7-list-item label {
        gap: 10px !important;
        font-size: 14px !important;
        align-items: flex-start !important;
        white-space: normal !important;
    }

    .voucher-form__needs input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        margin-top: 3px !important;
    }

    .voucher-form__needs .wpcf7-list-item-label {
        line-height: 1.3 !important;
        white-space: normal !important;
    }
}

.voucher-banner {
    position: relative;
    display: flex;
    align-items: center;
    width: max-content;
    max-width: 500px;
    min-height: 60px;
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff9d32 0%, #ff7a00 100%);
    text-decoration: none;
    overflow: visible;
}

.voucher-gift {
    width: 40px;
    min-width: 40px;
    height: auto;
    display: block;
    margin-right: 14px;
}

.voucher-content {
    color: #fff;
    line-height: 1.1;
}

.voucher-label {
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 600;
}

.voucher-title {
  font-family: 'Afacad Flux', Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.voucher-banner:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 549px) {
    .voucher-banner {
        min-height: 60px;
        padding: 14px;
    }

    .voucher-label {
        font-size: 12px;
    }

    .voucher-title {
        font-size: 16px;
        white-space: normal;
    }
}

.timeline-process {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
}

.timeline-item {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

.timeline-time {
  font-family: "Afacad Flux", Arial, sans-serif;
    margin-bottom: 14px;
    color: #005da9;
    font-size: clamp(18px, 1.6vw, 26px);
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
}

.timeline-arrow {
    display: block;
    width: 100%;
    height: 42px;
}

.timeline-title {
  font-family: "Afacad Flux", Arial, sans-serif;
    margin-top: 20px;
    color: #111;
    font-size: clamp(17px, 1.45vw, 24px);
    line-height: 1.3;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 849px) {
    .timeline-process {
        gap: 6px;
    }

    .timeline-time {
        margin-bottom: 10px;
        font-size: 17px;
    }

    .timeline-arrow {
        height: 34px;
    }

    .timeline-title {
        margin-top: 14px;
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 549px) {
    .timeline-process {
        flex-direction: column;
        gap: 26px;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-time {
        font-size: 18px;
        white-space: normal;
    }

    .timeline-arrow {
        height: 36px;
    }

    .timeline-title {
        margin-top: 12px;
        font-size: 17px;
    }
}

.partner-logo {
  margin-right: 21px
}

.partner-social {
   margin-top: 15px
}

.about-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:100%;
    height:74px;

    background:#fff;
    border-radius:18px;

    color:#005EAF !important;
    text-decoration:none;

    font-size:24px;
    font-weight:700;

    transition:.25s;
}

.about-btn:hover{

    color:#005EAF !important;

    transform:translateY(-2px);

    box-shadow:0 12px 24px rgba(0,0,0,.15);

}

@media (max-width:849px){

    .about-btn{

        width:320px;
        height:64px;

        font-size:20px;

    }

}

@media (max-width:549px){

    .about-btn{

        width:100%;
        height:58px;

        font-size:18px;

    }

}

.case-card {
    position: relative;
    width: 100%;
    min-height: 390px;
    padding: 58px 28px 26px;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    box-sizing: border-box;
}

.case-card-blue{
    background:linear-gradient(
        180deg,
        #66B8F8 0%,
        #438FDD 50%,
        #2C6CC5 100%);
}

.case-card-green{
    background:linear-gradient(
        180deg,
        #8DDDF8 0%,
        #4BCBE4 45%,
        #0DA9BF 100%);
}

.case-card-purple{
    background:linear-gradient(
        180deg,
        #B9C9FF 0%,
        #7F9CEB 45%,
        #5A84E4 100%);
}

.case-number{
font-family: "Afacad Flux", Arial, sans-serif;
    position:absolute;
    top:0;
    left:0;

    width:96px;
    height:44px;

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

    color:#fff;

    font-size:20px;
    font-weight:700;

    border-radius:0 0 14px 0;

}

.case-card-blue .case-number{

    background:linear-gradient(
        180deg,
        #688CFF,
        #2457E4);

}

.case-card-green .case-number{

    background:linear-gradient(
        180deg,
        #49DD72,
        #0A8D17);

}

.case-card-purple .case-number{

    background:linear-gradient(
        180deg,
        #688CFF,
        #2457E4);

}

.case-title {
    position: relative;
    z-index: 2;

    margin: 0 0 18px;
font-family: "Afacad Flux", Arial, sans-serif;
    color: #fff;
    font-size: clamp(30px, 2.3vw, 48px);
    line-height: 1.08;
    font-weight: 800;

    white-space: nowrap;
}

.case-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.case-list {
    position: relative;
    z-index: 2;
    flex: 1 1 56%;
    margin: 0;
    color: #fff;
}

.case-list li {
    margin-bottom: 8px;
    font-family: "Afacad Flux", Arial, sans-serif;
    color: #fff;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.5;
}

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

.case-image {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image img {
    display: block;
    width: 100%;
    max-width: 190px;
    height: auto;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 849px) {
    .case-card {
        min-height: 300px;
        padding: 54px 22px 22px;
    }

    .case-title {
        white-space: normal;
        font-size: 34px;
    }

    .case-body {
        gap: 10px;
    }

    .case-image {
        flex-basis: 36%;
    }

    .case-image img {
        max-width: 150px;
    }
}

/* Mobile */
@media (max-width: 549px) {
    .case-card {
        min-height: auto;
        padding: 56px 20px 24px;
    }

    .case-title {
        margin-bottom: 16px;
        font-size: 32px;
    }

    .case-body {
        align-items: center;
    }

    .case-list {
        flex-basis: 58%;
    }

    .case-list li {
        font-size: 15px;
    }

    .case-image {
        flex-basis: 38%;
    }

    .case-image img {
        max-width: 130px;
    }
}

.header-voucher-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold !important;
    width: auto;
    min-width: 260px;
    height: 40px;
    padding: 7px 24px !important;
    border-radius: 16px;
    background: linear-gradient(90deg, #ff9d31 0%, #ff7900 100%);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px !important;
    line-height: 1;
    font-weight: 900 !important;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

    font-family: 'Afacad Flux', Arial, sans-serif !important;
}

.header-voucher-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 121, 0, 0.25);
}

@media (max-width: 849px) {
    .header-voucher-btn {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (max-width: 549px) {
    .header-voucher-btn {
   display: none !important;

    }
}

.section-title-box{
    display:flex;
    align-items:center;
    gap:24px;
}

.section-title-number{
    flex:0 0 85px;
    width:85px;
    height:85px;
    border-radius:8px;
    background:#005EAF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1;

}

.section-title-content{
    display:flex;
    flex-direction:column;
}

.section-title-content p{
    margin:0;
    color:#005EAF;
    font-family: 'Afacad Flux', Arial, sans-serif;
    font-size:35px;
    font-weight:800;
    line-height:1.15;

}

@media(max-width:849px){

    .section-title-box{

        gap:18px;

    }

    .section-title-number{

        width:80px;
        height:80px;

        flex-basis:80px;

        font-size:42px;

    }

    .section-title-content h2{

        font-size:40px;

    }

}

@media(max-width:549px){

    .section-title-box{

        align-items:flex-start;

        gap:14px;

    }

    .section-title-number{

        width:58px;
        height:58px;

        flex-basis:58px;

        font-size:30px;

        border-radius:6px;

    }

    .section-title-content h2{

        font-size:26px;

        line-height:1.2;

    }
}

.section-des {
  margin-top:20px;
  font-size: 20px;
  font-family: 'Afacad Flux', Arial, sans-serif;
  line-height: 135%;
  color: #333;
}

.security-solution-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.security-solution-card {
    min-width: 0;
    min-height: 280px;
    padding: 28px 22px;
    border: 1.5px solid #1689e6;
    border-radius: 5px;
    background: #fff;
    box-sizing: border-box;
}

.security-solution-card h3 {
    margin: 0 0 6px;
    color: #005eaf;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
    font-family: 'Afacad Flux', Arial, sans-serif;
}

.security-solution-card h4 {
    margin: 0 0 34px;
    color: #005eaf;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    font-family: 'Afacad Flux', Arial, sans-serif;
}

.security-solution-card p {
    margin: 0;
    color: #222;
    font-size: 14px;
    font-family: 'Afacad Flux', Arial, sans-serif;
    line-height: 1.35;
}

.security-solution-card-center {
    padding-top: 36px;
}

.security-solution-card-center h3 {
    margin-bottom: 34px;
    text-align: center;
    font-size: 21px;
    line-height: 1.45;
}

/* Laptop nhỏ / tablet ngang */
@media (max-width: 1100px) {
    .security-solution-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Tablet */
@media (max-width: 849px) {
    .security-solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .security-solution-card {
        min-height: 260px;
    }
}

/* Mobile */
@media (max-width: 549px) {
    .security-solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .security-solution-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .security-solution-card h4 {
        margin-bottom: 22px;
    }
}


.partner-banner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    background:#005EAF;
    padding:28px 170px;
}

.partner-banner-icon{

    flex:0 0 120px;

}

.partner-banner-icon img{

    width:100%;

    display:block;

}

.partner-banner-content{

    flex:1;

    color:#fff;

    font-size:24px;

    line-height:1.35;

    font-weight:400;
    font-family: 'Afacad Flux', Arial, sans-serif;

}

.partner-banner-content strong{

    font-weight:700;

}

.partner-banner-btn{

    flex:0 0 auto;

    display:flex;

    align-items:center;

    gap:18px;

    background:#FFA20D;

    border-radius:12px;

    padding:18px 28px;

    color:#fff !important;

    text-decoration:none;

    transition:.3s;

}

.partner-banner-btn:hover{

    color:#fff;

    transform:translateY(-2px);

}

.partner-banner-btn img{

    width:42px;

    flex-shrink:0;

}

.partner-banner-btn span{

    display:block;

    font-size:20px;

    font-weight:700;

    line-height:1.2;

}

.partner-banner-btn small{

    display:block;

    margin-top:4px;

    font-size:16px;

    font-weight:600;

}

@media(max-width:849px){

.partner-banner{

    flex-direction:column;

    text-align:center;

    padding:28px;

}

.partner-banner-content{

    font-size:20px;

}

}

@media(max-width:549px){

.partner-banner{

    gap:24px;

}

.partner-banner-icon{

    flex:0 0 auto;

    width:90px;

}

.partner-banner-content{

    font-size:18px;

    line-height:1.6;

}

.partner-banner-btn{

    width:100%;

    justify-content:center;

    padding:16px;

}

.partner-banner-btn span{

    font-size:16px;

}

.partner-banner-btn small{

    font-size:12px;

}

}
.infrastructure-section {
    align-items: stretch;
}

.infrastructure-section > .col {
    display: flex;
}

.infrastructure-section > .col > .col-inner {
    width: 100%;
}

.infrastructure-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.infrastructure-item {
    align-items: flex-start;
    justify-content: center;
}

.infrastructure-item:last-child {
    margin-bottom: 0;
}

.infrastructure-icon {
    padding-top: 12px;
}

.infrastructure-icon img {
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.infrastructure-title {
    margin-bottom: 10px;
}

.infrastructure-title p {
    margin: 0;
    color: #0065b3;
    font-family: 'Afacad Flux', Arial, sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.infrastructure-description {
    margin: 0;
    color: #171717;
    font-size: 24px;
    font-family: 'Afacad Flux', Arial, sans-serif;
    line-height: 1.35;
    font-weight: 400px;
}

.infrastructure-description p {
    margin: 0;
}

.infrastructure-image {
    padding: 0 !important;
}

.infrastructure-image .img,
.infrastructure-image .img-inner {
    height: 100%;
}

.infrastructure-image img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.infrastructure-image::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:260px;

    height:100%;

    background:linear-gradient(
        90deg,
        #fff 0%,
        rgba(255,255,255,.98) 12%,
        rgba(255,255,255,.92) 24%,
        rgba(255,255,255,.75) 42%,
        rgba(255,255,255,.45) 65%,
        rgba(255,255,255,.12) 88%,
        rgba(255,255,255,0) 100%
    );

}

@media (max-width: 849px) {
    .infrastructure-content {
        padding: 10px 0 30px;
    }

    .infrastructure-title h2,
    .infrastructure-title h3,
    .infrastructure-title h4 {
        font-size: 22px;
    }

    .infrastructure-description {
        font-size: 24px;
    }

    .infrastructure-image img {
        min-height: 420px;
    }
}

@media (max-width: 549px) {
    .infrastructure-content {
      padding: 0 15px;
    } 

    .infrastructure-icon img {
        width: 46px;
        height: 46px;
    }

    .infrastructure-title h2,
    .infrastructure-title h3,
    .infrastructure-title h4 {
        font-size: 19px;
    }

    .infrastructure-description {
        font-size: 24px;
    }

    .infrastructure-image img {
        min-height: 300px;
    }
}

.advantage-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:0px;

}

.advantage-card{
    position:relative;
    min-height:120px;
    border:2px solid #2D95EA;
    border-radius:12px;
    background:#fff;
    padding: 26px 10px 30px 0
}

.advantage-tag{
    position:absolute;
    left:50%;
    top:-32px;
    transform:translateX(-50%);
    min-width:120px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:16px;
    font-weight:700;
    border-radius:4px 4px 0 0;

}

.orange{

    background:#FF7F00;

}

.blue{

    background:#005EAF;

}

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

.advantage-card li{
    margin-bottom:36px;
    text-align:center;
    font-size:16px;
    line-height:1.35em;
    color:#2b2b2b;
    font-family: 'Afacad Flux', Arial, sans-serif;
}

.advantage-card li:last-child{
    margin-bottom:0;
}

.advantage-center{
    flex-shrink:0;
}

.advantage-center img{

    width:180px;

    display:block;

}

@media(max-width:849px){

.advantage-wrapper{

    flex-direction:column;

    gap:40px;

}

.advantage-card{

    width:100%;

    max-width:420px;

}

.advantage-center img{

    width:180px;

}

}

@media(max-width:549px){


}
/* =========================
   HERO SECURITY
========================= */

/* =========================
   HERO WRAPPER
========================= */
.hero-security{

    position:relative;

    overflow:hidden;

}

.hero-security-bg{

    width:100%;

}

.hero-security-bg img{

    width:100% !important;

    display:block;

}

.hero-security-overlay{
    position:absolute;
    left:0;
    top:0;
    width:80%;
    height:100%;
    display:flex;
    align-items:center;
    z-index:10;

}

.hero-security-overlay::before{
    content: "";
    width: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
   background: linear-gradient(
        90deg,
        rgba(0, 97, 175, 0.97) 0%,
        rgba(0, 97, 175, 0.92) 18%,
        rgba(0, 97, 175, 0.68) 40%,
        rgba(217, 217, 217, 0.28) 66%,
        rgba(217, 217, 217, 0) 84%
    );

}
.hero-security-content {
    position: absolute;
    top: 50%;
    left: 7%;
    z-index: 5;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 23, 48, 0.28);
}

.hero-security-title {
    margin: 0 0 22px;
    font-size: 48px;
    font-family: 'Afacad Flux', Arial, sans-serif;
}

.hero-security-title span {
    display: block;
    color: #fff;
    line-height: 1.12;
    font-weight: 800;
}

.hero-security-description {
    max-width: 620px;
    margin: 0 0 32px;
    font-family: 'Afacad Flux', Arial, sans-serif;
    color: #fff;
    font-size: clamp(16px, 1.25vw, 21px);
    line-height: 1.65;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 23, 48, 0.24);
}

.hero-security-button {
    display: inline-flex;
    align-items: center;

    min-height: 58px;
    padding: 9px 18px;

    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 9px;
    background: rgba(0, 97, 175, 0.14);
    backdrop-filter: blur(4px);

    color: #fff !important;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-security-button-icon {
    display: flex;
    flex: 0 0 40px;

    width: 40px;
    height: 40px;
    margin-right: 14px;

    align-items: center;
    justify-content: center;
}

.hero-security-button-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-security-button-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Afacad Flux', Arial, sans-serif;
    text-shadow: 0 1px 6px rgba(0, 23, 48, 0.35);

}

.hero-security-button:hover {
    color: #fff !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 22px rgba(0, 45, 90, 0.2);
}

@media (max-width: 549px) {
    .hero-security-title {
    margin-bottom: 5px;
    font-size: 18px;
    }
    .hero-security-description {
      margin-bottom: 5px;
    }
    .hero-security-button {
      padding: 2px
    }
    .hero-security-button-icon {
      width: 20px;
      height: 20px;
    }
}

@media (max-width: 768px) {
    .security-hero {
        min-height: 0;
        overflow: visible;
    }

    .security-hero__container {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px 18px;
    }

    .security-hero__content {
        order: 1;
        width: 100%;
        padding: 18px 0 14px;
    }

    .security-hero__image {
        position: relative;
        order: 2;
        right: auto;
        top: auto;
        width: 100%;
        height: 240px;
        margin-top: 8px;
    }

    .security-hero__image img {
        object-position: center;
    }

    .security-hero__image::before {
        width: 42%;
        background: linear-gradient(
            to right,
            #fff 0%,
            rgba(255, 255, 255, 0.9) 18%,
            rgba(255, 255, 255, 0.35) 65%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .hero-security-overlay {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        align-items: flex-start;
        padding: 0 16px 0;
        z-index: 3;
    }

    .hero-security-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        padding: 12px 0 16px;
    }

    .hero-security-title {
        margin: 0 0 10px;
        font-size: clamp(24px, 6.5vw, 30px);
        line-height: 1.08;
    }

    .hero-security-description {
        max-width: 100%;
        margin: 0 0 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-security-button {
        width: 100%;
        max-width: 420px;
        min-height: 52px;
        padding: 8px 14px;
        box-sizing: border-box;
    }

    .hero-security-button-text {
        white-space: normal;
        font-size: 13px;
    }

    .hero-security-button-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        margin-right: 10px;
    }

    .hero-security-bg img {
        height: 240px;
        object-fit: cover;
    }

    .hero-security {
        padding-bottom: 10px;
    }

    .hero-security-overlay::before {
        background: linear-gradient(
            90deg,
            rgba(0, 97, 175, 0.96) 0%,
            rgba(0, 97, 175, 0.88) 28%,
            rgba(217, 217, 217, 0.34) 125%,
            rgba(217, 217, 217, 0) 100%
        );
    }
}

.legal-warning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 22px;
    width: 100%;
}

.legal-card {
    min-width: 0;
    min-height: 330px;
    border: 1.5px solid #148de0;
    border-radius: 14px;
    overflow: hidden;
    box-sizing: border-box;
}

.legal-card-blue {
    padding: 34px 28px;
    background: linear-gradient(
        180deg,
        #0a6db8 0%,
        #064a81 48%,
        #010813 100%
    );
    color: #fff;
}

.legal-card-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.legal-card-header img {
    flex: 0 0 78px;
    width: 78px;
    height: auto;
    object-fit: contain;
}

.legal-card-header h3 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
}

.legal-card-blue > p {
    margin: 26px 0 0 96px;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.legal-card-link{
    display:inline-flex;
    align-items:center;

    margin:24px 0 0 96px;

    color:#fff;
    font-size:15px;
    font-weight:700;
    text-decoration:none;

    transition:.2s;
}

.legal-card-link:hover{
    color:#7fd3ff;
}

.legal-card-link::after{
    content:"→";
    margin-left:8px;
    transition:.2s;
}

.legal-card-link:hover::after{
    transform:translateX(4px);
}

/* Card cảnh báo */
.legal-card-warning {
    position: relative;
    display: grid;
    grid-template-columns: 1.45fr 0.8fr;
    align-items: center;
    padding: 28px 34px;
    border-color: #940000;
    background: linear-gradient(
        180deg,
        #f20a0a 0%,
        #990000 42%,
        #1c0000 100%
    );
    color: #fff;
}

.legal-warning-content {
    position: relative;
    z-index: 2;
}

.legal-warning-content h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
}

.legal-warning-content p {
    margin: 0 0 18px;
    color: #fff;
    font-size: 18px;
    line-height: 1.55;
}

.legal-warning-content p:last-child {
    margin-bottom: 0;
}

.legal-warning-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-warning-image img {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .legal-warning-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-card-warning {
        grid-column: 1 / -1;
    }
}

@media (max-width: 849px) {
    .legal-card {
        min-height: auto;
    }

    .legal-card-blue {
        padding: 28px 24px;
    }

    .legal-card-header img {
        flex-basis: 68px;
        width: 68px;
    }

    .legal-card-header h3 {
        font-size: 21px;
    }

    .legal-card-blue > p {
        margin-left: 86px;
        font-size: 16px;
    }

    .legal-card-warning {
        grid-template-columns: 1.3fr 0.7fr;
        padding: 26px;
    }
}

@media (max-width: 549px) {
    .legal-warning-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .legal-card-warning {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .legal-card-header {
        gap: 14px;
    }

    .legal-card-header img {
        flex-basis: 58px;
        width: 58px;
    }

    .legal-card-header h3 {
        font-size: 19px;
    }

    .legal-card-blue > p {
        margin: 22px 0 0 72px;
        font-size: 15px;
    }

        .legal-card-link{
        margin-left:72px;
        font-size:14px;
    }

    .legal-warning-content h3 {
        font-size: 20px;
    }

    .legal-warning-content p {
        font-size: 15px;
    }

    .legal-warning-image img {
        max-width: 180px;
    }
}
.process-flow {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto
        minmax(0, 1fr) auto
        minmax(0, 1fr) auto
        minmax(0, 1fr) auto
        minmax(0, 1fr);

    align-items: center;
    gap: 22px;

    width: 100%;
    padding: 30px 36px 38px;

    border-radius: 10px;

    background: linear-gradient(
        180deg,
        #0874bd 0%,
        #1f8dd8 52%,
        #3ba8f5 100%
    );

    box-sizing: border-box;
}

.process-step {
    min-width: 0;
    text-align: center;
}

.process-number {
    margin-bottom: 14px;

    color: #fff;
    font-family: "Afacad Flux", Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.process-icon {
    display: flex;
    width: 98px;
    height: 98px;
    margin: 0 auto 16px;

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

    border-radius: 50%;

    background: radial-gradient(
        circle,
        #fff 52%,
        #e9f7ff 68%,
        rgba(255, 255, 255, 0.15) 100%
    );

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.65),
        inset 0 0 10px rgba(0, 118, 204, 0.12);
}

.process-icon img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.process-label {
    min-height: 48px;

    color: #fff;
    font-family: "Afacad Flux", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.process-arrow {
    align-self: center;
    color: #fff;
    font-size: 54px;
    line-height: 1;
    font-weight: 300;
}

@media (max-width: 849px) {
    .process-flow {
        display: flex;
        gap: 0px;

        padding: 28px 24px 34px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .process-step {
        flex: 0 0 100px;
        scroll-snap-align: start;
    }

    .process-arrow {
        flex: 0 0 38px;
        margin-top: 26px;
        font-size: 44px;
    }

    .process-icon {
        width: 88px;
        height: 88px;
    }

    .process-icon img {
        width: 56px;
        height: 56px;
    }

    .process-label {
        font-size: 17px;
    }
}

@media (max-width: 549px) {
    .process-flow {
        display: flex;
        flex-direction: column;
        gap: 0px;

        padding: 26px 20px;

        overflow: visible;
    }

    .process-step {
        display: grid;
        grid-template-columns: 42px 78px minmax(0, 1fr);
        align-items: center;
        gap: 14px;

        width: 100%;
        text-align: left;
    }

    .process-number {
        margin: 0;
        font-size: 20px;
        text-align: center;
    }

    .process-icon {
        width: 72px;
        height: 72px;
        margin: 0;
    }

    .process-icon img {
        width: 46px;
        height: 46px;
    }

    .process-label {
        min-height: 0;
        font-size: 17px;
    }

    .process-arrow {
        margin: 0 0 0 56px;
        transform: rotate(90deg);
        font-size: 34px;
    }
}

.approval-process {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    border: 1px solid #087ecb;
    border-radius: 16px;
    overflow: hidden;
}

.approval-left {
    position: relative;
    min-width: 0;
    padding: 20px 28px;
    border-right: 1px solid #087ecb;
}

.approval-stairs {
    display: block;
    width: 100%;
    height: auto;
}

/* Nhãn nằm chồng lên ảnh */
.approval-label {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    pointer-events: none;
}

.approval-label__number,
.approval-label__text {
    position: absolute;
    white-space: nowrap;
    line-height: 1.15;
}

.approval-label__number {
    font-size: clamp(24px, 2.5vw, 40px);
    transform: translate(-50%, -50%);
}

.approval-label__text {
    font-size: clamp(18px, 2vw, 30px);
    transform: translateY(-50%);
}

/* Bước 03 */
.approval-label--3 {
    inset: 0;
}

.approval-label--3 .approval-label__number {
    left: 31%;
    top: 20%;
}

.approval-label--3 .approval-label__text {
    left: 44%;
    top: 29%;
}

/* Bước 02 */
.approval-label--2 {
    inset: 0;
}

.approval-label--2 .approval-label__number {
    left: 24%;
    top: 46%;
}

.approval-label--2 .approval-label__text {
    left: 39%;
    top: 52%;
}

/* Bước 01 */
.approval-label--1 {
    inset: 0;
}

.approval-label--1 .approval-label__number {
    left: 17%;
    top: 76%;
}

.approval-label--1 .approval-label__text {
    left: 31%;
    top: 79%;
}

.approval-right {
    padding: 72px 58px 48px;
}

.approval-right img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    border-radius: 14px;
}

.approval-right p {
    font-family: "Afacad Flux", Arial, sans-serif;
    margin: 24px 0 0;
    color: #0871c2;
    font-size: 24px;
    line-height: 1.45;
}
@media screen and (max-width: 849px) {
    .approval-process {
        grid-template-columns: 1fr;
    }

    .approval-left {
        border-right: 0;
        border-bottom: 1px solid #087ecb;
        padding: 16px;
    }

    .approval-right {
        padding: 28px 20px;
    }

    .approval-right p {
        font-size: 18px;
    }

    .approval-label__number {
        font-size: clamp(18px, 5vw, 30px);
    }

    .approval-label__text {
        font-size: clamp(12px, 3vw, 20px);
    }
}
.ecosystem-section {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    box-sizing: border-box;
    text-align: center;
}

.ecosystem-heading {
    margin: 0 0 50px;
    color: #0061af;
    font-family: "Afacad Flux", Arial, sans-serif;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.ecosystem-diagram {
    position: relative;
    width: min(760px, 58vw);
    margin: 120px auto 0;
}

.ecosystem-ring {
    display: block;
    width: 100%;
    height: auto;
}

/* 3 ảnh icon nhỏ */
.ecosystem-node {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-node img {
    display: block;
    width: 100%;
    height: auto;
}

.ecosystem-node-top {
    top: -8%;
    left: 50%;
    width: 29%;
    transform: translateX(-50%);
}

.ecosystem-node-left {
    left: -1%;
    bottom: 4%;
    width: 29%;
}

.ecosystem-node-right {
    right: -1%;
    bottom: 4%;
    width: 29%;
}


/* Label chung */
.ecosystem-label {
    position: absolute;
    z-index: 4;
    color: #111;
    font-family: "Afacad Flux", Arial, sans-serif;
}

.ecosystem-label h3 {
    margin: 0;
    color: #111;
    font-size: clamp(26px, 2.4vw, 40px);
    line-height: 1.35;
    font-weight: 800;
}

.ecosystem-label-top {
    left: 50%;
    top: -38%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.ecosystem-label-left {
    left: -34%;
    bottom: 1%;
    width: 250px;
    text-align: right;
}

.ecosystem-label-right {
    right: -34%;
    bottom: 7%;
    width: 250px;
    text-align: left;
}

/* Đường nối */
.ecosystem-line {
    position: absolute;
    display: block;
    background: #111;
}

.ecosystem-line-vertical {
    left: 50%;
    top: calc(100% + 12px);
    width: 3px;
    height: 68px;
    transform: translateX(-50%);
}

.ecosystem-line-left {
    top: 50%;
    left: calc(100% + 24px);
    width: 56px;
    height: 3px;
    transform: translateY(-50%);
}

.ecosystem-line-right {
    top: 50%;
    right: calc(100% + 24px);
    width: 56px;
    height: 3px;
    transform: translateY(-50%);
}

/* Chấm tròn */
.ecosystem-dot {
    position: absolute;
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
}

.ecosystem-dot-top {
    left: 50%;
    top: calc(100% + 76px);
    transform: translateX(-50%);
    background: #1c5dac;
}

.ecosystem-dot-left {
    top: 50%;
    left: calc(100% + 78px);
    transform: translateY(-50%);
    background: #53a8df;
}

.ecosystem-dot-right {
    top: 50%;
    right: calc(100% + 78px);
    transform: translateY(-50%);
    background: #53a8df;
}

.news-single-post {
    width: 100%;
    padding: 48px 0 72px;
    background: #fff;
    font-family: 'Afacad Flux', Arial, sans-serif;
}

.news-single-container {
    width: 100% !important;
    margin: 0 auto;
}

/* BANNER */

.news-single-banner {
    display: block;
    overflow: hidden;
    width: 100%;
    border-radius: 4px;
}

.news-single-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.news-single-banner--top {
    max-width: 680px;
    margin: 0 auto 42px;
}

.news-single-banner--bottom {
    margin: 56px 0 52px;
}

/* HEADER */

.news-single-header {
    margin-bottom: 28px;
}

.news-single-category {
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    color: #0068b5;
    font-size: 32px;
    font-weight: 600;
   font-family: 'Afacad Flux', Arial, sans-serif;
}

.news-single-title {
    max-width: 920px;
    margin: 0 0 16px;
    color: #222;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    font-family: 'Afacad Flux', Arial, sans-serif;

}

.news-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #7a7a7a;
    font-size: 14px;
}

.news-single-meta__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #a0a0a0;
}

/* THUMBNAIL */

.news-single-thumbnail {
    margin-bottom: 34px;
}

.news-single-thumbnail__image {
    display: block;
    width: 100%;
    max-height: 580px;
    object-fit: cover;
}

/* CONTENT */

.news-single-content {
    color: #333;
    font-size: 20px;
    line-height: 1.75;
      font-family: 'Afacad Flux', Arial, sans-serif;

}

.news-single-content > :first-child {
    margin-top: 0;
}

.news-single-content > :last-child {
    margin-bottom: 0;
}

.news-single-content p {
    margin-bottom: 20px;
}

.news-single-content h2,
.news-single-content h3,
.news-single-content h4 {
    color: #222;
    font-weight: 700;
    line-height: 1.35;
}

.news-single-content h2 {
    margin: 38px 0 16px;
    font-size: 30px;
}

.news-single-content h3 {
    margin: 30px 0 14px;
    font-size: 24px;
}

.news-single-content ul,
.news-single-content ol {
    padding-left: 24px;
}

.news-single-content li {
    margin-bottom: 8px;
}

.news-single-content a {
    color: #0068b5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-single-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
}

.news-single-content blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    border-left: 4px solid #0068b5;
    background: #f4f8fb;
    color: #28445b;
    font-style: normal;
}

/* FEATURED NEWS */

.news-featured {
    margin-top: 30px;
}

.news-featured__header {
    margin-bottom: 22px;
}

.news-featured__header h2 {
    margin: 0;
    color: #222;
    font-size: 24px;
    font-weight: 700;
}

.news-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.news-featured-card {
    overflow: hidden;
    border: 1px solid #d9d9d9;
    background: #fff;
}

.news-featured-card__link {
    display: block;
    height: 100%;
}

.news-featured-card__image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eef2f5;
}

.news-featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-featured-card:hover .news-featured-card__image img {
    transform: scale(1.05);
}

.news-featured-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e9ef, #f6f8fa);
}

.news-featured-card__content {
    padding: 13px 14px 15px;
}

.news-featured-card__content h3 {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-featured-card__content span {
    color: #999;
    font-size: 12px;
}

/* REMOVE DEFAULT FLATSOME SINGLE STYLE */

.single-post .entry-header,
.single-post .entry-meta,
.single-post .entry-divider,
.single-post .entry-footer,
.single-post .badge.post-date {
    display: none;
}

.single-post .blog-wrapper,
.single-post .blog-single,
.single-post .article-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* TABLET */

@media (max-width: 849px) {
    .news-single-post {
        padding-top: 36px;
    }

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

/* MOBILE */

@media (max-width: 549px) {
    .news-single-post {
        padding: 24px 0 48px;
    }

    .news-single-container {
        width: calc(100% - 24px);
    }

    .news-single-banner--top {
        margin-bottom: 28px;
    }

    .news-single-title {
        font-size: 30px;
    }

    .news-single-content {
        font-size: 16px;
    }

    .news-single-banner--bottom {
        margin: 38px 0;
    }

    .news-featured__grid {
        grid-template-columns: 1fr;
    }
}

.integration-banner{

    position:relative;
    overflow:hidden;

}

.integration-bg{

    display:block;
    width:100%;

}

.integration-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:5% 6%;

}

.integration-title{

    margin:0 0 50px;

    color:#fff;

    font-size:52px;
    font-weight:800;
    line-height:1.2;

}

.integration-flow{

    display:flex;
    align-items:center;
    gap:26px;

}

.integration-card{

    width:180px;
    height:220px;

    border:3px solid rgba(255,255,255,.8);
    border-radius:14px;

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

    backdrop-filter:blur(2px);

}

.integration-card img{
    width:72px;
    margin-bottom:18px;

}

.integration-card span{

    color:#fff;

    text-align:center;

    font-size:22px;
    line-height:1.4;
    font-weight:700;

}

.integration-symbol{

    color:#fff;

    font-size:70px;
    font-weight:700;

}

.integration-result{

    color:#fff;

    font-size:30px;
    line-height:1.3;
    font-weight:800;

}

@media(max-width:991px){

.integration-title{

    font-size:40px;

}

.integration-flow{

    gap:18px;

}

.integration-card{

    width:150px;
    height:190px;

}

.integration-card span{

    font-size:18px;

}

.integration-symbol{

    font-size:52px;

}

.integration-result{

    font-size:34px;

}

}

@media(max-width:768px){

.integration-overlay{

    position:relative;
    background:#003f74;
    padding:30px 20px;

}

.integration-bg{

    display:none;

}

.integration-title{

    font-size:30px;
    text-align:center;

}

.integration-flow{

    flex-direction:column;

}

.integration-card{

    width:100%;
    max-width:320px;
    height:170px;

}

.integration-symbol{

    transform:rotate(90deg);

}

.integration-result{

    text-align:center;
    font-size:28px;

}

}

/* Mặc định chưa hiển thị */
#voucher-thank-you {
    display: none;
}

/* Thu nhỏ toàn bộ popup sau khi submit */
#voucher-popup.is-thank-you {
    width: 520px !important;
    max-width: calc(100vw - 32px) !important;

    padding: 0 !important;
    border: 0 !important;
    border-radius: 22px;

    background: transparent !important;
    overflow: visible;
}

/* Khung cảm ơn */
#voucher-thank-you.is-visible {
    display: flex;
}

.voucher-thank-you {
    position: relative;

    width: 100%;
    min-height: 0;
    padding: 42px 38px 36px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid #dceaf6;
    border-radius: 22px;

    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 45, 85, 0.24);

    box-sizing: border-box;
    text-align: center;
}

/* Icon check */
.voucher-thank-you__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;
    margin-bottom: 22px;

    border-radius: 50%;
    background: linear-gradient(145deg, #19c877, #079b55);

    box-shadow: 0 10px 24px rgba(9, 170, 92, 0.25);
}

.voucher-thank-you__icon span {
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

/* Tiêu đề */
.voucher-thank-you h2 {
    margin: 0 0 14px;

    color: #ff7100;
    font-family: "Afacad Flux", Arial, sans-serif;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

/* Nội dung */
.voucher-thank-you p {
    max-width: 410px;
    margin: 0 0 28px;

    color: #344054;
    font-family: "Afacad Flux", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

/* Nút đóng */
.voucher-thank-you__close {
    min-width: 160px;
    height: 50px;
    margin-top: 15px;
    padding: 0 30px;

    border: 0;
    border-radius: 10px;

    background: linear-gradient(90deg, #ff9a30 0%, #ff7100 100%);

    color: #fff;
    font-family: "Afacad Flux", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;

    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.voucher-thank-you__close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 113, 0, 0.28);
}

/* Mobile */
@media (max-width: 549px) {
    #voucher-popup.is-thank-you {
        width: calc(100vw - 28px) !important;
    }

    .voucher-thank-you {
        padding: 34px 22px 28px;
        border-radius: 18px;
    }

    .voucher-thank-you__icon {
        width: 66px;
        height: 66px;
        margin-bottom: 18px;
    }

    .voucher-thank-you__icon span {
        font-size: 36px;
    }

    .voucher-thank-you h2 {
        font-size: 28px;
    }

    .voucher-thank-you p {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .voucher-thank-you__close {
        width: 100%;
    }
}

.security-hero {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    background: #fff;
}

/* Row vẫn theo container mặc định của Flatsome */
.security-hero__container {
    position: relative;
    z-index: 2;
    min-height: 670px;
    display: flex;
    align-items: center;
}

/* Nội dung bên trái */
.security-hero__content {
    position: relative;
    z-index: 3;
    width: 50%;
    padding-right: 40px;
}

/* Ảnh tách khỏi container */
.security-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 61%;
    height: 100%;
    z-index: 1;
}

.security-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.security-hero__image::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 28%;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        to right,
        #fff 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.55) 65%,
        rgba(255, 255, 255, 0) 100%
    );
}

.section-solution > p {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Afacad Flux', Arial, sans-serif;
  line-height: 135%;
  color: #333;
}
