/* =====================================================
   TORQHUB - style.css
   Custom styles on top of Bootstrap 5
   Brand: #2744a4 (blue)  +  #ff6b3d (accent orange)
===================================================== */

:root {
  --th-blue: #2744a4;
  --th-blue-dark: #1d3580;
  --th-blue-darker: #142560;
  --th-blue-50: #eef1fa;
  --th-blue-100: #d8def2;
  --th-accent: #ff6b3d;
  --th-accent-2: #ffba3c;
  --th-ink: #0e1535;
  --th-ink-2: #2d3257;
  --th-text: #5a6080;
  --th-text-light: #8a91ad;
  --th-line: #e6eaf4;
  --th-bg-soft: #f6f8fd;
  --th-bg-blue: #f1f4fc;
  --th-shadow-sm: 0 2px 10px rgba(20,37,96,0.05);
  --th-shadow-md: 0 14px 40px rgba(20,37,96,0.10);
  --th-shadow-lg: 0 24px 70px rgba(20,37,96,0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--th-text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  color: var(--th-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

/* Common eyebrow */
.th-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--th-blue);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}
.th-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--th-blue);
}
.th-eyebrow.dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--th-blue);
}
.th-eyebrow.amber {
  color: var(--th-accent-2);
}
.th-eyebrow.amber::before {
  background: var(--th-accent-2);
}

/* Buttons */
.btn-th {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-th-blue { background: var(--th-blue); color: white; box-shadow: 0 6px 18px rgba(39,68,164,0.3); }
.btn-th-blue:hover { background: var(--th-blue-dark); color: white; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(39,68,164,0.4); }
.btn-th-accent { background: var(--th-accent); color: white; box-shadow: 0 6px 18px rgba(255,107,61,0.35); }
.btn-th-accent:hover { background: #e85a2f; color: white; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,61,0.45); }
.btn-th-outline {
  background: transparent;
  color: var(--th-ink);
  border: 1.5px solid var(--th-line);
}
.btn-th-outline:hover { border-color: var(--th-blue); color: var(--th-blue); background: var(--th-blue-50); }
.btn-th-white { background: white; color: var(--th-blue); box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.btn-th-white:hover { color: var(--th-blue-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.btn-th-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-th-ghost:hover { background: rgba(255,255,255,0.22); color: white; }
.btn-lg-th { padding: 15px 32px; font-size: 15px; }

/* =====================================================
   NAV
===================================================== */
.th-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--th-line);
}
.th-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.th-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--th-ink);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.th-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--th-blue), var(--th-blue-darker));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.th-logo span { color: var(--th-accent); }
.th-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.th-nav-links > li { position: relative; }
.th-nav-links > li > a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--th-ink-2);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.th-nav-links > li > a:hover,
.th-nav-links > li > a.active { color: var(--th-blue); }
.th-nav-links > li > a.active { font-weight: 600; }
.th-nav-links > li > a .bi-chevron-down { font-size: 11px; }

/* Dropdown - FIXED to prevent text-wrap and arrow overlap */
.th-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--th-shadow-lg);
  border: 1px solid var(--th-line);
  padding: 12px;
  min-width: 320px; /* Wider to prevent text wrap */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  list-style: none;
  margin: 0;
  z-index: 100;
}
.th-nav-links > li:hover .th-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.th-dropdown li a {
  display: grid;
  grid-template-columns: 36px 1fr auto; /* fixed icon | flexible text | arrow */
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.2s;
  align-items: center;
  text-decoration: none;
}
.th-dropdown li a:hover {
  background: var(--th-bg-soft);
}
.th-dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--th-blue-50);
  color: var(--th-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.th-dd-text {
  min-width: 0; /* allow grid item to shrink */
  overflow: hidden;
}
.th-dd-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--th-ink);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.th-dd-text small {
  font-size: 12px;
  color: var(--th-text-light);
  margin-top: 2px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.th-dd-arrow {
  color: var(--th-text-light);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
  align-self: center;
}
.th-dropdown li a:hover .th-dd-arrow {
  color: var(--th-blue);
  transform: translateX(3px);
}



/* =====================================================
   HERO with image background
===================================================== */
.th-hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
/* Background image layer */
.th-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../img/factory-worker-hero.jpg');
  background-size: cover;
  background-position: center;
}
/* White transparent overlay so text is readable */
.th-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 45%, rgba(255,255,255,0.55) 100%);
}
.th-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--th-line);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--th-ink-2);
  margin-bottom: 24px;
  box-shadow: var(--th-shadow-sm);
}
.th-hero-eyebrow .badge-pill {
  background: var(--th-accent);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.th-hero h1 {
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: var(--th-ink);
}
.th-hero h1 .blue { color: var(--th-blue); }
.th-hero p.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--th-ink-2);
  margin-bottom: 34px;
  max-width: 540px;
}
.th-hero p.lead strong { color: var(--th-ink); font-weight: 600; }
.th-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.th-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.th-hero-avatars { display: flex; }
.th-hero-avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.th-hero-avatars img:first-child { margin-left: 0; }
.th-hero-trust-text { font-size: 13px; color: var(--th-ink-2); }
.th-hero-trust-text strong { color: var(--th-ink); display: block; font-size: 14px; }
.th-hero-stars { color: var(--th-accent-2); font-size: 12px; letter-spacing: 1px; }

/* =====================================================
   BRAND STRIP
===================================================== */
.th-brand-strip {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid var(--th-line);
}
.th-brand-strip h6 {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--th-text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.th-brand-row {
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /*opacity: 0.65;
  filter: grayscale(1);*/
}
.th-brand-row .b-item {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--th-ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: filter 0.3s, opacity 0.3s;
}
.th-brand-row .b-item:hover { filter: grayscale(0); opacity: 1; }
.th-brand-row .b-item i { color: var(--th-blue); }

/* =====================================================
   PAIN POINTS
===================================================== */
.th-pain {
  padding: 110px 0;
  background: var(--th-bg-soft);
}
.th-section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 720px;
  color: var(--th-ink);
}
.th-section-title .accent { color: var(--th-blue); }
.th-section-sub {
  font-size: 17px;
  color: var(--th-text);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 56px;
}
.th-pain-card {
  background: white;
  border-radius: 22px;
  padding: 32px 26px;
  border: 1px solid var(--th-line);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.th-pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--th-blue), var(--th-blue-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.th-pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--th-shadow-lg);
  border-color: transparent;
}
.th-pain-card:hover::before { transform: scaleX(1); }
.th-pain-stat {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 48px;
  background: linear-gradient(135deg, var(--th-blue), #4a67c4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.th-pain-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--th-ink);
  margin-bottom: 8px;
}
.th-pain-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--th-text-light);
  margin: 0;
}

/* =====================================================
   FEATURES (Bento)
===================================================== */
.th-features {
  padding: 130px 0;
  background: white;
}
.th-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.th-bento-card {
  background: linear-gradient(135deg, white, var(--th-bg-soft));
  border: 1px solid var(--th-line);
  border-radius: 22px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.th-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--th-shadow-lg);
  border-color: var(--th-blue-100);
  color: inherit;
}
.th-bento-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--th-blue-50), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}
.th-b-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--th-blue), var(--th-blue-darker));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  box-shadow: 0 8px 16px rgba(39,68,164,0.25);
  position: relative;
  z-index: 1;
}
.th-b-icon.amber { background: linear-gradient(135deg,#f59e0b,#d97706); box-shadow: 0 8px 16px rgba(245,158,11,0.25); }
.th-b-icon.green { background: linear-gradient(135deg,#10b981,#047857); box-shadow: 0 8px 16px rgba(16,185,129,0.25); }
.th-b-icon.purple { background: linear-gradient(135deg,#8b5cf6,#6d28d9); box-shadow: 0 8px 16px rgba(139,92,246,0.25); }
.th-b-icon.rose { background: linear-gradient(135deg,#f43f5e,#be123c); box-shadow: 0 8px 16px rgba(244,63,94,0.25); }
.th-b-icon.cyan { background: linear-gradient(135deg,#06b6d4,#0891b2); box-shadow: 0 8px 16px rgba(6,182,212,0.25); }
.th-bento-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.th-bento-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--th-text);
  position: relative;
  z-index: 1;
  margin: 0;
}
.th-bento-card .b-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--th-blue);
  position: relative;
  z-index: 1;
}
.th-bento-card .b-foot i { transition: transform 0.3s; }
.th-bento-card:hover .b-foot i { transform: translateX(4px); }
.b-2x2 { grid-column: span 3; grid-row: span 2; }
.b-3x1 { grid-column: span 3; }
.b-1x1 { grid-column: span 2; }

.th-feature-large {
  background: linear-gradient(135deg, var(--th-blue) 0%, var(--th-blue-darker) 100%) !important;
  color: white !important;
  border: none !important;
}
.th-feature-large::after { display: none; }
.th-feature-large h4 { color: white; font-size: 28px; }
.th-feature-large p { color: rgba(255,255,255,0.85); font-size: 15px; }
.th-feature-large .th-b-icon { background: rgba(255,255,255,0.18); box-shadow: none; }
.th-feature-large .b-foot { color: var(--th-accent-2); }
.th-feature-large .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.th-feature-large .stat-row .sb-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--th-accent-2);
  display: block;
  letter-spacing: -0.02em;
}
.th-feature-large .stat-row .sb-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================================================
   SHOWCASE WITH TABS
===================================================== */
.th-showcase {
  padding: 120px 0;
  background: var(--th-bg-soft);
}
.th-showcase-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.th-show-tab {
  background: white;
  border: 1.5px solid var(--th-line);
  padding: 12px 22px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--th-ink-2);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.th-show-tab:hover { border-color: var(--th-blue); color: var(--th-blue); }
.th-show-tab.active {
  background: var(--th-blue);
  color: white;
  border-color: var(--th-blue);
  box-shadow: 0 6px 18px rgba(39,68,164,0.3);
}
.th-show-content { display: none; animation: th-fade-in 0.4s ease; }
.th-show-content.active { display: block; }
@keyframes th-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.th-show-bullets { list-style: none; padding: 0; }
.th-show-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--th-ink-2);
  line-height: 1.5;
  margin-bottom: 14px;
}
.th-show-bullets li i {
  color: var(--th-blue);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.th-show-bullets li strong { color: var(--th-ink); font-weight: 600; }
.th-show-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--th-shadow-lg);
  border: 1px solid var(--th-line);
}
.th-show-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.th-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,68,164,0.45), rgba(20,37,96,0.35));
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.th-img-overlay-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.th-img-overlay-card .ioc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--th-blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.th-img-overlay-card strong { display: block; font-family: 'Sora', sans-serif; color: var(--th-ink); font-size: 16px; }
.th-img-overlay-card small { color: var(--th-text); font-size: 12px; }

/* =====================================================
   ROI Calculator
===================================================== */
.th-roi {
  padding: 110px 0;
  background: white;
}
.th-roi-form {
  background: linear-gradient(135deg, var(--th-blue) 0%, var(--th-blue-darker) 100%);
  border-radius: 28px;
  padding: 44px;
  color: white;
  box-shadow: var(--th-shadow-lg);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.th-roi-form::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,186,60,0.15), transparent 70%);
  border-radius: 50%;
}
.th-roi-form h3 {
  color: white;
  font-size: 26px;
  margin-bottom: 8px;
  position: relative;
}
.th-roi-form > p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 26px;
  position: relative;
}
.th-roi-fields { display: flex; flex-direction: column; gap: 20px; position: relative; }
.th-roi-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.th-roi-field .slider-row { display: flex; align-items: center; gap: 16px; }
.th-roi-field input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  outline: none;
}
.th-roi-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--th-accent-2);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 3px solid white;
}
.th-roi-field input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--th-accent-2);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
}
.th-roi-field .val-display {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  min-width: 120px;
  text-align: center;
}
.th-roi-result {
  background: white;
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--th-shadow-md);
  border: 1px solid var(--th-line);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.th-roi-result .savings-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--th-text-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.th-roi-result .savings-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 60px;
  color: var(--th-blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.th-roi-result .savings-period {
  font-size: 14px;
  color: var(--th-text-light);
  margin-bottom: 30px;
}
.th-roi-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.th-roi-bd-item {
  background: var(--th-bg-soft);
  padding: 18px 12px;
  border-radius: 14px;
  border: 1px solid var(--th-line);
}
.th-roi-bd-item .bd-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--th-ink);
  letter-spacing: -0.02em;
}
.th-roi-bd-item .bd-lbl {
  font-size: 11px;
  color: var(--th-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* =====================================================
   SOLUTIONS / INDUSTRIES
===================================================== */
.th-industries {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--th-bg-soft) 0%, white 100%);
}
.th-industries-header { text-align: center; margin-bottom: 60px; }
.th-industries-header .th-section-title { margin: 0 auto 18px; }
.th-industries-header .th-section-sub { margin-left: auto; margin-right: auto; }
.th-industry-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-decoration: none;
}
.th-industry-card:hover { transform: translateY(-8px); }
.th-industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.th-industry-card:hover img { transform: scale(1.08); }
.th-industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,21,53,0.85) 100%);
}
.th-industry-card .ind-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: white;
}
.th-industry-card h4 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.th-industry-card p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin: 0;
}
.th-industry-card:hover p { max-height: 80px; opacity: 1; margin-top: 4px; }
.th-industry-card .ind-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  z-index: 2;
  transition: transform 0.3s;
}
.th-industry-card:hover .ind-arrow {
  transform: rotate(-45deg);
  background: var(--th-accent-2);
  color: var(--th-ink);
}

/* =====================================================
   RESULTS / STATS
===================================================== */
.th-results {
  padding: 130px 0;
  background: var(--th-ink);
  position: relative;
  overflow: hidden;
  color: white;
}
.th-results::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(39,68,164,0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,186,60,0.15) 0%, transparent 40%);
}
.th-results .container { position: relative; }
.th-results .th-section-title { color: white; }
.th-results .th-section-sub { color: rgba(255,255,255,0.7); }
.th-result-stat {
  position: relative;
  padding: 32px 0;
  height: 100%;
}
.th-result-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: var(--th-accent-2);
}
.th-result-stat .num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, white, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.th-result-stat .num .suffix {
  font-size: 36px;
  vertical-align: middle;
  color: var(--th-accent-2);
  -webkit-text-fill-color: var(--th-accent-2);
}
.th-result-stat h5 {
  color: white;
  font-size: 17px;
  font-weight: 600;
  margin: 14px 0 8px;
}
.th-result-stat p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.th-testimonials {
  padding: 130px 0;
  background: white;
}
.th-test-card {
  background: white;
  border: 1px solid var(--th-line);
  border-radius: 22px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 100%;
}
.th-test-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--th-shadow-lg);
  border-color: var(--th-blue-100);
}
.th-test-card.featured {
  background: linear-gradient(135deg, var(--th-blue) 0%, var(--th-blue-darker) 100%);
  color: white;
  border: none;
}
.th-test-card .quote-mark {
  font-family: 'Sora', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: var(--th-blue);
  line-height: 0.5;
  margin-bottom: 10px;
}
.th-test-card.featured .quote-mark { color: var(--th-accent-2); }
.th-test-card .stars {
  color: var(--th-accent-2);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.th-test-card blockquote {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--th-ink-2);
  margin-bottom: 26px;
  flex: 1;
  font-weight: 500;
}
.th-test-card.featured blockquote { color: white; }
.th-test-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--th-line);
}
.th-test-card.featured .author { border-color: rgba(255,255,255,0.15); }
.th-test-card .author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--th-blue-100);
}
.th-test-card.featured .author img { border-color: rgba(255,255,255,0.3); }
.th-test-card .auth-info strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--th-ink);
  font-size: 15px;
}
.th-test-card.featured .auth-info strong { color: white; }
.th-test-card .auth-info small {
  display: block;
  font-size: 13px;
  color: var(--th-text-light);
  margin-top: 2px;
}
.th-test-card.featured .auth-info small { color: rgba(255,255,255,0.6); }

/* =====================================================
   STEPS
===================================================== */
.th-steps {
  padding: 120px 0;
  background: var(--th-bg-blue);
}
.th-step-card {
  background: white;
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
  border: 1px solid var(--th-line);
  transition: all 0.3s;
  height: 100%;
}
.th-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--th-shadow-md);
}
.th-step-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 60px;
  background: linear-gradient(135deg, var(--th-blue), #4a67c4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 18px;
}
.th-step-card h5 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.th-step-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--th-text);
  margin: 0;
}
.th-step-icon {
  position: absolute;
  top: 28px; right: 28px;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--th-blue-50);
  color: var(--th-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* =====================================================
   COMPARE TABLE
===================================================== */
.th-compare {
  padding: 120px 0;
  background: white;
}
.th-compare-table-wrap {
  margin-top: 50px;
  background: white;
  border-radius: 28px;
  border: 1px solid var(--th-line);
  overflow: hidden;
  box-shadow: var(--th-shadow-md);
}
.th-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.th-compare-table th, .th-compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--th-line);
  font-size: 15px;
}
.th-compare-table th {
  background: var(--th-bg-soft);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--th-ink);
  font-size: 15px;
}
.th-compare-table th.highlight {
  background: linear-gradient(135deg, var(--th-blue), var(--th-blue-darker));
  color: white;
  position: relative;
}
.th-compare-table th.highlight::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--th-accent-2);
  color: var(--th-ink);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 100px;
  letter-spacing: 1px;
}
.th-compare-table td:first-child { font-weight: 600; color: var(--th-ink); }
.th-compare-table td.center { text-align: center; }
.th-compare-table td .yes { color: #10b981; font-size: 18px; }
.th-compare-table td .no { color: #ef4444; font-size: 18px; }
.th-compare-table td .partial { color: #f59e0b; font-size: 13px; font-weight: 600; }
.th-compare-table tbody tr:hover { background: var(--th-bg-soft); }
.th-compare-table td.highlight-cell { background: rgba(39,68,164,0.04); }

/* =====================================================
   FAQ
===================================================== */
.th-faq {
  padding: 120px 0;
  background: var(--th-bg-soft);
}
.th-faq-side .th-help-card {
  background: white;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid var(--th-line);
  margin-top: 30px;
}
.th-faq-side .th-help-card .help-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--th-blue-50);
  color: var(--th-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.th-faq-side .th-help-card h5 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.th-faq-side .th-help-card p {
  font-size: 14px;
  color: var(--th-text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}
.th-faq-list { display: flex; flex-direction: column; gap: 12px; }
.th-faq-item {
  background: white;
  border: 1px solid var(--th-line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.th-faq-item.open {
  border-color: var(--th-blue);
  box-shadow: 0 4px 16px rgba(39,68,164,0.08);
}
.th-faq-q {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.th-faq-q h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--th-ink);
  flex: 1;
  margin: 0;
}
.th-faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--th-bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--th-ink-2);
  transition: all 0.3s;
  flex-shrink: 0;
}
.th-faq-item.open .th-faq-toggle {
  background: var(--th-blue);
  color: white;
  transform: rotate(45deg);
}
.th-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.th-faq-a-inner {
  padding: 0 26px 22px;
  color: var(--th-text);
  line-height: 1.75;
  font-size: 14.5px;
}

/* =====================================================
   FINAL CTA
===================================================== */
.th-cta {
  padding: 130px 0;
  background: white;
}
.th-cta-card {
  background: linear-gradient(135deg, var(--th-blue) 0%, var(--th-blue-darker) 100%);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--th-shadow-lg);
}
.th-cta-card::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,186,60,0.2), transparent 60%);
}
.th-cta-card::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
}
.th-cta-card h2 {
  color: white;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 22px;
  position: relative;
}
.th-cta-card h2 .accent { color: var(--th-accent-2); }
.th-cta-card p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 38px;
  position: relative;
}
.th-cta-card .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 30px;
}
.th-cta-card .cta-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}
.th-cta-card .cta-trust span { display: flex; align-items: center; gap: 8px; }
.th-cta-card .cta-trust i { color: var(--th-accent-2); }

/* =====================================================
   FOOTER
===================================================== */
.th-footer {
  background: var(--th-ink);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 30px;
}
.th-footer .th-logo { color: white; margin-bottom: 18px; }
.th-footer .th-logo span { color: var(--th-accent-2); }
.th-footer-about p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.th-footer-social { display: flex; gap: 10px; }
.th-footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.25s;
  text-decoration: none;
}
.th-footer-social a:hover {
  background: var(--th-blue);
  transform: translateY(-2px);
  color: white;
}
.th-footer-col h6 {
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.th-footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.th-footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}
.th-footer-col ul a:hover { color: var(--th-accent-2); }
.th-footer-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 14px;
}
.th-footer-bot ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

/* =====================================================
   REVEAL ON SCROLL
===================================================== */
.th-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.th-reveal.in { opacity: 1; transform: translateY(0); }
.th-reveal.d1 { transition-delay: 0.1s; }
.th-reveal.d2 { transition-delay: 0.2s; }
.th-reveal.d3 { transition-delay: 0.3s; }
.th-reveal.d4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .th-bento { grid-template-columns: repeat(4, 1fr); }
  .b-2x2, .b-3x1 { grid-column: span 2; }
  .b-1x1 { grid-column: span 2; }
}
@media (max-width: 768px) {
  .th-nav-links, .th-nav-actions-extra { display: none; }
  
  .th-hero { padding: 60px 0 80px; }
  .th-hero h1 { font-size: 36px; }
  .th-bento { grid-template-columns: 1fr; }
  .b-2x2, .b-3x1, .b-1x1 { grid-column: span 1; }
  .th-roi-form, .th-roi-result { padding: 30px; }
  .th-roi-result .savings-num { font-size: 44px; }
  .th-roi-breakdown { grid-template-columns: 1fr; }
  .th-cta-card { padding: 50px 26px; }
  .th-show-image-wrap img { height: 320px; }
  .th-compare-table th, .th-compare-table td { padding: 14px 12px; font-size: 13px; }
  .th-feature-large .stat-row { grid-template-columns: 1fr; }
}

/* =====================================================
   PRODUCT HERO - screenshot right side
===================================================== */
.th-hero-product {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
  background: linear-gradient(165deg, white 0%, #f1f4fc 40%, #eef1fa 100%);
}
.th-hero-product::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,68,164,0.08), transparent 60%);
}
.th-hero-product h1 {
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--th-ink);
}
.th-hero-product h1 .blue { color: var(--th-blue); }
.th-hero-product .lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--th-text);
  margin-bottom: 32px;
  max-width: 500px;
}
.th-hero-product .lead strong { color: var(--th-ink); font-weight: 600; }

/* Browser frame for product screenshot */
.product-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--th-shadow-lg), 0 60px 120px rgba(20,37,96,0.12);
  border: 1px solid rgba(230,234,244,0.8);
  transform: perspective(2000px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-frame:hover {
  transform: perspective(2000px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
}
.frame-bar {
  background: #f8f9fd;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e6eaf4;
}
.frame-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.frame-bar .dot.r { background: #ff5f57; }
.frame-bar .dot.y { background: #ffbd2e; }
.frame-bar .dot.g { background: #28c940; }
.frame-bar .url-bar {
  margin-left: 10px;
  background: white;
  border: 1px solid #e0e4ee;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--th-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 280px;
}
.frame-bar .url-bar i { font-size: 10px; color: #10b981; }
.frame-body img {
  display: block;
  width: 100%;
  height: auto;
}

/* Small floating badges around the product frame */
.hero-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--th-shadow-md);
  border: 1px solid var(--th-line);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  font-family: 'Sora', sans-serif;
}
.hero-float .hf-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hf-green { background: #d1fae5; color: #047857; }
.hf-blue { background: #dbeafe; color: #1d4ed8; }
.hf-amber { background: #fef3c7; color: #b45309; }
.hero-float .hf-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--th-ink);
  line-height: 1.2;
}
.hero-float .hf-text small {
  font-size: 11px;
  color: var(--th-text-light);
  font-weight: 500;
}
.hf-1 {
  bottom: 120px; left: -30px;
  animation: hf-float 5s ease-in-out infinite;
}
.hf-2 {
  top: 30px; right: -20px;
  animation: hf-float 6s ease-in-out infinite 1s;
}
@keyframes hf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Feature showcase - alternating screenshot + text */
.th-feature-show {
  padding: 100px 0;
}
.th-feature-show:nth-child(even) {
  background: var(--th-bg-soft);
}
.th-feature-show .screen-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--th-shadow-lg);
  border: 1px solid var(--th-line);
}
.th-feature-show .screen-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.th-feature-show .screen-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--th-shadow-sm);
}
.th-feature-show .screen-badge .sb-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--th-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.th-feature-show .screen-badge strong {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--th-ink);
  display: block;
}
.th-feature-show .screen-badge small {
  font-size: 11px;
  color: var(--th-text-light);
}

.th-feature-show h3 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--th-ink);
}
.th-feature-show > .container > .row p.desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--th-text);
  margin-bottom: 24px;
}
.th-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.th-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--th-ink-2);
  line-height: 1.5;
}
.th-check-list li i {
  color: var(--th-blue);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.th-check-list li strong { color: var(--th-ink); font-weight: 600; }

/* =====================================================
   VALUE PROPS - 3 cards with icons
===================================================== */
.th-values {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid var(--th-line);
}
.th-value-card {
  text-align: center;
  padding: 30px 24px;
}
.th-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--th-blue-50);
  color: var(--th-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
  transition: all 0.3s;
}
.th-value-card:hover .th-value-icon {
  background: var(--th-blue);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(39,68,164,0.3);
}
.th-value-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.th-value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--th-text);
  margin: 0;
}

/* =====================================================
   INSIDE TORQHUB - dark numbered list (refined)
===================================================== */
.th-dark-modules {
  padding: 100px 0;
  background: white;
}
.th-dark-card {
  background: linear-gradient(135deg, var(--th-blue) 0%, var(--th-blue-darker) 100%);
  border-radius: 24px;
  padding: 56px 50px;
  color: white;
  position: relative;
  overflow: hidden;
}
.th-dark-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,61,0.15), transparent 60%);
}
.th-dark-card h2 { color: white; font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; position: relative; }
.th-dark-card .desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 28px; position: relative; }
.th-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  position: relative;
}
.th-module-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: white;
  transition: transform 0.2s;
}
.th-module-item:hover { transform: translateX(8px); color: white; }
.th-module-item:last-child,
.th-module-item:nth-last-child(2) { border-bottom: none; }
.th-module-item .m-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--th-accent-2);
  min-width: 28px;
}
.th-module-item .m-text {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  flex: 1;
  line-height: 1.3;
}
.th-module-item .m-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  transition: all 0.2s;
}
.th-module-item:hover .m-arrow {
  color: var(--th-accent-2);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .product-frame { transform: none; }
  .product-frame:hover { transform: translateY(-4px); }
  .hero-float { display: none; }
  .th-module-grid { grid-template-columns: 1fr; }
  .th-dark-card { padding: 36px 26px; }
}


/* =====================================================
   MOBILE MENU
===================================================== */
.th-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--th-ink);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.th-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.th-mobile-menu.open { right: 0; }
body.mobile-menu-open { overflow: hidden; }
.th-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9990;
  display: none;
}
.th-mobile-overlay.show { display: block; }
.th-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--th-line);
}
.th-mobile-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--th-ink);
  cursor: pointer;
  padding: 4px;
}
.th-mobile-links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.th-mobile-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--th-ink-2);
  text-decoration: none;
  transition: background 0.2s;
}
.th-mobile-links li a:hover,
.th-mobile-links li a:active { background: var(--th-bg-soft); color: var(--th-blue); }
.th-mobile-links li a i { font-size: 16px; color: var(--th-blue); width: 20px; text-align: center; }
.th-mobile-links .mobile-sub-header {
  padding: 16px 24px 6px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--th-text-light);
}
.th-mobile-links .mobile-divider {
  height: 1px;
  background: var(--th-line);
  margin: 8px 20px;
}
.th-mobile-links .mobile-cta {
  background: var(--th-accent);
  color: white !important;
  margin: 12px 20px;
  border-radius: 12px;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  padding: 14px 24px;
}
.th-mobile-links .mobile-cta i { color: white !important; }
.th-mobile-links .mobile-cta:hover { background: #e85a2f; }

@media (max-width: 991px) {
  .th-nav-links { display: none !important; }
  .th-mobile-toggle { display: block !important; }
  .th-nav-actions-extra { display: none !important; }
}

/* =====================================================
   PRICING.PHP STYLES
===================================================== */

  .pricing-toggle{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:50px;}
  .pricing-toggle label{font-family:'Sora',sans-serif;font-size:14px;font-weight:600;color:var(--th-text);cursor:pointer;}
  .pricing-toggle label.active{color:var(--th-ink);}
  .toggle-switch{position:relative;width:56px;height:30px;background:var(--th-blue);border-radius:100px;cursor:pointer;transition:background 0.3s;flex-shrink:0;}
  .toggle-switch::after{content:'';position:absolute;top:3px;left:3px;width:24px;height:24px;background:white;border-radius:50%;transition:transform 0.3s;box-shadow:0 2px 6px rgba(0,0,0,0.2);}
  .toggle-switch.yearly::after{transform:translateX(26px);}
  .save-badge{background:var(--th-accent);color:white;font-size:11px;font-weight:700;padding:3px 10px;border-radius:100px;margin-left:8px;}
  .pricing-card{background:white;border-radius:24px;border:1.5px solid var(--th-line);padding:36px 32px;position:relative;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column;height:100%;text-align:center;}
  .pricing-card:hover{transform:translateY(-6px);box-shadow:0 24px 70px rgba(20,37,96,0.12);border-color:var(--th-blue-100);}
  .pricing-card.featured{background:linear-gradient(135deg,var(--th-blue) 0%,var(--th-blue-darker) 100%);color:white;border:none;box-shadow:0 24px 70px rgba(20,37,96,0.25);}
  .pricing-card.featured:hover{transform:translateY(-8px);box-shadow:0 30px 80px rgba(20,37,96,0.35);}
  .pricing-card .badge-pop{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--th-accent);color:white;font-family:'Sora',sans-serif;font-size:11px;font-weight:700;padding:5px 18px;border-radius:100px;text-transform:uppercase;letter-spacing:1px;white-space:nowrap;}
  .pricing-card .plan-name{font-family:'Sora',sans-serif;font-size:16px;font-weight:700;text-transform:uppercase;letter-spacing:2px;margin-bottom:14px;text-align:center;}
  .pricing-card .plan-name .feat-tag{font-size:12px;opacity:0.7;display:block;letter-spacing:1px;text-transform:none;font-weight:500;margin-top:4px;}
  .pricing-card .price-row{display:flex;align-items:baseline;gap:4px;margin-bottom:6px;justify-content:center;}
  .pricing-card .currency{font-family:'Sora',sans-serif;font-size:24px;font-weight:700;}
  .pricing-card .amount{font-family:'Sora',sans-serif;font-size:56px;font-weight:800;letter-spacing:-0.04em;line-height:1;}
  .pricing-card .period{font-size:16px;font-weight:500;opacity:0.7;}
  .pricing-card .billing-note{font-size:14px;opacity:0.7;margin-bottom:28px;text-align:center;}
  .pricing-card .plan-btn{width:100%;padding:14px 24px;border-radius:12px;font-family:'Sora',sans-serif;font-weight:600;font-size:14px;text-align:center;display:flex;align-items:center;justify-content:center;gap:8px;text-decoration:none;transition:all 0.25s;border:none;cursor:pointer;margin-bottom:26px;}
  .btn-plan-default{background:var(--th-blue);color:white;box-shadow:0 6px 18px rgba(39,68,164,0.3);}
  .btn-plan-default:hover{background:var(--th-blue-dark);color:white;transform:translateY(-2px);box-shadow:0 10px 28px rgba(39,68,164,0.4);}
  .btn-plan-white{background:white;color:var(--th-blue);box-shadow:0 4px 14px rgba(0,0,0,0.1);}
  .btn-plan-white:hover{color:var(--th-blue-dark);transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,0.15);}
  .pricing-card .feat-list{list-style:none;padding:0;margin:0;flex:1;text-align:left;}
  .pricing-card .feat-list li{display:flex;align-items:flex-start;gap:12px;padding:11px 0;border-bottom:1px solid rgba(128,128,128,0.1);font-size:15px;line-height:1.5;}
  .pricing-card .feat-list li:last-child{border-bottom:none;}
  .pricing-card .feat-list li i{font-size:18px;margin-top:2px;flex-shrink:0;}
  .pricing-card .feat-list li i.yes{color:#10b981;}
  .pricing-card .feat-list li i.no{color:#d1d5db;}
  .pricing-card.featured .feat-list li{border-color:rgba(255,255,255,0.1);}
  .pricing-card.featured .feat-list li i.yes{color:var(--th-accent-2);}
  .pricing-card.featured .feat-list li i.no{color:rgba(255,255,255,0.25);}
  .table-scroll-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:20px;border:1px solid var(--th-line);box-shadow:var(--th-shadow-md);}
  .cmp-table{width:100%;border-collapse:collapse;background:white;border-radius:0;border:none;box-shadow:none;}
  .cmp-table th,.cmp-table td{padding:18px 24px;text-align:left;font-size:15px;border-bottom:1px solid var(--th-line);}
  .cmp-table thead th{background:var(--th-bg-soft);font-family:'Sora',sans-serif;font-weight:700;color:var(--th-ink);font-size:16px;}
  .cmp-table thead th.hl{background:linear-gradient(135deg,var(--th-blue),var(--th-blue-darker));color:white;position:relative;}
  .cmp-table thead th.hl::after{content:'POPULAR';position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--th-accent);color:white;font-size:9px;font-weight:800;padding:3px 8px;border-radius:100px;letter-spacing:1px;}
  .cmp-table td:first-child{font-weight:600;color:var(--th-ink);}
  .cmp-table td.center{text-align:center;}
  .cmp-table td .y{color:#10b981;font-size:20px;}
  .cmp-table td .n{color:#d1d5db;font-size:20px;}
  .cmp-table td .addon{color:#f59e0b;font-size:12px;font-weight:600;}
  .cmp-table td.hl-cell{background:rgba(39,68,164,0.03);}
  .cmp-table tbody tr:hover td{background:var(--th-bg-soft);}
  .cmp-table tbody tr:hover td.hl-cell{background:rgba(39,68,164,0.06);}
  .cmp-table .section-row td{background:var(--th-bg-soft);font-family:'Sora',sans-serif;font-weight:700;font-size:14px;text-transform:uppercase;letter-spacing:1px;color:var(--th-blue);padding:12px 22px;}
  @media(max-width:991px){
    .pricing-card{padding:28px 24px;}
    .pricing-card .amount{font-size:44px;}
    .pricing-card .currency{font-size:20px;}
  }
  @media(max-width:767px){
    .pricing-card .amount{font-size:40px;}
    .pricing-card .plan-name{font-size:14px;}
    .pricing-card .feat-list li{font-size:14px;padding:9px 0;}
    .pricing-card .feat-list li i{font-size:16px;}
    .pricing-card .plan-btn{padding:12px 20px;font-size:13px;}
    .cmp-table th:first-child,.cmp-table td:first-child{position:sticky;left:0;z-index:2;background:white;min-width:180px;box-shadow:4px 0 8px rgba(0,0,0,0.04);}
    .cmp-table thead th:first-child{background:var(--th-bg-soft);}
    .cmp-table .section-row td{position:sticky;left:0;z-index:2;}
    .cmp-table th,.cmp-table td{padding:14px 18px;font-size:14px;white-space:nowrap;}
    .cmp-table th:first-child,.cmp-table td:first-child{white-space:normal;}
    .cmp-table thead th{font-size:14px;}
    .cmp-table td .y,.cmp-table td .n{font-size:18px;}
  }

/* =====================================================
   CLIENTS.PHP STYLES
===================================================== */

  .client-logo-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
  .client-logo-card{background:white;border:1.5px solid var(--th-line);border-radius:18px;padding:32px 24px;display:flex;align-items:center;justify-content:center;min-height:120px;transition:all 0.3s;position:relative;}
  .client-logo-card:hover{border-color:var(--th-blue);box-shadow:0 12px 32px rgba(39,68,164,0.1);transform:translateY(-4px);}
  .client-logo-card .cl-industry{position:absolute;bottom:10px;right:14px;font-size:10px;color:var(--th-text-light);font-weight:500;background:var(--th-bg-soft);padding:2px 8px;border-radius:100px;}
  .cl-placeholder{width:100%;display:flex;flex-direction:column;align-items:center;gap:6px;}
  .cl-placeholder .cl-icon{width:48px;height:48px;border-radius:12px;background:var(--th-bg-soft);display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--th-blue);}
  .cl-placeholder .cl-text{font-family:'Sora',sans-serif;font-weight:700;font-size:15px;color:var(--th-ink);text-align:center;}
  @media(max-width:991px){.client-logo-grid{grid-template-columns:repeat(3,1fr);}}
  @media(max-width:767px){.client-logo-grid{grid-template-columns:repeat(2,1fr);}}

/* Feature card container */
.th-feat-card {
  border-color: var(--th-line) !important;
  transition: all 0.3s;
}
.th-feat-card:hover {
  box-shadow: 0 14px 40px rgba(20,37,96,0.1);
  transform: translateY(-4px);
  border-color: var(--th-blue-100) !important;
}

/* Feature icon boxes */
.th-feat-icon {
  width: 50px;
  height: 50px;
  font-size: 20px;
}
.th-feat-icon.blue    { background: #eef1fa; color: #2744a4; }
.th-feat-icon.green   { background: #d1fae5; color: #047857; }
.th-feat-icon.amber   { background: #fef3c7; color: #b45309; }
.th-feat-icon.purple  { background: #ede9fe; color: #6d28d9; }
.th-feat-icon.red     { background: #fee2e2; color: #dc2626; }
.th-feat-icon.cyan    { background: #cffafe; color: #0891b2; }
.th-feat-icon.pink    { background: #fce7f3; color: #be185d; }
.th-feat-icon.dblue   { background: #dbeafe; color: #1d4ed8; }

/* Feature card title */
.th-feat-title {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--th-ink);
  margin-bottom: 8px;
}

/* Feature card description */
.th-feat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--th-text);
  margin: 0;
}

/* Detail check item */
.th-check-item {
  border-color: var(--th-line) !important;
}
.th-check-item i {
  color: var(--th-blue);
  font-size: 16px;
  margin-top: 2px;
}
.th-check-item span,
.th-check-item div {
  font-size: 14px;
  line-height: 1.6;
  color: var(--th-ink-2);
}

/* Page hero section */
.th-page-hero {
  background: linear-gradient(165deg, #fff 0%, #f1f4fc 40%, #eef1fa 100%);
  overflow: hidden;
}

/* Page hero heading */
.th-page-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--th-ink);
  margin-bottom: 20px;
}

/* Page hero lead text */
.th-page-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--th-text);
  margin-bottom: 28px;
  max-width: 480px;
}
.th-page-lead strong { color: var(--th-ink); }

/* Hero stats row */
.th-hero-stat-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--th-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.th-hero-stat-lbl {
  font-size: 11px;
  color: var(--th-text-light);
  margin-top: 2px;
}

/* Section headings */
.th-section-h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--th-ink);
}
.th-section-h3 {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.1;
  color: var(--th-ink);
}
.th-section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--th-text);
  margin-bottom: 24px;
}
.th-section-desc strong { color: var(--th-ink); }

/* Benefits bar */
.th-benefits-bar {
  background: var(--th-ink);
}
.th-benefit-item {
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.th-benefit-item i {
  color: var(--th-accent-2);
  font-size: 18px;
}

/* Section backgrounds */
.th-bg-gradient { background: linear-gradient(165deg, #fff 0%, #f1f4fc 40%, #eef1fa 100%); }
.th-bg-white { background: white; }
.th-bg-light { background: var(--th-bg-soft); }

/* Info cards (asset detail grid, reach-us) */
.th-info-card {
  border-color: var(--th-line) !important;
  transition: all 0.3s;
}
.th-info-card:hover {
  box-shadow: 0 14px 40px rgba(20,37,96,0.1);
  transform: translateY(-4px);
}
.th-info-icon {
  width: 36px;
  height: 36px;
  font-size: 15px;
}
.th-info-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--th-ink);
}
.th-info-sub {
  font-size: 12px;
  color: var(--th-text-light);
  margin-top: 2px;
}

/* Connected modules */
.th-connected-icon {
  width: 44px;
  height: 44px;
  font-size: 18px;
}
.th-connected-label {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--th-ink);
}

/* Explore link */
.th-explore-link {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--th-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Large feature card for features listing */
.th-feat-lg-icon {
  width: 56px;
  height: 56px;
  font-size: 22px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.th-feat-lg-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--th-ink);
  margin-bottom: 8px;
}
.th-feat-lg-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--th-text);
  margin-bottom: 16px;
}

/* Reach Us cards */
.th-contact-icon {
  width: 56px;
  height: 56px;
  font-size: 22px;
}
.th-contact-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--th-ink);
  margin-bottom: 8px;
}
.th-contact-desc {
  font-size: 14px;
  color: var(--th-text);
  margin-bottom: 14px;
}
.th-contact-link {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--th-blue);
  text-decoration: none;
}

/* Index page specific */
.th-index-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--th-ink);
  margin-bottom: 20px;
}

/* =====================================================
   UTILITY CLASSES — Auto-generated (replacing inline styles)
===================================================== */

/* Card hover effects */
.th-card-hover{border-color:var(--th-line)!important;transition:all 0.3s;}
.th-card-hover:hover{box-shadow:0 14px 40px rgba(20,37,96,0.1);transform:translateY(-4px);border-color:var(--th-blue-100)!important;}
.th-border{border-color:var(--th-line)!important;}
.th-border-top{border-top:1px solid var(--th-line);}

/* Text colors */
.text-th-blue{color:var(--th-blue);}
.text-th-ink{color:var(--th-ink);}
.text-th-accent2{color:var(--th-accent-2);}
.th-opacity-50{opacity:0.5;}
.th-opacity-40{opacity:0.4;}

/* Connected module icons */
.th-cmod-icon{width:44px;height:44px;font-size:18px;}
.th-cmod-green{background:#d1fae5;color:#047857;}
.th-cmod-blue{background:#eef1fa;color:#2744a4;}
.th-cmod-amber{background:#fef3c7;color:#b45309;}
.th-cmod-purple{background:#ede9fe;color:#6d28d9;}
.th-cmod-red{background:#fee2e2;color:#dc2626;}
.th-cmod-cyan{background:#cffafe;color:#0891b2;}

/* Feature listing page icons */
.th-ficon{width:56px;height:56px;font-size:22px;color:white;}
.th-ficon-blue{background:linear-gradient(135deg,#2744a4,#142560);box-shadow:0 8px 16px rgba(39,68,164,0.25);}
.th-ficon-green{background:linear-gradient(135deg,#10b981,#047857);box-shadow:0 8px 16px rgba(16,185,129,0.25);}
.th-ficon-amber{background:linear-gradient(135deg,#f59e0b,#d97706);box-shadow:0 8px 16px rgba(245,158,11,0.25);}
.th-ficon-purple{background:linear-gradient(135deg,#8b5cf6,#6d28d9);box-shadow:0 8px 16px rgba(139,92,246,0.25);}
.th-ficon-rose{background:linear-gradient(135deg,#f43f5e,#be123c);box-shadow:0 8px 16px rgba(244,63,94,0.25);}
.th-ficon-cyan{background:linear-gradient(135deg,#06b6d4,#0891b2);box-shadow:0 8px 16px rgba(6,182,212,0.25);}
.th-ficon-ghost{background:rgba(255,255,255,0.15);}

/* Feature card text */
.th-fcard-title{font-family:'Sora',sans-serif;font-size:20px;font-weight:700;color:var(--th-ink);margin-bottom:8px;}
.th-fcard-desc{font-size:14px;line-height:1.6;color:var(--th-text);margin-bottom:16px;}
.th-fcard-title-white{font-family:'Sora',sans-serif;font-size:24px;font-weight:700;color:white;margin:0;}
.th-fcard-desc-white{font-size:15px;line-height:1.6;color:rgba(255,255,255,0.8);margin:0;}

/* Explore links */
.th-explore-link{font-family:'Sora',sans-serif;font-size:13px;font-weight:600;color:var(--th-blue);display:flex;align-items:center;gap:6px;}
.th-explore-link-accent{font-family:'Sora',sans-serif;font-size:14px;font-weight:600;color:var(--th-accent-2);display:flex;align-items:center;gap:6px;justify-content:flex-end;margin-top:16px;}

/* Section headings */
.th-section-h3{font-family:'Sora',sans-serif;font-size:34px;font-weight:800;letter-spacing:-0.02em;margin-bottom:18px;line-height:1.1;color:var(--th-ink);}
.th-section-desc{font-size:16px;line-height:1.7;color:var(--th-text);margin-bottom:24px;}
.th-section-desc strong{color:var(--th-ink);}

/* Checklists */
.th-checklist{list-style:none;padding:0;}
.th-checklist-item{display:flex;gap:12px;align-items:flex-start;margin-bottom:14px;font-size:15px;color:var(--th-ink-2);}
.th-check-icon{color:var(--th-blue);font-size:16px;margin-top:3px;flex-shrink:0;}

/* Value proposition cards */
.th-vcard-body{text-align:center;padding:30px 24px;}
.th-vcard-icon{width:60px;height:60px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:24px;margin:0 auto 18px;}
.th-vcard-icon-blue{background:var(--th-blue-50);color:var(--th-blue);}
.th-vcard-icon-green{background:#d1fae5;color:#047857;}
.th-vcard-icon-amber{background:#fef3c7;color:#b45309;}
.th-vcard-title{font-family:'Sora',sans-serif;font-size:18px;font-weight:700;}

/* Section backgrounds */
.th-bg-hero{background:linear-gradient(165deg,#fff 0%,#f1f4fc 40%,#eef1fa 100%);}
.th-values-section{padding:80px 0;background:white;border-bottom:1px solid var(--th-line);}
.th-py-section{padding:100px 0;}
.th-steps-section{padding:120px 0;background:var(--th-bg-blue);}
.th-roi-section{padding:110px 0;background:white;}

/* Dark modules section */
.th-dark-h2{color:white;font-size:38px;font-weight:800;letter-spacing:-0.03em;line-height:1.1;margin-bottom:14px;position:relative;}
.th-dark-desc{font-size:15px;line-height:1.7;color:rgba(255,255,255,0.75);margin-bottom:28px;position:relative;}
.th-results-sub{color:rgba(255,255,255,0.7);text-align:center;}

/* ROI section */
.th-roi-h3{color:white;font-size:26px;margin-bottom:8px;position:relative;}
.th-roi-desc{color:rgba(255,255,255,0.8);font-size:14px;margin-bottom:26px;position:relative;}

/* Contact / Reach Us */
.th-contact-icon{width:56px;height:56px;font-size:22px;}
.th-contact-blue{background:var(--th-blue-50);color:var(--th-blue);}
.th-contact-green{background:#d1fae5;color:#047857;}
.th-contact-amber{background:#fef3c7;color:#b45309;}
.th-contact-title{font-family:'Sora',sans-serif;font-size:18px;font-weight:700;color:var(--th-ink);margin-bottom:8px;}
.th-contact-desc{font-size:14px;color:var(--th-text);margin-bottom:14px;}
.th-contact-link{font-family:'Sora',sans-serif;font-size:15px;font-weight:600;color:var(--th-blue);text-decoration:none;}
.th-company-title{font-family:'Sora',sans-serif;font-size:18px;font-weight:700;color:var(--th-ink);margin-bottom:14px;}
.th-company-info{font-size:14px;line-height:1.7;color:var(--th-text);margin-bottom:12px;}
.th-link-blue{color:var(--th-blue);text-decoration:none;}
.th-caption{font-size:12px;color:var(--th-text-light);margin-top:10px;}

/* KPI values */
.th-kpi-val{font-family:'Sora',sans-serif;font-weight:800;font-size:28px;color:var(--th-accent-2);}
.th-kpi-lbl{font-size:11px;color:rgba(255,255,255,0.6);text-transform:uppercase;letter-spacing:1px;}

/* Page headings */
.th-index-h1{font-family:'Sora',sans-serif;font-size:clamp(38px,4.8vw,56px);font-weight:800;letter-spacing:-0.035em;line-height:1.08;color:var(--th-ink);margin-bottom:20px;}
.th-index-lead{font-size:17px;line-height:1.65;color:var(--th-text);margin-bottom:32px;max-width:500px;}
.th-pricing-h1{font-family:'Sora',sans-serif;font-size:clamp(36px,5vw,52px);font-weight:800;letter-spacing:-0.035em;line-height:1.08;color:var(--th-ink);margin-bottom:18px;}
.th-pricing-lead{font-size:17px;line-height:1.65;color:var(--th-text);max-width:620px;margin:0 auto 40px;}
.th-hero-desc-center{font-size:17px;line-height:1.65;color:var(--th-text);max-width:680px;margin:0 auto;}
.th-page-lead-center{font-size:17px;line-height:1.65;color:var(--th-text);max-width:600px;margin:0 auto;}
.th-max-680{max-width:680px;margin:0 auto;}

/* CTA section (pricing, clients) */
.th-cta-icon{width:56px;height:56px;border-radius:14px;background:var(--th-blue-50);color:var(--th-blue);font-size:22px;margin:0 auto 20px;}
.th-cta-h3{font-family:'Sora',sans-serif;font-size:26px;font-weight:800;color:var(--th-ink);margin-bottom:10px;}
.th-cta-desc{font-size:15px;line-height:1.6;color:var(--th-text);margin-bottom:24px;}
.th-clients-h3{font-family:'Sora',sans-serif;font-size:24px;font-weight:800;color:var(--th-ink);text-align:center;margin-bottom:40px;}
.th-note{font-size:13px;color:var(--th-text-light);}

/* Pricing table column widths */
.th-col-feature{min-width:260px;}
.th-col-plan{min-width:150px;}
.th-col-plan-hl{min-width:160px;}
.th-price-sub{font-weight:400;opacity:0.7;}

/* Feature listing analytics card */
.th-analytics-card{background:linear-gradient(135deg,var(--th-blue) 0%,#142560 100%);transition:all 0.3s;}
.th-analytics-card:hover{transform:translateY(-4px);box-shadow:0 20px 50px rgba(20,37,96,0.25);}

/* Misc */
.th-lh-tight{line-height:1.1;margin-bottom:18px;}
.th-fs-28{font-size:28px;}
.position-relative{position:relative;}
