html, body { background: #0B1120 !important; margin: 0; overflow-x: hidden !important; max-width: 100vw !important; }

#tf-content {
  --tf-dark: #0B1120;
  --tf-surface: #131B2E;
  --tf-border: #1E293B;
  --tf-hover: #1A2540;
  --tf-orange: #EC5A22;
  --tf-orange-hover: #D4501E;
  --tf-text: #E2E8F0;
  --tf-muted: #94A3B8;
  --tf-blue: #00A9EA;
  --tf-gold: #F5A11A;
  --tf-green: #16A34A;
  --tf-light: #F8FAFC;
  --tf-light-surface: #FFFFFF;
  --tf-light-border: #E2E8F0;
  --tf-text-on-light: #1E293B;
  --tf-text-muted-light: #64748B;
  background: var(--tf-dark);
  color: var(--tf-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* ===== HERO (dark) ===== */
#tf-content .tf-hero {
  padding: 108px 0 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(327deg,rgba(33,0,75,0.20) 3%,rgba(60,0,136,0) 40%),linear-gradient(246deg,rgba(236,90,34,0.08) 0%,rgba(209,25,80,0) 36%),linear-gradient(148deg,rgba(0,169,234,0.04) 0%,transparent 60%),var(--tf-dark);
  display: block;
  width: 100%;
  overflow: hidden;
}
#tf-content .tf-hero .tf-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tf-content .tf-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(236,90,34,0.3);
  font-size: 13px;
  color: rgba(226,232,240,0.6);
  margin-bottom: 32px;
  background: rgba(236,90,34,0.06);
  transition: all 0.3s;
  text-decoration: none;
}
#tf-content .tf-hero-label:hover {
  border-color: var(--tf-orange);
  background: rgba(236,90,34,0.1);
}
#tf-content .tf-hero-label .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tf-orange);
  animation: tf-pulse 2s ease-in-out infinite;
}
@keyframes tf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
#tf-content .tf-hero-label span {
  color: var(--tf-orange);
  font-weight: 600;
}
#tf-content .tf-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 0;
  color: #fff;
  position: relative;
}
#tf-content .tf-hero-h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: #fff;
}
#tf-content .tf-hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(226,232,240,0.5);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
#tf-content .tf-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
#tf-content .tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-size: 14px;
  gap: 6px;
  text-decoration: none;
}
#tf-content .tf-btn-primary {
  background: var(--tf-orange);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
#tf-content .tf-btn-primary:hover {
  background: var(--tf-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(236,90,34,0.4);
}
#tf-content .tf-btn-outline {
  background: transparent;
  color: #E2E8F0;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
}
#tf-content .tf-btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}
#tf-content .tf-hero-badges-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
#tf-content .tf-hero-badges-row .hero-trust-grid {
  margin-top: 16px;
}
#tf-content .hero-provider-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
#tf-content .hero-provider {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
  white-space: nowrap;
}
#tf-content .hero-provider:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
#tf-content .hero-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
#tf-content .hero-trust-item {
  justify-content: flex-start;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
#tf-content .hero-trust-item strong {
  color: #fff;
}

#tf-content .tf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABELS & TITLES ===== */
#tf-content .tf-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--tf-orange);
  margin-bottom: 12px;
  text-align: center;
}
#tf-content .tf-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--tf-text-on-light);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: center;
}
#tf-content .tf-section-title-dark {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: center;
}
#tf-content .tf-section-title.centered,
#tf-content .tf-section-title-dark.centered {
  text-align: center;
  margin-bottom: 48px;
}

/* ===== BENEFITS (light) ===== */
#tf-content .tf-benefits {
  padding: 80px 0;
  background: var(--tf-light);
}
#tf-content .tf-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
#tf-content .tf-benefit-card {
  background: var(--tf-light-surface);
  border: 1px solid var(--tf-light-border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
#tf-content .tf-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#tf-content .tf-benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
#tf-content .tf-benefit-card:hover::after {
  transform: scaleX(1);
}
#tf-content .tf-benefit-card:nth-child(1)::after { background: var(--tf-orange); }
#tf-content .tf-benefit-card:nth-child(2)::after { background: var(--tf-blue); }
#tf-content .tf-benefit-card:nth-child(3)::after { background: var(--tf-green); }
#tf-content .tf-benefit-card:nth-child(4)::after { background: var(--tf-gold); }

#tf-content .tf-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#tf-content .tf-benefit-card:nth-child(1) .tf-benefit-icon { background: rgba(236,90,34,0.08); }
#tf-content .tf-benefit-card:nth-child(1) .tf-benefit-icon svg { color: var(--tf-orange); stroke: var(--tf-orange); }
#tf-content .tf-benefit-card:nth-child(2) .tf-benefit-icon { background: rgba(0,169,234,0.08); }
#tf-content .tf-benefit-card:nth-child(2) .tf-benefit-icon svg { color: var(--tf-blue); stroke: var(--tf-blue); }
#tf-content .tf-benefit-card:nth-child(3) .tf-benefit-icon { background: rgba(22,163,74,0.08); }
#tf-content .tf-benefit-card:nth-child(3) .tf-benefit-icon svg { color: var(--tf-green); stroke: var(--tf-green); }
#tf-content .tf-benefit-card:nth-child(4) .tf-benefit-icon { background: rgba(245,161,26,0.08); }
#tf-content .tf-benefit-card:nth-child(4) .tf-benefit-icon svg { color: var(--tf-gold); stroke: var(--tf-gold); }

#tf-content .tf-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
}
#tf-content .tf-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--tf-text-on-light);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
#tf-content .tf-benefit-card p {
  font-size: 14px;
  color: var(--tf-text-muted-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== HOW IT WORKS (dark) ===== */
#tf-content .tf-how {
  padding: 80px 0;
  background: #FFFFFF;
}
#tf-content .tf-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
#tf-content .tf-step {
  display: flex;
  align-items: center;
  gap: 60px;
}
#tf-content .tf-step:nth-child(even) {
  flex-direction: row-reverse;
}
#tf-content .tf-step-image {
  flex: 1;
  max-width: 480px;
}
#tf-content .tf-step-image-wrap {
  background: #F8FAFC;
  padding: 24px;
  border-radius: 16px;
  box-sizing: border-box;
}
#tf-content .tf-step-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
#tf-content .tf-step-text {
  flex: 1;
}
#tf-content .tf-step-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--tf-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
#tf-content .tf-step-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--tf-text-on-light);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
#tf-content .tf-step-desc {
  font-size: 16px;
  color: var(--tf-text-muted-light);
  line-height: 1.7;
  margin: 0;
}

/* ===== DEPLOY CLUSTERS (light) ===== */
#tf-content .tf-clusters {
  padding: 80px 0;
  background: var(--tf-light);
}
#tf-content .tf-clusters-subtitle {
  font-size: 17px;
  color: var(--tf-text-muted-light);
  text-align: center;
  max-width: 700px;
  margin: -32px auto 48px;
  line-height: 1.6;
}
#tf-content .tf-clusters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
#tf-content .tf-cluster-card {
  display: flex;
  flex-direction: column;
  background: var(--tf-light-surface);
  border: 1px solid var(--tf-light-border);
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
#tf-content .tf-cluster-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#tf-content .tf-cluster-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
#tf-content .tf-cluster-card:hover::after {
  transform: scaleX(1);
}
/* Colored top bars per card */
#tf-content .tf-cluster-card:nth-child(1)::after { background: #EC5A22; }
#tf-content .tf-cluster-card:nth-child(2)::after { background: #336791; }
#tf-content .tf-cluster-card:nth-child(3)::after { background: #16A34A; }
#tf-content .tf-cluster-card:nth-child(4)::after { background: #8C278A; }
#tf-content .tf-cluster-card:nth-child(5)::after { background: #F5A11A; }
#tf-content .tf-cluster-card:nth-child(6)::after { background: #00A9EA; }
#tf-content .tf-cluster-card:nth-child(7)::after { background: #EC5A22; }
#tf-content .tf-cluster-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 8px;
  box-sizing: border-box;
  transition: transform 0.3s;
}
#tf-content .tf-cluster-card:hover .tf-cluster-logo {
  transform: scale(1.05);
}
/* Colored icon backgrounds */
#tf-content .tf-cluster-card:nth-child(1) .tf-cluster-logo { background: rgba(236,90,34,0.08); }
#tf-content .tf-cluster-card:nth-child(2) .tf-cluster-logo { background: rgba(51,103,145,0.08); }
#tf-content .tf-cluster-card:nth-child(3) .tf-cluster-logo { background: rgba(22,163,74,0.08); }
#tf-content .tf-cluster-card:nth-child(4) .tf-cluster-logo { background: rgba(140,39,138,0.08); }
#tf-content .tf-cluster-card:nth-child(5) .tf-cluster-logo { background: rgba(245,161,26,0.08); }
#tf-content .tf-cluster-card:nth-child(6) .tf-cluster-logo { background: rgba(0,169,234,0.08); }
#tf-content .tf-cluster-card:nth-child(7) .tf-cluster-logo { background: rgba(236,90,34,0.08); }
#tf-content .tf-cluster-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--tf-text-on-light);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
#tf-content .tf-cluster-card p {
  font-size: 14px;
  color: var(--tf-text-muted-light);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
#tf-content .tf-cluster-action {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
/* Colored action links per card */
#tf-content .tf-cluster-card:nth-child(1) .tf-cluster-action { color: #EC5A22; }
#tf-content .tf-cluster-card:nth-child(2) .tf-cluster-action { color: #336791; }
#tf-content .tf-cluster-card:nth-child(3) .tf-cluster-action { color: #16A34A; }
#tf-content .tf-cluster-card:nth-child(4) .tf-cluster-action { color: #8C278A; }
#tf-content .tf-cluster-card:nth-child(5) .tf-cluster-action { color: #F5A11A; }
#tf-content .tf-cluster-card:nth-child(6) .tf-cluster-action { color: #00A9EA; }
#tf-content .tf-cluster-card:nth-child(7) .tf-cluster-action { color: #EC5A22; }
#tf-content .tf-cluster-card:hover .tf-cluster-action {
  gap: 10px;
}
#tf-content .tf-cluster-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--tf-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== CTA (dark) ===== */
#tf-content .tf-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#tf-content .tf-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(236,90,34,0.08) 0%, transparent 60%);
  pointer-events: none;
}
#tf-content .tf-cta h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 16px;
  position: relative;
}
#tf-content .tf-cta p {
  font-size: 17px;
  color: var(--tf-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}
#tf-content .tf-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
}
#tf-content .tf-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--tf-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
#tf-content .tf-cta-btn:hover {
  background: var(--tf-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,90,34,0.4);
}
#tf-content .tf-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--tf-muted);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
#tf-content .tf-cta-btn-outline:hover {
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #tf-content .tf-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #tf-content .tf-clusters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #tf-content .tf-hero { padding: 88px 0 40px; }
  #tf-content .tf-benefits-grid {
    grid-template-columns: 1fr;
  }
  #tf-content .tf-step {
    flex-direction: column !important;
    gap: 32px;
  }
  #tf-content .tf-step-image {
    max-width: 100%;
  }
  #tf-content .tf-clusters-grid {
    grid-template-columns: 1fr;
  }
  #tf-content .tf-cta-buttons {
    flex-direction: column;
  }
  #tf-content .tf-cta-btn,
  #tf-content .tf-cta-btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}