/* ===== GLOBAL ===== */
:root {
  --primary: rgb(197, 32, 33);
  --bg: rgb(10, 13, 15);
  --white: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, rgb(10, 13, 15), rgb(10, 13, 15));
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== PRICING SECTION ===== */
.exlgc-pricing-section{
  position:relative;
  padding:140px 20px 120px;
  background: var(--bg);
  color: var(--white);
  text-align:center;
  padding-bottom:0;
}

/* Layer chiều sâu nền */
.exlgc-pricing-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px circle at 50% 35%, rgba(197,32,33,0.08), transparent 70%);
  pointer-events:none;
}

/* Header */
.exlgc-pricing-header{
  position:relative;
  max-width:720px;
  margin:0 auto 90px;
}

.exlgc-badge{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  padding:6px 14px;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:20px;
  margin-bottom:20px;
  opacity:.7;
}

.exlgc-pricing-header h2{
  font-size:40px;
  font-weight:700;
  margin-bottom:18px;
  line-height:1.2;
}

.exlgc-pricing-header p{
  font-size:17px;
  opacity:.6;
  line-height:1.7;
}

/* Card wrapper */
.exlgc-card-wrapper{
  position:relative;
  display:flex;
  justify-content:center;
  gap:70px;
  flex-wrap:wrap;
}

/* Base card only */
/* Wrapper chỉ ảnh hưởng 2 card */
.exlgc-wrapper{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
  padding:60px 20px;
  box-sizing:border-box;
}

/* Card */
.exlgc-card{
  width:340px;
  height:560px;
  position:relative;
  flex-shrink:0;
}

/* Card inner */
.exlgc-inner{
  width:100%;
  height:100%;
  background:linear-gradient(160deg,#121826,#0c1119);
  border-radius:32px;
  border:2px solid rgba(255,255,255,0.06);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:.4s ease;
  box-shadow:0 25px 60px rgba(0,0,0,0.8);
  overflow:hidden;
}

/* Hover neon */
.exlgc-mobile:hover .exlgc-inner{
  border-color:#00e5ff;
  box-shadow:0 0 20px #00e5ff55,0 0 70px #00e5ff33;
}

.exlgc-pc:hover .exlgc-inner{
  border-color:#ff003c;
  box-shadow:0 0 20px #ff003c55,0 0 70px #ff003c33;
}

/* Hanger */
.exlgc-top{
  height:100px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.exlgc-top::after{
  content:"";
  width:70px;
  height:24px;
  background:#070a0f;
  border-radius:20px;
  border:3px solid rgba(255,255,255,0.15);
}

/* Content */
.exlgc-content{
  flex:1;
  padding:28px;
  display:flex;
  flex-direction:column;
}

.exlgc-logo{
  font-size:26px;
  font-weight:800;
  letter-spacing:1px;
  background:linear-gradient(120deg,#aaa,#fff,#aaa);
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:exlgcShine 4s linear infinite;
}

@keyframes exlgcShine{
  to{background-position:200% center;}
}

.exlgc-sub{
  font-size:12px;
  opacity:.7;
  margin-bottom:14px;
}

.exlgc-price{
  font-size:30px;
  font-weight:800;
  margin:18px 0;
}

.exlgc-mobile .exlgc-price{color:#00e5ff;}
.exlgc-pc .exlgc-price{color:#ff003c;}

.exlgc-features{
  font-size:13px;
  line-height:1.7;
  opacity:.85;
}

.exlgc-code{
  margin-top:auto;
  background:#0f141c;
  border:2px dashed rgba(255,255,255,0.15);
  padding:12px;
  border-radius:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
  letter-spacing:2px;
  font-size:12px;
}

.exlgc-btn{
  border:none;
  padding:6px 12px;
  font-size:11px;
  font-weight:600;
  border-radius:8px;
  cursor:pointer;
  color:#fff;
}

.exlgc-mobile .exlgc-btn{background:#00e5ff;}
.exlgc-pc .exlgc-btn{background:#ff003c;}

.exlgc-sticker{
  position:absolute;
  top:22px;
  right:-48px;
  width:180px;
  text-align:center;
  background:#ff003c;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  padding:8px 0;
  transform:rotate(45deg);
  box-shadow:0 6px 16px rgba(0,0,0,0.45);
  z-index:5;
}

.exlgc-sticker span{
  display:inline-block;
  animation: exlgcBlink 1.2s infinite;
}

@keyframes exlgcBlink{
  0%{
    opacity:1;
    transform:scale(1);
  }
  50%{
    opacity:0.5;
    transform:scale(1.08);
  }
  100%{
    opacity:1;
    transform:scale(1);
  }
}

.exlgc-card{
  width:340px;
  height:560px;
  position:relative;
  flex-shrink:0;
  overflow:hidden;
  border-radius:32px;
}

/* Responsive */
@media(max-width:768px){
  .exlgc-wrapper{
    gap:40px;
  }
}

@media(max-width:480px){
  .exlgc-card{
    width:100%;
    max-width:340px;
    height:540px;
  }
}


/* ===== TRUST STRIP (gọn) ===== */
.exlgc-trust-section{
  padding:0 20px 70px;
}

/* Box chứa nội dung */
.exlgc-trust-box{
  max-width:1000px;
  margin:0 auto;
  padding:28px 40px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:25px;
  background:rgba(255,255,255,0.02);
}

/* Feature inline */
.exlgc-trust-features{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  font-size:15px;
  opacity:.85;
}

/* ===== CTA STRONG EFFECT ===== */
.exlgc-trust-btn{
  position:relative;
  display:inline-block;
  padding:14px 34px;
  background:var(--primary);
  color:var(--white);
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  border-radius:8px;
  overflow:hidden;
  z-index:1;
  transition:all .3s ease;
  
  /* Glow cơ bản */
  box-shadow:0 0 0 rgba(197,32,33,0.6);
  
  /* Pulse liên tục */
  animation: exlgcCtaPulse 2s infinite;
}

/* Hover mạnh */
.exlgc-trust-btn:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 20px 40px rgba(197,32,33,0.6);
}

/* Ripple ring */
.exlgc-trust-btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:2px solid rgba(197,32,33,0.6);
  animation: exlgcRing 2s infinite;
  z-index:-1;
}

/* Glow pulse */
@keyframes exlgcCtaPulse{
  0%{
    box-shadow:0 0 0 0 rgba(197,32,33,0.6);
  }
  70%{
    box-shadow:0 0 0 18px rgba(197,32,33,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(197,32,33,0);
  }
}

/* Ring lan ra */
@keyframes exlgcRing{
  0%{
    transform:scale(1);
    opacity:.7;
  }
  70%{
    transform:scale(1.4);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}