/* ThinkData — interactive one-page experience (Coffee Joint–style) */

body.tdp-interactive {
  overflow-x: hidden;
}

body.tdp-interactive html {
  scroll-behavior: auto;
}

.tdp-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #2b6ef0, #4a9eff, #a5f0ff);
  z-index: 9999;
  pointer-events: none;
}

.tdp-fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.35s ease;
}

.tdp-fixed-nav.is-scrolled {
  background: rgba(5, 9, 20, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 0.55rem 0;
}

.tdp-fixed-nav .navbar-brand span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tdp-fixed-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.35rem 0.9rem !important;
  margin: 0 0.15rem;
  position: relative;
  transition: color 0.3s ease;
}

.tdp-fixed-nav .nav-link:hover,
.tdp-fixed-nav .nav-link.active {
  color: #fff !important;
}

.tdp-fixed-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4a9eff;
}

.tdp-fixed-nav .quote_btn-container a {
  color: #a5f0ff;
  font-size: 0.8rem;
}

.tdp-fixed-nav .quote_btn-container a span {
  display: none;
}

@media (min-width: 992px) {
  .tdp-fixed-nav .quote_btn-container a span {
    display: inline;
  }
}

.hero_area--animated .header_section {
  display: none;
}

.hero_area--animated .welcome_hero {
  padding-top: 5rem;
}

.section-dark .tdp-goal-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.section-dark .tdp-goal-list li {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  border-left: 3px solid rgba(74, 158, 255, 0.5);
  line-height: 1.6;
}

.section-dark .tdp-goal-list strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

.tdp-section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #4a9eff;
  margin-bottom: 0.75rem;
}

.section-dark .tdp-section-label {
  color: #7ec8ff;
}

.tdp-display-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0a1628;
  margin-bottom: 1rem;
}

.section-dark .tdp-display-title {
  color: #fff;
}

.tdp-panel {
  position: relative;
  overflow: hidden;
}

.tdp-panel--tall {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.tdp-marquee-band {
  background: #050914;
  color: #4a9eff;
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(74, 158, 255, 0.15);
  border-bottom: 1px solid rgba(74, 158, 255, 0.15);
  display: flex;
}

.tdp-marquee-track {
  display: flex;
  width: max-content;
  /* gap: 3rem; <-- Dihapus dari sini agar hitungan transform -50% tidak meleset */
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollMarquee 25s linear infinite;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* Bergeser persis 1 grup, lalu mengulang mulus */
  }
}

/* Opsional: Hentikan running text ketika kursor diarahkan ke sana */
.tdp-marquee-track:hover {
  animation-play-state: paused;
}

.tdp-marquee-content {
  display: flex;
  gap: 3rem; /* Spasi antar kata dipindah ke sini */
  padding-right: 3rem; /* Menjaga jarak antara akhir grup 1 dan awal grup 2 */
  flex-shrink: 0;
}

.tdp-marquee-track span {
  opacity: 0.85;
}

.tdp-marquee-track .sep {
  color: rgba(74, 158, 255, 0.4);
}

.tdp-philosophy {
  background: linear-gradient(180deg, #050914 0%, #0a1530 100%);
  color: #e8eeff;
  padding: 0;
}

.tdp-philosophy-pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.tdp-philosophy-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.tdp-philosophy-intro .tdp-display-title {
  color: #fff;
}

.tdp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tdp-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.tdp-pillar.is-active {
  border-color: rgba(74, 158, 255, 0.65);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(43, 110, 240, 0.2);
}

.tdp-pillar-icon {
  font-size: 2rem;
  color: #4a9eff;
  margin-bottom: 1rem;
}

.tdp-pillar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.tdp-pillar p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #b8c8f0;
  margin: 0;
}

.tdp-showcase {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0b1530 0%, #1a4fcf 50%, #050914 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.tdp-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(74, 158, 255, 0.25), transparent 55%);
  pointer-events: none;
}

.tdp-showcase blockquote {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.35rem, 4vw, 2.4rem);
  font-weight: 300;
  line-height: 1.45;
  color: #fff;
  font-style: italic;
}

.tdp-showcase cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a5f0ff;
}

.tdp-features-horizontal {
  background: #f0f4fc;
  padding: 0 !important;
  overflow: hidden;
}

.tdp-features-horizontal .tdp-section-intro {
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

.tdp-horizontal-wrap {
  position: relative;
}

.tdp-horizontal-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding: 0 8vw 6rem;
  will-change: transform;
}

.tdp-horizontal-slide {
  flex: 0 0 min(340px, 78vw);
}

.tdp-horizontal-slide .box {
  height: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.12);
}

.tdp-horizontal-slide .box img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.tdp-horizontal-hint {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7fa8;
  padding-bottom: 2rem;
}

.tdp-img-parallax {
  overflow: hidden;
  border-radius: 12px;
}

.tdp-img-parallax img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}

.tdp-kontak-panel {
  min-height: 90vh;
  background: linear-gradient(160deg, #050914 0%, #0b1120 100%);
  color: #e8eeff;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.tdp-kontak-panel .tdp-display-title {
  color: #fff;
}

.tdp-kontak-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 158, 255, 0.25);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.tdp-kontak-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a9eff;
  margin-bottom: 1rem;
}

.tdp-kontak-card a,
.tdp-kontak-card p {
  color: #d6e6ff;
  font-size: 1.05rem;
}

.tdp-btn-glow {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  background: linear-gradient(105deg, #2b6ef0, #1a4fcf);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(43, 110, 240, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tdp-btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(43, 110, 240, 0.55);
  color: #fff;
}

[data-reveal] {
  will-change: transform, opacity;
}

.stats_strip .stat-item {
  opacity: 0;
  transform: translateY(24px);
}

body.tdp-interactive .site-main .about_section,
body.tdp-interactive .site-main .server_section {
  padding-top: 100px;
  padding-bottom: 100px;
}

body.tdp-interactive .client_section {
  background: #fff;
}

@media (max-width: 991px) {
  .tdp-pillar-grid {
    grid-template-columns: 1fr;
  }

  .tdp-horizontal-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .tdp-horizontal-track {
    padding: 0 1.5rem 3rem;
  }

  .tdp-horizontal-slide {
    scroll-snap-align: center;
  }

  .tdp-panel--tall {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tdp-marquee-track {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
