:root {
  --tktm-primary: #ff0050;
  --tktm-primary-dark: #cc003f;
  --tktm-primary-rgb: 255, 0, 80;
  --tktm-accent: #00f2ea;
  --tktm-accent-light: #25f4ee;
  --tktm-accent-rgb: 0, 242, 234;
  --tktm-bg: #0a0a1a;
  --tktm-bg2: #12122a;
  --tktm-card: rgba(255, 255, 255, .04);
  --tktm-card-border: rgba(255, 255, 255, .08);
  --tktm-text: #e0e0e0;
  --tktm-text-muted: #8a8aac;
  --tktm-radius: 18px;
  --tktm-radius-sm: 12px;
}

/* ===== Animations ===== */
@keyframes tktmSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes tktmFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes tktmFloat1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0)
  }

  50% {
    transform: translate(8px, -10px) rotate(4deg)
  }
}

@keyframes tktmFloat2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0)
  }

  50% {
    transform: translate(-6px, 8px) rotate(-3deg)
  }
}

@keyframes tktmFloat3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(5px, 12px)
  }
}

@keyframes tktmPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--tktm-primary-rgb), .4)
  }

  70% {
    box-shadow: 0 0 0 15px rgba(var(--tktm-primary-rgb), 0)
  }
}

@keyframes tktmGlow {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: .8;
    transform: scale(1.05)
  }
}

@keyframes tktmMarquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes tktmMarqueeR {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

@keyframes tktmDot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes tktmKwSlide {

  0%,
  16% {
    transform: translateY(0)
  }

  20%,
  36% {
    transform: translateY(-100%)
  }

  40%,
  56% {
    transform: translateY(-200%)
  }

  60%,
  76% {
    transform: translateY(-300%)
  }

  80%,
  96% {
    transform: translateY(-400%)
  }

  100% {
    transform: translateY(-500%)
  }
}

@keyframes tktmHeartBeat {

  0%,
  100% {
    transform: scale(1)
  }

  14% {
    transform: scale(1.15)
  }

  28% {
    transform: scale(1)
  }

  42% {
    transform: scale(1.08)
  }

  70% {
    transform: scale(1)
  }
}

.tktm-anim-slideUp {
  animation: tktmSlideUp .7s ease both;
}

.tktm-anim-fadeIn {
  animation: tktmFadeIn .6s ease both;
}

/* ===== Full-Width Override — remove framework side margins ===== */
.body-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  border-radius: 0 !important;
}

/* ===== Hero ===== */
.tktm-hero {
  position: relative;
  background: linear-gradient(145deg, var(--tktm-bg), #140822 40%, #0d1b3e 70%, var(--tktm-bg2));
  padding: 16px 0 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.tktm-hero>.container-fluid {
  padding-left: 24px;
  padding-right: 24px;
}

.tktm-col-form {
  margin-top: -8px;
}

.tktm-col-illustration {
  padding-top: 8px;
}

.tktm-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .25;
  pointer-events: none;
}

.tktm-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--tktm-primary);
  top: -180px;
  right: -120px;
}

.tktm-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--tktm-accent);
  bottom: -100px;
  left: -80px;
}

.tktm-hero-orb-3 {
  width: 300px;
  height: 300px;
  background: #9C27B0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tktm-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}



/* Breadcrumb */
.tktm-breadcrumb {
  margin-bottom: 16px;
}

.tktm-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tktm-breadcrumb a {
  color: var(--tktm-text-muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}

.tktm-breadcrumb a:hover {
  color: var(--tktm-accent);
}

.tktm-breadcrumb .separator {
  color: var(--tktm-text-muted);
  font-size: .65rem;
}

.tktm-breadcrumb .current {
  color: var(--tktm-text);
  font-weight: 600;
  font-size: .85rem;
}

/* Hero Badge */
.tktm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--tktm-primary-rgb), .15);
  color: var(--tktm-primary);
  border: 1px solid rgba(var(--tktm-primary-rgb), .3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.tktm-hero-badge i {
  color: #FFD700;
}

/* Hero Title & Keyword Rotator */
.tktm-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.tktm-hero-title .accent {
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Keyword rotator: static flex pills (no animation, lightweight) */
.tktm-kw-rotator {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tktm-kw {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 0, 80, 0.12);
  border: 1px solid rgba(255, 0, 80, 0.25);
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.tktm-hero-desc {
  color: var(--tktm-text);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 12px;
}

/* SEO Anchor Paragraph */
.tktm-hero-anchor {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 560px;
}

.tktm-hero-anchor a {
  color: var(--tktm-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tktm-hero-anchor a:hover {
  color: #25f4ee;
}

/* Hero Info Card — glass wrapper below form */
.tktm-hero-info-card {
  margin-top: 12px;
  margin-bottom: 20px;
  background: rgba(13, 13, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.tktm-hero-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--tktm-primary), var(--tktm-accent));
  border-radius: 3px 0 0 3px;
}

.tktm-hero-info-card .tktm-hero-desc {
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: none;
}

.tktm-hero-info-card .tktm-hero-desc strong {
  color: var(--tktm-accent);
}

.tktm-hero-info-card .tktm-hero-anchor {
  margin-bottom: 0;
  padding-top: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: none;
}

/* ===== Social Proof Panel ===== */
.tktm-proof-panel {
  background: rgba(10, 10, 26, .92);
  border: 1px solid var(--tktm-card-border);
  border-radius: var(--tktm-radius);
  padding: 16px;
}

.tktm-proof-hero {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.tktm-proof-robot {
  position: relative;
  flex-shrink: 0;
  width: 120px;
}

.tktm-robot-img-sm {
  width: 120px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 20px rgba(var(--tktm-primary-rgb), .3));
}

.tktm-cat-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(var(--tktm-primary-rgb), .25), transparent 70%);
  border-radius: 50%;
  opacity: .6;
  z-index: 1;
}

.tktm-fbadge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  white-space: nowrap;
}

.tk-fb-mini-1 {
  top: 0;
  right: -20px;
  background: rgba(var(--tktm-primary-rgb), .85);
  animation: tktmFloat1 5s ease-in-out infinite;
}

.tk-fb-mini-2 {
  bottom: 30%;
  left: -15px;
  background: rgba(var(--tktm-accent-rgb), .85);
  animation: tktmFloat2 6s ease-in-out infinite;
}

.tk-fb-mini-3 {
  bottom: 5px;
  right: -10px;
  background: rgba(255, 152, 0, .85);
  animation: tktmFloat3 4s ease-in-out infinite;
}

.tktm-proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}

.tktm-pstat {
  text-align: center;
  padding: 8px 4px;
  background: rgba(255, 255, 255, .03);
  border-radius: var(--tktm-radius-sm);
  border: 1px solid rgba(255, 255, 255, .05);
}

.tktm-pstat-icon {
  font-size: 1rem;
  margin-bottom: 2px;
}

.tktm-pstat-icon .fa-heart {
  color: var(--tktm-primary);
}

.tktm-pstat-icon .fa-bolt {
  color: var(--tktm-accent);
}

.tktm-pstat-icon .fa-star {
  color: #FFD700;
}

.tktm-pstat-icon .fa-headset {
  color: #26C6DA;
}

.tktm-pstat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.tktm-pstat-label {
  font-size: .7rem;
  color: var(--tktm-text-muted);
}

/* Live Feed */
.tktm-livefeed {
  border-top: 1px solid var(--tktm-card-border);
  padding-top: 10px;
}

.tktm-livefeed-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.tktm-livefeed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: tktmDot 1.5s ease-in-out infinite;
}

.tktm-livefeed-title {
  font-size: .75rem;
  font-weight: 600;
  color: var(--tktm-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.tktm-livefeed-list {
  max-height: 200px;
  overflow: hidden;
}

.tktm-livefeed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  animation: tktmSlideUp .4s ease both;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.tktm-livefeed-item:last-child {
  border-bottom: none;
}

.tktm-livefeed-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  flex-shrink: 0;
}

.tktm-livefeed-info {
  flex: 1;
  min-width: 0;
}

.tktm-livefeed-name {
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tktm-livefeed-name span {
  font-weight: 400;
  color: var(--tktm-text-muted);
}

.tktm-livefeed-detail {
  font-size: .68rem;
  color: var(--tktm-accent);
}

.tktm-livefeed-time {
  font-size: .68rem;
  color: var(--tktm-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Glass Form ===== */
.tktm-glass-form {
  background: rgba(10, 10, 26, .94);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--tktm-radius);
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.tktm-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tktm-form-header-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.tktm-form-header-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.tktm-form-header-sub {
  font-size: .8rem;
  color: var(--tktm-text-muted);
  margin: 0;
}

/* Stepper */
.tktm-stepper {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.tktm-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  font-size: .72rem;
  font-weight: 600;
  color: var(--tktm-text-muted);
  transition: all .3s;
}

.tktm-step.active {
  background: rgba(var(--tktm-primary-rgb), .15);
  color: var(--tktm-primary);
}

.tktm-step.done {
  background: rgba(var(--tktm-accent-rgb), .15);
  color: var(--tktm-accent);
}

.tktm-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
}

.tktm-step.active .tktm-step-num {
  background: var(--tktm-primary);
  color: #fff;
}

.tktm-step.done .tktm-step-num {
  background: var(--tktm-accent);
  color: #000;
}

/* Form Fields */
.tktm-form-group {
  margin-bottom: 14px;
}

.tktm-form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--tktm-text);
  margin-bottom: 5px;
}

.tktm-form-label i {
  color: var(--tktm-primary);
  font-size: .8rem;
}

.tktm-input,
.tktm-textarea {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}

.tktm-input:focus,
.tktm-textarea:focus {
  border-color: var(--tktm-primary);
  box-shadow: 0 0 0 3px rgba(var(--tktm-primary-rgb), .15);
}

.tktm-input::placeholder,
.tktm-textarea::placeholder {
  color: var(--tktm-text-muted);
}

select.tktm-input {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8aac' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

select.tktm-input option {
  background: var(--tktm-bg2);
  color: #fff;
  padding: 8px 12px;
}

select.tktm-input option:checked {
  background: rgba(var(--tktm-primary-rgb), .2);
}

.tktm-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transition: grid-template-columns .3s ease;
}

@media(min-width:768px) {
  .tktm-form-row-2col.has-selection {
    grid-template-columns: auto minmax(0, 1fr)
  }
}

.tktm-form-row-2col>.tktm-form-group {
  min-width: 0
}

#server-wrapper,
#country-wrapper {
  min-width: 0
}

.tktm-server-desc {
  background: rgba(var(--tktm-primary-rgb), .08);
  border: 1px solid rgba(var(--tktm-primary-rgb), .15);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px;
  display: none;
  line-height: 1.4;
}

.tktm-qty-hint {
  display: block;
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 3px;
  margin-bottom: 8px;
}

.tktm-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tktm-qty-row .tktm-input {
  flex: 1;
}

.tktm-qty-suffix {
  font-size: .85rem;
  font-weight: 600;
  color: var(--tktm-primary);
  white-space: nowrap;
}

.tktm-price-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: .85rem;
}

.tktm-price-label {
  color: var(--tktm-text-muted);
}

.tktm-price-value {
  color: var(--tktm-accent);
  font-weight: 700;
}

.tktm-price-total {
  color: #FFD700;
  font-weight: 800;
  font-size: 1.05rem;
}

/* CTA Button */
.tktm-cta-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--tktm-primary), #e6004a);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tktm-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--tktm-primary-rgb), .4);
}

.tktm-trust-mini {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.tktm-trust-mini-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  color: var(--tktm-text-muted);
}

.tktm-trust-mini-item i {
  color: var(--tktm-accent);
  font-size: .7rem;
}

/* Custom Select */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 12px 32px 12px 14px;
  color: #fff;
  font-size: .88rem;
  cursor: pointer;
  transition: all .3s;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--tktm-primary);
  box-shadow: 0 0 0 3px rgba(var(--tktm-primary-rgb), .15);
}

.custom-select-trigger .arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, .5);
  transform: translateY(-50%);
  transition: transform .3s;
}

.custom-select-wrapper.open .custom-select-trigger .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: 100%;
  min-width: 100%;
  max-width: calc(100vw - 40px);
  background: rgba(13, 13, 26, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  margin-top: 4px;
  z-index: 100;
  display: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

.custom-select-wrapper.open .custom-select-dropdown {
  display: block;
}

.custom-search-container {
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(13, 13, 26, .8);
}

.custom-search-input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  font-size: .85rem;
  outline: none;
}

.custom-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
}

.custom-options-list li {
  padding: 10px 12px;
  cursor: pointer;
  font-size: .82rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
  transition: background .15s;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.custom-options-list li:hover {
  background: rgba(var(--tktm-primary-rgb), .12);
}

.custom-options-list li.selected {
  background: rgba(var(--tktm-primary-rgb), .12);
  color: #fff;
  font-weight: 600;
}

.custom-options-list li:last-child {
  border-bottom: 0;
}

.custom-options-list li img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.custom-select-trigger span,
.custom-select-trigger #server-render,
.custom-select-trigger #country-render {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1
}

.tktm-server-trigger #server-render {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 20px)
}

/* Server list items word-break */
#server-list li {
  display: block;
  gap: 0;
  color: var(--tktm-accent);
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
}

#server-list li>i {
  display: none;
}

#server-list li>span {
  display: inline;
  margin-left: 0 !important;
  color: rgba(255, 255, 255, .9) !important;
  font-weight: 400 !important;
}

#server-list li>span::before {
  content: " — ";
}

#server-list li strong {
  color: var(--tktm-accent);
}





/* ===== SEO Sections ===== */
.tktm-section {
  padding: 60px 16px;
  background: var(--tktm-bg);
}

.tktm-section:nth-child(even) {
  background: var(--tktm-bg2);
}

.tktm-section-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.tktm-section-title.center {
  text-align: center;
}

.tktm-section-desc {
  text-align: center;
  color: var(--tktm-text);
  font-size: .95rem;
  max-width: 700px;
  margin: 0 auto 28px;
}

.tktm-section-text {
  color: var(--tktm-text);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.tktm-section-img {
  width: 100%;
  border-radius: var(--tktm-radius);
  object-fit: cover;
}

.tktm-img-card {
  border-radius: var(--tktm-radius);
  overflow: hidden;
  border: 1px solid var(--tktm-card-border);
}

.tktm-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.tktm-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Benefit Cards (7 tips) */
.tktm-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.tktm-benefit-card {
  background: var(--tktm-card);
  border: 1px solid var(--tktm-card-border);
  border-radius: var(--tktm-radius-sm);
  padding: 22px 18px;
  transition: transform .3s, border-color .3s;
}

.tktm-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--tktm-primary-rgb), .3);
}

.tktm-benefit-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(var(--tktm-primary-rgb), .15), rgba(var(--tktm-accent-rgb), .1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--tktm-primary);
  margin-bottom: 12px;
}

.tktm-benefit-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tktm-benefit-card p {
  font-size: .85rem;
  color: var(--tktm-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Benefits List (SEO-3) */
.tktm-benefits-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.tktm-benefits-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: .92rem;
  color: var(--tktm-text);
  line-height: 1.65;
  border-bottom: 1px solid var(--tktm-card-border);
}

.tktm-benefits-list li:last-child {
  border-bottom: none;
}

.tktm-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--tktm-accent);
  font-weight: 700;
}

/* Pricing Table */
.tktm-pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--tktm-radius-sm);
  overflow: hidden;
  font-size: .85rem;
}

.tktm-pricing-table thead th {
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-primary-dark));
  color: #fff;
  padding: 12px 14px;
  font-weight: 700;
  text-align: left;
}

.tktm-pricing-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--tktm-card-border);
  color: var(--tktm-text);
}

.tktm-pricing-table tbody tr:hover {
  background: rgba(var(--tktm-primary-rgb), .06);
}

.tktm-pricing-table .tktm-promo td {
  background: rgba(255, 215, 0, .08);
}

.tktm-pricing-table .tktm-popular td {
  background: rgba(var(--tktm-primary-rgb), .08);
}

.tktm-pricing-badge {
  display: inline-block;
  background: var(--tktm-primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

/* Step Cards (SEO-5) */
.tktm-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.tktm-step-card {
  position: relative;
  background: var(--tktm-card);
  border: 1px solid var(--tktm-card-border);
  border-radius: var(--tktm-radius-sm);
  padding: 24px 18px 18px;
  text-align: center;
  transition: transform .3s;
}

.tktm-step-card:hover {
  transform: translateY(-4px);
}

.tktm-step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
}

.tktm-step-icon {
  font-size: 1.5rem;
  color: var(--tktm-primary);
  margin-bottom: 10px;
}

.tktm-step-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tktm-step-card p {
  font-size: .82rem;
  color: var(--tktm-text-muted);
  line-height: 1.55;
  margin: 0;
}

.tktm-step-card a {
  color: var(--tktm-primary);
}

.tktm-step-img-wrap {
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

.tktm-step-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

.tktm-step-card:hover .tktm-step-img {
  transform: scale(1.03);
}

/* Tip Cards (SEO-7) */
.tktm-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.tktm-tip-card {
  background: var(--tktm-card);
  border: 1px solid var(--tktm-card-border);
  border-radius: var(--tktm-radius-sm);
  padding: 22px 18px;
  transition: transform .3s;
}

.tktm-tip-card:hover {
  transform: translateY(-4px);
}

.tktm-tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.tktm-tip-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tktm-tip-card p {
  font-size: .85rem;
  color: var(--tktm-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== Testimonials ===== */
.tktm-testimonials {
  padding: 50px 0;
  background: var(--tktm-bg);
  overflow: hidden;
}

.tktm-testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
}

.tktm-testi-row-1 {
  animation: tktmMarquee 60s linear infinite;
  will-change: transform;
}

.tktm-testi-row-2 {
  animation: tktmMarqueeR 65s linear infinite;
  will-change: transform;
}

.tktm-testi-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--tktm-card);
  border: 1px solid var(--tktm-card-border);
  border-radius: var(--tktm-radius-sm);
  padding: 18px;
}

.tktm-testi-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.tktm-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}

.tktm-testi-name {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.tktm-testi-role {
  font-size: .72rem;
  color: var(--tktm-text-muted);
}

.tktm-testi-stars {
  color: #FFD700;
  font-size: .7rem;
  margin-bottom: 6px;
}

.tktm-testi-stars .far {
  color: var(--tktm-text-muted);
}

.tktm-testi-text {
  font-size: .82rem;
  color: var(--tktm-text);
  line-height: 1.55;
  font-style: italic;
}

/* ===== FAQ ===== */
.tktm-faq .accordion-item {
  background: var(--tktm-card);
  border: 1px solid var(--tktm-card-border) !important;
  border-radius: var(--tktm-radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.tktm-faq .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 18px;
  box-shadow: none !important;
}

.tktm-faq .accordion-button:not(.collapsed) {
  color: var(--tktm-primary);
  background: rgba(var(--tktm-primary-rgb), .06);
}

.tktm-faq .accordion-button::after {
  filter: invert(1);
}

.tktm-faq .accordion-body {
  color: var(--tktm-text);
  font-size: .88rem;
  line-height: 1.65;
  padding: 12px 18px 16px;
}

/* ===== Related Services ===== */
.tktm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tktm-related-card {
  background: var(--tktm-card);
  border: 1px solid var(--tktm-card-border);
  border-radius: var(--tktm-radius-sm);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
}

.tktm-related-card:hover {
  transform: translateY(-5px);
  border-color: var(--tktm-primary);
  box-shadow: 0 10px 40px rgba(var(--tktm-primary-rgb), .15);
}

.tktm-related-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--tktm-primary-rgb), .15), rgba(var(--tktm-accent-rgb), .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--tktm-primary);
  margin: 0 auto 14px;
}

.tktm-related-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tktm-related-card p {
  font-size: .82rem;
  color: var(--tktm-text-muted);
  margin: 0;
}

/* ===== CTA Final ===== */
.tktm-cta-final {
  padding: 50px 24px;
  background: linear-gradient(135deg, var(--tktm-primary), #e6004a, var(--tktm-primary-dark));
  text-align: center;
}

.tktm-cta-final h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.tktm-cta-final p {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  margin-bottom: 20px;
}

.tktm-cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--tktm-primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
}

.tktm-cta-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
  color: var(--tktm-primary);
}

/* ===== Dark Mode Overrides ===== */
[data-bs-theme="dark"] .tktm-section {
  background: var(--tktm-bg);
}

[data-bs-theme="dark"] .tktm-section:nth-child(even) {
  background: var(--tktm-bg2);
}

/* ===== Responsive ===== */
@media(max-width:1200px) {
  .tktm-hero {
    padding: 100px 16px 40px;
  }
}

@media(max-width:991px) {
  .tktm-hero {
    min-height: auto;
    padding: 12px 0 20px;
  }

  .tktm-hero-row {
    min-height: auto;
    flex-direction: column;
  }

  .tktm-col-illustration {
    order: 1;
    margin-top: 20px;
  }

  .tktm-proof-panel {
    margin-top: 20px;
  }

  .tktm-glass-form {
    margin-bottom: 16px;
  }

  .tktm-related-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .tktm-hero {
    padding: 10px 0 12px;
  }

  .tktm-hero>.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tktm-form-row-2col {
    grid-template-columns: 1fr;
  }

  .tktm-proof-hero {
    flex-direction: column;
    text-align: center;
  }

  .tktm-proof-robot {
    width: 100px;
    margin: 0 auto;
  }

  .tktm-robot-img-sm {
    width: 100px;
  }

  .tktm-proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .tktm-section {
    padding: 40px 12px;
  }

  .tktm-benefit-grid {
    grid-template-columns: 1fr;
  }

  .tktm-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tktm-tips-grid {
    grid-template-columns: 1fr;
  }

  .tktm-testi-card {
    width: 260px;
  }

  .tktm-pricing-table {
    font-size: .75rem;
  }

  .tktm-pricing-table thead th,
  .tktm-pricing-table tbody td {
    padding: 8px 10px;
  }

  .tktm-mini-stats {
    gap: 12px;
  }

  .tktm-mini-stat-num {
    font-size: 1.3rem;
  }
}

@media(max-width:576px) {
  .tktm-hero-title {
    font-size: 1.5rem;
  }

  .tktm-glass-form {
    padding: 16px 12px;
  }

  .tktm-form-group {
    margin-bottom: 10px;
  }

  .tktm-form-label {
    font-size: .78rem;
    margin-bottom: 3px;
  }

  .tktm-input,
  .tktm-textarea {
    padding: 8px 12px;
    font-size: .85rem;
  }

  .tktm-form-header {
    margin-bottom: 10px;
    gap: 8px;
  }

  .tktm-form-header-icon {
    width: 36px;
    height: 36px;
    font-size: .95rem;
  }

  .tktm-form-header-title {
    font-size: 1rem;
  }

  .tktm-kw-rotator {
    gap: 4px;
    margin-bottom: 8px;
  }

  .tktm-kw {
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .tktm-hero-desc {
    font-size: .88rem;
    margin-bottom: 14px;
  }

  .tktm-stepper {
    flex-wrap: wrap;
  }

  .tktm-step {
    font-size: .65rem;
    padding: 6px 8px;
  }

  .tktm-steps-grid {
    grid-template-columns: 1fr;
  }

  .tktm-testi-card {
    width: 240px;
  }

  .tktm-mini-stats {
    flex-direction: column;
    gap: 10px;
  }
}

/* === HIGHLIGHT CLASSES (Fix 5) === */
.tktm-hl-primary {
  color: var(--tktm-primary);
  font-weight: 600;
}

.tktm-hl-accent {
  color: var(--tktm-accent);
  font-weight: 600;
}

.tktm-hl-success {
  color: #4CAF50;
  font-weight: 600;
}

.tktm-hl-info {
  color: #26C6DA;
  font-weight: 600;
}

.tktm-hl-warning {
  color: #FF9800;
  font-weight: 600;
}

/* === GRADIENT TEXT (Fix 6) === */
.tktm-gradient-text {
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === SECTION TITLE ::AFTER UNDERLINE (Fix 8) === */
.tktm-section-title {
  position: relative;
  display: inline-block;
  width: 100%;
}

.tktm-section-title.center::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--tktm-primary), var(--tktm-accent));
  margin: 12px auto 0;
  border-radius: 2px;
}

/* === MINI STATS CARDS (Fix 9) === */
.tktm-mini-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tktm-mini-stat {
  background: rgba(255, 0, 80, 0.06);
  border: 1px solid rgba(255, 0, 80, 0.15);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  flex: 0 0 auto;
  min-width: 120px;
}

.tktm-mini-stat-num {
  font-size: 1.6rem;
  font-weight: 800;

  color: var(--tktm-primary);
  line-height: 1.2;
}

/* === GLOSSMORPHIC CONCEPT CARDS (Premium UI) === */
.tktm-concept-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 35px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tktm-concept-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 270px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tktm-concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--tktm-primary), var(--tktm-accent));
  opacity: 0.8;
  transition: width 0.4s ease;
}

.tktm-concept-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--tktm-primary-rgb), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--tktm-primary-rgb), 0.15);
}

.tktm-cc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--tktm-primary-rgb), 0.15), rgba(var(--tktm-accent-rgb), 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--tktm-primary);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(var(--tktm-primary-rgb), 0.2);
  transition: transform 0.4s ease, color 0.4s ease;
}

.tktm-concept-card:hover .tktm-cc-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--tktm-accent);
}

.tktm-cc-content {
  flex: 1;
  min-width: 0;
}

.tktm-cc-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  letter-spacing: 0.3px;
}

.tktm-cc-content p {
  font-size: 0.75rem;
  color: var(--tktm-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* === TESTIMONIAL TAG BADGE (Fix 13) === */
.tktm-testi-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--tktm-primary), var(--tktm-accent));
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* === TESTIMONIAL WRAPPER MASK (Fix 11) === */
.tktm-testimonial-wrapper {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

/* === IMG CARD HOVER (Fix 15) === */
.tktm-img-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.tktm-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 0, 80, 0.15);
}

/* (Collapse/expand logic is 100% in tiktok-tang-tim-video-v2.js) */
