/* Start custom CSS for html, class: .elementor-element-f6ccce0 *//* Video overlay */
.wana-video-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.68);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:9999;
}
.wana-video-overlay.is-visible{
  display:flex;
}
.wana-video-dialog{
  position:relative;
  width:100%;
  max-width:900px;
  background:#000;
  border-radius:18px;
  box-shadow:0 24px 70px rgba(0,0,0,0.7);
  overflow:hidden;
}
.wana-video-inner{
  position:relative;
  padding-top:56.25%; /* 16:9 */
}
.wana-video-inner iframe,
.wana-video-inner video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.wana-video-close{
  position:absolute;
  top:10px;
  right:10px;
  width:32px;
  height:32px;
  border-radius:999px;
  border:none;
  background:rgba(0,0,0,0.65);
  color:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.wana-video-close:hover{
  background:rgba(0,0,0,0.9);
}

@media(max-width:768px){
  .wana-video-dialog{
    max-width:100%;
    border-radius:12px;
  }
}

/* Hero kicker dot pulse – version mới, sáng & nhấp nháy rõ hơn */
.kicker-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 5px !important;
  margin-left: 5px !important;
  border-radius: 100% !important;
  background: #ff0; /* xanh neon kiểu police hơn */
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
  animation: kickerPulse 1s infinite ease-out;
}

@keyframes kickerPulse {
  0% {
    transform: scale(0.6);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
  100% {
    transform: scale(0.25);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.kicker-dot {
  width: 12px;
  height: 12px;

  display: inline-flex;      /* QUAN TRỌNG */
  align-items: center;
  justify-content: center;

  vertical-align: middle;    /* tránh kéo theo dòng chữ */
  flex-shrink: 0;

  margin: 0 5px;
  border-radius: 50%;
  background: #ff0000;

  line-height: 1;            /* CHẶN mobile scale */
  font-size: 0;              /* phòng trường hợp inherit */

  box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.8);
  animation: kickerPulse 1s infinite ease-out;
}


/* =========================================================
   WANA FACTORY CARD – FLOAT + EXPANDING PEAK / GROUND PULSE
   ========================================================= */

.wana-factory-card{
  position: relative;
  z-index: 3;
  background: #ffffff;
  border-radius: 26px;

  box-shadow: 0 22px 60px rgba(0,0,0,.22);

  animation: wanaFloat 6.5s linear infinite;
  will-change: transform, box-shadow;
}

/* ===============================
   TOP EXPAND PULSE (AT PEAK)
   =============================== */
.wana-factory-card::before{
  content:"";
  position:absolute;
  left:50%;
  top:-40px;
  width:120px;
  height:120px;
  transform: translateX(-50%) scale(0.4);
  border-radius:50%;

  background: radial-gradient(
    circle,
    rgba(93,209,54,.65) 0%,
    rgba(93,209,54,.45) 30%,
    rgba(93,209,54,0) 70%
  );

  filter: blur(14px);
  opacity:0;
  pointer-events:none;
  z-index:-1;

  animation: wanaTopExpand 6.5s linear infinite;
}

/* ===============================
   BOTTOM EXPAND PULSE (AT GROUND)
   =============================== */
.wana-factory-card::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-40px;
  width:140px;
  height:140px;
  transform: translateX(-50%) scale(0.4);
  border-radius:50%;

  background: radial-gradient(
    circle,
    rgba(93,209,54,.55) 0%,
    rgba(93,209,54,.35) 30%,
    rgba(93,209,54,0) 70%
  );

  filter: blur(18px);
  opacity:0;
  pointer-events:none;
  z-index:-1;

  animation: wanaBottomExpand 6.5s linear infinite;
}

/* ===============================
   FLOAT MOTION
   =============================== */
@keyframes wanaFloat {
  0% {
    transform: translateY(0);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
  }

  25% {
    transform: translateY(-10px);
    box-shadow: 0 26px 72px rgba(0,0,0,.26);
  }

  /* ===== PEAK ===== */
  50% {
    transform: translateY(-20px);
    box-shadow: 0 34px 96px rgba(0,0,0,.32);
  }

  75% {
    transform: translateY(-10px);
    box-shadow: 0 26px 72px rgba(0,0,0,.26);
  }

  /* ===== GROUND ===== */
  100% {
    transform: translateY(0);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
  }
}

/* ===============================
   TOP – TRUE EXPAND & FADE
   =============================== */
@keyframes wanaTopExpand {
  0%, 40% {
    opacity:0;
    transform: translateX(-50%) scale(0.4);
  }

  50% {
    opacity:.75;
    transform: translateX(-50%) scale(1.15);
  }

  65% {
    opacity:.25;
    transform: translateX(-50%) scale(1.6);
  }

  80%, 100% {
    opacity:0;
    transform: translateX(-50%) scale(1.9);
  }
}

/* ===============================
   BOTTOM – TRUE EXPAND & FADE
   =============================== */
@keyframes wanaBottomExpand {
  0%, 80% {
    opacity:0;
    transform: translateX(-50%) scale(0.4);
  }

  100% {
    opacity:.7;
    transform: translateX(-50%) scale(1.6);
  }
}

/* ===============================
   MOBILE – CALMER
   =============================== */
@media (max-width:1024px){
  .wana-factory-card{
    animation-duration:8s;
  }
}

.elementor-widget:not(:last-child) {
    margin-block-end: 0px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5a3b477 *//* Video overlay */
.wana-video-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.68);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:9999;
}
.wana-video-overlay.is-visible{
  display:flex;
}
.wana-video-dialog{
  position:relative;
  width:100%;
  max-width:900px;
  background:#000;
  border-radius:18px;
  box-shadow:0 24px 70px rgba(0,0,0,0.7);
  overflow:hidden;
}
.wana-video-inner{
  position:relative;
  padding-top:56.25%; /* 16:9 */
}
.wana-video-inner iframe,
.wana-video-inner video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.wana-video-close{
  position:absolute;
  top:10px;
  right:10px;
  width:32px;
  height:32px;
  border-radius:999px;
  border:none;
  background:rgba(0,0,0,0.65);
  color:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.wana-video-close:hover{
  background:rgba(0,0,0,0.9);
}

@media(max-width:768px){
  .wana-video-dialog{
    max-width:100%;
    border-radius:12px;
  }
}/* End custom CSS */
/* Start custom CSS */:root{
  --wana-green:#00A651;
  --wana-green-dark:#038044;
  --wana-green-light:#6FD76F;
  --wana-yellow:#F4C430;
  --wana-bg:#F5FFF8;
  --max-width:1180px;
  --radius-lg:20px;
  --radius-md:14px;
  --shadow-soft:0 18px 45px rgba(0,0,0,0.08);
  --shadow-card:0 12px 30px rgba(0,0,0,0.06);
  --font-main:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
body{font-family:var(--font-main);}
.wana-wrap{max-width:var(--max-width);margin:0 auto;padding:0 18px;}
.section{padding:70px 0;}
.section-tight{padding:40px 0;}
.section-title{
  text-align:center;
  font-size:36px;
  font-weight:700;
  color:var(--wana-green-dark);
  margin:0 0 12px;
}
.section-sub{
  text-align:center;
  color:#4d4d4d;
  max-width:720px;
  margin:0 auto 10px;
}
.hero{
  display:flex;
  gap:40px;
  align-items:stretch;
  justify-content:space-between;
  flex-wrap:wrap;
}
.hero-left{flex:1 1 420px;padding:18px 0;}
.hero-right{flex:1 1 360px;display:flex;align-items:center;justify-content:flex-end;}
.hero h1{font-size:44px;line-height:1.12;color:#ffffff;margin:0 0 12px;}
.hero p{font-size:18px;color:#E7FFF0;max-width:520px;margin:0 0 18px;}
.hero-kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;border-radius:999px;
  background:rgba(255,255,255,0.2);
  color:#E8FFF0;font-size:14px;margin-bottom:16px;
}
.hero-highlight-row{
  display:flex;flex-wrap:wrap;gap:14px;margin-top:22px;
  font-size:14px;color:#E4FFEE;
}
.hero-tag{
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
}
.wana-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe66b, #ffcf3c);
  color: #184323;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: transform .18s ease-out, box-shadow .18s ease-out, background .18s ease-out;
}
.wana-cta-btn span.icon {margin-left: 8px;font-size: 16px;}
.wana-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.9), transparent 70%);
  opacity: 0;
  transition: opacity .2s ease-out;
  pointer-events: none;
}
.wana-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #fff07b, #ffd54f);
}
.wana-cta-btn:hover::after {opacity: 1;}
.wana-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.wana-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #ffffff;
  font-weight: 600;
  background: transparent;
  text-decoration: none;
  transition: background .18s ease-out, color .18s ease-out, transform .18s ease-out;
}
.wana-cta-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.card-grid{
  display:flex;flex-wrap:wrap;gap:20px;justify-content:center;
  margin-top:24px;
}
.card{
  flex:1 1 260px;min-width:240px;
  background:#ffffff;border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  padding:18px 16px;
}
.card h3{margin:0 0 6px;font-size:18px;color:var(--wana-green-dark);}
.card p{margin:0;font-size:14px;color:#555;}
.chip-row{display:flex;flex-wrap:wrap;gap:6px;margin-top:6px;}
.chip{
  padding:4px 8px;border-radius:999px;
  background:#F0FAF3;font-size:12px;color:#26653D;
}
.timeline{
  display:flex;flex-wrap:wrap;gap:18px;
  margin-top:26px;justify-content:center;
}
.timeline-step{
  flex:1 1 180px;min-width:160px;
  background:#ffffff;border-radius:18px;
  box-shadow:var(--shadow-card);
  padding:18px 14px;
}
.timeline-number{
  width:32px;height:32px;border-radius:999px;
  background:linear-gradient(135deg,#00A651,#6FD76F);
  color:#ffffff;display:flex;align-items:center;justify-content:center;
  font-weight:700;margin-bottom:8px;font-size:15px;
}
.timeline-step h3{margin:0 0 4px;font-size:16px;color:#15542F;}
.timeline-step p{margin:0;font-size:14px;color:#555;}
.logo-row{
  display:flex;flex-wrap:wrap;gap:12px;
  justify-content:center;margin-top:16px;
}
.logo-placeholder{
  width:120px;height:52px;border-radius:12px;
  background:#ffffff;box-shadow:var(--shadow-card);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;color:#777;
}
.testimonial-wrap{
  max-width:880px;margin:24px auto 0;
  display:flex;flex-wrap:wrap;gap:18px;
}
.testimonial{
  flex:1 1 260px;min-width:240px;
  background:#ffffff;border-radius:18px;
  box-shadow:var(--shadow-card);
  padding:18px 18px;
}
.testimonial strong{display:block;margin-bottom:6px;color:#14522F;}
.testimonial p{margin:0;font-size:14px;color:#444;}
@media(max-width:900px){
  .hero{gap:20px;}
  .hero h1{font-size:36px;}
  .section{padding:48px 0;}
}

.card-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:16px;
  background:rgba(255,255,255,0.9);
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  font-size:28px;
  margin-bottom:8px;
}



/* OEM / ODM four cards block */
.oem-section{text-align:center;}
.oem-section .section-title{font-size:38px;}
.oem-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(190px,1fr));
  gap:24px;
  margin-top:32px;
}
.oem-card{
  position:relative;
  padding:28px 22px 30px;
  border-radius:26px;
  background:#ffffff;
  box-shadow:0 22px 55px rgba(0,0,0,0.12);
  overflow:hidden;
  cursor:pointer;
  transition:transform .18s ease-out, box-shadow .18s ease-out, background .18s ease-out;
}
.oem-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at top left, rgba(0,166,81,0.10), transparent 55%);
  opacity:0;
  transition:opacity .18s ease-out;
}
.oem-card-inner{
  position:relative;
  z-index:1;
}
.oem-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(0,0,0,0.18);
  background:linear-gradient(145deg,#ffffff,#F8FFF8);
}
.oem-card:hover::before{opacity:1;}
.oem-tag{
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#5b6c5e;
  margin-bottom:12px;
}
.oem-title{
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
  color:#121B15;
}
.oem-title span.highlight{color:var(--wana-green);}
.oem-sub{
  font-size:15px;
  color:#333;
  margin-bottom:8px;
}
.oem-detail{
  font-size:14px;
  color:#555;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .18s ease-out, transform .18s ease-out;
}
.oem-card:hover .oem-detail{
  opacity:1;
  transform:translateY(0);
}
@media(max-width:1200px){
  .oem-section .section-title{font-size:32px;}
}
@media(max-width:1024px){
  .oem-grid{grid-template-columns:repeat(2,minmax(190px,1fr));}
}
@media(max-width:640px){
  .oem-grid{grid-template-columns:1fr;}
}/* End custom CSS */