/* ================================================================
   SOLUTIONS NAV DROPDOWN
   ================================================================ */

/* ── Toggle button ──────────────────────────────────────────── */
/* Matches Bootstrap .nav-link padding/line-height exactly so
   the item sits on the same baseline as the anchor nav links.  */
.nav-solutions-toggle {
  background: none;
  border: none;
  /* Mirror Bootstrap 4 nav-link defaults */
  display: block;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  /* Visual style */
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  vertical-align: middle;
}

.nav-solutions-toggle:hover,
.nav-solutions-toggle.active {
  color: #f79500;
}

.nav-solutions-toggle:focus {
  outline: none;
  box-shadow: none;
}

.nav-solutions-chevron {
  font-size: 10px;
  transition: transform 0.25s ease;
  margin-left: 2px;
  pointer-events: none;
}

.nav-solutions-chevron.rotated {
  transform: rotate(180deg);
}

/* ── Dropdown panel — desktop ───────────────────────────────── */
/* top: 100% — flush with the bottom of the li; no gap so the
   mouse never leaves the hover-zone while travelling down.     */
.nav-solutions-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
  border: 1px solid #eee;
  z-index: 9999;
  animation: navDropIn 0.18s ease both;
  /* Small top padding acts as visual gap without dead mouse-zone */
  padding-top: 6px;
}

@keyframes navDropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0);    }
}

.nav-solutions-dropdown--open {
  display: block;
}

/* ── "Which stage are you in?" header ──────────────────────── */
.nav-solutions-header {
  padding: 16px 28px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.nav-solutions-header-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.2px;
}

/* ── 4×1 grid: all four stages in one row ───────────────────── */
.nav-solutions-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 4px 0 8px;
}

/* Group column */
.nav-solutions-group {
  padding: 18px 18px;
}

/* Vertical divider between every column except the last */
.nav-solutions-group:not(:last-child) {
  border-right: 1px solid #f0f0f0;
}

.nav-solutions-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-solutions-group-label i {
  color: #f5a623;
  font-size: 0.7rem;
}

.nav-solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── Each solution link ─────────────────────────────────────── */
.nav-solutions-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
}

.nav-solutions-item:hover {
  background: #fff8ee;
  color: #f5a623;
  text-decoration: none;
}

.nav-solutions-item--active {
  background: #fff3e0;
  color: #f5a623;
  font-weight: 600;
}

/* Icon wrapper — span so flex + background work correctly on
   block-level, not on the bare <i> FontAwesome element.       */
.nav-solutions-item-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #f0f4ff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #5a6aad;
}

.nav-solutions-item:hover .nav-solutions-item-icon,
.nav-solutions-item--active .nav-solutions-item-icon {
  background: #fff3e0;
  color: #f5a623;
}

/* li positioning anchor */
.nav-item--solutions {
  position: relative;
}

/* ── Mobile navbar collapse: fix responsive.css's broken margin-top:222px ── */
@media (max-width: 991px) {
  /* responsive.css positions .navbar-collapse absolute with margin-top:222px,
     which pushes the panel far out of place. Re-anchor it flush below the
     navbar brand row using top:100% so it drops straight down full-width. */
  .mainNav .navbar-collapse {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    background: #fff;
    padding: 12px 20px 16px !important;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
  }
}

/* ── Mobile (≤ 991 px) ──────────────────────────────────────── */
@media (max-width: 991px) {
  /* Keep the dropdown in the document flow at all times.
     Hidden via max-height/opacity so it slides in smoothly on click
     instead of jumping (display:none→block is instant). */
  .nav-solutions-dropdown {
    display: block !important;
    position: static !important;
    width: 100% !important;
    transform: none !important;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-top: 6px;
    padding-top: 0;
    animation: none !important;

    /* Smooth expand */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.22s ease;
  }

  .nav-solutions-dropdown--open {
    max-height: 1000px;
    opacity: 1;
  }

  .nav-solutions-header {
    padding: 12px 16px 10px;
  }

  .nav-solutions-header-text {
    font-size: 0.9rem;
  }

  .nav-solutions-inner {
    grid-template-columns: 1fr;
    padding: 8px 0 4px;
  }

  /* Reset desktop right-borders; stack single column with dividers */
  .nav-solutions-group,
  .nav-solutions-group:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f5f5f5;
    padding: 10px 16px;
  }

  .nav-solutions-group:last-child {
    border-bottom: none;
  }

  .nav-solutions-list {
    gap: 0;
  }

  .nav-solutions-item {
    padding: 8px 4px;
    font-size: 0.88rem;
  }

  /* Full-width toggle with chevron pushed right */
  .nav-solutions-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
  }
}

/* ===== Journey section spacing ===== */
.driven-section {
  height: auto !important;
  padding: 20px 0 !important;
}

.main-icon-box {
  margin-top: 30px !important;
}

/* ===== Journey section lottie icons ===== */
.icon-boxA,
.icon-boxB,
.icon-boxD,
.icon-boxE {
  padding: 4px !important;
  overflow: hidden;
}

.icon-boxA canvas,
.icon-boxB canvas,
.icon-boxD canvas,
.icon-boxE canvas {
  width: 100% !important;
  height: 100% !important;
}

/* ===== V2 TOOLS SECTION ===== */

.tools-section-v2 {
  padding: 60px 0 60px;
  background: #f0f4ff;
}

.tools-section-v2 .v2-section-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.tools-section-v2 .v2-section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 36px;
}

/* Tab bar */
.v2-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.v2-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: #aaa;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
}

.v2-tab:hover {
  color: #777;
}

.v2-tab:focus {
  outline: none;
}

.v2-tab.active {
  color: #f5a623;
  border-bottom: 2px solid #f5a623;
  font-weight: bold;
}

.v2-tab-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8e8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.v2-tab.active .v2-tab-icon {
  background: #fff3e0;
  color: #f5a623;
}

.v2-tab-connector {
  flex: 1;
  height: 1px;
  background: #ddd;
  min-width: 32px;
  max-width: 80px;
}

/* Tab content area */
.v2-tab-content {
  background: #f7f8fc;
  border-radius: 20px;
  padding: 32px 32px 24px;
}

.v2-tab-content-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.v2-tab-content-subtitle {
  text-align: center;
  color: #888;
  font-size: 0.92rem;
  margin-bottom: 28px;
}

/* Tool cards grid */
.v2-tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.v2-tool-card {
  flex: 0 0 calc(25% - 20px);
  max-width: 260px;
  min-width: 180px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px 22px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.v2-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.v2-tool-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.v2-tool-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
  line-height: 1.3;
}

.v2-tool-card p {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.5;
}

.v2-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5ede0;
  color: #1a1a2e;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}

.v2-explore-btn:hover {
  background: #ede0cc;
  color: #1a1a2e;
  text-decoration: none;
}

/* Bottom banner */
.v2-bottom-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
}

.v2-bottom-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2-bottom-banner-star {
  width: 46px;
  height: 46px;
  background: #fff8ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #f5a623;
  flex-shrink: 0;
}

.v2-bottom-banner h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 3px;
  color: #1a1a2e;
}

.v2-bottom-banner .v2-banner-sub {
  font-size: 0.82rem;
  color: #aaa;
  margin: 0;
}

.v2-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1a1a2e;
  background: transparent;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a2e;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.v2-view-all-btn:hover {
  background: #1a1a2e;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .v2-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-tab-connector {
    min-width: 16px;
  }

  .v2-tab {
    padding: 10px 10px;
    font-size: 0.85rem;
  }

  .v2-tab-content {
    padding: 24px 16px 20px;
  }
}

@media (max-width: 575px) {
  .tools-section-v2 .v2-section-heading {
    font-size: 1.45rem;
  }

  .v2-tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .v2-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .v2-tab-connector {
    display: none;
  }

  .v2-bottom-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .v2-bottom-banner-left {
    flex-direction: column;
    text-align: center;
  }
}


/* ================================================================
   TOOL LANDING PAGE  (tlp-*)
   All styles for /solutions/[slug] pages
   ================================================================ */

/* ── Shared section spacing ──────────────────────────────────── */
.tlp-hero-section,
.tlp-screenshot-section,
.tlp-benefits-section,
.tlp-process-section,
.tlp-outputs-section,
.tlp-journey-section,
.tlp-ecosystem-section,
.tlp-faq-section,
.tlp-final-cta-section {
  padding: 80px 0;
}

.tlp-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.25;
}

.tlp-section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.7;
}

.tlp-light {
  color: #fff !important;
}

.tlp-light.tlp-section-subtitle {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* ── SECTION 1 · HERO ────────────────────────────────────────── */
.tlp-hero-section {
  background: linear-gradient(145deg, #eef2ff 0%, #f0f4ff 60%, #e8efff 100%);
  padding-top: 130px;
  text-align: center;
}

.tlp-breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.tlp-breadcrumb a {
  color: #888;
  text-decoration: none;
}

.tlp-breadcrumb a:hover {
  color: #f5a623;
}

.tlp-breadcrumb-sep {
  margin: 0 6px;
  color: #bbb;
}

.tlp-breadcrumb-active {
  color: #1a1a2e;
  font-weight: 500;
}

.tlp-category-badge {
  display: inline-block;
  background: #fff3e0;
  color: #f5a623;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid #f5a62333;
}

.tlp-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.tlp-hero-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.tlp-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tlp-cta-primary {
  padding: 14px 32px !important;
  font-size: 0.95rem !important;
  border-radius: 8px !important;
}

.tlp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.tlp-cta-secondary:hover {
  color: #f5a623;
  text-decoration: none;
}

.tlp-play-icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  color: #1a1a2e;
  flex-shrink: 0;
}

.tlp-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-bottom: 10px;
}

.tlp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.tlp-trust-check {
  color: #f5a623;
  font-size: 0.78rem;
}

/* ── SECTION 2 · SCREENSHOT ──────────────────────────────────── */
.tlp-screenshot-section {
  background: #fff;
  padding: 40px 0 80px;
}

.tlp-screenshot-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  background: #12172b;
  max-width: 900px;
  margin: 0 auto;
}

/* When a Storylane/iframe embed is active, remove clipping so the iframe border-radius shows */
.tlp-screenshot-wrapper--embed {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

/* Storylane responsive aspect-ratio wrapper (47.5% ≈ the demo's native ratio) */
.tlp-storylane-embed {
  position: relative;
  padding-bottom: calc(47.50% + 25px);
  width: 100%;
  height: 0;
}

.tlp-demo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 1px solid rgba(63, 95, 172, 0.35);
  box-shadow: 0 0 18px rgba(26, 19, 72, 0.15);
  border-radius: 10px;
  box-sizing: border-box;
}

.tlp-screenshot-img {
  width: 100%;
  display: block;
}

/* Placeholder mockup when no screenshot supplied */
.tlp-screenshot-placeholder {
  padding: 28px;
}

.tlp-screenshot-placeholder-inner {
  background: #1e2640;
  border-radius: 12px;
  overflow: hidden;
}

.tlp-placeholder-topbar {
  background: #2a3154;
  padding: 10px 16px;
  display: flex;
  gap: 7px;
  align-items: center;
}

.tlp-placeholder-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.tlp-placeholder-body {
  display: flex;
  min-height: 240px;
  gap: 0;
}

.tlp-placeholder-sidebar {
  width: 140px;
  flex-shrink: 0;
  background: #172040;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tlp-ph-block {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.tlp-ph-block--sm {
  width: 60%;
  background: rgba(245, 166, 35, 0.3);
}

.tlp-placeholder-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tlp-ph-row {
  display: flex;
  gap: 14px;
}

.tlp-ph-card {
  flex: 1;
  height: 70px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tlp-ph-chart {
  flex: 1;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.tlp-ph-chart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.15));
}

/* ── SECTION 3 · BENEFITS ────────────────────────────────────── */
.tlp-benefits-section {
  background: #fff;
}

.tlp-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.tlp-benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.tlp-benefit-icon {
  width: 44px;
  height: 44px;
  background: #fff3e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5a623;
  font-size: 1rem;
  flex-shrink: 0;
}

.tlp-benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.tlp-benefit-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Benefits right visual */
.tlp-benefits-visual {
  padding: 20px;
}

.tlp-bv-card {
  background: #f7f8fc;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #eee;
}

.tlp-bv-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.95rem;
}

.tlp-bv-icon {
  color: #f5a623;
  font-size: 1.1rem;
}

.tlp-bv-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.tlp-bv-bar {
  height: 28px;
  background: linear-gradient(90deg, #f5a623, #f5a62388);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  animation: tlpBarGrow 1s ease both;
}

@keyframes tlpBarGrow {
  from { width: 0 !important; opacity: 0; }
  to { opacity: 1; }
}

.tlp-bv-bar span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.tlp-bv-caption {
  font-size: 0.82rem;
  color: #888;
  text-align: center;
  margin: 0;
}

/* ── SECTION 4 · PROCESS ─────────────────────────────────────── */
.tlp-process-section {
  background: #fafbff;
}

.tlp-process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.tlp-process-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.tlp-process-connector {
  position: absolute;
  top: 28px;
  left: calc(-50% + 28px);
  right: calc(50% + 28px);
  height: 2px;
  background: #e0e4f0;
}

.tlp-process-step:first-child .tlp-process-connector {
  display: none;
}

.tlp-process-circle {
  width: 56px;
  height: 56px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2);
  transition: background 0.3s, transform 0.3s;
}

.tlp-process-step:hover .tlp-process-circle {
  background: #f5a623;
  transform: translateY(-4px);
}

.tlp-process-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.tlp-process-step-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ── SECTION 5 · OUTPUTS ─────────────────────────────────────── */
.tlp-outputs-section {
  background: #12172b;
  text-align: center;
}

.tlp-outputs-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tlp-output-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  flex: 0 0 calc(50% - 24px);
  max-width: 380px;
  min-width: 260px;
  text-align: left;
}

.tlp-output-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tlp-output-icon {
  font-size: 1.1rem;
  color: #f5a623;
}

.tlp-output-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.tlp-output-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  line-height: 1.5;
}

.tlp-output-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tlp-ob {
  height: 8px;
  background: rgba(245, 166, 35, 0.35);
  border-radius: 4px;
}

.tlp-download-btn-wrap {
  margin-top: 8px;
}

.tlp-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5a623;
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.tlp-download-btn:hover {
  background: #e09515;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── SECTION 6 · JOURNEY ─────────────────────────────────────── */
.tlp-journey-section {
  background: #fff;
}

.tlp-journey-tabs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  position: relative;
}

.tlp-journey-tab {
  flex: 1;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.tlp-journey-connector {
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: #e0e4f0;
}

.tlp-journey-tab-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f4ff;
  color: #999;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 2px solid #e0e4f0;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.tlp-journey-tab--active .tlp-journey-tab-num {
  background: #1a1a2e;
  color: #f5a623;
  border-color: #1a1a2e;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.25);
}

.tlp-journey-tab-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tlp-journey-tab-icon {
  font-size: 0.95rem;
  color: #aaa;
}

.tlp-journey-tab--active .tlp-journey-tab-icon {
  color: #f5a623;
}

.tlp-journey-tab-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #aaa;
}

.tlp-journey-tab--active .tlp-journey-tab-label {
  color: #1a1a2e;
}

.tlp-journey-active-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tlp-journey-active-note i {
  color: #f5a623;
}

/* ── SECTION 7 · ECOSYSTEM ───────────────────────────────────── */
.tlp-ecosystem-section {
  background: #f0f4ff;
}

.tlp-ecosystem-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.tlp-explore-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 6px;
  transition: color 0.2s;
}

.tlp-explore-all:hover {
  color: #f5a623;
  text-decoration: none;
}

.tlp-ecosystem-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  text-decoration: none;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  height: calc(100% - 24px);
}

.tlp-ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.tlp-ec-icon-wrap {
  width: 48px;
  height: 48px;
  background: #fff3e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.tlp-ec-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.tlp-ec-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.tlp-ec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #f5a623;
  margin-top: auto;
}

/* ── SECTION 8 · FAQ ─────────────────────────────────────────── */
.tlp-faq-section {
  background: #fff;
}

.tlp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8eaf0;
  border-radius: 16px;
  overflow: hidden;
}

.tlp-faq-item {
  border-bottom: 1px solid #e8eaf0;
}

.tlp-faq-item:last-child {
  border-bottom: none;
}

.tlp-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  transition: background 0.2s;
}

.tlp-faq-toggle:focus {
  outline: none;
}

.tlp-faq-toggle:hover {
  background: #fafbff;
}

.tlp-faq-toggle i {
  color: #f5a623;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.tlp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.tlp-faq-item--open .tlp-faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.tlp-faq-answer p {
  padding: 0 24px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── SECTION 9 · FINAL CTA ───────────────────────────────────── */
.tlp-final-cta-section {
  background: #12172b;
  text-align: center;
}

.tlp-final-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.tlp-final-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.tlp-final-cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  line-height: 1.7;
}

.tlp-final-cta-btn {
  padding: 15px 40px !important;
  font-size: 1rem !important;
  border-radius: 10px !important;
  margin-bottom: 16px;
}

.tlp-final-cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .tlp-hero-title {
    font-size: 2rem;
  }

  .tlp-process-steps {
    flex-wrap: wrap;
    gap: 32px;
  }

  .tlp-process-step {
    flex: 0 0 calc(50% - 16px);
    max-width: none;
  }

  .tlp-process-connector {
    display: none;
  }

  .tlp-output-card {
    flex: 0 0 calc(100% - 0px);
    max-width: 500px;
  }

  .tlp-journey-tab-label {
    font-size: 0.75rem;
  }

  .tlp-ecosystem-header {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .tlp-hero-section {
    padding-top: 110px;
  }

  .tlp-hero-title {
    font-size: 1.65rem;
  }

  .tlp-section-title {
    font-size: 1.5rem;
  }

  .tlp-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .tlp-trust-row {
    gap: 10px 18px;
  }

  .tlp-process-steps {
    flex-direction: column;
    align-items: center;
  }

  .tlp-process-step {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .tlp-benefits-visual {
    margin-top: 32px;
  }

  .tlp-journey-tabs {
    gap: 8px;
    flex-wrap: wrap;
  }

  .tlp-journey-tab {
    flex: 0 0 calc(50% - 8px);
    max-width: none;
  }

  .tlp-journey-connector {
    display: none;
  }

  .tlp-final-cta-title {
    font-size: 1.65rem;
  }

  .tlp-placeholder-sidebar {
    display: none;
  }
}
