/**
 * Tayeb Tech - Premium Dark Theme Redesign
 * Loaded AFTER style.css to override template defaults.
 * Inspired by: Stripe, Linear, Vercel, Toptal, Turing
 * --------------------------------------------------------- */

/* ==========================================================
   0. CSS VARIABLES & ROOT
   ========================================================== */
:root {
  --tt-dark:        #0B0F1A;
  --tt-dark-2:      #111827;
  --tt-dark-3:      #1a1f36;
  --tt-light:       #f8f9fc;
  --tt-white:       #ffffff;
  --tt-accent:      #3B82F6;
  --tt-accent-hover:#2563EB;
  --tt-accent-glow: rgba(59, 130, 246, 0.25);
  --tt-gradient:    linear-gradient(135deg, #3B82F6, #8B5CF6);
  --tt-text-dark:   #1a1f36;
  --tt-text-body:   #374151;
  --tt-text-muted:  #6b7280;
  --tt-text-light:  rgba(255, 255, 255, 0.7);
  --tt-text-light-2:rgba(255, 255, 255, 0.5);
  --tt-green:       #10B981;
  --tt-red:         #EF4444;
  --tt-border:      rgba(255, 255, 255, 0.08);
  --tt-radius:      16px;
  --tt-radius-sm:   8px;
  --tt-radius-lg:   24px;
  --tt-section-pad: 120px;
  --tt-transition:  all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--tt-text-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--tt-text-dark);
}

p {
  font-family: 'Inter', sans-serif;
  color: var(--tt-text-body);
  line-height: 1.75;
}

input, button, select, textarea {
  font-family: 'Inter', sans-serif;
}

a {
  transition: var(--tt-transition);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--tt-accent);
  outline-offset: 2px;
}

/* ==========================================================
   1. HEADER - Dark Theme
   ========================================================== */
.main-header .header-top {
  display: none !important;
}

.main-header .header-top .top-left li,
.main-header .header-top .top-left li a {
  color: var(--tt-text-light) !important;
}

.main-header .header-top .top-left li i {
  color: var(--tt-accent) !important;
}

.main-header .header-top .top-right li a {
  color: var(--tt-text-light) !important;
}

.main-header .header-top .top-right li a:hover {
  color: var(--tt-accent) !important;
}

.main-header .header-lower {
  background: #000 !important;
  padding: 0 !important;
  border-bottom: none !important;
}

.main-header.style-one .header-lower .logo-box {
  padding-top: 12px !important;
  padding-bottom: 8px !important;
}

.main-header.style-one .header-lower .logo-box img {
  max-height: 45px !important;
  width: auto !important;
}

.main-header .header-lower .menu-right-content {
  margin-top: 12px !important;
}

.main-menu .navigation > li {
  padding: 14px 0 !important;
}

.main-menu .navigation > li > a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: 0.2px;
  color: var(--tt-text-light) !important;
  transition: color 0.2s ease;
}

.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.current > a {
  color: var(--tt-white) !important;
}

.sticky-header {
  background: #000 !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

.sticky-header .main-menu .navigation > li > a {
  color: var(--tt-text-light) !important;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  color: var(--tt-accent) !important;
}

/* Header social icons */
.tt-nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tt-nav-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: all 0.3s ease;
}

.tt-nav-social a:hover {
  border-color: var(--tt-accent);
  color: var(--tt-accent);
  background: rgba(59,130,246,0.08);
}

.menu-right-content .btn-box .theme-btn.style-one:hover {
  background: var(--tt-accent-hover) !important;
}

/* ===== Star-to-Icon Emitter Animation ===== */
.tt-star-emitter {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.tt-flying-star {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  z-index: 3;
  will-change: transform, opacity, width, height;
}

.tt-flying-star i {
  font-size: 0;
  color: transparent;
  transition: font-size 0.8s ease, color 0.8s ease;
  position: absolute;
}

.tt-flying-star.phase-dot {
  width: 6px; height: 6px;
  background: #fff;
  box-shadow: 0 0 14px 5px rgba(255,255,255,0.7), 0 0 30px 8px rgba(255,255,255,0.3);
  opacity: 0;
}

.tt-flying-star.phase-grow {
  opacity: 1;
  width: 6px; height: 6px;
  background: #fff;
  box-shadow: 0 0 18px 6px rgba(255,255,255,0.6);
}

.tt-flying-star.phase-icon {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,67,147,0.2);
  box-shadow: 0 0 24px 8px rgba(232,67,147,0.2);
}

.tt-flying-star.phase-icon i {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 10px rgba(232,67,147,0.5);
}

.tt-flying-star.phase-fade {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(228,0,43,0.3);
  border: none;
  box-shadow: 0 0 12px 4px rgba(228,0,43,0.4);
}

.tt-flying-star.phase-fade i {
  font-size: 0;
  color: transparent;
}

.tt-flying-star.phase-gone {
  width: 3px; height: 3px;
  background: #E4002B;
  box-shadow: 0 0 6px 2px rgba(228,0,43,0.5);
  opacity: 0;
}

/* ==========================================================
   2. HERO SECTION - Dark Static
   ========================================================== */
.tt-hero {
  position: relative;
  background: #000000;
  padding: 100px 0 40px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.tt-hero-wrapper {
  position: absolute;
  z-index: 2;
  left: var(--tt-hero-left, 200px);
  top: 50%;
  transform: translateY(-50%);
}

.tt-hero-content {
  max-width: 600px;
  position: relative;
  z-index: 10;
  text-align: left;
}

/* RIGHT: Hero visual — rotating scenes */
.tt-hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-hero-visual-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(139,92,246,0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

/* Scene rotation — same pattern as pitch slides */
.tt-hero-scene {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  width: 100%;
  max-width: 420px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  z-index: 2;
}

.tt-hero-scene.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  pointer-events: auto;
}

/* ===== SCENE 1: Rich Tech Composition ===== */
.tt-scene1-comp {
  position: relative;
  width: 440px;
  height: 400px;
  margin: 0 auto;
}

/* Glow rings */
.tt-s1-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.06);
  pointer-events: none;
}

.tt-s1-ring.r1 { width: 140px; height: 140px; border-color: rgba(59,130,246,0.1); }
.tt-s1-ring.r2 { width: 260px; height: 260px; border-color: rgba(139,92,246,0.06); animation: ttS1RingPulse 6s ease-in-out infinite; }
.tt-s1-ring.r3 { width: 380px; height: 380px; border-color: rgba(59,130,246,0.04); animation: ttS1RingPulse 8s ease-in-out infinite 2s; }

@keyframes ttS1RingPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

/* Central Shield */
.tt-s1-shield {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(139,92,246,0.08) 100%);
  border: 2px solid rgba(59,130,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--tt-accent);
  z-index: 5;
  box-shadow: 0 0 60px rgba(59,130,246,0.15), 0 0 120px rgba(59,130,246,0.05);
  animation: ttShieldGlow 4s ease-in-out infinite;
}

@keyframes ttShieldGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(59,130,246,0.15), 0 0 120px rgba(59,130,246,0.05); }
  50% { box-shadow: 0 0 80px rgba(59,130,246,0.25), 0 0 150px rgba(59,130,246,0.08); }
}

.tt-s1-shield-lock {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--tt-dark-2);
  border: 2px solid rgba(59,130,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #10B981;
}

/* Floating icons — scattered around shield */
.tt-s1-float {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--tt-accent);
  z-index: 3;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.tt-s1-float:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.06);
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(59,130,246,0.12);
}

/* Left cluster positions */
.tt-s1-person-l {
  top: 14%; left: 8%;
  font-size: 24px;
  color: #60A5FA;
  width: 60px; height: 60px;
  border-radius: 18px;
  animation: ttS1Float 6s ease-in-out infinite;
}

.tt-s1-server {
  top: 42%; left: 2%;
  color: #8B5CF6;
  animation: ttS1Float 7s ease-in-out infinite 1s;
}

.tt-s1-laptop {
  top: 70%; left: 10%;
  color: #06B6D4;
  animation: ttS1Float 5.5s ease-in-out infinite 0.5s;
}

.tt-s1-terminal {
  top: 88%; left: 30%;
  width: 48px; height: 48px;
  font-size: 18px;
  color: #10B981;
  border-radius: 12px;
  animation: ttS1Float 8s ease-in-out infinite 2s;
}

/* Right cluster positions */
.tt-s1-person-r {
  top: 14%; right: 8%;
  font-size: 24px;
  color: #A78BFA;
  width: 60px; height: 60px;
  border-radius: 18px;
  animation: ttS1Float 6.5s ease-in-out infinite 0.8s;
}

.tt-s1-cloud {
  top: 42%; right: 2%;
  color: #38BDF8;
  animation: ttS1Float 7.5s ease-in-out infinite 1.5s;
}

.tt-s1-monitor {
  top: 70%; right: 10%;
  color: #F59E0B;
  animation: ttS1Float 6s ease-in-out infinite 2.5s;
}

.tt-s1-gear {
  top: 88%; right: 30%;
  width: 48px; height: 48px;
  font-size: 18px;
  color: #EC4899;
  border-radius: 12px;
  animation: ttS1Float 5s ease-in-out infinite 3s;
}

@keyframes ttS1Float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Floating particles */
.tt-s1-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tt-accent);
  opacity: 0.3;
  animation: ttS1DotPulse var(--d) ease-in-out infinite;
  z-index: 1;
}

@keyframes ttS1DotPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.8); }
}

/* SVG connection lines */
.tt-s1-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ===== SCENE 2: Engineer Team + Speed ===== */
.tt-scene-team {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
}

.tt-scene-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tt-scene-avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--tt-accent);
  transition: all 0.3s ease;
}

.tt-scene-avatar.accent {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.15);
  color: #10B981;
}

.tt-scene-avatar.purple {
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.15);
  color: #8B5CF6;
}

.tt-scene-person:hover .tt-scene-avatar {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(59,130,246,0.1);
}

.tt-scene-person span {
  font-size: 10px;
  font-weight: 700;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline */
.tt-scene-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.tt-scene-tl-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
}

.tt-scene-tl-node i {
  font-size: 14px;
  color: var(--tt-text-light-2);
}

.tt-scene-tl-node span {
  font-size: 7px;
  font-weight: 700;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  bottom: -18px;
  white-space: nowrap;
}

.tt-scene-tl-node.done {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.06);
}

.tt-scene-tl-node.done i { color: #10B981; }

.tt-scene-tl-node.active {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.08);
  box-shadow: 0 0 20px rgba(59,130,246,0.15);
  animation: ttNodePulse 2s ease-in-out infinite;
}

@keyframes ttNodePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.15); }
  50% { box-shadow: 0 0 30px rgba(59,130,246,0.25); }
}

.tt-scene-tl-node.active i { color: var(--tt-accent); }

.tt-scene-tl-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16,185,129,0.3), rgba(59,130,246,0.2));
  position: relative;
}

.tt-scene-tl-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: rgba(59,130,246,0.6);
  border-radius: 2px;
  animation: ttTlPulse 2s ease-in-out infinite;
}

@keyframes ttTlPulse {
  0% { left: 0; opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { left: 70%; opacity: 0; }
}

/* Speed badge */
.tt-scene-speed {
  text-align: center;
}

.tt-scene-speed-num {
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1;
}

.tt-scene-speed-num span {
  font-size: 24px;
  color: var(--tt-accent);
}

.tt-scene-speed-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ===== SCENE 3: Full Lifecycle ===== */
.tt-scene-lifecycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tt-scene-lifecycle.row2 {
  margin-bottom: 28px;
}

.tt-scene-lc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tt-scene-lc-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--tt-accent);
  transition: all 0.3s ease;
}

.tt-scene-lc-icon.accent { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.18); }
.tt-scene-lc-icon.purple { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.15); color: #8B5CF6; }
.tt-scene-lc-icon.green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.15); color: #10B981; }
.tt-scene-lc-icon.cyan { background: rgba(6,182,212,0.08); border-color: rgba(6,182,212,0.15); color: #06B6D4; }
.tt-scene-lc-icon.gold { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.15); color: #F59E0B; }

.tt-scene-lc-step:hover .tt-scene-lc-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.1);
}

.tt-scene-lc-step span {
  font-size: 10px;
  font-weight: 700;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tt-scene-lc-arrow {
  color: rgba(255,255,255,0.15);
  font-size: 12px;
  margin-bottom: 20px;
}

/* Partner badge */
.tt-scene-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(59,130,246,0.04);
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
}

.tt-scene-partner i {
  font-size: 18px;
  color: var(--tt-accent);
}

.tt-scene-partner span {
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-text-light);
  letter-spacing: 0.3px;
}

.tt-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--tt-accent);
  margin-bottom: 20px;
  padding: 8px 18px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  animation: fadeInDown 0.6s ease both;
}

.tt-hero-label i {
  font-size: 10px;
  animation: pulseBolt 2s ease-in-out infinite;
}

@keyframes pulseBolt {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Rotator */
.tt-hero-rotator {
  position: relative;
  min-height: 200px;
}

.tt-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tt-hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.tt-hero-slide.exit {
  opacity: 0;
  transform: translateY(-24px);
}

/* Progress pips */
.tt-hero-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.tt-hero-pip {
  width: 32px;
  height: 4px;
  border-radius: 100px;
  border: none;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tt-hero-pip.active {
  background: rgba(255,255,255,0.12);
  width: 48px;
}

.tt-hero-pip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--tt-accent);
  border-radius: 100px;
  transition: none;
}

.tt-hero-pip.active::after {
  animation: ttPipFill 4s linear forwards;
}

@keyframes ttPipFill {
  from { width: 0%; }
  to { width: 100%; }
}

.tt-hero-pip.done::after {
  width: 100%;
  animation: none;
}

.tt-hero-pip:hover {
  background: rgba(255,255,255,0.2);
}

.tt-hero h1 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--tt-white);
  letter-spacing: -2px;
  margin-bottom: 0;
}

/* Overpower-style massive heading — left aligned */
.tt-hero-big {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 0.92;
  color: var(--tt-white);
  letter-spacing: -4px;
  margin-bottom: 32px;
}

.tt-hero-big span {
  background: linear-gradient(135deg, #3B82F6, #E84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-hero-sub-line {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 600px;
}

.tt-hero-sub-line strong {
  font-weight: 700;
  color: var(--tt-white);
}

.tt-hero h1 span {
  background: linear-gradient(135deg, #3B82F6, #E84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-hero .hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--tt-text-light);
  margin-bottom: 32px;
  max-width: 540px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.tt-hero .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fadeInUp 0.7s ease 0.45s both;
}

/* Hero proof mini-stats bar */
.tt-hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeInUp 0.7s ease 0.55s both;
}

.tt-hero-proof .proof-item {
  display: flex;
  flex-direction: column;
}

.tt-hero-proof .proof-item strong {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1;
}

.tt-hero-proof .proof-item span {
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.tt-hero-proof .proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
}

.tt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3B82F6, #7C3AED, #C026D3);
  color: var(--tt-white) !important;
  border-radius: 12px;
  transition: var(--tt-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.tt-btn-primary:hover {
  background: linear-gradient(135deg, #2563EB, #6D28D9, #A21CAF);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.3), 0 4px 15px rgba(192,38,211,0.15);
  color: var(--tt-white) !important;
}

/* Glowing CTA button */
.tt-btn-glow {
  position: relative;
  box-shadow: 0 0 20px rgba(59,130,246,0.15), 0 0 40px rgba(192,38,211,0.08);
}

.tt-btn-glow:hover {
  box-shadow: 0 0 30px rgba(59,130,246,0.3), 0 0 60px rgba(192,38,211,0.12);
}

.tt-btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

.tt-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 32px;
  background: transparent;
  color: var(--tt-text-light) !important;
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  transition: var(--tt-transition);
  text-decoration: none;
  cursor: pointer;
}

.tt-btn-ghost:hover {
  border-color: rgba(124,58,237,0.4);
  color: var(--tt-white) !important;
  background: rgba(59,130,246,0.05);
}

/* Logo strip */
.tt-logo-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tt-logo-strip p {
  font-size: 13px;
  font-weight: 500;
  color: var(--tt-text-light-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.tt-logo-strip .logos {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0.4;
}

.tt-logo-strip .logos i {
  font-size: 28px;
  color: var(--tt-white);
  transition: all 0.3s ease;
}

.tt-logo-strip .logos i:hover {
  opacity: 1;
  transform: scale(1.15);
  color: var(--tt-accent);
}

.tt-logo-strip {
  animation: fadeInUp 0.7s ease 0.65s both;
}

/* ==========================================================
   3. PAIN POINTS — DRAMATIC VS ARENA
   ========================================================== */

.tt-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tt-accent);
  margin-bottom: 16px;
  display: block;
}

.tt-pain-v2 {
  background: #000;
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
  border-top: none;
}

#tt-pain-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tt-pain-v2 .auto-container {
  position: relative;
  z-index: 2;
}

.tt-pain-v2-title {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.tt-pain-v2-title span {
  background: var(--tt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-pain-v2-sub {
  font-size: 14px;
  color: var(--tt-text-light);
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

/* VS Arena — two bad cards side-by-side with VS divider */
.tt-vs-arena {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 20px;
}

.tt-vs-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.tt-vs-bad .tt-vs-card-inner {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 18px;
  height: 100%;
  position: relative;
  backdrop-filter: blur(4px);
}

.tt-vs-bad:hover {
  transform: translateY(-6px);
}

.tt-vs-bad:hover .tt-vs-card-inner {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Status indicator (top) */
.tt-vs-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tt-vs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: ttDotPulse 2s ease-in-out infinite;
}

.tt-vs-dot.red { background: #EF4444; color: rgba(239,68,68,0.7); box-shadow: 0 0 12px rgba(239,68,68,0.4); }
.tt-vs-dot.orange { background: #F59E0B; color: rgba(245,158,11,0.7); box-shadow: 0 0 12px rgba(245,158,11,0.4); }
.tt-vs-status { color: var(--tt-text-light-2); }

@keyframes ttDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Icon ring */
.tt-vs-icon-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.tt-vs-icon-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg, transparent 60%, currentColor 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ttRingSpin 4s linear infinite;
}

@keyframes ttRingSpin {
  to { transform: rotate(360deg); }
}

.tt-vs-icon-ring.red {
  background: rgba(239,68,68,0.08);
  color: #EF4444;
  border: 1px solid rgba(239,68,68,0.15);
}

.tt-vs-icon-ring.orange {
  background: rgba(245,158,11,0.08);
  color: #F59E0B;
  border: 1px solid rgba(245,158,11,0.15);
}

.tt-vs-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 3px;
}

.tt-vs-tagline {
  font-size: 12px;
  color: var(--tt-text-light-2);
  font-style: italic;
  margin-bottom: 8px;
}

/* VS List items */
.tt-vs-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.tt-vs-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--tt-text-light);
  line-height: 1.4;
}

.tt-vs-list-item i {
  color: rgba(239,68,68,0.7);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Coverage meter — prominent at top of card */
.tt-vs-meter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}

.tt-vs-meter-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  width: 70px;
}

.tt-vs-meter-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.tt-vs-meter-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tt-vs-meter-fill.animated { width: var(--fill); }

.tt-vs-meter-fill.red { background: linear-gradient(90deg, #EF4444, #F87171); box-shadow: 0 0 12px rgba(239,68,68,0.3); }
.tt-vs-meter-fill.orange { background: linear-gradient(90deg, #F59E0B, #FBBF24); box-shadow: 0 0 12px rgba(245,158,11,0.3); }
.tt-vs-meter-fill.green { background: linear-gradient(90deg, #10B981, #34D399); box-shadow: 0 0 16px rgba(16,185,129,0.4); }

.tt-vs-meter-val {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  width: 44px;
  text-align: right;
}

.tt-vs-bad:first-child .tt-vs-meter-val { color: #EF4444; }
.tt-vs-bad:last-child .tt-vs-meter-val { color: #F59E0B; }

/* VS Divider */
.tt-vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 0;
}

.tt-vs-divider-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.tt-vs-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--tt-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(245,158,11,0.2));
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(239,68,68,0.1), 0 0 30px rgba(245,158,11,0.1);
  animation: ttVsPulse 3s ease-in-out infinite;
}

@keyframes ttVsPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(239,68,68,0.1), 0 0 30px rgba(245,158,11,0.1); }
  50% { box-shadow: 0 0 40px rgba(239,68,68,0.2), 0 0 40px rgba(245,158,11,0.2); }
}

/* THE SOLUTION — Full Width Premium Card */
.tt-solution-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.tt-solution-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: ttSolutionPulse 4s ease-in-out infinite;
}

@keyframes ttSolutionPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.tt-solution-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--tt-accent), #8B5CF6, var(--tt-accent));
  background-size: 200% 200%;
  animation: ttBorderShift 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes ttBorderShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.tt-solution-inner {
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(139,92,246,0.04) 100%);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tt-solution-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  background: var(--tt-gradient);
  color: var(--tt-white);
  border-radius: 100px;
  margin-bottom: 20px;
}

.tt-solution-inner h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--tt-white);
  margin-bottom: 6px;
  line-height: 1.25;
}

.tt-solution-inner > .tt-solution-left > p {
  font-size: 14px;
  color: var(--tt-text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Tech pills */
.tt-solution-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tt-solution-techs span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(59,130,246,0.08);
  color: var(--tt-accent);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--tt-transition);
}

.tt-solution-techs span:hover {
  background: rgba(59,130,246,0.15);
  transform: translateY(-2px);
}

.tt-solution-techs span i {
  font-size: 11px;
}

/* Solution stats (right side) */
.tt-solution-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.tt-solution-stat {
  text-align: center;
}

/* SVG Ring */
.tt-solution-stat-ring {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 6px;
}

.tt-solution-stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.tt-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 2.5;
}

.tt-ring-fill {
  fill: none;
  stroke: url(#tt-ring-gradient);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 0, 100;
  transition: stroke-dasharray 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-ring-fill.animated {
  stroke-dasharray: 100, 100;
}

.tt-solution-stat-ring span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--tt-white);
}

.tt-solution-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1;
  margin-bottom: 8px;
}

.tt-solution-stat-num span {
  color: var(--tt-accent);
}

.tt-solution-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Solution coverage meter — green, full width */
.tt-solution-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(16,185,129,0.06);
  border-radius: 10px;
  margin-top: 14px;
  border: 1px solid rgba(16,185,129,0.12);
}

.tt-solution-meter .tt-vs-meter-label { color: rgba(16,185,129,0.8); }
.tt-solution-meter .tt-vs-meter-bar { background: rgba(16,185,129,0.1); }
.tt-solution-meter .tt-vs-meter-fill { background: linear-gradient(90deg, #10B981, #34D399); box-shadow: 0 0 16px rgba(16,185,129,0.4); }
.tt-solution-meter .tt-vs-meter-val { color: #10B981; font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; }

/* Solution CTA button */
.tt-solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 24px;
  background: var(--tt-gradient);
  color: var(--tt-white);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59,130,246,0.25);
}

.tt-solution-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.4);
  color: var(--tt-white);
}

/* Verdict label on bad cards */
.tt-vs-verdict {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  margin-top: 10px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.1);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(239,68,68,0.7);
}

.tt-vs-bad:last-child .tt-vs-verdict {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.1);
  color: rgba(245,158,11,0.7);
}

/* ==========================================================
   4. HOW IT WORKS — COMPACT HORIZONTAL STEPS
   ========================================================== */
.tt-how-v2 {
  background: #000;
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.tt-how-v2-title {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.tt-how-v2-sub {
  font-size: 14px;
  color: var(--tt-text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Horizontal 3-column step layout */
.tt-steps-h {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.tt-step-h {
  position: relative;
}

/* Top row: node + connector line */
.tt-step-h-top {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 12px;
}

.tt-step-h-node {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  border: 2px solid rgba(59,130,246,0.25);
  color: var(--tt-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: var(--tt-transition);
}

.tt-step-h-node.purple {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.25);
  color: #8B5CF6;
}

.tt-step-h-node.green {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.25);
  color: #10B981;
}

.tt-step-h:hover .tt-step-h-node {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59,130,246,0.2);
}

.tt-step-h:hover .tt-step-h-node.purple {
  box-shadow: 0 0 20px rgba(139,92,246,0.2);
}

.tt-step-h:hover .tt-step-h-node.green {
  box-shadow: 0 0 20px rgba(16,185,129,0.2);
}

/* Connector line from node to edge — thicker and animated */
.tt-step-h-connector {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, rgba(59,130,246,0.5), rgba(139,92,246,0.3));
  margin-left: 12px;
  position: relative;
  border-radius: 2px;
}

.tt-step-h-connector::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, rgba(59,130,246,0.8), transparent);
  border-radius: 2px;
  animation: ttConnectorPulse 2.5s ease-in-out infinite;
}

@keyframes ttConnectorPulse {
  0% { left: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 70%; opacity: 0; }
}

.tt-step-h-connector::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 3px solid rgba(139,92,246,0.5);
  border-top: 3px solid rgba(139,92,246,0.5);
  transform: rotate(45deg);
}

.tt-step-h.last .tt-step-h-connector { display: none; }

/* Step card */
.tt-step-h-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  margin: 0 6px;
  transition: all 0.35s ease;
}

.tt-step-h-card:hover {
  border-color: rgba(59,130,246,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 20px rgba(59,130,246,0.04);
  transform: translateY(-4px);
}

.tt-step-h-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tt-step-h-num {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tt-accent);
}

.tt-step-h-time {
  font-size: 10px;
  font-weight: 700;
  color: var(--tt-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 100px;
}

.tt-step-h-time i { font-size: 11px; color: var(--tt-accent); }

.tt-step-h-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 5px;
  line-height: 1.3;
}

.tt-step-h-card p {
  font-size: 12px;
  color: var(--tt-text-light);
  line-height: 1.55;
  margin: 0 0 8px;
}

/* Chips (step 2) */
.tt-step-h-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tt-step-h-chips span {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(139,92,246,0.08);
  color: #8B5CF6;
  border: 1px solid rgba(139,92,246,0.12);
}

/* Deliverables (step 1) */
.tt-step-h-deliverables {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tt-step-h-deliverables span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--tt-text-light);
}

.tt-step-h-deliverables span i {
  font-size: 9px;
  color: var(--tt-accent);
}

/* Metrics (step 3) */
.tt-step-h-metrics {
  display: flex;
  gap: 8px;
}

.tt-step-h-metrics div {
  text-align: center;
  flex: 1;
  padding: 7px 6px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.1);
  border-radius: 8px;
}

.tt-step-h-metrics strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #10B981;
  line-height: 1;
  margin-bottom: 2px;
}

.tt-step-h-metrics span {
  font-size: 9px;
  font-weight: 600;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================
   4B. WHY COMPANIES SWITCH — Premium v2
   ========================================================== */
.tt-switch-v2 {
  background: #000;
  padding: 40px 0 44px;
  position: relative;
  overflow: hidden;
  border-top: none;
}

/* Switch background handled by canvas now */

.tt-switch-v2-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.tt-switch-v2-title {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.tt-switch-v2-sub {
  font-size: 14px;
  color: var(--tt-text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Before/After comparison grid */
.tt-switch-v2-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tt-switch-v2-card {
  border-radius: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tt-switch-v2-card:hover {
  transform: translateY(-4px);
}

.tt-switch-v2-card.before {
  background: rgba(239,68,68,0.03);
  border: 1px solid rgba(239,68,68,0.12);
}

.tt-switch-v2-card.before:hover {
  border-color: rgba(239,68,68,0.2);
  box-shadow: 0 20px 60px rgba(239,68,68,0.08);
}

.tt-switch-v2-card.after {
  background: rgba(16,185,129,0.03);
  border: 1px solid rgba(16,185,129,0.15);
}

.tt-switch-v2-card.after:hover {
  border-color: rgba(16,185,129,0.25);
  box-shadow: 0 20px 60px rgba(16,185,129,0.08);
}

/* Card top — badge + cost highlight */
.tt-switch-v2-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.tt-switch-v2-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tt-switch-v2-badge.before { color: #F87171; }
.tt-switch-v2-badge.after { color: #34D399; }

.tt-switch-v2-cost {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #EF4444;
  line-height: 1;
}

.tt-switch-v2-cost span {
  font-size: 12px;
  font-weight: 600;
  color: var(--tt-text-light-2);
}

.tt-switch-v2-cost.green {
  color: #10B981;
}

/* List items — enhanced with bold/sub structure */
.tt-switch-v2-card ul {
  list-style: none;
  padding: 10px 18px 16px;
  margin: 0;
}

.tt-switch-v2-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--tt-text-light);
  line-height: 1.35;
}

.tt-switch-v2-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tt-switch-v2-card ul li div strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 1px;
}

.tt-switch-v2-card ul li div span {
  font-size: 12px;
  color: var(--tt-text-light-2);
}

.tt-switch-v2-li-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tt-switch-v2-li-icon.before {
  background: rgba(239,68,68,0.1);
  color: #EF4444;
}

.tt-switch-v2-li-icon.after {
  background: rgba(16,185,129,0.1);
  color: #10B981;
}

/* Strikethrough effect on before items */
.tt-switch-v2-card.before.revealed ul li div strong {
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.5);
  color: var(--tt-text-light-2);
}

/* Arrow divider — premium */
.tt-switch-v2-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.tt-switch-v2-arrow-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.25), transparent);
}

.tt-switch-v2-arrow-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tt-gradient);
  color: var(--tt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
  animation: ttArrowPulse 2.5s ease-in-out infinite;
}

@keyframes ttArrowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(59,130,246,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 45px rgba(59,130,246,0.5); transform: scale(1.1); }
}

/* Impact Stats — card layout with ring + text */
.tt-switch-v2-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 28px auto 0;
  position: relative;
  z-index: 2;
}

.tt-switch-v2-impact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.35s ease;
}

.tt-switch-v2-impact-card:hover {
  border-color: rgba(59,130,246,0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.tt-switch-v2-impact-ring {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.tt-switch-v2-impact-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.tt-impact-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 3;
}

.tt-impact-fill {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0, 100;
  transition: stroke-dasharray 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-impact-fill.animated {
  stroke-dasharray: var(--pct), 100;
}

.tt-impact-fill.blue { stroke: var(--tt-accent); }
.tt-impact-fill.purple { stroke: #8B5CF6; }
.tt-impact-fill.green { stroke: #10B981; }

.tt-impact-val {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--tt-white);
}

.tt-impact-val em {
  font-style: normal;
  font-size: 14px;
  color: var(--tt-accent);
}

.tt-switch-v2-impact-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 4px;
}

.tt-switch-v2-impact-text span {
  font-size: 12px;
  color: var(--tt-text-light-2);
  line-height: 1.5;
}

/* ==========================================================
   5. STATS BAR — Premium Proof Strip (v2)
   ========================================================== */
.tt-stats-v2 {
  background: #000;
  padding: 40px 0 44px;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.tt-stats-v2-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.tt-stats-v2-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.tt-stats-v2-title {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1.2;
  margin-bottom: 0;
}

.tt-stats-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.tt-stat-v2-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 16px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tt-stat-v2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tt-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tt-stat-v2-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 30px rgba(59,130,246,0.05);
}

.tt-stat-v2-card:hover::before {
  opacity: 1;
}

.tt-stat-v2-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin: 0 auto 12px;
}

.tt-stat-v2-icon.blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
.tt-stat-v2-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.tt-stat-v2-icon.cyan { background: rgba(6,182,212,0.1); color: #06B6D4; }
.tt-stat-v2-icon.green { background: rgba(16,185,129,0.1); color: #10B981; }

.tt-stat-v2-num {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1;
  display: inline;
}

.tt-stat-v2-suffix {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--tt-accent);
  display: inline;
  margin-left: 2px;
}

.tt-stat-v2-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--tt-text-light-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 8px;
  line-height: 1.4;
}

.tt-stat-v2-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  margin-top: 12px;
  overflow: hidden;
}

.tt-stat-v2-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tt-stat-v2-fill.animated { width: var(--fill); }

.tt-stat-v2-fill.blue { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.tt-stat-v2-fill.purple { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.tt-stat-v2-fill.cyan { background: linear-gradient(90deg, #06B6D4, #22D3EE); }
.tt-stat-v2-fill.green { background: linear-gradient(90deg, #10B981, #34D399); }

/* ==========================================================
   6. SERVICES BENTO GRID
   ========================================================== */
.tt-services {
  background: #000;
  padding: 40px 0 36px;
}

.tt-services .tt-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--tt-white);
  margin-bottom: 8px;
}

.tt-services .tt-section-sub {
  font-size: 14px;
  color: var(--tt-text-light);
  max-width: 500px;
  margin: 0 auto 28px;
}

.tt-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.tt-bento-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: var(--tt-transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}

.tt-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tt-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--tt-radius) var(--tt-radius) 0 0;
}

.tt-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(59, 130, 246, 0.05);
}

.tt-bento-card:hover::before {
  opacity: 1;
}

.tt-bento-card.large {
  grid-column: span 2;
  min-height: 260px;
}

.tt-bento-card .card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tt-accent);
  margin-bottom: 8px;
}

.tt-bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 8px;
  transition: var(--tt-transition);
}

.tt-bento-card p {
  font-size: 14px;
  color: var(--tt-text-light-2);
  line-height: 1.6;
  margin: 0;
}

.tt-bento-card .card-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-text-light-2);
  font-size: 14px;
  transition: var(--tt-transition);
}

.tt-bento-card:hover .card-arrow {
  background: var(--tt-accent);
  color: var(--tt-white);
}

.tt-services-more {
  text-align: center;
  margin-top: 40px;
}

.tt-services-more a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--tt-accent);
  text-decoration: none;
}

.tt-services-more a:hover {
  color: var(--tt-accent-hover);
}

/* ==========================================================
   7. TESTIMONIAL SECTION
   ========================================================== */
.tt-testimonial {
  background: var(--tt-dark);
  padding: var(--tt-section-pad) 0;
  position: relative;
  overflow: hidden;
}

.tt-testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.tt-testimonial .auto-container {
  position: relative;
  z-index: 1;
}

/* Before / After comparison block */
.tt-comparison-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
}

.comparison-col {
  padding: 36px 32px;
  border-radius: var(--tt-radius);
  border: 1px solid var(--tt-border);
}

.comparison-col.before {
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.15);
}

.comparison-col.after {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.2);
}

.comparison-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-col.before h4 {
  color: var(--tt-red);
}

.comparison-col.after h4 {
  color: var(--tt-green);
}

.comparison-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-col ul li {
  font-size: 15px;
  color: var(--tt-text-light);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.comparison-col.before ul li::before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--tt-red);
}

.comparison-col.after ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--tt-green);
}

.tt-quote-icon {
  font-size: 48px;
  color: var(--tt-accent);
  margin-bottom: 24px;
  opacity: 0.5;
}

.tt-quote-text {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--tt-white);
  margin-bottom: 32px;
  max-width: 800px;
}

.tt-quote-metrics {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.tt-quote-metric h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--tt-accent);
  margin-bottom: 4px;
}

.tt-quote-metric p {
  font-size: 14px;
  color: var(--tt-text-light-2);
  margin: 0;
}

/* ==========================================================
   8. PRICING SECTION - Dark
   ========================================================== */
.tt-pricing {
  background: #000;
  padding: 40px 0 36px;
}

.tt-pricing .tt-section-title {
  color: var(--tt-white);
  font-size: 28px !important;
  margin-bottom: 8px !important;
}

.tt-pricing .tt-section-sub {
  color: var(--tt-text-light);
  font-size: 14px !important;
}

.tt-cost-compare {
  text-align: center;
  margin-bottom: 28px;
  padding: 12px 20px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--tt-radius-sm);
  display: inline-block;
}

.tt-cost-compare p {
  font-size: 13px;
  color: var(--tt-text-light);
  margin: 0;
}

.tt-cost-compare strong {
  color: var(--tt-accent);
}

.tt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.tt-price-card {
  background: var(--tt-dark-3);
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--tt-transition);
  position: relative;
}

.tt-price-card.featured {
  border-color: var(--tt-accent);
  box-shadow: 0 0 40px var(--tt-accent-glow);
  transform: scale(1.03);
}

.tt-price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  background: linear-gradient(135deg, #3B82F6, #6366F1);
  color: var(--tt-white);
  border-radius: 100px;
}

.tt-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.tt-price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.tt-price-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 2px;
}

.tt-price-card .plan-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--tt-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.tt-price-card .price {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1;
}

.tt-price-card .price-period {
  font-size: 13px;
  color: var(--tt-text-light-2);
  margin-bottom: 4px;
}

.tt-price-card .hours {
  font-size: 12px;
  color: var(--tt-text-light);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--tt-border);
}

.tt-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
}

.tt-price-card ul li {
  font-size: 13px;
  color: var(--tt-text-light);
  padding: 5px 0;
  padding-left: 24px;
  position: relative;
}

.tt-price-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  left: 0;
  color: var(--tt-green);
}

.tt-price-card ul li.disabled {
  color: var(--tt-text-light-2);
  opacity: 0.5;
}

.tt-price-card ul li.disabled::before {
  content: '\f00d';
  color: var(--tt-text-light-2);
}

.tt-price-card .tt-btn-primary {
  width: 100%;
  justify-content: center;
}

.tt-pricing-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tt-pricing-trust span {
  font-size: 12px;
  color: var(--tt-text-light-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tt-pricing-trust span i {
  color: var(--tt-green);
}

/* ==========================================================
   9. TECHNOLOGIES GRID
   ========================================================== */
.tt-tech {
  background: #000;
  padding: 40px 0 36px;
}

.tt-tech .tt-section-title {
  font-size: 28px;
  color: var(--tt-white);
  margin-bottom: 8px;
}

.tt-tech .tt-section-sub {
  color: var(--tt-text-light);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.tt-tech-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 48px auto 0;
}

.tt-tech-column {
  background: var(--tt-white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
}

.tech-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-text-dark);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.tech-col-title i {
  margin-right: 8px;
  color: var(--tt-accent);
}

.tt-tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.tt-tech-grid.compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: none;
}

.tt-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  background: var(--tt-white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: var(--tt-transition);
}

.tt-tech-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-color: var(--tt-accent);
}

.tt-tech-item i {
  font-size: 28px;
  color: var(--tt-text-dark);
  margin-bottom: 8px;
}

.tt-tech-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--tt-text-muted);
  text-align: center;
}

/* ==========================================================
   10. BLOG / INSIGHTS - Dark Cards
   ========================================================== */
.tt-blog {
  background: #000;
  padding: 40px 0 36px;
}

.tt-blog .tt-section-title {
  color: var(--tt-white);
  font-size: 28px;
  margin-bottom: 8px;
}

.tt-blog .tt-section-sub {
  color: var(--tt-text-light);
  font-size: 14px;
  margin-bottom: 28px;
}

.tt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tt-blog-card {
  background: var(--tt-dark-2);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  overflow: hidden;
  transition: var(--tt-transition);
  text-decoration: none;
  display: block;
}

.tt-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.tt-blog-card .card-img {
  height: 200px;
  overflow: hidden;
}

.tt-blog-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tt-blog-card:hover .card-img img {
  transform: scale(1.05);
}

.tt-blog-card .card-body {
  padding: 28px;
}

.tt-blog-card .card-meta {
  font-size: 13px;
  color: var(--tt-text-light-2);
  margin-bottom: 12px;
}

.tt-blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--tt-white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.tt-blog-card p {
  font-size: 14px;
  color: var(--tt-text-light);
  line-height: 1.65;
  margin: 0;
}

.tt-blog-more {
  text-align: center;
  margin-top: 40px;
}

.tt-blog-more a {
  font-size: 15px;
  font-weight: 600;
  color: var(--tt-accent);
  text-decoration: none;
}

.tt-blog-more a:hover {
  color: var(--tt-accent-hover);
}

/* ==========================================================
   11. FAQ ACCORDION
   ========================================================== */
.tt-faq {
  background: var(--tt-light);
  padding: var(--tt-section-pad) 0;
}

.tt-faq .tt-section-title {
  font-size: 38px;
  color: var(--tt-text-dark);
  margin-bottom: 60px;
}

.tt-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.tt-faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.tt-faq-item summary {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--tt-text-dark);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tt-faq-item summary::-webkit-details-marker {
  display: none;
}

.tt-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--tt-text-muted);
  transition: transform 0.2s ease;
}

.tt-faq-item[open] summary::after {
  content: '-';
}

.tt-faq-item .faq-answer {
  font-size: 15px;
  color: var(--tt-text-muted);
  line-height: 1.7;
  padding-bottom: 24px;
  max-width: 640px;
}

/* ==========================================================
   12. FINAL CTA
   ========================================================== */
.tt-final-cta {
  background: #000;
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tt-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15) 0%, rgba(139,92,246,0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.tt-final-cta .auto-container {
  position: relative;
  z-index: 1;
}

.tt-final-cta h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--tt-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.tt-final-cta .cta-sub {
  font-size: 18px;
  color: var(--tt-text-light);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.tt-final-cta .cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tt-final-cta .cta-note {
  font-size: 14px;
  color: var(--tt-text-light-2);
  margin-top: 24px;
}

/* ==========================================================
   13. FOOTER
   ========================================================== */
.tt-footer {
  background: var(--tt-dark-2);
  padding: 80px 0 0;
  border-top: 1px solid var(--tt-border);
}

.tt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--tt-border);
}

.tt-footer-col .footer-logo {
  height: 44px;
  margin-bottom: 18px;
  width: auto;
}

.tt-footer-col .footer-tagline {
  font-size: 14px;
  color: var(--tt-text-light-2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tt-footer-col .footer-social {
  display: flex;
  gap: 12px;
}

.tt-footer-col .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-text-light-2);
  font-size: 15px;
  transition: var(--tt-transition);
  text-decoration: none;
}

.tt-footer-col .footer-social a:hover {
  background: var(--tt-accent);
  color: var(--tt-white);
}

.tt-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.tt-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-footer-col ul li {
  margin-bottom: 10px;
}

.tt-footer-col ul li a {
  font-size: 14px;
  color: var(--tt-text-light-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tt-footer-col ul li a:hover {
  color: var(--tt-white);
}

.tt-footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.tt-footer-col .contact-item i {
  color: var(--tt-accent);
  font-size: 14px;
  margin-top: 3px;
}

.tt-footer-col .contact-item span,
.tt-footer-col .contact-item a {
  font-size: 14px;
  color: var(--tt-text-light-2);
  text-decoration: none;
}

.tt-footer-col .contact-item a:hover {
  color: var(--tt-white);
}

.tt-footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.tt-footer-bottom p {
  font-size: 13px;
  color: var(--tt-text-light-2);
  margin: 0;
}

.tt-footer-bottom a {
  color: var(--tt-text-light);
  text-decoration: none;
}

.tt-footer-bottom a:hover {
  color: var(--tt-white);
}

/* ==========================================================
   13-B. INNER PAGE STYLES
   ========================================================== */

/* --- Page Title / Hero Banner --- */
.page-title {
  background: linear-gradient(135deg, var(--tt-dark) 0%, var(--tt-dark-3) 50%, var(--tt-dark) 100%) !important;
  padding: 140px 0 60px !important;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-title .bread-crumb li {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.page-title .bread-crumb li a {
  color: var(--tt-accent) !important;
}

.page-title .bread-crumb li a:hover {
  color: var(--tt-white) !important;
}

.page-title .bread-crumb li:before {
  color: var(--tt-text-light-2) !important;
}

/* --- Inner page content areas --- */
.service-details-content .content-one h2,
.service-details-content .content-two h2,
.service-details-content h2,
.about-style-two h2,
.sec-title h2 {
  font-family: 'Manrope', sans-serif !important;
  color: var(--tt-text-dark) !important;
  font-weight: 700 !important;
}

.sec-title h5 {
  font-family: 'Inter', sans-serif !important;
  color: var(--tt-accent) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 13px !important;
}

/* --- Tech Excellence Box (service detail pages) --- */
.tech-excellence-box {
  background: var(--tt-light) !important;
  border: 1px solid #e5e7eb !important;
  border-radius: var(--tt-radius) !important;
  padding: 36px !important;
}

.tech-excellence-box .tech-item {
  background: var(--tt-white) !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 24px !important;
  transition: var(--tt-transition) !important;
}

.tech-excellence-box .tech-item:hover {
  border-color: var(--tt-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06) !important;
}

.tech-excellence-box .icon {
  color: var(--tt-accent) !important;
}

.tech-excellence-box h4 {
  font-family: 'Manrope', sans-serif !important;
  color: var(--tt-text-dark) !important;
}

.tech-excellence-box .philosophy-text {
  background: linear-gradient(135deg, var(--tt-dark) 0%, var(--tt-dark-3) 100%) !important;
  border-radius: 12px !important;
  padding: 28px !important;
}

/* --- Sidebar styling --- */
.service-sidebar .category-widget {
  background: var(--tt-dark) !important;
  border-radius: var(--tt-radius) !important;
  padding: 28px !important;
  border: 1px solid var(--tt-border) !important;
}

.service-sidebar .category-widget h3 {
  color: var(--tt-white) !important;
  font-family: 'Manrope', sans-serif !important;
  border-bottom: 1px solid var(--tt-border) !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
}

.service-sidebar .category-widget li a {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
  transition: var(--tt-transition) !important;
  padding: 10px 0 !important;
  display: block !important;
  border-bottom: 1px solid var(--tt-border) !important;
}

.service-sidebar .category-widget li a:hover,
.service-sidebar .category-widget li.current a {
  color: var(--tt-accent) !important;
  padding-left: 8px !important;
}

/* --- About page sections --- */
.about-style-two.about-page-1 {
  background: var(--tt-white) !important;
}

.about-style-two .content_block_one .content-box .list-style-one li {
  color: var(--tt-text-body) !important;
  font-family: 'Inter', sans-serif !important;
}

.about-style-two .content_block_one .content-box .list-style-one li:before {
  color: var(--tt-accent) !important;
}

/* --- Contact page --- */
.contact-section {
  background: var(--tt-light) !important;
}

.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
  font-family: 'Inter', sans-serif !important;
  border: 1px solid #e5e7eb !important;
  border-radius: var(--tt-radius-sm) !important;
  transition: var(--tt-transition) !important;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  border-color: var(--tt-accent) !important;
  box-shadow: 0 0 0 3px var(--tt-accent-glow) !important;
}

/* --- Services page cards --- */
.service-block-one .inner-box {
  border-radius: var(--tt-radius) !important;
  transition: var(--tt-transition) !important;
  border: 1px solid #e5e7eb !important;
  overflow: hidden;
}

.service-block-one .inner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important;
  border-color: var(--tt-accent) !important;
}

.service-block-one h3 a {
  font-family: 'Manrope', sans-serif !important;
  color: var(--tt-text-dark) !important;
}

.service-block-one h3 a:hover {
  color: var(--tt-accent) !important;
}

/* --- Pricing page overrides --- */
.pricing-section .pricing-block-one .pricing-table {
  border-radius: var(--tt-radius) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(255,255,255,0.02) !important;
  transition: var(--tt-transition) !important;
}

.pricing-section .pricing-block-one .pricing-table:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3) !important;
}

/* --- Service cards on services.html --- */
.service-style-three.service-page-2 {
  padding: 80px 0 40px;
}

.service-block-three .inner-box {
  border-radius: var(--tt-radius) !important;
  overflow: hidden;
  border: 1px solid #e5e7eb !important;
  transition: var(--tt-transition) !important;
  box-shadow: none !important;
}

.service-block-three .inner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important;
  border-color: var(--tt-accent) !important;
}

.service-block-three .lower-content {
  padding: 24px !important;
}

.service-block-three .lower-content h3 {
  font-family: 'Manrope', sans-serif !important;
  font-size: 20px !important;
  margin-bottom: 10px !important;
}

.service-block-three .lower-content h3 a {
  color: var(--tt-text-dark) !important;
}

.service-block-three .lower-content h3 a:hover {
  color: var(--tt-accent) !important;
}

.service-block-three .lower-content p {
  font-family: 'Inter', sans-serif !important;
  color: var(--tt-text-muted) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.service-block-three .lower-content .link a {
  color: var(--tt-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.service-block-three .lower-content .link a:hover {
  color: var(--tt-accent-hover) !important;
}

/* --- Pricing section — dark theme aligned --- */
.pricing-section.service-page-2 {
  background: var(--tt-dark) !important;
  padding: 80px 0 !important;
}

.pricing-section.service-page-2 .sec-title h5 {
  color: var(--tt-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
}

.pricing-section.service-page-2 .sec-title h1,
.pricing-section.service-page-2 .sec-title h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
  font-size: 38px !important;
  font-weight: 700 !important;
}

.pricing-section.service-page-2 .sec-title p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
}

.pricing-block-one .pricing-table {
  border-radius: var(--tt-radius) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(255,255,255,0.02) !important;
  overflow: hidden;
  transition: var(--tt-transition) !important;
}

.pricing-block-one .pricing-table:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3) !important;
}

.pricing-block-one .table-header {
  background: rgba(255,255,255,0.02) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  padding: 32px 28px !important;
}

.pricing-block-one .table-header h3 {
  font-family: 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.pricing-block-one .table-header .price-box span {
  color: var(--tt-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}

.pricing-block-one .table-header .price-box h2 {
  font-family: 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
  font-size: 48px !important;
  font-weight: 800 !important;
}

.pricing-block-one .table-header .price-box p {
  color: var(--tt-text-light-2) !important;
  font-family: 'Inter', sans-serif !important;
}

.pricing-block-one .table-header .text {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
}

.pricing-block-one .table-content {
  padding: 24px 28px !important;
  background: transparent !important;
}

.pricing-block-one .table-content li {
  font-family: 'Inter', sans-serif !important;
  color: var(--tt-text-light) !important;
  font-size: 14px !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}

.pricing-block-one .table-content li:last-child {
  border-bottom: none !important;
}

.pricing-block-one .table-content li del {
  color: var(--tt-text-light-2) !important;
  opacity: 0.4;
}

.pricing-block-one .table-content li:before {
  color: var(--tt-green) !important;
}

.pricing-block-one .table-footer {
  padding: 20px 28px 28px !important;
  background: transparent !important;
}

.pricing-block-one .table-footer a {
  background: var(--tt-accent) !important;
  color: var(--tt-white) !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 14px 32px !important;
  display: block !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}

.pricing-block-one .table-footer a:hover {
  background: var(--tt-accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.25) !important;
}

/* Active/featured plan — Gold */
.pricing-block-one.active-block .pricing-table {
  border-color: rgba(59,130,246,0.3) !important;
  background: rgba(59,130,246,0.04) !important;
  box-shadow: 0 0 40px rgba(59,130,246,0.08) !important;
}

.pricing-block-one.active-block .table-header {
  background: rgba(59,130,246,0.06) !important;
}

/* Value props section — dark theme */
.service-section.bg-color-1 {
  background: var(--tt-dark-2) !important;
  padding: 80px 0 !important;
}

.service-section.bg-color-1 .sec-title h5,
.service-section.bg-color-1 .title-box h5 {
  color: var(--tt-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.service-section.bg-color-1 .sec-title h2,
.service-section.bg-color-1 .title-box h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
  font-weight: 700 !important;
}

.service-section.bg-color-1 .text p,
.service-section.bg-color-1 .title-box p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

.service-block-one .inner-box {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: var(--tt-radius) !important;
  transition: all 0.3s ease !important;
}

.service-block-one .inner-box:hover {
  border-color: rgba(59,130,246,0.2) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
}

.service-block-one .inner-box h4,
.service-block-one .inner-box h3 {
  color: var(--tt-white) !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700 !important;
}

.service-block-one .inner-box p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.service-block-one .icon-box {
  background: rgba(59,130,246,0.08) !important;
  color: var(--tt-accent) !important;
  border-radius: 14px !important;
}

.service-block-one .icon-box i {
  color: var(--tt-accent) !important;
}

/* --- Fun fact / stats section on services page --- */
.fun-fact {
  background: var(--tt-dark) !important;
  padding: 80px 0 !important;
}

.fun-fact .counter-block-one .count-text,
.fun-fact .counter-block-one .count-outer {
  color: var(--tt-white) !important;
  font-family: 'Manrope', sans-serif !important;
}

.fun-fact .counter-block-one p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

/* ==========================================================
   14. UTILITY / OVERRIDES
   ========================================================== */

/* Hide original template sections (homepage remnants) */
.banner-section,
.about-section.bg-color-1,
.project-section,
.annual-stats,
.news-section.bg-color-1,
.trust-signals-section,
.main-footer {
  display: none !important;
}

/* Override old theme-btn */
.theme-btn:before,
.theme-btn:after {
  display: none !important;
}

.theme-btn.style-one {
  background: var(--tt-accent) !important;
  border-radius: var(--tt-radius-sm) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 14px 28px !important;
  transition: var(--tt-transition) !important;
}

.theme-btn.style-one:hover {
  background: var(--tt-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--tt-accent-glow);
}

/* Scroll to top */
.scroll-top {
  background: var(--tt-accent) !important;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--tt-accent-glow);
}

/* WhatsApp button */
.tt-whatsapp-float {
  border-radius: 16px !important;
}

/* ==========================================================
   15. RESPONSIVE
   ========================================================== */
@media (max-width: 1200px) {
  :root {
    --tt-section-pad: 100px;
  }
}

@media (max-width: 991px) {
  :root {
    --tt-section-pad: 80px;
  }

  .tt-hero h1 { font-size: 50px; }
  .tt-hero-big { font-size: 80px; }
  .tt-hero-sub-line { font-size: 22px; }

  .tt-hero h1 {
    font-size: 40px;
  }

  .tt-hero-rotator {
    min-height: 200px;
  }

  .tt-pricing-grid,
  .tt-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tt-vs-arena {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tt-vs-divider {
    flex-direction: row;
    padding: 12px 0;
  }

  .tt-vs-divider-line {
    height: 2px;
    width: 100%;
  }

  .tt-solution-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }


  .tt-stats-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tt-stats-v2-title { font-size: 32px; }

  .tt-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .tt-bento-card.large {
    grid-column: span 1;
  }

  .tt-tech-columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .tt-tech-grid.compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .tt-tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tt-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .tt-comparison-block {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tt-quote-text {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  :root {
    --tt-section-pad: 60px;
  }

  .tt-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .tt-hero h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .tt-hero-rotator {
    min-height: 200px;
  }

  .tt-hero h1 { font-size: 34px; letter-spacing: -1px; }
  .tt-hero-big { font-size: 56px; letter-spacing: -2px; }
  .tt-hero-sub-line { font-size: 18px; }
  .tt-scene-avatar { width: 56px; height: 56px; font-size: 22px; }
  .tt-scene-team { gap: 20px; }
  .tt-scene-lc-icon { width: 50px; height: 50px; font-size: 18px; }
  .tt-scene-speed-num { font-size: 44px; }

  .tt-hero .hero-btns {
    flex-direction: column;
  }

  .tt-hero-proof {
    gap: 20px;
  }

  .tt-hero-proof .proof-item strong {
    font-size: 22px;
  }

  .tt-comparison-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tt-final-cta h2 {
    font-size: 28px;
  }

  .tt-final-cta .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .tt-pain-v2-title,
  .tt-how-v2-title,
  .tt-switch-title,
  .tt-services .tt-section-title,
  .tt-faq .tt-section-title,
  .tt-tech .tt-section-title {
    font-size: 28px;
  }

  .tt-pain-v2 { padding: 80px 0 60px; }
  .tt-how-v2 { padding: 60px 0 50px; }
  .tt-vs-arena { grid-template-columns: 1fr; gap: 20px; }
  .tt-vs-divider { flex-direction: row; padding: 8px 0; }
  .tt-vs-divider-line { height: 2px; width: 100%; flex: 1; }
  .tt-solution-stats { flex-direction: column; gap: 20px; }
  .tt-solution-inner { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .tt-vs-icon-ring { width: 56px; height: 56px; font-size: 22px; }
  .tt-solution-inner h3 { font-size: 24px; }
  .tt-steps-h { grid-template-columns: 1fr; gap: 24px; }
  .tt-step-h-top { display: none; }
  .tt-switch-v2-comparison { grid-template-columns: 1fr; gap: 20px; }
  .tt-switch-v2-arrow { flex-direction: row; padding: 8px 0; }
  .tt-switch-v2-arrow-line { height: 2px; width: 100%; flex: 1; }
  .tt-switch-v2-impact { grid-template-columns: 1fr; gap: 16px; }
  .tt-switch-v2-title { font-size: 28px; }
  .tt-stats-v2-grid { grid-template-columns: 1fr; gap: 16px; }
  .tt-stat-v2-num { font-size: 40px; }

  .tt-bento {
    grid-template-columns: 1fr;
  }

  .tt-tech-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tt-tech-grid.compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .tt-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tt-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tt-price-card.featured {
    transform: none;
  }

  .tt-price-card.featured:hover {
    transform: translateY(-4px);
  }

  .tt-quote-text {
    font-size: 20px;
  }

  .tt-quote-metrics {
    gap: 24px;
  }
}

/* ==========================================================
   16. SCROLL ANIMATIONS
   ========================================================== */
.tt-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tt-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   17. PARTICLE CANVAS & HERO ORBIT
   ========================================================== */
#tt-hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.tt-hero-orbit {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.tt-orbit-icon {
  position: absolute;
  font-size: 28px;
  color: var(--tt-accent);
  opacity: 0.12;
  will-change: transform;
}

.tt-orbit-icon:nth-child(1) { top: 12%; left: 8%; font-size: 32px; animation: ttFloat1 8s ease-in-out infinite; }
.tt-orbit-icon:nth-child(2) { top: 25%; right: 6%; font-size: 36px; animation: ttFloat2 10s ease-in-out infinite 1s; }
.tt-orbit-icon:nth-child(3) { top: 60%; left: 5%; font-size: 26px; animation: ttFloat3 9s ease-in-out infinite 2s; }
.tt-orbit-icon:nth-child(4) { top: 75%; right: 10%; font-size: 30px; animation: ttFloat1 11s ease-in-out infinite 0.5s; }
.tt-orbit-icon:nth-child(5) { top: 15%; left: 75%; font-size: 24px; animation: ttFloat2 7s ease-in-out infinite 3s; }
.tt-orbit-icon:nth-child(6) { top: 45%; left: 3%; font-size: 34px; animation: ttFloat3 12s ease-in-out infinite 1.5s; opacity: 0.08; }
.tt-orbit-icon:nth-child(7) { top: 80%; left: 70%; font-size: 22px; animation: ttFloat1 9s ease-in-out infinite 4s; }
.tt-orbit-icon:nth-child(8) { top: 35%; right: 3%; font-size: 28px; animation: ttFloat2 10s ease-in-out infinite 2.5s; opacity: 0.10; }
.tt-orbit-icon:nth-child(9) { top: 8%; left: 40%; font-size: 20px; animation: ttFloat3 8s ease-in-out infinite 3.5s; opacity: 0.08; }
.tt-orbit-icon:nth-child(10) { top: 90%; left: 30%; font-size: 26px; animation: ttFloat1 11s ease-in-out infinite 1s; opacity: 0.10; }
.tt-orbit-icon:nth-child(11) { top: 55%; right: 8%; font-size: 22px; animation: ttFloat2 9s ease-in-out infinite 0.8s; opacity: 0.10; }
.tt-orbit-icon:nth-child(12) { top: 20%; left: 20%; font-size: 18px; animation: ttFloat3 11s ease-in-out infinite 2s; opacity: 0.07; }
.tt-orbit-icon:nth-child(13) { top: 70%; left: 55%; font-size: 24px; animation: ttFloat1 10s ease-in-out infinite 3s; opacity: 0.09; }
.tt-orbit-icon:nth-child(14) { top: 40%; left: 85%; font-size: 20px; animation: ttFloat2 8s ease-in-out infinite 1.5s; opacity: 0.08; }
.tt-orbit-icon:nth-child(15) { top: 5%; right: 20%; font-size: 26px; animation: ttFloat3 12s ease-in-out infinite 4s; opacity: 0.11; }

@keyframes ttFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, -35px) rotate(-3deg); }
  75% { transform: translate(20px, -15px) rotate(4deg); }
}

@keyframes ttFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, -25px) rotate(-6deg); }
  66% { transform: translate(15px, -40px) rotate(4deg); }
}

@keyframes ttFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(25px, -15px) rotate(3deg); }
  40% { transform: translate(-15px, -30px) rotate(-5deg); }
  60% { transform: translate(10px, -45px) rotate(6deg); }
  80% { transform: translate(-20px, -20px) rotate(-2deg); }
}

/* ==========================================================
   18. SCROLL PROGRESS BAR
   ========================================================== */
.tt-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--tt-gradient);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 99999;
  pointer-events: none;
  transition: none;
}

/* ==========================================================
   19. CURSOR GLOW EFFECT
   ========================================================== */
.tt-cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tt-cursor-glow.active {
  opacity: 1;
}

/* ==========================================================
   20. ENHANCED BENTO CARD ICONS
   ========================================================== */
.tt-bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--tt-transition);
}

.tt-bento-card:hover .tt-bento-icon {
  transform: scale(1.1) rotate(5deg);
}

.tt-bento-icon.icon-blue    { background: rgba(59,130,246,0.12); color: #3B82F6; }
.tt-bento-icon.icon-purple  { background: rgba(139,92,246,0.12); color: #8B5CF6; }
.tt-bento-icon.icon-red     { background: rgba(239,68,68,0.12);  color: #EF4444; }
.tt-bento-icon.icon-green   { background: rgba(16,185,129,0.12); color: #10B981; }
.tt-bento-icon.icon-orange  { background: rgba(245,158,11,0.12); color: #F59E0B; }
.tt-bento-icon.icon-cyan    { background: rgba(6,182,212,0.12);  color: #06B6D4; }
.tt-bento-icon.icon-pink    { background: rgba(236,72,153,0.12); color: #EC4899; }
.tt-bento-icon.icon-teal    { background: rgba(20,184,166,0.12); color: #14B8A6; }

/* Card shine sweep effect */
.tt-bento-card {
  overflow: hidden;
}

.tt-bento-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 40%,
    rgba(255,255,255,0.02) 50%,
    transparent 60%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.tt-bento-card:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* Tech logo strip inside large cards */
.tt-bento-logos {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.tt-bento-logos img {
  height: 22px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%) brightness(2);
  transition: var(--tt-transition);
}

.tt-bento-card:hover .tt-bento-logos img {
  opacity: 0.7;
  filter: grayscale(0%) brightness(1);
}

/* ==========================================================
   21. TECHNOLOGY STACK - TABBED SHOWCASE (REDESIGNED)
   ========================================================== */
.tt-tech {
  background: #000 !important;
  padding: 40px 0 36px;
}

.tt-tech .tt-section-title {
  color: var(--tt-white) !important;
}

.tt-tech .tt-section-sub {
  color: var(--tt-text-light-2) !important;
}

/* Tab navigation */
.tt-tech-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 40px auto 48px;
  max-width: 900px;
}

.tt-tech-tab {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--tt-border);
  background: transparent;
  color: var(--tt-text-light-2);
  cursor: pointer;
  transition: var(--tt-transition);
  white-space: nowrap;
}

.tt-tech-tab:hover {
  border-color: rgba(59,130,246,0.3);
  color: var(--tt-text-light);
  background: rgba(59,130,246,0.05);
}

.tt-tech-tab.active {
  background: var(--tt-accent);
  border-color: var(--tt-accent);
  color: var(--tt-white);
  box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

/* Tech showcase grid */
.tt-tech-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.tt-tech-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--tt-radius-sm);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
}

.tt-tech-card:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.tt-tech-card img,
.tt-tech-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: grayscale(30%) brightness(0.95);
  transition: filter 0.35s ease, transform 0.35s ease;
  object-fit: contain;
}

.tt-tech-card:hover img,
.tt-tech-card:hover svg {
  filter: none;
  transform: scale(1.12);
}

.tt-tech-card i {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
  color: rgba(255,255,255,0.4);
  transition: var(--tt-transition);
}

.tt-tech-card:hover i {
  color: var(--tt-accent);
}

.tt-tech-card span {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--tt-text-light-2);
  letter-spacing: 0.3px;
  transition: var(--tt-transition);
}

.tt-tech-card:hover span {
  color: var(--tt-white);
}

/* ==========================================================
   22. TECHNOLOGY MARQUEE (Auto-scrolling logo wall)
   ========================================================== */
.tt-tech-marquee {
  overflow: hidden;
  margin-top: 64px;
  padding: 24px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tt-marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: marqueeScroll 80s linear infinite;
  width: max-content;
}

.tt-marquee-track img {
  height: 28px;
  width: auto;
  opacity: 0.25;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.tt-marquee-track img:hover {
  opacity: 0.8;
  filter: none;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   23. PRICING CARD SHINE SWEEP
   ========================================================== */
.tt-price-card {
  overflow: hidden;
}

.tt-price-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 40%,
    rgba(255,255,255,0.03) 50%,
    transparent 60%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.tt-price-card:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* ==========================================================
   24. SECTION DIVIDER GRADIENTS
   ========================================================== */
.tt-section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tt-accent), transparent);
  opacity: 0.15;
  border: none;
}

/* ==========================================================
   25. CARD TILT 3D EFFECT
   ========================================================== */
.tt-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ==========================================================
   26. RESPONSIVE UPDATES FOR NEW COMPONENTS
   ========================================================== */
@media (max-width: 991px) {
  .tt-hero-orbit {
    display: none;
  }

  .tt-tech-tabs {
    gap: 6px;
    margin: 30px auto 36px;
  }

  .tt-tech-tab {
    font-size: 12px;
    padding: 8px 16px;
  }

  .tt-tech-showcase {
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 12px;
  }

  .tt-tech-card {
    padding: 16px 8px;
  }

  .tt-tech-card img,
  .tt-tech-card svg {
    width: 32px;
    height: 32px;
  }

  .tt-marquee-track {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .tt-cursor-glow {
    display: none;
  }

  .tt-tech-tabs {
    gap: 5px;
    margin: 24px auto 32px;
  }

  .tt-tech-tab {
    font-size: 11px;
    padding: 7px 14px;
  }

  .tt-tech-showcase {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
  }

  .tt-tech-card {
    padding: 14px 6px;
  }

  .tt-tech-card img,
  .tt-tech-card svg {
    width: 28px;
    height: 28px;
  }

  .tt-tech-card span {
    font-size: 10px;
  }

  .tt-bento-logos {
    display: none;
  }

  .tt-tech-marquee {
    margin-top: 40px;
  }

  .tt-marquee-track img {
    height: 22px;
  }
}

@media (max-width: 480px) {
  .tt-tech-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .tt-tech-card {
    padding: 12px 4px;
  }

  .tt-tech-card img,
  .tt-tech-card svg {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
  }

  .tt-tech-tab {
    font-size: 10px;
    padding: 6px 10px;
  }
}

/* ==========================================================
   27. SERVICES PAGE REDESIGN - Premium Dark Cards
   ========================================================== */

/* Services Hero Banner */
.tt-services-hero {
  background: linear-gradient(135deg, var(--tt-dark) 0%, var(--tt-dark-3) 50%, var(--tt-dark) 100%);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tt-services-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.tt-services-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--tt-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tt-services-hero h1 span {
  background: var(--tt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-services-hero p {
  font-size: 18px;
  color: var(--tt-text-light);
  max-width: 640px;
  margin: 0 auto 24px;
}

.tt-services-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--tt-text-light-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-services-hero .breadcrumb a {
  color: var(--tt-accent);
  text-decoration: none;
}

/* Services Category Filter */
.tt-svc-filter {
  background: var(--tt-dark-2);
  padding: 0;
  border-bottom: 1px solid var(--tt-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.tt-svc-filter-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tt-svc-filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 24px;
  color: var(--tt-text-light-2);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--tt-transition);
  white-space: nowrap;
}

.tt-svc-filter-btn:hover {
  color: var(--tt-white);
  background: rgba(255,255,255,0.03);
}

.tt-svc-filter-btn.active {
  color: var(--tt-accent);
  border-bottom-color: var(--tt-accent);
}

/* Services Grid - Dark Premium Cards */
.tt-svc-grid-section {
  background: var(--tt-dark);
  padding: 80px 0 100px;
}

.tt-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.tt-svc-card {
  background: var(--tt-dark-2);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  text-decoration: none;
  display: block;
}

.tt-svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(59,130,246,0.08);
}

.tt-svc-card-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.tt-svc-card-media img,
.tt-svc-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tt-svc-card:hover .tt-svc-card-media img,
.tt-svc-card:hover .tt-svc-card-media video {
  transform: scale(1.08);
}

.tt-svc-card-media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--tt-dark-2), transparent);
  pointer-events: none;
}

.tt-svc-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.tt-svc-card-badge.oss {
  background: rgba(16,185,129,0.2);
  color: #10B981;
}

.tt-svc-card-badge.commercial {
  background: rgba(59,130,246,0.2);
  color: #3B82F6;
}

.tt-svc-card-badge.hybrid {
  background: rgba(139,92,246,0.2);
  color: #8B5CF6;
}

.tt-svc-card-body {
  padding: 24px 28px 28px;
}

.tt-svc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  background: rgba(59,130,246,0.1);
  color: var(--tt-accent);
  transition: var(--tt-transition);
}

.tt-svc-card:hover .tt-svc-card-icon {
  background: var(--tt-accent);
  color: var(--tt-white);
  transform: rotate(5deg) scale(1.05);
}

.tt-svc-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tt-svc-card p {
  font-size: 14px;
  color: var(--tt-text-light-2);
  line-height: 1.65;
  margin: 0 0 16px;
}

.tt-svc-card-techs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tt-svc-card-techs span {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--tt-text-light-2);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Click-to-expand detail */
.tt-svc-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: ttDetailFadeIn 0.3s ease;
}

.tt-svc-detail p {
  font-size: 13px;
  color: var(--tt-text-light);
  line-height: 1.6;
  margin: 0;
}

@keyframes ttDetailFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tt-svc-card.expanded {
  border-color: rgba(59,130,246,0.2) !important;
  background: rgba(59,130,246,0.03) !important;
}

/* Brand logo inside icon div */
.tt-svc-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tt-svc-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--tt-transition);
}

.tt-svc-card-link i {
  transition: transform 0.3s ease;
}

.tt-svc-card:hover .tt-svc-card-link {
  color: var(--tt-white);
}

.tt-svc-card:hover .tt-svc-card-link i {
  transform: translateX(4px);
}

/* Shine sweep on service cards */
.tt-svc-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

.tt-svc-card:hover::before {
  transform: rotate(30deg) translateX(100%);
}

/* Services Stats Bar */
.tt-svc-stats {
  background: var(--tt-dark-2);
  padding: 60px 0;
  border-top: 1px solid var(--tt-border);
  border-bottom: 1px solid var(--tt-border);
}

.tt-svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.tt-svc-stats-grid .stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1;
  margin-bottom: 8px;
}

.tt-svc-stats-grid .stat-num .accent {
  color: var(--tt-accent);
}

.tt-svc-stats-grid .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ==========================================================
   28. SERVICE DETAIL PAGE REDESIGN (web-solutions.html etc)
   ========================================================== */

/* Detail Hero */
.tt-detail-hero {
  background: linear-gradient(135deg, var(--tt-dark) 0%, var(--tt-dark-3) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.tt-detail-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(59,130,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.tt-detail-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tt-detail-hero-text {
  position: relative;
  z-index: 2;
}

.tt-detail-hero-text .label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tt-accent);
  margin-bottom: 16px;
  display: block;
}

.tt-detail-hero-text h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.tt-detail-hero-text p {
  font-size: 17px;
  color: var(--tt-text-light);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.tt-detail-hero-visual {
  position: relative;
  z-index: 2;
}

.tt-detail-hero-visual img {
  width: 100%;
  border-radius: var(--tt-radius);
  border: 1px solid var(--tt-border);
}

/* Detail Feature Grid */
.tt-detail-features {
  background: var(--tt-light);
  padding: var(--tt-section-pad) 0;
}

.tt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.tt-feature-card {
  background: var(--tt-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--tt-radius);
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.tt-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--tt-accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.tt-feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--tt-transition);
}

.tt-feature-card:hover .tt-feature-card-icon {
  transform: scale(1.08) rotate(5deg);
}

.tt-feature-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--tt-text-dark);
  margin-bottom: 10px;
}

.tt-feature-card p {
  font-size: 14px;
  color: var(--tt-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Detail Architecture Diagram Section */
.tt-detail-arch {
  background: var(--tt-dark);
  padding: var(--tt-section-pad) 0;
  position: relative;
  overflow: hidden;
}

.tt-arch-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}

.tt-arch-node {
  background: var(--tt-dark-2);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  padding: 28px 24px;
  text-align: center;
  min-width: 160px;
  transition: all 0.35s ease;
  position: relative;
}

.tt-arch-node:hover {
  border-color: var(--tt-accent);
  box-shadow: 0 0 30px rgba(59,130,246,0.1);
  transform: translateY(-4px);
}

.tt-arch-node-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  color: var(--tt-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
}

.tt-arch-node h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-white);
  margin-bottom: 6px;
}

.tt-arch-node p {
  font-size: 12px;
  color: var(--tt-text-light-2);
  margin: 0;
}

.tt-arch-connector {
  width: 48px;
  height: 2px;
  background: var(--tt-gradient);
  flex-shrink: 0;
  position: relative;
}

.tt-arch-connector::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--tt-accent);
  border-top: 2px solid var(--tt-accent);
  transform: rotate(45deg);
}

/* Detail Tech Stack Grid */
.tt-detail-stack {
  background: var(--tt-dark-2);
  padding: 80px 0;
  border-top: 1px solid var(--tt-border);
}

.tt-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 40px auto 0;
}

.tt-stack-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--tt-radius-sm);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tt-stack-item:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
}

.tt-stack-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s;
  object-fit: contain;
}

.tt-stack-item:hover img {
  filter: none;
}

.tt-stack-item span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--tt-text-light-2);
}

/* Detail CTA Banner */
.tt-detail-cta {
  background: var(--tt-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tt-detail-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tt-detail-cta h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--tt-white);
  margin-bottom: 16px;
}

.tt-detail-cta p {
  font-size: 17px;
  color: var(--tt-text-light);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================
   29. INNER PAGE RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
  .tt-services-hero h1 { font-size: 36px; }
  .tt-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tt-svc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tt-detail-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .tt-detail-hero-text h1 { font-size: 36px; }
  .tt-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-arch-flow { flex-wrap: wrap; gap: 16px; }
  .tt-arch-connector { width: 2px; height: 32px; }
  .tt-arch-connector::after { right: -3px; top: auto; bottom: -3px; transform: rotate(135deg); }
}

@media (max-width: 767px) {
  .tt-services-hero { padding: 120px 0 60px; }
  .tt-services-hero h1 { font-size: 28px; }
  .tt-svc-grid { grid-template-columns: 1fr; }
  .tt-svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-svc-filter-btn { font-size: 12px; padding: 12px 16px; }
  .tt-detail-hero { padding: 120px 0 60px; }
  .tt-detail-hero-text h1 { font-size: 28px; }
  .tt-feature-grid { grid-template-columns: 1fr; }
  .tt-detail-cta h2 { font-size: 28px; }
  .tt-arch-node { min-width: 140px; padding: 20px 16px; }
}

/* Section 30 & 31 — removed (old stats icons + globe) */

/* ==========================================================
   33. CINEMATIC MOTION — Pain Points & How It Works
   ========================================================== */

/* --- Ghost Icons (Pain Points background) --- */
.tt-pain-ghost-icon {
  position: absolute;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.tt-pain-ghost-icon:nth-child(1) { top: 8%; left: 6%; font-size: 32px; animation: ttGhostDrift1 25s ease-in-out infinite alternate; }
.tt-pain-ghost-icon:nth-child(2) { top: 20%; right: 8%; font-size: 28px; animation: ttGhostDrift2 30s ease-in-out infinite alternate; }
.tt-pain-ghost-icon:nth-child(3) { top: 50%; left: 3%; font-size: 36px; animation: ttGhostDrift3 22s ease-in-out infinite alternate; }
.tt-pain-ghost-icon:nth-child(4) { top: 65%; right: 5%; font-size: 26px; animation: ttGhostDrift1 28s ease-in-out infinite alternate; }
.tt-pain-ghost-icon:nth-child(5) { top: 85%; left: 15%; font-size: 24px; animation: ttGhostDrift2 35s ease-in-out infinite alternate; }
.tt-pain-ghost-icon:nth-child(6) { top: 35%; right: 15%; font-size: 34px; animation: ttGhostDrift3 20s ease-in-out infinite alternate; }
.tt-pain-ghost-icon:nth-child(7) { top: 75%; left: 45%; font-size: 22px; animation: ttGhostDrift1 32s ease-in-out infinite alternate; }
.tt-pain-ghost-icon:nth-child(8) { top: 10%; left: 55%; font-size: 28px; animation: ttGhostDrift2 27s ease-in-out infinite alternate; }

@keyframes ttGhostDrift1 { from { transform: translate(0,0) rotate(0deg); } to { transform: translate(60px,-30px) rotate(15deg); } }
@keyframes ttGhostDrift2 { from { transform: translate(0,0) rotate(0deg); } to { transform: translate(-50px,25px) rotate(-10deg); } }
@keyframes ttGhostDrift3 { from { transform: translate(0,0) rotate(0deg); } to { transform: translate(40px,40px) rotate(12deg); } }

@media (max-width: 767px) { .tt-pain-ghost-icon:nth-child(even) { display: none; } }

/* --- VS Badge Energy Pulse --- */
.tt-vs-badge { position: relative; }
.tt-vs-badge::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  transform: translate(-50%,-50%) scale(1);
  animation: ttVsShockwave 3s ease-out infinite;
  pointer-events: none;
}
@keyframes ttVsShockwave {
  0% { transform: translate(-50%,-50%) scale(1); opacity: 0.4; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

/* --- Card Scan Line --- */
.tt-vs-bad .tt-vs-card-inner { position: relative; }
.tt-vs-bad .tt-vs-card-inner::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  top: -1px;
  background: linear-gradient(90deg, transparent 5%, rgba(239,68,68,0.4) 50%, transparent 95%);
  animation: ttScanLine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}
.tt-vs-bad:last-child .tt-vs-card-inner::after {
  background: linear-gradient(90deg, transparent 5%, rgba(249,115,22,0.4) 50%, transparent 95%);
  animation-delay: 2.5s;
}
@keyframes ttScanLine {
  0% { top: -1px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* --- Section Background Canvases --- */
#tt-how-canvas,
#tt-stats-canvas,
#tt-switch-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tt-stats-v2 .auto-container,
.tt-switch-v2 .auto-container {
  position: relative;
  z-index: 2;
}

/* --- Data Flow Dots --- */
.tt-step-h-connector { position: relative; }
.tt-data-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tt-accent);
  box-shadow: 0 0 8px 3px rgba(59,130,246,0.5);
  top: -2px; left: 0;
  animation: ttDataFlow 3s ease-in-out infinite;
  z-index: 3;
}
.tt-data-dot:nth-child(3) { animation-delay: 1s; }
.tt-data-dot:nth-child(4) { animation-delay: 2s; }
.tt-data-dot::after {
  content: '';
  position: absolute;
  right: 6px; top: 1px;
  width: 20px; height: 4px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4));
  border-radius: 2px;
}
@keyframes ttDataFlow {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}

/* --- Node Orbit Ring --- */
.tt-node-orbit {
  position: absolute;
  width: 72px; height: 72px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: ttOrbitRotate 8s linear infinite;
}
.tt-node-orbit .orbit-dot {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--tt-accent);
  opacity: 0.4;
  box-shadow: 0 0 6px 2px rgba(59,130,246,0.3);
}
.tt-node-orbit .orbit-dot:nth-child(1) { top: 0; left: 50%; margin-left: -1.5px; }
.tt-node-orbit .orbit-dot:nth-child(2) { top: 50%; right: 0; margin-top: -1.5px; }
.tt-node-orbit .orbit-dot:nth-child(3) { bottom: 0; left: 50%; margin-left: -1.5px; }
.tt-node-orbit .orbit-dot:nth-child(4) { top: 50%; left: 0; margin-top: -1.5px; }

.tt-step-h-node.purple .tt-node-orbit .orbit-dot { background: #8B5CF6; box-shadow: 0 0 6px 2px rgba(139,92,246,0.3); }
.tt-step-h-node.green .tt-node-orbit .orbit-dot { background: #10B981; box-shadow: 0 0 6px 2px rgba(16,185,129,0.3); }
.tt-step-h:nth-child(2) .tt-node-orbit { animation-direction: reverse; }

@keyframes ttOrbitRotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.tt-node-flash { box-shadow: 0 0 30px 10px rgba(59,130,246,0.4) !important; transform: scale(1.2) !important; }
.tt-step-h-node.purple.tt-node-flash { box-shadow: 0 0 30px 10px rgba(139,92,246,0.4) !important; }
.tt-step-h-node.green.tt-node-flash { box-shadow: 0 0 30px 10px rgba(16,185,129,0.4) !important; }

@media (max-width: 767px) { .tt-node-orbit { display: none; } }

/* ==========================================================
   32. ABOUT & CONTACT PAGES — DARK THEME OVERRIDES
   ========================================================== */

/* --- 32-A. Global bg-color overrides for inner pages --- */
.bg-color-1,
.bg-color-2 {
  background: var(--tt-dark-2) !important;
}

/* --- 32-B. About page — intro section --- */
.about-style-two.about-page-1 {
  background: var(--tt-dark) !important;
}

.about-style-two.about-page-1 .sec-title h5 {
  color: var(--tt-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 13px !important;
}

.about-style-two.about-page-1 .sec-title h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
  font-weight: 700 !important;
}

.about-style-two.about-page-1 .text p,
.about-style-two.about-page-1 .content-box p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

.about-style-two.about-page-1 .tabs-box .tab-btns .tab-btn {
  color: var(--tt-text-light) !important;
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
  font-family: 'Inter', sans-serif !important;
}

.about-style-two.about-page-1 .tabs-box .tab-btns .tab-btn.active-btn {
  color: var(--tt-white) !important;
  background: var(--tt-accent) !important;
  border-color: var(--tt-accent) !important;
}

.about-style-two.about-page-1 .tabs-content .content-inner p {
  color: var(--tt-text-light) !important;
}

.about-style-two.about-page-1 .tabs-content .content-inner a {
  color: var(--tt-accent) !important;
}

.about-style-two.about-page-1 .tabs-content .content-inner a:hover {
  color: var(--tt-white) !important;
}

/* About page — image block content box */
.about-style-two.about-page-1 #image_block_two .content-box {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: var(--tt-radius) !important;
}

.about-style-two.about-page-1 #image_block_two .content-box h4,
.about-style-two.about-page-1 #image_block_two .content-box h5 {
  color: var(--tt-white) !important;
}

.about-style-two.about-page-1 #image_block_two .content-box h5 a {
  color: var(--tt-accent) !important;
}

.about-style-two.about-page-1 #image_block_two .content-box i {
  color: var(--tt-accent) !important;
}

/* --- 32-C. About page — services/expertise section --- */
.about-style-two ~ .service-section {
  background: var(--tt-dark-2) !important;
}

.service-section {
  background: var(--tt-dark-2) !important;
}

.service-section .sec-title h5,
.service-section .title-box h5 {
  color: var(--tt-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 13px !important;
}

.service-section .sec-title h2,
.service-section .title-box h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
  font-weight: 700 !important;
}

.service-section .text p,
.service-section .title-box p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

.service-section .sec-title p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

/* Service block link text */
.service-block-one .inner a {
  color: var(--tt-accent) !important;
}

.service-block-one .inner a span {
  color: var(--tt-accent) !important;
}

.service-block-one .inner a:hover,
.service-block-one .inner a:hover span {
  color: var(--tt-white) !important;
}

.service-block-one .inner-box h4 a {
  color: var(--tt-white) !important;
  font-family: 'Manrope', sans-serif !important;
}

.service-block-one .inner-box h4 a:hover {
  color: var(--tt-accent) !important;
}

/* --- 32-D. Contact page — contact-information section --- */
.contact-information {
  background: var(--tt-dark) !important;
}

.contact-information .sec-title h5 {
  color: var(--tt-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 13px !important;
}

.contact-information .sec-title h1,
.contact-information .sec-title h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
  font-weight: 700 !important;
}

.contact-information .sec-title p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

/* Contact info cards */
.contact-information .single-item .inner-box {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: var(--tt-radius) !important;
  transition: var(--tt-transition) !important;
}

.contact-information .single-item .inner-box:hover {
  border-color: rgba(59,130,246,0.2) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
}

.contact-information .single-item .inner-box .icon-box {
  color: var(--tt-accent) !important;
}

.contact-information .single-item .inner-box .icon-box i {
  color: var(--tt-accent) !important;
}

.contact-information .single-item .inner-box h3 {
  color: var(--tt-white) !important;
  font-family: 'Manrope', sans-serif !important;
}

.contact-information .single-item .inner-box p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

.contact-information .single-item .inner-box p a {
  color: var(--tt-text-light) !important;
}

.contact-information .single-item .inner-box p a:hover {
  color: var(--tt-accent) !important;
}

/* --- 32-E. Contact page — funfact / stats section --- */
.funfact-style-four.contact-page {
  background: var(--tt-dark-2) !important;
}

.funfact-style-four.contact-page .counter-block-four .count-outer,
.funfact-style-four.contact-page .counter-block-four .count-text {
  color: var(--tt-white) !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
}

.funfact-style-four.contact-page .counter-block-four h3 {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

.funfact-style-four.contact-page .counter-block-four .count-outer {
  font-size: 48px !important;
}

/* --- 32-F. Contact page — reach out / service-section bg-color-1 on contact --- */
/* (Already handled by .service-section.bg-color-1 + .service-block-one rules above) */

/* --- 32-G. Contact page — contact form section --- */
.contact-style-two {
  background: var(--tt-dark) !important;
}

.contact-style-two .sec-title h5 {
  color: var(--tt-accent) !important;
}

.contact-style-two .sec-title h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif !important;
  color: var(--tt-white) !important;
}

.contact-style-two .sec-title p {
  color: var(--tt-text-light) !important;
  font-family: 'Inter', sans-serif !important;
}

/* Contact form inputs — dark style */
.contact-style-two .default-form .form-group input,
.contact-style-two .default-form .form-group textarea,
.contact-style-two .default-form .form-group select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--tt-radius-sm) !important;
  color: var(--tt-white) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  padding: 14px 20px !important;
  transition: var(--tt-transition) !important;
}

.contact-style-two .default-form .form-group input::placeholder,
.contact-style-two .default-form .form-group textarea::placeholder {
  color: var(--tt-text-light-2) !important;
}

.contact-style-two .default-form .form-group input:focus,
.contact-style-two .default-form .form-group textarea:focus {
  border-color: var(--tt-accent) !important;
  box-shadow: 0 0 0 3px var(--tt-accent-glow) !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Contact form submit button — gradient style */
.contact-style-two .default-form .message-btn .theme-btn {
  background: linear-gradient(135deg, #8B5CF6, #E84393) !important;
  color: var(--tt-white) !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 16px 40px !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}

.contact-style-two .default-form .message-btn .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3) !important;
  opacity: 0.95;
}

/* --- 32-H. Contact page — google map section --- */
.google-map-section {
  background: var(--tt-dark-2) !important;
}

.google-map-section .map-column {
  border: none !important;
}

/* --- 32-I. Global sec-title dark overrides for inner pages --- */
/* Override the light-color sec-title h2 for sections that sit on dark bg */
.about-style-two.about-page-1 .sec-title h2,
.service-section .sec-title h2,
.contact-information .sec-title h1,
.contact-information .sec-title h2,
.pricing-section.service-page-2 .sec-title h2,
.funfact-style-four .sec-title h2 {
  color: var(--tt-white) !important;
}

/* --- 32-J. General inner-page body background --- */
.boxed_wrapper {
  background: var(--tt-dark) !important;
}

/* --- 32-K. About page list-style items dark text --- */
.about-style-two .content_block_one .content-box .list-style-one li {
  color: var(--tt-text-light) !important;
}

/* --- 32-L. Service section without bg-color class (about page) --- */
.service-section .inner-content .service-block-one .inner-box h4,
.service-section .inner-content .service-block-one .inner-box h3 {
  color: var(--tt-white) !important;
}

.service-section .inner-content .service-block-one .inner-box p {
  color: var(--tt-text-light) !important;
}

/* --- 32-M. Contact page — reach out service blocks (on bg-color-1) --- */
.service-section.bg-color-1 .service-block-one .inner a i {
  color: var(--tt-accent) !important;
}

/* --- 32-N. Contact section generic overrides --- */
.contact-section {
  background: var(--tt-dark-2) !important;
}

.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: var(--tt-white) !important;
  border-radius: var(--tt-radius-sm) !important;
  font-family: 'Inter', sans-serif !important;
  transition: var(--tt-transition) !important;
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
  color: var(--tt-text-light-2) !important;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  border-color: var(--tt-accent) !important;
  box-shadow: 0 0 0 3px var(--tt-accent-glow) !important;
  background: rgba(255,255,255,0.06) !important;
}

/* --- 32-O. Service block-three dark overrides (if used on inner pages) --- */
.service-block-three .inner-box {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
}

.service-block-three .lower-content h3 a {
  color: var(--tt-white) !important;
}

.service-block-three .lower-content p {
  color: var(--tt-text-light) !important;
}

/* --- 32-P. Scroll-to-top button dark alignment --- */
.scroll-top {
  background: var(--tt-accent) !important;
  color: var(--tt-white) !important;
  border: none !important;
}

.scroll-top:hover {
  background: var(--tt-accent-hover) !important;
}

/* --- 32-Q. Search popup dark theme --- */
#search-popup .search-form input.form-control {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: var(--tt-white) !important;
}

#search-popup .search-form h3 {
  color: var(--tt-white) !important;
}

#search-popup .recent-searches li a {
  color: var(--tt-text-light) !important;
}

#search-popup .recent-searches li a:hover {
  color: var(--tt-accent) !important;
}

/* ==========================================================
   END 32. ABOUT & CONTACT PAGES — DARK THEME OVERRIDES
   ========================================================== */
