:root {
  /* ==========================================================================
     NEW DESIGN SYSTEM VARIABLES
     ========================================================================== */
  
  /* Brand Colors */
  --brand-primary: #5C76FF;
  --brand-primary-dark: #3a52ee;
  --brand-secondary: #945CFF;
  --brand-accent: #0d0549;
  
  /* Semantic Colors */
  --color-white: #ffffff;
  --color-light: #f4f4fc;
  --color-gray: #888;
  --color-dark: #0d0549;
  
  /* Typography */
  --font-primary: "Funnel Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Funnel Display", "Funnel Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 50px;
  --radius-full: 100px;
  
  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 6px 20px rgba(0,0,0,0.4);
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Z-index Scale */
  --z-chat: 1000;
  
  /* Brand Colors (reused in gradients and other themes) */
  --midnight: var(--brand-primary);
  --sunshine: #FFE55C;
  --fuchsia: #FF5CC8;
  --plum: var(--brand-secondary);
  --cyan: #5CC8FF;
  --mint: #5CFF94;
  --watermelon: #FF5C76;

  /* Semantic Variables */
  --heading: var(--brand-primary);
  --body: var(--color-dark);
  --card: var(--color-white);
  --ink: var(--color-dark);
  --soft: var(--color-light);
  --stroke: #e0e0f0;

  /* Gradients */
  --hero-gradient: linear-gradient(135deg, var(--midnight) 0%, var(--plum) 100%);
}

/* Bootstrap Override Variables */
:root {
  --bs-primary: var(--brand-primary);
  --bs-primary-rgb: 92, 118, 255;
  --bs-secondary: var(--brand-secondary);
  --bs-secondary-rgb: 148, 92, 255;
  --bs-body-font-family: var(--font-primary);
  --bs-body-color: var(--color-dark);
  --bs-body-bg: var(--color-white);
  --bs-border-radius: var(--radius-sm);
  --bs-border-radius-lg: var(--radius-md);
  --bs-border-radius-xl: var(--radius-lg);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-primary);
  color: var(--body);
  background: #fff;
  line-height: 1.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 0 0 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
}

/* Navbar Container - No Padding */
.top-bar .container,
.navbar-dark .container {
  padding: 0;
}

/* ==========================================================================
   Button System
   ========================================================================== */

/* Base Button Styles */
.btn,
.button {
  display: inline-block;
  border-radius: 100px;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
  text-align: center;
  cursor: pointer;
  border: none;
}

/* Primary Buttons */
.btn-primary {
  background: linear-gradient(165deg, #FF5CC8 0%, #5C5CFF 20%, #5C5CFF 80%, #FF5CC8 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: white;
  border: none;
  transition: background-position 0.3s ease-in;
}

.btn-primary:hover {
  background-position: 100% 100%;
  color: white;
  text-decoration: none;
}

.button {
  background: linear-gradient(135deg, var(--brand-primary) 25%, var(--brand-secondary) 100%);
  color: var(--color-white);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

/* Secondary Buttons */
.btn-secondary {
  background: #fff;
  color: var(--midnight);
  border: 2px solid var(--midnight);
}

.btn-secondary:hover {
  background: var(--midnight);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(92, 118, 255, 0.25);
}



/* New Button Classes */
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-white:hover {
  background: var(--brand-primary);
  color: var(--color-white);
}

/* Integration Buttons */
.btn--primary {
  background: var(--brand-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--brand-primary-dark);
  color: var(--color-white);
}
.special-btn-default {
  background: linear-gradient(165deg, #FF5CC8 0%, #5C5CFF 20%, #5C5CFF 80%, #FF5CC8 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: white;
  border: none;
  transition: background-position 0.3s ease-in;
}

.special-btn-default:hover {
  background-position: 100% 100%;
  color: white;
  text-decoration: none;
}



/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* New Header Classes */
.header {
  background: var(--color-white);
  box-shadow: none;
  padding: 0;
}

.top-bar {
  background: var(--color-white);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid #e0e0e0;
}

.top-bar .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-dark) !important;
  font-size: 1.5rem;
  text-decoration: none;
}

.navbar-dark {
  background: var(--color-dark) !important;
  border-bottom: none;
}

.navbar-dark .nav-link {
  color: var(--color-white) !important;
  font-weight: 600;
  margin: 0 var(--space-md);
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
  color: var(--brand-primary) !important;
}

.navbar-dark .nav-link.active {
  font-weight: 700;
}







/* Navigation Dividers */
.nav-with-dividers {
  align-items: center;
}

.nav-divider {
  display: flex;
  align-items: center;
  margin: 0 0.5rem;
}

.nav-divider-line {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

/* Hero Sections */
.hero {
  background: linear-gradient(135deg, #588DFF 0%, #8A5CFF 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.2px;
  margin-top: 0;
}

.hero .sub-tagline {
  color: #fff;
  opacity: 0.95;
  max-width: 820px;
  margin: 10px auto 22px;
  font-size: 1.05rem;
}

/* ROI Banner */
.roi-banner {
  background: #5CC8FF;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: 22px 24px 6px;
}

.kpi {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.kpi-figure {
  display: block;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  color: var(--heading);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.kpi-label {
  display: block;
  color: var(--body);
  opacity: 0.9;
}

/* Body Copy Sections */
.why-connect {
  padding: 22px 0;
}

.why-connect ul {
  list-style: none;
  padding: 0;
  margin: 14px auto 0;
  max-width: 800px;
  text-align: left;
}

.why-connect li {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin-bottom: 10px;
}

.why-connect strong {
  color: var(--heading);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  max-width: 760px;
  margin: 14px auto 0;
  text-align: left;
}

.steps li {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.step-number {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft);
  border: 2px solid var(--stroke);
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}

/* Integration Feature Bubbles */
.feature-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-top: 26px;
}

.integration-flow {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trigger,
.action {
  flex: 1 1 320px;
  background: var(--soft);
  border-radius: 10px;
  padding: 16px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--stroke);
  color: var(--ink);
}

.trigger ul,
.action ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.trigger li,
.action li {
  font-weight: 400;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.arrow {
  font-size: 2rem;
  color: #888;
}

/* Grid Layouts */
.video-grid,
.blog-grid {
  display: grid;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.video-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card .content {
  padding: 14px;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0;
  color: var(--heading);
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--ink);
}

.blog-card a {
  display: inline-block;
  color: #3a52ee;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.35rem;
}

/* Video Cards */
.video-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: var(--space-lg);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-button i {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-left: 4px;
}

.video-card:hover .play-button {
  background: var(--brand-primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card .content {
  padding: var(--space-lg);
}

.video-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
  line-height: 1.4;
}

.video-card p {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.video-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em; /* 3 lines * 1.5 line-height */
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
  color: var(--color-gray);
}

.watch-button {
  display: inline-block;
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.watch-button:hover {
  color: var(--brand-primary-dark);
  text-decoration: underline;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

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

.video-modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10000;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.close:hover {
  color: var(--brand-primary);
}

#videoPlayer {
  width: 100%;
  display: flex;
  justify-content: center;
}

#videoPlayer iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 450px;
}

/* Make video cards clickable */
.video-thumbnail {
  cursor: pointer;
  transition: transform 0.2s;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.watch-button {
  cursor: pointer;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s;
}

/* Stats Section */
.stats-section {
  background: var(--color-light);
  padding: var(--space-xxl) 0;
  margin: var(--space-xxl) 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-primary);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--color-dark);
  font-weight: 500;
}

/* Content Sections */
.section {
  padding: 80px 0;
}

/* List Styles */
.list,
.why-connect ul,
.workflows ol,
.how-it-works .steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list--bulleted li,
.why-connect li,
.workflows li,
.how-it-works .steps li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.list--bulleted li::before,
.workflows li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--midnight);
  font-weight: 700;
}

.list--numbered {
  counter-reset: item;
}

.list--numbered li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
  counter-increment: item;
}

.list--numbered li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  color: var(--midnight);
  font-weight: 700;
  width: 20px;
  text-align: center;
}

.how-it-works .step-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--color-white);
  font-weight: 700;
  margin-right: 8px;
}

/* FAQ Section */
.faq-item + .faq-item {
  margin-top: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

/* CTA Footer */
.cta-footer {
  text-align: center;
  background: var(--midnight);
  padding: 60px 0;
}

/* Spacing Helpers */
section {
  padding: 24px 0;
}

.mt-32 {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.center {
  text-align: center;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

/* New Footer Classes */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-xxl) 0 var(--space-xl);
  position: relative;
}

.footer h5 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-weight: 600;
  font-size: 1rem;
}

.footer a {
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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



/* Footer Sections */
.footer-phone,
.footer-support,
.footer-legal,
.footer-downloads,
.footer-social-net {
  margin-bottom: var(--space-lg);
}

.footer-phone p:first-child,
.footer-support p:first-child {
  margin-bottom: 0.5rem;
}

.footer-phone p:first-child {
  font-size: 0.9rem;
  color: var(--color-light);
}

.footer-legal p {
  font-size: 0.85rem;
  color: var(--color-light);
  line-height: 1.4;
}

.footer-downloads a {
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-downloads img {
  max-width: 140px;
  height: auto;
}

/* Social Networks */
.social-net {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-md);
}

.social-net li {
  margin: 0;
}

.social-net a {
  color: var(--color-white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-net a:hover {
  color: var(--brand-primary);
}

/* Footer Menu */
.menu-footer {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.menu-footer > li {
  margin: 0;
}

.menu-footer > li > a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: var(--space-sm);
  display: block;
}

.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-menu li {
  margin-bottom: 0.5rem;
}

.sub-menu a {
  color: var(--color-light);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sub-menu a:hover {
  color: var(--color-white);
}

/* Footer Navigation */


/* Footer Phone Number Styles */
.footer-phone-number {
  font-size: 33px;
  line-height: 110%;
  font-weight: bold;
  color: #ffffff;
}

.footer-support-label {
  color: #efba2c;
  font-size: 18px;
}

.footer-support-number {
  font-size: 33px;
  line-height: 30%;
  font-weight: bold;
  color: #ffffff;
}

/* ==========================================================================
   Interactive Elements
   ========================================================================== */

/* Chat Icon */
.chat-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: var(--transition);
  z-index: var(--z-chat);
}

.chat-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* Special Button Components */
.spl-btn-div {
  text-align: center;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.spl-btn-div .spl-btn-text {
  display: block;
  margin: 0;
  padding: 0;
}

.small-text {
  display: block;
  font-size: 0.5em;
  font-style: italic;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 991.98px) {
  .nav-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .integration-flow {
    flex-direction: column;
  }
  
  .trigger,
  .action {
    flex: 1 1 100%;
  }
  
  .kpi-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .sub-tagline {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .kpi {
    min-width: 180px;
    padding: 20px 24px;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.hidden {
  display: none;
  visibility: hidden;
}

.inline-form {
  display: inline;
}

.transparent-button {
  border: 0;
  background: transparent;
  color: white;
  opacity: 0.3;
  cursor: pointer;
}

.transparent-button:hover {
  opacity: 0.7;
}


  /* ----steps Component scope ---- */
  .tnt-steps {
    --accent:var(--brand-primary);        /* Textellent blue – tweak if needed */
    max-width: 600px;
    margin-inline: auto;
    padding: 0;
    list-style: none;
    counter-reset: step;
    font-family: system-ui, sans-serif;
  }

  .tnt-steps li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;

    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
  }

  /* Numbered circle */
  .tnt-steps li::before {
    counter-increment: step;
    content: counter(step);
    flex: 0 0 42px;
    height: 42px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
  }

  /* Step text */
  .tnt-steps li span {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Responsive tweak */
  @media (max-width: 500px) {
    .tnt-steps li {
      flex-direction: column;
      align-items: flex-start;
    }
    .tnt-steps li::before { margin-bottom: .5rem; }
  }


