body { overflow-x: hidden; }
.tgv2-hero,
.tgv2-breadcrumb,
.tgv2-toc,
.tgv2-cta-final {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

:root {
  --tg-primary: #0088CC;
  --tg-primary-dark: #006699;
  --tg-gradient: linear-gradient(135deg, #0088CC 0%, #006699 50%, #29B6F6 100%);
  --tg-gradient-light: linear-gradient(135deg, #E0F2F1 0%, #B2EBF2 100%);
  --tg-accent: #00C853;
  --tg-accent2: #FF6D00;
  --tg-gold: #FFB300;
  --tg-dark: #1A1A2E;
  --tg-card-bg: rgba(255,255,255,0.95);
  --tg-glass: rgba(255,255,255,0.15);
  --tg-shadow: 0 8px 32px rgba(0,136,204,0.12);
  --tg-shadow-lg: 0 20px 60px rgba(0,136,204,0.15);
  --tg-radius: 16px;
  --tg-radius-lg: 24px;
}

/* --- Keyframe Animations --- */
@keyframes tgFloatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes tgPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
@keyframes tgSlideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tgGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes tgShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes tgBounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
@keyframes tgGlow {
  0%,100% { box-shadow: 0 0 20px rgba(0,136,204,0.3); }
  50% { box-shadow: 0 0 40px rgba(0,136,204,0.6); }
}
@keyframes tgTypewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes tgRotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes tgSlideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes tgProgressBar {
  from { width: 0; }
  to { width: var(--progress-width, 100%); }
}
@keyframes tgRipple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes tgParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  50% { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { opacity: 0; transform: translateY(-40px) scale(0); }
}

/* --- Scroll Reveal Classes --- */
.tg-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.tg-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.tg-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.tg-reveal-left.revealed { opacity: 1; transform: translateX(0); }
.tg-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.tg-reveal-right.revealed { opacity: 1; transform: translateX(0); }
.tg-reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
.tg-reveal-scale.revealed { opacity: 1; transform: scale(1); }
.tg-reveal-rotate {
  opacity: 0;
  transform: rotate(-5deg) translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34,1.56,0.64,1);
}
.tg-reveal-rotate.revealed { opacity: 1; transform: rotate(0) translateY(0); }

/* Stagger delays */
.tg-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.tg-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.tg-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.tg-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.tg-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.tg-stagger > *:nth-child(6) { transition-delay: 0.3s; }
.tg-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.tg-stagger > *:nth-child(8) { transition-delay: 0.4s; }
.tg-stagger > *:nth-child(9) { transition-delay: 0.45s; }

/* ========== HERO SECTION ========== */
.tgv2-hero {
  position: relative;
  background: var(--tg-gradient);
  background-size: 200% 200%;
  animation: tgGradientShift 8s ease infinite;
  padding: 80px 0 100px;
  overflow: visible;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.tgv2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.tgv2-hero .hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.tgv2-hero .hero-orb-1 { width: 300px; height: 300px; top: -80px; right: -60px; animation: tgFloatUp 6s ease-in-out infinite; }
.tgv2-hero .hero-orb-2 { width: 200px; height: 200px; bottom: -50px; left: 5%; animation: tgFloatUp 8s ease-in-out infinite 1s; }
.tgv2-hero .hero-orb-3 { width: 120px; height: 120px; top: 30%; left: 15%; animation: tgFloatUp 5s ease-in-out infinite 0.5s; }

.tgv2-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: clamp(2.4rem, 5.5vw, 3.6rem);
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  white-space: nowrap;
}

/* ===== FLEX WRAPPER — H1 + keyword cùng dòng (desktop) ===== */
.tg-hero-headline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  flex-wrap: nowrap;
}

/* ===== KEYWORD ROTATOR — Slide Up & Glow ===== */
.tg-keyword-rotator {
  display: inline-block;
  height: clamp(2.2rem, 4.5vw, 3.2rem);
  overflow: hidden;
  position: relative;
  min-width: 380px;
}
.tg-keyword-rotator::after {
  display: none;
}

.tg-kw {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--kw-color, #FFFFFF);
  text-shadow: 0 0 20px var(--kw-glow, rgba(255,255,255,0.4)),
               0 0 40px var(--kw-glow, rgba(255,255,255,0.2)),
               0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(100%);
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  animation: tgKwSlideUp 37.5s infinite;
}

@keyframes tgKwSlideUp {
  0%      { opacity: 0; transform: translateY(80%); }
  0.5%    { opacity: 1; transform: translateY(0); }
  6%      { opacity: 1; transform: translateY(0); }
  6.67%   { opacity: 0; transform: translateY(-80%); }
  100%    { opacity: 0; transform: translateY(-80%); }
}

/* 15 keywords — teal/cyan pastel colors */
.tg-kw:nth-child(1)  { animation-delay: 0s;      --kw-color: #FFFFFF;  --kw-glow: rgba(255,255,255,0.5); }
.tg-kw:nth-child(2)  { animation-delay: 2.5s;    --kw-color: #B2EBF2;  --kw-glow: rgba(128,222,234,0.5); }
.tg-kw:nth-child(3)  { animation-delay: 5s;      --kw-color: #B3E5FC;  --kw-glow: rgba(129,212,250,0.5); }
.tg-kw:nth-child(4)  { animation-delay: 7.5s;    --kw-color: #FFE0B2;  --kw-glow: rgba(255,204,128,0.5); }
.tg-kw:nth-child(5)  { animation-delay: 10s;     --kw-color: #FFF9C4;  --kw-glow: rgba(255,241,118,0.5); }
.tg-kw:nth-child(6)  { animation-delay: 12.5s;   --kw-color: #C8E6C9;  --kw-glow: rgba(165,214,167,0.5); }
.tg-kw:nth-child(7)  { animation-delay: 15s;     --kw-color: #E0F7FA;  --kw-glow: rgba(178,235,242,0.5); }
.tg-kw:nth-child(8)  { animation-delay: 17.5s;   --kw-color: #FFCDD2;  --kw-glow: rgba(239,154,154,0.5); }
.tg-kw:nth-child(9)  { animation-delay: 20s;     --kw-color: #E1BEE7;  --kw-glow: rgba(206,147,216,0.5); }
.tg-kw:nth-child(10) { animation-delay: 22.5s;   --kw-color: #FFCCBC;  --kw-glow: rgba(255,171,145,0.5); }
.tg-kw:nth-child(11) { animation-delay: 25s;     --kw-color: #80DEEA;  --kw-glow: rgba(0,242,234,0.5); }
.tg-kw:nth-child(12) { animation-delay: 27.5s;   --kw-color: #F5F5F5;  --kw-glow: rgba(255,255,255,0.4); }
.tg-kw:nth-child(13) { animation-delay: 30s;     --kw-color: #A5D6A7;  --kw-glow: rgba(129,199,132,0.5); }
.tg-kw:nth-child(14) { animation-delay: 32.5s;   --kw-color: #D1C4E9;  --kw-glow: rgba(179,157,219,0.5); }
.tg-kw:nth-child(15) { animation-delay: 35s;     --kw-color: #FFE082;  --kw-glow: rgba(255,213,79,0.5); }

/* Tagline — gradient text */
.tg-hero-tagline {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #29B6F6, #0088CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tgv2-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 600px;
}
.tgv2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: tgPulse 3s ease-in-out infinite;
}
.tgv2-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}
.tgv2-hero-stat { text-align: center; color: #fff; }
.tgv2-hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.tgv2-hero-stat-label { font-size: 0.8rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }
.tgv2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--tg-primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.tgv2-hero-cta::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(0,136,204,0.1), transparent);
  animation: tgShimmer 3s ease-in-out infinite;
}
.tgv2-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  color: var(--tg-primary-dark);
}
/* ========== CAT ROBOT HERO SCENE (Elegant #5) ========== */
.tgv2-cat-scene {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  perspective: 900px;
}

/* Heart glow behind cat robot — synced with robot's chest LED */
.tgv2-cat-heart-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,200,227,0.4) 0%, rgba(168,216,234,0.15) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: catHeartPulse 2.5s ease-in-out infinite;
  z-index: 0;
}
.tgv2-cat-heart-glow::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 2px solid rgba(168,216,234,0.2);
  animation: catRingSpin 15s linear infinite;
}
.tgv2-cat-heart-glow::after {
  content: '';
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  border: 1px dashed rgba(212,165,116,0.15);
  animation: catRingSpin 25s linear infinite reverse;
}

/* Cat robot image */
.tgv2-cat-img {
  position: relative;
  z-index: 5;
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.25));
  animation: catFloat 4s ease-in-out infinite;
}

/* ===== 3D ORBIT RING ===== */
.tgv2-orbit-ring {
  position: absolute;
  width: 440px;
  height: 440px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(65deg);
  transform-style: preserve-3d;
  animation: orbitSpin 20s linear infinite;
  z-index: 4;
}

/* ===== FLIP CARD BADGES ===== */
.tgv2-flip-badge {
  position: absolute;
  width: 58px;
  height: 58px;
  perspective: 400px;
  /* Keep upright: counter-rotate the orbit spin */
  animation: badgeCounterSpin 20s linear infinite;
}

.tgv2-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: badgeAutoFlip 4s ease-in-out infinite;
}

.tgv2-flip-badge:nth-child(2) .tgv2-flip-inner { animation-delay: 0.5s; }
.tgv2-flip-badge:nth-child(3) .tgv2-flip-inner { animation-delay: 1.0s; }
.tgv2-flip-badge:nth-child(4) .tgv2-flip-inner { animation-delay: 1.5s; }
.tgv2-flip-badge:nth-child(5) .tgv2-flip-inner { animation-delay: 2.0s; }
.tgv2-flip-badge:nth-child(6) .tgv2-flip-inner { animation-delay: 2.5s; }
.tgv2-flip-badge:nth-child(7) .tgv2-flip-inner { animation-delay: 3.0s; }
.tgv2-flip-badge:nth-child(8) .tgv2-flip-inner { animation-delay: 3.5s; }

.tgv2-flip-front, .tgv2-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Front face = Icon */
.tgv2-flip-front {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.3), 0 0 15px rgba(168,216,234,0.2);
  color: #FFD54F;
  font-size: 1.1rem;
}

/* Back face = Keyword text */
.tgv2-flip-back {
  background: linear-gradient(135deg, rgba(168,216,234,0.35), rgba(212,165,116,0.2));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(212,165,116,0.35);
  box-shadow: 0 4px 24px rgba(168,216,234,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  transform: rotateY(180deg);
  border-radius: 14px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Hover: flip and grow */
.tgv2-flip-badge:hover .tgv2-flip-inner {
  animation-play-state: paused;
  transform: rotateY(180deg) scale(1.3);
}
.tgv2-flip-badge:hover {
  z-index: 10;
}

/* 8 positions on the circle (evenly spaced at 45° each) */
.tg-pos-1 { top: 0%;   left: 50%;  transform: translate(-50%, -50%); }
.tg-pos-2 { top: 14.6%; left: 85.4%; transform: translate(-50%, -50%); }
.tg-pos-3 { top: 50%;  left: 100%; transform: translate(-50%, -50%); }
.tg-pos-4 { top: 85.4%; left: 85.4%; transform: translate(-50%, -50%); }
.tg-pos-5 { top: 100%; left: 50%;  transform: translate(-50%, -50%); }
.tg-pos-6 { top: 85.4%; left: 14.6%; transform: translate(-50%, -50%); }
.tg-pos-7 { top: 50%;  left: 0%;   transform: translate(-50%, -50%); }
.tg-pos-8 { top: 14.6%; left: 14.6%; transform: translate(-50%, -50%); }

/* ===== PARTICLE TRAILS ===== */
.tgv2-trail {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(168,216,234,0.8) 0%, rgba(212,165,116,0.3) 60%, transparent 100%);
}
.t1 { width: 5px; height: 5px; top: 8%;   left: 25%;  animation: trailPath1 7s ease-in-out infinite; }
.t2 { width: 4px; height: 4px; top: 65%;  right: 15%; animation: trailPath2 9s ease-in-out infinite 0.5s; }
.t3 { width: 6px; height: 6px; bottom: 15%; left: 20%; animation: trailPath3 8s ease-in-out infinite 1s; }
.t4 { width: 3px; height: 3px; top: 30%;  right: 30%; animation: trailPath4 6s ease-in-out infinite 1.5s; }
.t5 { width: 5px; height: 5px; bottom: 35%; right: 25%; animation: trailPath1 10s ease-in-out infinite 2s; }
.t6 { width: 4px; height: 4px; top: 20%;  left: 40%; animation: trailPath2 7s ease-in-out infinite 2.5s; }
.t7 { width: 3px; height: 3px; top: 75%;  left: 35%; animation: trailPath3 8s ease-in-out infinite 0.8s; }
.t8 { width: 6px; height: 6px; bottom: 25%; right: 35%; animation: trailPath4 9s ease-in-out infinite 1.2s; }

/* ===== CAT ROBOT KEYFRAMES ===== */
@keyframes catFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(0.5deg); }
  50% { transform: translateY(-18px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-0.5deg); }
}

@keyframes catHeartPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

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

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
}

@keyframes badgeCounterSpin {
  from { transform: rotateZ(0deg) rotateX(-65deg); }
  to { transform: rotateZ(-360deg) rotateX(-65deg); }
}

@keyframes badgeAutoFlip {
  0%, 35% { transform: rotateY(0deg); }
  40%, 75% { transform: rotateY(180deg); }
  80%, 100% { transform: rotateY(0deg); }
}

@keyframes trailPath1 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.9; }
  30% { transform: translate(30px, -40px); opacity: 0.7; }
  50% { transform: translate(-20px, -60px); opacity: 0.4; }
  70% { transform: translate(40px, -30px); opacity: 0.6; }
  90% { opacity: 0.1; }
}

@keyframes trailPath2 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: 0.8; }
  35% { transform: translate(-25px, 35px); opacity: 0.6; }
  55% { transform: translate(15px, 50px); opacity: 0.3; }
  75% { transform: translate(-35px, 20px); opacity: 0.7; }
  95% { opacity: 0.1; }
}

@keyframes trailPath3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
  20% { opacity: 1; transform: translate(20px, -15px) scale(1.3); }
  50% { transform: translate(-15px, -40px) scale(0.8); opacity: 0.5; }
  80% { transform: translate(25px, -20px) scale(1.1); opacity: 0.3; }
}

@keyframes trailPath4 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 0.7; }
  40% { transform: translate(-30px, -25px); opacity: 0.9; }
  60% { transform: translate(10px, -50px); opacity: 0.4; }
  85% { transform: translate(-20px, -15px); opacity: 0.2; }
}

/* ========== BREADCRUMB ========== */
.tgv2-breadcrumb {
  padding: 16px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}
.tgv2-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}
.tgv2-breadcrumb a { color: var(--tg-primary); text-decoration: none; }
.tgv2-breadcrumb a:hover { text-decoration: underline; }
.tgv2-breadcrumb .separator { color: #aaa; }
.tgv2-breadcrumb .current { color: #666; font-weight: 600; }

/* ========== TABLE OF CONTENTS ========== */
.tgv2-toc {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  position: sticky;
  top: 130px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.tgv2-toc.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.tgv2-toc-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.tgv2-toc-inner::-webkit-scrollbar { display: none; }
.tgv2-toc-label {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--tg-primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tgv2-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid transparent;
}
.tgv2-toc-link:hover, .tgv2-toc-link.active {
  background: var(--tg-gradient-light);
  color: var(--tg-primary);
  border-color: rgba(0,136,204,0.2);
  transform: translateY(-2px);
}

/* ========== SECTION COMMON ========== */
.tgv2-section {
  padding: 80px 0;
  position: relative;
}
.tgv2-section-alt { background: #f8fafc; }
.tgv2-section-dark { background: var(--tg-dark); color: #fff; }
.tgv2-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.5rem;
}
.tgv2-section-dark .tgv2-section-title { color: #fff; }
.tgv2-section-desc {
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.tgv2-section-dark .tgv2-section-desc { color: rgba(255,255,255,0.7); }
.tgv2-gradient-line {
  width: 80px;
  height: 4px;
  background: var(--tg-gradient);
  border-radius: 2px;
  margin: 12px auto 1.5rem;
}

/* ========== INTRO "DICH VU TELEGRAM LA GI" ========== */
.tgv2-intro-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.9;
}
.tgv2-intro-text p { margin-bottom: 1rem; }
.tgv2-intro-highlight {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border-radius: var(--tg-radius);
  padding: 24px;
  border-left: 4px solid var(--tg-primary);
  margin: 1.5rem 0;
}
.tgv2-intro-highlight strong { color: var(--tg-primary); }
.tgv2-intro-img-wrap {
  position: relative;
  border-radius: var(--tg-radius-lg);
  overflow: hidden;
  box-shadow: var(--tg-shadow-lg);
}
.tgv2-intro-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,136,204,0.08) 100%);
  pointer-events: none;
}
.tgv2-intro-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.tgv2-intro-img-wrap:hover img { transform: scale(1.03); }

/* Sub heading within sections */
.tgv2-sub-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

/* Benefit item rows */
.tgv2-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tgv2-benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,136,204,0.12);
  border-color: rgba(0,136,204,0.15);
}
.tgv2-benefit-item > i {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Commitment cards */
.tgv2-commit-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 24px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.tgv2-commit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,136,204,0.12);
  border-color: rgba(0,136,204,0.12);
}
.tgv2-commit-card strong {
  font-size: 1rem;
  color: #1a1a2e;
}
.tgv2-commit-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

/* ========== SERVICE CARDS ========== */
.tgv2-svc-card {
  background: var(--tg-card-bg);
  border-radius: var(--tg-radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tgv2-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tg-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.tgv2-svc-card:hover::before { opacity: 1; }
.tgv2-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tg-shadow-lg);
  border-color: transparent;
}
.tgv2-svc-card > * { position: relative; z-index: 1; }
.tgv2-svc-card:hover .tgv2-svc-icon { color: #fff; background: rgba(255,255,255,0.2); }
.tgv2-svc-card:hover .tgv2-svc-name,
.tgv2-svc-card:hover .tgv2-svc-desc { color: #fff; }
.tgv2-svc-card:hover .tgv2-svc-link { background: #fff; color: var(--tg-primary); }

.tgv2-svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--tg-gradient-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--tg-primary);
  margin: 0 auto 16px;
  transition: all 0.4s ease;
}
.tgv2-svc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.tgv2-svc-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
  transition: color 0.4s ease;
}
.tgv2-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--tg-gradient-light);
  color: var(--tg-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ========== TOP 6 FEATURED SERVICES ========== */
.tgv2-featured-card {
  background: #fff;
  border-radius: var(--tg-radius);
  padding: 28px;
  border: 1px solid #eef2f7;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.tgv2-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--tg-gradient);
  transition: height 0.5s ease;
}
.tgv2-featured-card:hover::before { height: 100%; }
.tgv2-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tg-shadow-lg);
  border-color: rgba(0,136,204,0.15);
}
.tgv2-featured-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.tgv2-featured-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.tgv2-featured-card:hover .tgv2-featured-icon { transform: scale(1.15) rotate(5deg); }
.tgv2-featured-title { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin: 0; }
.tgv2-featured-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 14px;
}
.tgv2-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: #94a3b8;
}
.tgv2-featured-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  background: #FFF3E0;
  color: #E65100;
  font-weight: 700;
  font-size: 0.8rem;
}
.tgv2-featured-link {
  color: var(--tg-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
  font-size: 0.85rem;
}
.tgv2-featured-link:hover { gap: 8px; }

/* ========== STATS COUNTER ========== */
.tgv2-stats {
  background: var(--tg-gradient);
  background-size: 200% 200%;
  animation: tgGradientShift 8s ease infinite;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.tgv2-stat-item { text-align: center; padding: 20px; color: #fff; }
.tgv2-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.tgv2-stat-label { font-size: 0.9rem; opacity: 0.85; font-weight: 500; }

/* ========== WHY CHOOSE US ========== */
.tgv2-why-card {
  background: #fff;
  border-radius: var(--tg-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eef2f7;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.tgv2-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tg-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.tgv2-why-card:hover::after { transform: scaleX(1); }
.tgv2-why-card:hover { transform: translateY(-6px); box-shadow: var(--tg-shadow); }
.tgv2-why-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.tgv2-why-card:hover .tgv2-why-icon-wrap { transform: scale(1.1) rotate(5deg); }
.tgv2-why-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.tgv2-why-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

/* ========== COMPARISON TABLE ========== */
.tgv2-compare-wrap {
  border-radius: var(--tg-radius-lg);
  overflow: hidden;
  box-shadow: var(--tg-shadow-lg);
}
.tgv2-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.tgv2-compare-table thead th {
  padding: 20px 16px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
  vertical-align: bottom;
}
.tgv2-compare-table thead th:first-child { text-align: left; background: #f8fafc; color: #475569; }
.tgv2-compare-table .col-boost {
  background: linear-gradient(180deg, #0088CC 0%, #007BBD 100%);
  color: #fff;
  position: relative;
}
.tgv2-compare-table .col-boost::before {
  content: '⭐ KHUYẾN NGHỊ';
  display: block;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  opacity: 0.85;
  margin-bottom: 6px;
}
.tgv2-compare-table .col-ads { background: #FFF3E0; color: #E65100; }
.tgv2-compare-table .col-spam { background: #FFEBEE; color: #C62828; }
.tgv2-compare-table tbody td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  transition: background 0.2s ease;
}
.tgv2-compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #334155;
  background: #fafbfc;
}
.tgv2-compare-table tbody tr:hover td { background: #f8fafc; }
.tgv2-compare-table tbody tr:hover td:first-child { background: #f1f5f9; }
.compare-yes { color: #16a34a; font-weight: 700; font-size: 1.1rem; }
.compare-no { color: #dc2626; font-weight: 700; font-size: 1.1rem; }
.compare-mid { color: #f59e0b; font-weight: 700; font-size: 1.1rem; }
.tgv2-compare-desc {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
}

/* ========== PRICING TABLE ========== */
.tgv2-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--tg-radius);
  overflow: hidden;
  box-shadow: var(--tg-shadow);
  font-size: 0.9rem;
}
.tgv2-price-table thead th {
  background: var(--tg-gradient);
  color: #fff;
  padding: 16px 14px;
  font-weight: 600;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tgv2-price-table tbody td {
  padding: 14px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  vertical-align: middle;
  transition: background 0.2s ease;
}
.tgv2-price-table tbody tr:hover td { background: #f8fafc; }
.tgv2-price-table .price-highlight { background: #FFF3E0 !important; font-weight: 600; }

/* ========== HOW IT WORKS ========== */
.tgv2-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: var(--tg-radius);
  border: 1px solid #eef2f7;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  margin-bottom: 16px;
  position: relative;
}
.tgv2-step::after {
  content: '';
  position: absolute;
  left: 44px;
  bottom: -16px;
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, var(--tg-primary) 0%, transparent 100%);
}
.tgv2-step:last-child::after { display: none; }
.tgv2-step:hover { box-shadow: var(--tg-shadow); transform: translateX(6px); }
.tgv2-step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--tg-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform 0.3s ease;
}
.tgv2-step:hover .tgv2-step-num { transform: scale(1.1); }
.tgv2-step-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.tgv2-step-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; margin: 0; }

/* ========== TIPS SECTION ========== */
.tgv2-tip-card {
  background: #fff;
  border-radius: var(--tg-radius);
  padding: 24px 20px;
  border: 1px solid #eef2f7;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.tgv2-tip-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,136,204,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tgv2-tip-card:hover::before { opacity: 1; }
.tgv2-tip-card:hover { transform: translateY(-4px); box-shadow: var(--tg-shadow); border-color: rgba(0,136,204,0.15); }
.tgv2-tip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--tg-gradient-light);
  color: var(--tg-primary);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.tgv2-tip-card:hover .tgv2-tip-num { transform: scale(1.1) rotate(5deg); }
.tgv2-tip-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: #1a1a2e; }
.tgv2-tip-text { font-size: 0.85rem; color: #64748b; line-height: 1.6; margin: 0; }

/* ========== FAQ ========== */
.tgv2-faq-item {
  background: #fff;
  border-radius: var(--tg-radius);
  border: 1px solid #eef2f7;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tgv2-faq-item:hover { border-color: var(--tg-primary); box-shadow: 0 4px 15px rgba(0,136,204,0.08); }
.tgv2-faq-q {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #1a1a2e;
  transition: color 0.3s ease;
}
.tgv2-faq-q:hover { color: var(--tg-primary); }
.tgv2-faq-q i { transition: transform 0.3s ease; color: var(--tg-primary); font-size: 0.8rem; }
.tgv2-faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.tgv2-faq-a { padding: 0 24px 18px; font-size: 0.9rem; color: #64748b; line-height: 1.7; }

/* ========== TESTIMONIALS MARQUEE (Instagram V2 Layout) ========== */
@keyframes tgMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes tgMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.tgv2-testimonial-wrapper {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tgv2-testimonial-row {
  display: flex; gap: 20px; width: max-content; padding: 10px 0;
}
.tgv2-testimonial-row.row-1 { animation: tgMarqueeLeft 50s linear infinite; }
.tgv2-testimonial-row.row-2 { animation: tgMarqueeRight 55s linear infinite; margin-top: 16px; }
.tgv2-testimonial-row:hover { animation-play-state: paused; }
.tgv2-testimonial-card {
  width: 340px; flex-shrink: 0; padding: 20px;
  background: #fff; border-radius: var(--tg-radius);
  border: 1px solid #eef2f7; transition: all 0.3s ease;
}
.tgv2-testimonial-card:hover { border-color: var(--tg-primary); box-shadow: var(--tg-shadow); }
.tgv2-testimonial-tag {
  display: inline-block; padding: 3px 10px; border-radius: 10px;
  font-size: 0.7rem; font-weight: 700; margin-bottom: 8px;
}
/* Telegram tag colors — 4 services */
.tgv2-tag-group { background: #E0F7FA; color: #00838F; }
.tgv2-tag-channel { background: #E3F2FD; color: #1565C0; }
.tgv2-tag-view { background: #E8F5E9; color: #2E7D32; }
.tgv2-tag-reaction { background: #FFF3E0; color: #E65100; }

.tgv2-testimonial-stars { color: #FFD700; font-size: 0.85rem; margin-bottom: 8px; }
.tgv2-testimonial-text { font-size: 0.85rem; color: #555; line-height: 1.6; margin-bottom: 12px; min-height: 80px; }
.tgv2-testimonial-author { display: flex; align-items: center; gap: 10px; }
.tgv2-testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--tg-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.tgv2-testimonial-name { font-weight: 700; font-size: 0.85rem; color: #1a1a2e; }
.tgv2-testimonial-role { font-size: 0.75rem; color: #888; }
.tgv2-testimonial-svc { font-size: 0.7rem; color: var(--tg-primary); font-weight: 600; }

/* Marquee nav buttons */
.tgv2-testimonial-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 1.5rem;
}
.tgv2-testimonial-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--tg-primary); background: #fff; color: var(--tg-primary);
  font-size: 1rem; cursor: pointer; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.tgv2-testimonial-nav-btn:hover {
  background: var(--tg-primary); color: #fff; transform: scale(1.1);
}

/* ========== CTA SECTION ========== */
.tgv2-cta {
  background: var(--tg-gradient);
  background-size: 200% 200%;
  animation: tgGradientShift 8s ease infinite;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tgv2-cta-title { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: 1rem; }
.tgv2-cta-desc { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2rem; }
.tgv2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--tg-primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.tgv2-cta-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(0,136,204,0.15), transparent);
  animation: tgShimmer 2.5s ease-in-out infinite;
}
.tgv2-cta-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,0.2); color: var(--tg-primary-dark); }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .tgv2-hero { padding: 60px 0 80px; min-height: auto; }
  .tgv2-cat-scene { height: 380px; }
  .tgv2-cat-img { max-width: 200px; }
  .tgv2-orbit-ring { width: 340px; height: 340px; }
  .tgv2-flip-badge { width: 48px; height: 48px; }
  .tgv2-flip-front { font-size: 0.9rem; }
  .tgv2-flip-back { font-size: 0.5rem; }
  .tgv2-cat-heart-glow { width: 200px; height: 200px; }
  .tgv2-hero-stats { justify-content: center; flex-wrap: wrap; }
  .tgv2-section { padding: 60px 0; }
  .tgv2-toc { display: none; }
}
@media (max-width: 767px) {
  .tgv2-hero { padding: 40px 0 60px; text-align: center; }
  .tgv2-hero-sub { margin: 0 auto; }
  .tgv2-hero-stats { gap: 20px; }
  .tgv2-hero-stat-num { font-size: 1.5rem; }
  .tgv2-hero-cta { width: 100%; justify-content: center; }
  .tgv2-cat-scene { height: 320px; margin-top: 1rem; }
  .tgv2-cat-img { max-width: 160px; }
  .tgv2-orbit-ring { width: 280px; height: 280px; animation-duration: 30s; }
  .tgv2-flip-badge { width: 40px; height: 40px; animation-duration: 30s; }
  .tgv2-flip-front { font-size: 0.75rem; }
  .tgv2-flip-back { font-size: 0.45rem; padding: 2px; border-radius: 10px; }
  .tgv2-cat-heart-glow { width: 150px; height: 150px; }
  .tgv2-trail { display: none; }
  .tgv2-section { padding: 50px 0; }
  .tgv2-price-table { font-size: 0.8rem; }
  .tgv2-price-table thead th, .tgv2-price-table tbody td { padding: 10px 8px; }
  .tgv2-compare-table { font-size: 0.75rem; }
  .tgv2-compare-table thead th, .tgv2-compare-table tbody td { padding: 10px; }
  .tgv2-testimonial-card { width: 280px; }
}











/* ============ GLOBAL LAYOUT ============ */
.container-fluid { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }
.tgv2-section { padding: 40px 0; }

/* ============ WOW SECTION A: COMPARISON — DARK GRADIENT ============ */
#so-sanh-nen-tang {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0f2b4a 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
#so-sanh-nen-tang::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,136,204,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(41,182,246,0.08) 0%, transparent 50%);
  animation: tgFloatOrb 20s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tgFloatOrb {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(5deg); }
  66% { transform: translate(-20px, 15px) rotate(-3deg); }
}
#so-sanh-nen-tang .tgv2-section-title,
#so-sanh-nen-tang .tgv2-section-desc,
#so-sanh-nen-tang .tgv2-sub-heading { color: #fff; }
#so-sanh-nen-tang .tgv2-section-desc { color: rgba(255,255,255,0.75); }
#so-sanh-nen-tang .tgv2-gradient-line { background: linear-gradient(90deg, transparent, #29B6F6, transparent); }

/* Comparison image — floating glass frame */
.tg-wow-img-frame {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  position: relative;
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(0,136,204,0.4), rgba(41,182,246,0.2), rgba(0,200,83,0.3));
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(0,136,204,0.15);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.tg-wow-img-frame:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 120px rgba(0,136,204,0.25);
}
.tg-wow-img-frame img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.tg-wow-img-frame::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: tgShimmer 4s ease-in-out infinite;
  border-radius: 24px;
  pointer-events: none;
}
@keyframes tgShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Comparison benefit cards — glassmorphism on dark */
.tg-wow-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.tg-wow-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.tg-wow-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #0088CC, #29B6F6, #00C853);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tg-wow-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,136,204,0.2);
  border-color: rgba(0,136,204,0.3);
}
.tg-wow-card:hover::before { opacity: 1; }
.tg-wow-card .tg-card-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: rgba(0,136,204,0.15);
  border: 1px solid rgba(0,136,204,0.2);
  transition: all 0.3s ease;
}
.tg-wow-card:hover .tg-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(0,136,204,0.25);
  box-shadow: 0 0 20px rgba(0,136,204,0.3);
}
.tg-wow-card strong { color: #e0f7fa; }
.tg-wow-card p, .tg-wow-card div { color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.5; }

/* Conclusion box on dark bg */
#so-sanh-nen-tang .tg-wow-conclusion {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(0,136,204,0.15), rgba(41,182,246,0.08));
  border: 1px solid rgba(0,136,204,0.2);
  border-radius: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}
#so-sanh-nen-tang .tg-wow-conclusion strong { color: #29B6F6; }

/* ============ WOW SECTION B: BUSINESS — OFFSET ZIGZAG ============ */
#telegram-doanh-nghiep {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  position: relative;
  padding: 50px 0;
}
.tg-biz-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.tg-biz-cards-col { display: flex; flex-direction: column; gap: 1.25rem; }
.tg-biz-card-wow {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(0,136,204,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.tg-biz-card-wow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #0088CC, #29B6F6, #00C853);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.tg-biz-card-wow:hover {
  transform: translateY(-8px) translateX(8px);
  box-shadow: 0 20px 60px rgba(0,136,204,0.15);
  border-color: rgba(0,136,204,0.15);
}
.tg-biz-card-wow:hover::after { transform: scaleX(1); }
.tg-biz-card-wow .tg-biz-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.tg-biz-card-wow:hover .tg-biz-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.tg-biz-card-wow h4 { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; color: #1a1a2e; }
.tg-biz-card-wow p { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.5; }

/* Business image col — offset with decorative elements */
.tg-biz-img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-biz-img-col .tg-wow-img-frame {
  background: linear-gradient(135deg, rgba(0,136,204,0.3), rgba(41,182,246,0.15), rgba(0,200,83,0.2));
  box-shadow: 0 20px 60px rgba(0,136,204,0.12);
  max-width: 100%;
}
.tg-biz-img-col .tg-wow-img-frame:hover {
  box-shadow: 0 30px 80px rgba(0,136,204,0.2);
}
/* Decorative stats badge floating on image */
.tg-float-badge {
  position: absolute;
  bottom: -20px; right: -10px;
  background: linear-gradient(135deg, #0088CC, #0066AA);
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(0,102,170,0.4);
  z-index: 2;
  animation: tgBadgePulse 3s ease-in-out infinite;
}
@keyframes tgBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============ WOW SECTION C: GUIDE — PREMIUM CENTERED ============ */
#cam-nang-telegram {
  background: linear-gradient(180deg, #f8faff 0%, #eef3fb 100%);
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
#cam-nang-telegram::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,136,204,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Image showcase — centered with premium frame */
.tg-guide-showcase {
  max-width: 680px;
  margin: 0 auto 3rem;
  position: relative;
}
.tg-guide-showcase .tg-wow-img-frame {
  box-shadow: 0 16px 48px rgba(0,136,204,0.12);
  background: linear-gradient(135deg, rgba(0,136,204,0.2), rgba(41,182,246,0.1), rgba(0,200,83,0.15));
}

/* 3x2 Premium card grid */
.tg-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.tg-guide-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(0,136,204,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
/* Top accent line with unique color per card */
.tg-guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--card-accent, linear-gradient(90deg, #0088CC, #29B6F6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.tg-guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,136,204,0.12);
  border-color: rgba(0,136,204,0.12);
}
.tg-guide-card:hover::before { transform: scaleX(1); }

/* Number badge — floating gradient circle */
.tg-guide-card .tg-card-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--card-accent-solid, #0088CC);
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,136,204,0.25);
  transition: all 0.3s ease;
}
.tg-guide-card:hover .tg-card-num {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0,136,204,0.35);
}
.tg-guide-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: #1a1a2e;
}
.tg-guide-card p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .tg-guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .tg-guide-grid { grid-template-columns: 1fr; gap: 1rem; }
  .tg-guide-showcase { max-width: 100%; }
}

/* Blog button — premium gradient */
.tg-blog-btn {
  display: inline-flex;
  background: linear-gradient(135deg, #0088CC, #0066AA);
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  gap: 10px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 16px rgba(0,136,204,0.3);
}
.tg-blog-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 36px rgba(0,136,204,0.4);
  color: #fff;
}

/* Shared styles */
.tgv2-intro-highlight {
  position: relative;
  transition: all 0.3s ease;
}
.tgv2-intro-highlight:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,136,204,0.1);
}

/* How It Works and Comparison infographic images */
#cach-su-dung .tgv2-intro-img-wrap img,
#so-sanh .tgv2-intro-img-wrap img {
  max-height: 350px;
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .tg-wow-cards { grid-template-columns: 1fr; }
  .tg-biz-layout { grid-template-columns: 1fr; }
  .tg-biz-img-col { order: -1; }
  .tg-guide-layout { grid-template-columns: 1fr; }
  .tg-guide-img-sticky { position: relative; top: 0; margin-bottom: 1.5rem; }
  .tg-wow-img-frame { max-width: 100%; }
  .tg-float-badge { bottom: -10px; right: 10px; font-size: 0.85rem; padding: 10px 16px; }
}
@media (max-width: 576px) {
  #so-sanh-nen-tang { padding: 50px 0; }
  .tg-guide-steps::before { left: 20px; }
  .tg-guide-step { padding-left: 3.5rem; }
  .tg-guide-step::before { left: 8px; }
}

/* ============ PREMIUM INTRO — Knowledge Cards ============ */
.tg-knowledge-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 2.5rem 0 3rem;
}
.tg-know-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 36px 32px 28px;
  border: 1px solid rgba(0,136,204,0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.tg-know-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, #0088cc, #29B6F6, #00C853);
  border-radius: 24px 24px 0 0;
}
.tg-know-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,136,204,0.15);
  border-color: rgba(0,136,204,0.2);
}
.tg-know-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0088cc, #29B6F6);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px rgba(0,136,204,0.3);
}
.tg-know-icon--svc {
  background: linear-gradient(135deg, #E65100, #FF9800);
  box-shadow: 0 8px 24px rgba(230,81,0,0.3);
}
.tg-know-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 0.8rem;
}
.tg-know-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.tg-know-stats {
  display: flex;
  gap: 20px;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,136,204,0.1);
}
.tg-know-stat {
  display: flex;
  flex-direction: column;
}
.tg-know-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0088cc;
  line-height: 1;
}
.tg-know-stat-label {
  font-size: 0.78rem;
  color: #888;
  margin-top: 4px;
}

/* ============ PREMIUM INTRO — Centered Infographic ============ */
.tg-intro-img-premium {
  max-width: 680px;
  margin: 0 auto 3rem;
}
.tg-intro-img-premium .tg-wow-img-frame {
  background: linear-gradient(135deg, rgba(0,136,204,0.15), rgba(41,182,246,0.08), rgba(0,200,83,0.1));
  box-shadow: 0 12px 36px rgba(0,136,204,0.1);
}

/* ============ PREMIUM INTRO — Callout Box ============ */
.tg-callout-premium {
  max-width: 860px;
  margin: 0 auto 3rem;
  background: linear-gradient(135deg, rgba(0,136,204,0.06), rgba(41,182,246,0.04));
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(0,136,204,0.15);
  position: relative;
  overflow: hidden;
}
.tg-callout-premium::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, #0088cc, #29B6F6, #00C853);
  border-radius: 20px 0 0 20px;
}
.tg-callout-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0088cc, #29B6F6);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(0,136,204,0.3);
}
.tg-callout-body > strong {
  display: block;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.tg-callout-body p strong {
  display: inline;
}
.tg-callout-body p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ============ PREMIUM INTRO — Service Mini Cards ============ */
.tg-svc-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 1.5rem;
}
.tg-svc-mini {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(0,136,204,0.08);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.tg-svc-mini::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--mini-accent, #0088cc), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tg-svc-mini:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,136,204,0.12);
  border-color: rgba(0,136,204,0.15);
}
.tg-svc-mini:hover::after { opacity: 1; }
.tg-svc-mini-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mini-accent, #0088cc);
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.tg-svc-mini:hover .tg-svc-mini-icon { transform: scale(1.12) rotate(5deg); }
.tg-svc-mini strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.tg-svc-mini p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.tg-svc-mini-note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============ PREMIUM INTRO — Benefit Cards ============ */
.tg-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tg-benefit-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(0,136,204,0.08);
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.tg-benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--b-color, #0088cc), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tg-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(0,136,204,0.1);
  border-color: rgba(0,136,204,0.12);
}
.tg-benefit-card:hover::before { transform: scaleX(1); }
.tg-benefit-card--wide {
  grid-column: 1 / -1;
}
.tg-benefit-num {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: #fff;
  background: var(--b-color, #0088cc);
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.tg-benefit-card:hover .tg-benefit-num { transform: scale(1.1) rotate(5deg); }
.tg-benefit-card > strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.tg-benefit-card p strong {
  display: inline;
}
.tg-benefit-card p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.65;
}

/* ============ PREMIUM INTRO — Commit Glass Cards ============ */
.tg-commit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tg-commit-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0,136,204,0.08);
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.tg-commit-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--c-color, #0088cc);
  border-radius: 20px 20px 0 0;
  opacity: 0.7;
}
.tg-commit-glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,136,204,0.12);
  border-color: rgba(0,136,204,0.15);
}
.tg-commit-glass-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-color, #0088cc);
  color: #fff;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.tg-commit-glass:hover .tg-commit-glass-icon { transform: scale(1.12) rotate(5deg); }
.tg-commit-glass strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.tg-commit-glass p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ============ RESPONSIVE — Premium Intro ============ */
@media (max-width: 991px) {
  .tg-knowledge-row { grid-template-columns: 1fr; gap: 20px; }
  .tg-svc-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .tg-benefit-grid { grid-template-columns: 1fr; }
  .tg-commit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .tg-svc-mini-grid { grid-template-columns: 1fr; gap: 14px; }
  .tg-commit-grid { grid-template-columns: 1fr; }
  .tg-callout-premium { flex-direction: column; gap: 16px; }
  .tg-intro-img-premium { max-width: 100%; }
}

/* ===== RESPONSIVE — Keyword Rotator ===== */
@media (max-width: 991px) {
  .tg-keyword-rotator { min-width: 350px; }
}
@media (max-width: 767px) {
  .tg-hero-headline { flex-direction: column; align-items: center; gap: 0; }
  .tgv2-hero-title { text-align: center; white-space: normal; }
  .tg-keyword-rotator { height: 2.6rem; min-width: auto; width: 100%; overflow: visible; text-align: center; display: block; }
  .tg-kw {
    font-size: 1.8rem; line-height: 2.6rem;
    left: 50%;
    animation-name: tgKwSlideUpCenter;
  }
  .tg-hero-tagline { font-size: 1.3rem; text-align: center; }
}
@keyframes tgKwSlideUpCenter {
  0%      { opacity: 0; transform: translateX(-50%) translateY(80%); }
  0.5%    { opacity: 1; transform: translateX(-50%) translateY(0); }
  6%      { opacity: 1; transform: translateX(-50%) translateY(0); }
  6.67%   { opacity: 0; transform: translateX(-50%) translateY(-80%); }
  100%    { opacity: 0; transform: translateX(-50%) translateY(-80%); }
}
