





/* ======================================================
   menu langding page
   ====================================================== */
/* =========================
   LANDING MENU – ENHANCED
========================= */

.lp-menu {
    position: sticky;
    top: 0;
    z-index: 9999;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,200,255,.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,80,80,.12), transparent 45%),
        linear-gradient(180deg, #050505, #0b0b0b);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.lp-menu-inner {
    max-width: 1250px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.lp-logo {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    color: #00e5ff;
    white-space: nowrap;
}

/* Links container */
.lp-links {
    display: flex !important;
    align-items: center;
    gap: 14px;
}

/* Each menu item */
.lp-links a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .6px;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

/* Glow border effect */
.lp-links a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: 0 0 0 rgba(0,200,255,0);
    transition: .35s;
}

.lp-links a:hover {
    color: #00e5ff;
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(0,200,255,.6);
}

.lp-links a:hover::after {
    box-shadow: 0 0 18px rgba(0,200,255,.5);
}

/* CTA */
.lp-cta a {
    background: linear-gradient(135deg,#ff3d3d,#ff9800);
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 22px rgba(255,80,80,.6);
    transition: all .35s ease;
    white-space: nowrap;
}

.lp-cta a:hover {
    transform: scale(1.06);
    box-shadow: 0 0 32px rgba(255,120,80,.9);
}

/* Mobile */
@media (max-width: 900px) {
    .lp-links {
        display: none !important;
    }
}


/* ================= LANDING MENU – TYPOGRAPHY OPTIMIZED ================= */

/* Desktop menu */
.lp-menu,
.lp-menu * {
    font-family: inherit !important;   /* dùng font theme */
}

.lp-links a {
    font-size: 16.5px;                 /* to hơn */
    font-weight: 700;                 /* đậm vừa */
    text-transform: uppercase;        /* giữ uppercase */
    letter-spacing: .5px;             /* gọn – không vỡ font */
    line-height: 1;
}

/* Logo */
.lp-logo a {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

/* CTA button */
.lp-cta a {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .6px;
}

/* Hover readability */
.lp-links a:hover {
    text-shadow: 0 0 6px rgba(0,200,255,.5);
}

/* ================= MOBILE MENU OPTIMIZATION ================= */

@media (max-width: 900px) {

    .lp-menu-inner {
        padding: 10px 14px;
    }

    .lp-logo a {
        font-size: 16px;
    }

    /* Mobile CTA vẫn giữ */
    .lp-cta a {
        font-size: 13.5px;
        padding: 9px 16px;
    }

    /* Nếu sau này bật lại links mobile */
    .lp-links a {
        font-size: 15px;
        padding: 12px 14px;
    }
}






/* ======================================================
   HERO STANDEE - CLEAN VERSION (FLATSOME SAFE)
   ====================================================== */

/* RESET SCOPE */
.hero-standee * {
  box-sizing: border-box;
}

/* SECTION */
.hero-standee {
  width: 100%;
  background: linear-gradient(120deg, #050505, #1b1b1b);
  padding: 80px 0;
  color: #ffffff;
  overflow: hidden;
}

/* CONTAINER */
.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SLIDER */
.hero-left {
  flex: 1;
  min-width: 480px;
}

.slider {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* RIGHT CONTENT */
.hero-right {
  flex: 1;
}

.hero-right h1 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 700;
}

.text-red {
  color: #ff3b3b;
}

.text-blue {
  color: #1e90ff;
}

.sub-title {
  font-size: 17px;
  color: #d9d9d9;
  margin-bottom: 26px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 18px;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #ff3b3b, #ff0000);
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  transition: all 0.25s ease;
}

.hero-cta a.btn-zalo {
  background: linear-gradient(135deg, #1e90ff, #005eff);
}

.hero-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.15);
}

/* ================= MOBILE ================= */

@media (max-width: 1024px) {
  .hero-wrap {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    min-width: auto;
    width: 100%;
  }

  .slider {
    height: 300px;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-right h1 {
    font-size: 30px;
  }
}




/* ===== den phan chieu ===== */

./* ===== LIGHT GLOW - KEEP ROUNDED CORNERS ===== */

.slider {
  border-radius: 18px;
  overflow: hidden;

  filter:
    drop-shadow(0 25px 40px rgba(0,160,255,0.35))
    drop-shadow(0 45px 90px rgba(0,160,255,0.25))
    drop-shadow(0 0 70px rgba(0,160,255,0.45));
}









/* ======================================================
   SECTION 2 - PAIN POINTS - van de
   ====================================================== */

.standee-pain {
  background: linear-gradient(120deg, #0b0b0b, #151515);
  padding: 90px 0;
  color: #ffffff;
}

.pain-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  text-align: center;
}

/* TITLE */
.pain-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.pain-title span {
  color: #ff3b3b;
}

/* GRID */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* ITEM */
.pain-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.pain-item:hover {
  transform: translateY(-6px);
  border-color: #1e90ff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

/* ICON */
.pain-icon {
  font-size: 34px;
  margin-bottom: 16px;
}

/* TEXT */
.pain-item p {
  font-size: 15.5px;
  line-height: 1.5;
  color: #e5e5e5;
}

.pain-item strong {
  color: #1e90ff;
}

/* SOLUTION LINE */
.pain-solution {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 600;
}

.pain-solution span {
  color: #ff3b3b;
}

/* ================= MOBILE ================= */

@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pain-title {
    font-size: 26px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .pain-item {
    padding: 18px 12px;
  }

  .pain-icon {
    font-size: 26px;
  }

  .pain-item p {
    font-size: 13.5px;
  }
}














/* ======================================================
   SECTION 3 - SOLUTION / CONVERSION - VI SAO
   ====================================================== */ 
.standee-solution {
  background: linear-gradient(120deg, #060606, #111111);
  padding: 100px 0;
  color: #ffffff;
}

.solution-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  text-align: center;
}

/* TITLE */
.solution-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 14px;
}

.solution-title span {
  color: #1e90ff;
}

.solution-sub {
  max-width: 860px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: #d8d8d8;
  line-height: 1.6;
}

/* GRID */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.solution-card {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 36px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: #ff3b3b;
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
}

/* ICON */
.solution-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

/* CARD TEXT */
.solution-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1e90ff;            /* XANH NỔI BẬT */
  font-weight: 700;
  letter-spacing: 0.2px;
}


.solution-card p {
  font-size: 15px;
  color: #e1e1e1;
  line-height: 1.5;
}

/* CTA */
.solution-cta {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.solution-cta a {
  min-height: 54px;
  padding: 14px 38px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.solution-cta .btn-main {
  background: linear-gradient(135deg,#ff3b3b,#ff0000);
  color: #ffffff;
}

.solution-cta .btn-sub {
  background: linear-gradient(135deg,#1e90ff,#005eff);
  color: #ffffff;
}

.solution-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1);
}

/* TEXT HIGHLIGHT */
.hl-red {
  color: #ff3b3b;
  font-weight: 700;
}

.hl-blue {
  color: #1e90ff;
  font-weight: 700;
}

/* ================= MOBILE ================= */

@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solution-title {
    font-size: 28px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .solution-card {
    padding: 22px 16px;
  }

  .solution-card h3 {
    font-size: 15px;
  }

  .solution-card p {
    font-size: 13px;
  }

  .solution-cta {
    flex-direction: column;
  }
}
/* ======================================================
   SECTION 3 – FORCE COLOR HIGHLIGHT + TITLE
====================================================== */

/* Text highlight */
.hl-red {
  color: #ff3b3b !important;
  font-weight: 700 !important;
}

.hl-blue {
  color: #1e90ff !important;
  font-weight: 700 !important;
}

/* Card title */
.solution-card h3 {
  color: #1e90ff !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  font-size: 18px !important;
}

/* Icon highlight */
.solution-icon {
  font-size: 34px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(30,144,255,0.5));
}




/* ======================================================
   SECTION 4 – ORDER PROCESS TIMELINE - quy trinh
====================================================== */


/* ===== COLOR SYSTEM ===== */
:root {
  --blue-main: #1e90ff;
  --blue-sub:  #00c6ff;

  --red-main:  #ff3b3b;
  --red-sub:   #ff6b6b;

  --glow-blue: rgba(30,144,255,0.45);
  --glow-red:  rgba(255,59,59,0.45);
}

/* ===== SECTION BASE ===== */
.standee-process {
  padding: 90px 20px;
  background: #0b0b0b;
  color: #ffffff;
}

.process-wrap {
  max-width: 1280px;
  margin: auto;
  text-align: center;
}

/* ===== TITLE ===== */
.process-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 12px;
}

.process-title span {
  background: #1e90ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.process-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
}

/* ===== TIMELINE ===== */
.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 20px;
}

/* ===== STEP CARD ===== */
.process-step {
  min-width: 240px;
  background: linear-gradient(180deg,#141414,#1f1f1f);
  border-radius: 16px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
  backface-visibility: hidden;
}




/* Number */
.step-number {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg,var(--blue-main),var(--red-main));
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
  line-height: 38px;
  margin: 0 auto 12px;
}

/* Icon */
.step-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

/* Step Title */
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Step Text */
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.process-step strong {
  color: #ffffff;
}

/* ===== CONNECT LINE ===== */
.process-line {
  flex: 1;
  height: 3px;
  min-width: 60px;
  background: linear-gradient(90deg,var(--blue-main),var(--red-main));
  border-radius: 2px;
}

/* ===== CTA ===== */
.process-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button (Blue) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 26px;
  border-radius: 40px;
  background: linear-gradient(135deg,var(--blue-main),var(--blue-sub));
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px var(--glow-blue);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px var(--glow-blue);
}

/* Secondary Button (Red) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 14px 26px;
  border-radius: 40px;
  border: 2px solid var(--red-main);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg,var(--red-main),var(--red-sub));
  box-shadow: 0 6px 20px var(--glow-red);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .process-title {
    font-size: 28px;
  }

  .process-step {
    min-width: 210px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}

/* ======================================================
   ANIMATED BORDER LOOP – PROCESS STEP
====================================================== */

.process-step::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #1e90ff 90deg,
    #ff3b3b 180deg,
    #1e90ff 270deg,
    transparent 360deg
  );
  animation: border-spin 4s linear infinite;
  z-index: 0;
}

/* Mask tạo viền rỗng bên trong */
.process-step::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(180deg,#141414,#1f1f1f);
  border-radius: 14px;
  z-index: 1;
}

/* Nội dung nằm trên */
.process-step > * {
  position: relative;
  z-index: 2;
}

/* Animation */
@keyframes border-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hiệu ứng mạnh hơn khi hover */
.process-step:hover::before {
  filter: brightness(1.4);
}

/* Mobile – giảm tải animation */
@media (max-width: 768px) {
  .process-step::before {
    animation-duration: 7s;
  }
}




/* ==================================================
   SECTION STANDEE – FINAL STABLE VERSION - dich vu
================================================== */

.section-standee,
.section-standee * {
    box-sizing: border-box;
}

/* SECTION */
.section-standee {
    width: 100%;
    overflow: hidden;
    background: radial-gradient(circle at top, #1c1c1c, #0b0b0b);
    padding: 80px 0;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* CONTAINER */
.standee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TITLES */
.standee-title-main {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 10px;
}

.standee-title-main span { color: #00c6ff; }

.standee-sub {
    text-align: center;
    color: #cfcfcf;
    margin-bottom: 55px;
    font-size: 15px;
}

/* ==================================================
   FLEX GRID – FORCE 3 COLUMNS (NO HACK)
================================================== */

.standee-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    width: 100%;
}

/* Desktop */
.standee-card {
    flex: 1 1 0;
    max-width: 360px;   /* khóa độ rộng để không rơi dòng */
}

/* Tablet */
@media (max-width: 1024px) {
    .standee-grid {
        flex-wrap: wrap;
    }
    .standee-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .standee-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==================================================
   CARD DESIGN – FULL EFFECT
================================================== */

.standee-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #111, #1b1b1b);
    border-radius: 18px;
    padding: 28px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0,0,0,.65);
}

/* Glow animation */
.standee-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(
        120deg,
        #00c6ff,
        #ff2d2d,
        #00ffd5,
        #00c6ff
    );
    filter: blur(14px);
    opacity: 0.35;
    animation: glowRotate 7s linear infinite;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Inner layer */
.standee-card::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 16px;
    background: #121212;
    z-index: 1;
}

.standee-content {
    position: relative;
    z-index: 2;
}

/* Card titles */
.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #00c6ff;
}

.card-title.red { color: #ff3b3b; }

/* List */
.standee-list {
    margin: 0;
    padding: 0;
}

.standee-list li {
    list-style: none;
    position: relative;
    padding: 11px 0 11px 22px;
    font-size: 15px;
    color: #e5e5e5;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.standee-list li:last-child { border-bottom: none; }

.standee-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 11px;
    color: #00ffd5;
    font-weight: 700;
}

/* CTA */
.standee-cta {
    width: 100%;
    text-align: center;
    margin-top: 70px;
}

.standee-btn {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 60px;
    background: linear-gradient(135deg, #00c6ff, #ff2d2d);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0,0,0,.55);
    transition: transform .3s ease, box-shadow .3s ease;
}

.standee-btn:hover {
    transform: translateY(-3px) scale(1.04);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .standee-card::before { animation: none; }
}


/* ==================================================
   UI POLISH + PERFORMANCE BOOST PATCH
================================================== */

/* === 1. SPACING CÂN ĐỐI HƠN === */

/* Giảm padding card để gọn mắt */
.standee-card {
    padding: 26px 26px 28px;
}

/* Tăng khoảng cách giữa tiêu đề & list */
.card-title {
    margin-bottom: 18px;
}

/* List giãn dòng đều hơn */
.standee-list li {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Khoảng cách CTA hợp lý hơn */
.standee-cta {
    margin-top: 80px;
}

/* === 2. TỐI ƯU FPS ANIMATION === */

/* GPU acceleration */
.standee-card::before {
    will-change: transform;
    transform: translateZ(0);
    animation-duration: 9s;     /* chậm hơn → nhẹ CPU */
}

/* Hover chỉ dùng transform (không repaint) */
.standee-card {
    transition: transform .35s ease;
}

.standee-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* === 3. HOVER HIGHLIGHT TỪNG DÒNG === */

.standee-list li {
    transition: 
        color .25s ease,
        padding-left .25s ease,
        background .25s ease;
    border-radius: 6px;
}

.standee-list li:hover {
    color: #ffffff;
    padding-left: 28px;
    background: linear-gradient(
        90deg,
        rgba(0,198,255,0.12),
        rgba(255,45,45,0.08),
        transparent
    );
}

/* Icon sáng hơn khi hover */
.standee-list li:hover::before {
    color: #00ffff;
}

/* === 4. CTA – TĂNG ĐỘ NỔI / CHUYỂN ĐỔI === */

.standee-btn {
    position: relative;
    overflow: hidden;
    letter-spacing: .3px;
}

/* Light sweep */
.standee-btn::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -120%;
    width: 60%;
    height: 180%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: btnSweep 4.5s infinite;
}

@keyframes btnSweep {
    0% { left: -120%; }
    60% { left: 120%; }
    100% { left: 120%; }
}

/* Hover CTA */
.standee-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 22px 48px rgba(0,0,0,.8);
}

/* === 5. MOBILE PERFORMANCE OPTIMIZE === */

@media (max-width: 768px) {
    .standee-card::before {
        animation-duration: 14s;   /* giảm tải mobile */
        filter: blur(10px);
    }
}
/* ===== REVEAL FALLBACK FIX ===== */
/* Nếu JS chưa chạy, vẫn hiển thị nội dung */

.reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* Khi JS gắn class active thì vẫn animate */
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* TRUST BADGE */
.standee-trust {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 70px;
    text-align: center;
}

.trust-item {
    min-width: 140px;
}

.trust-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg,#00c6ff,#ff2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-label {
    font-size: 14px;
    color: #cfcfcf;
}

/* Mobile */
@media(max-width:768px){
    .standee-trust {
        flex-wrap: wrap;
        gap: 30px;
    }
}


/* Scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(.96);
    transition: all .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}



/* ==================================================
   SECTION 5 – PRICE TABLE - bang gia
================================================== */
/* ================= PRICE SECTION ================= */

.price-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #141414, #000);
    color: #fff;
    text-align: center;
}

.price-title {
    color: #00c6ff !important;
    font-size: clamp(26px,3.5vw,36px);
    font-weight: 800;
    margin-bottom: 10px;
}

.price-note {
    color: #ccc;
    margin-bottom: 30px;
}

.price-badge {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 40px;
    background: linear-gradient(135deg,#ff2d2d,#ff9800);
    font-weight: 700;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,.6);
}

/* TABLE */
.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    border-collapse: collapse;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    color: #ff3b3b !important;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
}
.price-table td strong {
    color: #ff1f1f !important;
    font-size: 15px;
}
.price-table th {
    background: #1e1e1e;
    color: #00c6ff;
}

.price-table tr:hover {
   color: #ffffff !important;
   background: rgba(0,198,255,.06);
  
}
/* Hover vẫn dễ đọc */
.price-table tr:hover td {
    color: #ffffff !important;
}

/* COMBO */
.price-combo {
    margin-top: 35px;
    font-size: 16px;
    color: #00ffd5;
}

/* CTA */
.price-actions {
    margin-top: 45px;
}

.price-btn {
    padding: 16px 40px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg,#00c6ff,#ff2d2d);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 40px rgba(0,0,0,.7);
    transition: .3s ease;
}

.price-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

/* POPUP */
.quote-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.quote-popup.active {
    display: flex;
}

.quote-box {
    width: 100%;
    max-width: 420px;
    background: #111;
    padding: 30px;
    border-radius: 18px;
    position: relative;
}

.quote-box h3 {
    margin-bottom: 15px;
}

.quote-box input,
.quote-box textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    border: none;
}

.quote-box button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg,#00c6ff,#ff2d2d);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
}

.close-popup {
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer;
    font-size: 22px;
}

.hotline {
    margin-top: 15px;
    text-align: center;
    color: #00ffd5;
}

/* STICKY CTA */
.price-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.price-sticky a {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ff2d2d,#ff9800);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}



/* ================= SOCIAL PROOF GALLERY - thu vien anh ================= */

.gallery-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #111, #000);
    text-align: center;
}

.gallery-title {
    font-size: clamp(26px,3.5vw,36px);
    font-weight: 800;
    color: #00c6ff;
    margin-bottom: 10px;
}

.gallery-sub {
    color: #cfcfcf;
    margin-bottom: 50px;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 22px;
    max-width: 1200px;
    margin: auto;
}

/* Item */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 38px rgba(0,0,0,.65);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.gallery-item span {
    position: absolute;
    inset: auto 0 0 0;
    padding: 10px;
    font-size: 14px;
    background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
}

/* Hover */
.gallery-item:hover img {
    transform: scale(1.12);
}

/* Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 34px;
    cursor: pointer;
}

/* ===============================
   SECTION COMMIT – TRUST BLOCK - cam ket
================================ */

.section-commit {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #111, #000);
}

.commit-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.commit-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    margin-bottom: 50px;
    color: #fff;
}

.commit-title span {
    color: #00c6ff;
    text-shadow: 0 0 12px rgba(0,198,255,.6);
}

/* Grid */
.commit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Item */
.commit-item {
    padding: 22px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
    font-size: 15px;
    color: #eaeaea;
    transition: .35s ease;
    backdrop-filter: blur(4px);
}

/* Hover highlight */
.commit-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #00c6ff;
    box-shadow: 0 0 18px rgba(0,198,255,.35);
    color: #00eaff;
}

/* Responsive */
@media (max-width: 1024px) {
    .commit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .commit-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* ===============================
   FINAL CTA – CONVERSION BLOCK -  cta chuyen doi
================================ */

.section-final-cta {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #101820, #000);
    text-align: center;
}

.final-cta-container {
    max-width: 980px;
    margin: auto;
}

.final-cta-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 20px;
}

.final-cta-title span {
    color: #ff5252;
    text-shadow: 0 0 18px rgba(255,82,82,.7);
}

/* Hotline */
.final-cta-hotline {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}

.final-cta-hotline a {
    color: #00e5ff;
    text-decoration: none;
}

.final-cta-hotline a:hover {
    text-decoration: underline;
}

/* Buttons */
.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Zalo */
.cta-btn.zalo {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    box-shadow: 0 0 18px rgba(0,198,255,.6);
}

/* Form */
.cta-btn.form {
    background: linear-gradient(135deg, #ff5252, #ff9800);
    color: #fff;
    box-shadow: 0 0 18px rgba(255,152,0,.6);
}

/* Hover */
.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.1);
}

/* Note */
.final-cta-note {
    font-size: 14px;
    color: #ccc;
}

/* Mobile */
@media (max-width: 640px) {
    .final-cta-hotline {
        font-size: 18px;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        white-space: nowrap;
        font-size: clamp(26px, 2.4vw, 38px);
    }
}




/* =================================================
   FORCE FONT ĐỒNG BỘ VỚI FLATSOME THEME (FIX TRIỆT ĐỂ) phông chữ
================================================= */

.section-standee,
.price-section,
.gallery-section,
.section-commit,
.section-final-cta,
.standee-process,
.section-footer {
    font-family: inherit !important;
}

/* Ép tất cả text con kế thừa font theme */
.section-standee *,
.price-section *,
.gallery-section *,
.section-commit *,
.section-final-cta *,
.standee-process*,
.section-footer * {
    font-family: inherit !important;
    font-weight: inherit;
    letter-spacing: normal !important;
}



/* Remove UX Builder empty <p> inside products grid */
.products-grid > p {
    display: none !important;
}

/* ================= PRODUCTS SECTION - san pham ================= */
/* ================= PRODUCTS GRID CLEAN LAYOUT ================= */


/* TIÊU ĐỀ CHÍNH - MÀU ĐỎ */
.section-products .products-title {
    color: #ff2b2b !important;
    text-shadow: 0 0 12px rgba(255, 43, 43, 0.6);
}

/* TIÊU ĐỀ PHỤ - MÀU XANH */
.section-products .products-sub {
    color: #00c8ff !important;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}


.section-products {
    padding: 80px 15px;
    background: radial-gradient(circle at center, #0c0c0c 0%, #000 70%);
}

/* Grid wrapper */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 26px !important;
    max-width: 1320px;
    margin: 0 auto !important;
    width: 100%;
}

/* Card */
.product-card {
    background: linear-gradient(180deg, #121212, #0a0a0a);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgb(15, 132, 211);
    transition: .35s ease;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0,255,255,.25);
}

/* Image */
.product-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 12px;
}

/* Text */
.product-card h3 {
    font-size: 18px;
    color: #00e0ff;
    margin-bottom: 6px;
}

.product-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.45;
    margin-bottom: 8px;
}

.product-card .price {
    margin-top: auto;
    font-weight: 700;
    color: #ff4d4d;
}

/* Tablet */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .product-card img {
        height: 150px;
    }
}
/* ================= CENTER TITLE PRODUCTS SECTION ================= */

.section-products .products-title,
.section-products .products-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-products .products-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.section-products .products-sub {
    font-size: 16px;
    opacity: 0.85;
    max-width: 680px;
}
.section-products .products-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}




/* ================= SOCIAL PROOF GALLERY - thu vien anh ================= */




/* ======================================================
   FULL WIDTH EXPAND PANEL GALLERY
====================================================== */

.expand-gallery-wrapper {
    background: radial-gradient(circle at center, #0b0f14 0%, #000 70%);
    padding: 80px 0 0;
}

/* Top cards */
.expand-cards {
    display: flex;
    gap: 30px;
    max-width: 1240px;
    margin: auto;
    padding: 0 15px 40px;
}

.expand-card {
    flex: 1;
    position: relative;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,240,255,0.18);
    box-shadow: 0 18px 50px rgba(0,0,0,.65);
}

.expand-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.expand-card h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
    text-align: center;
    color: #00f0ff;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

/* Expand panel */
.expand-panel {
    display: none;
    background: linear-gradient(to bottom, #05080c, #000);
    border-top: 1px solid rgba(0,240,255,.15);
    padding: 40px 5vw 50px;
}

/* Active */
.expand-panel.active {
    display: block;
}

/* Viewer */
.panel-viewer img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #000;
    border-radius: 14px;
    cursor: pointer;
}

/* Full width strip */
.panel-strip {
    display: flex;
    gap: 16px;
    margin-top: 25px;
}

.panel-strip img {
    flex: 1;
    height: 130px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: .3s;
}

.panel-strip img:hover {
    transform: scale(1.05);
    border-color: #00f0ff;
}

/* Mobile */
@media(max-width: 991px){
    .expand-cards {
        flex-direction: column;
    }

    .panel-strip {
        flex-wrap: wrap;
    }

    .panel-strip img {
        flex: 0 0 48%;
        height: 110px;
    }

    .panel-viewer img {
        max-height: 360px;
    }
}


/* ===============================
   MOBILE OPTIMIZATION – GALLERY
================================ */

/* Mobile panel full focus */
@media (max-width: 768px) {

    .expand-panel {
        padding: 20px 12px 30px;
    }

    /* Title */
    .panel-header {
        margin-bottom: 15px;
    }

    .panel-header h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .panel-header p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Main image fit screen */
    .panel-viewer img {
        max-height: 55vh;
        border-radius: 10px;
    }

    /* Thumbnail strip – horizontal scroll */
    .panel-strip {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .panel-strip::-webkit-scrollbar {
        height: 4px;
    }

    .panel-strip::-webkit-scrollbar-thumb {
        background: rgba(0,240,255,.4);
        border-radius: 10px;
    }

    .panel-strip img {
        flex: 0 0 42%;
        height: 90px;
    }

    /* Card spacing */
    .expand-cards {
        gap: 18px;
        padding-bottom: 25px;
    }

    .expand-card img {
        height: 200px;
    }
}



/* Close button */
.panel-close {
    position: sticky;
    top: 10px;
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #00f0ff;
    z-index: 10;
    padding: 4px 10px;
}

@media(min-width: 769px){
    .panel-close {
        display: none;
    }
}
