﻿/* =========================================================================
   Towing Forward Clone — Frontend Stylesheet
   Matches the design language of towingforward.com
   ========================================================================= */

/* ── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  --tf-dark:        #0d1b2a;
  --tf-dark2:       #142236;
  --tf-dark3:       #1c3050;
  --tf-orange:      #e8730a;
  --tf-orange-h:    #f28820;
  --tf-light:       #f4f6f9;
  --tf-white:       #ffffff;
  --tf-text-w:      #e1ebf5;
  --tf-text:        #2c3e50;
  --tf-text-light:  #6b7c93;
  --tf-border:      #d8dee8;
  --tf-green:       #27ae60;
  --tf-radius:      8px;
  --tf-radius-lg:   16px;
  --tf-shadow:      0 4px 24px rgba(13,27,42,0.12);
  --tf-shadow-lg:   0 8px 40px rgba(13,27,42,0.20);
  --tf-transition:  0.3s ease;
  --tf-font-head:   'Montserrat', sans-serif;
  --tf-font-body:   'Open Sans', sans-serif;
  --tf-max-width:   1200px;
}

/* ── Theme container hard reset ─────────────────────────────────────────── */
/*
 * These rules neutralise any active theme's max-width containers so our
 * sections bleed edge-to-edge regardless of which theme is installed.
 * Targets the most common wrapper divs across Twenty-Twenty-X, Astra,
 * Hello Elementor, GeneratePress, Kadence, OceanWP, Neve, Storefront.
 */
body.tf-page-template,
body.tf-page-template #page,
body.tf-page-template .site,
body.tf-page-template #content,
body.tf-page-template .site-content,
body.tf-page-template .content-area,
body.tf-page-template main,
body.tf-page-template #main,
body.tf-page-template .site-main,
body.tf-page-template article,
body.tf-page-template .hentry,
body.tf-page-template .entry-content,
body.tf-page-template .post-content,
body.tf-page-template .page-content,
body.tf-page-template .wp-block-post-content,
body.tf-page-template .is-layout-constrained,
body.tf-page-template .wp-site-blocks,
body.tf-page-template .ast-container,
body.tf-page-template .container,
body.tf-page-template .site-container,
body.tf-page-template .inside-site-container,
body.tf-page-template .generate-columns-container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  display: block !important;
}

/* Kill any theme header / footer so only ours renders */
body.tf-page-template .site-header,
body.tf-page-template .site-footer,
body.tf-page-template #masthead,
body.tf-page-template #colophon,
body.tf-page-template .wp-block-template-part {
  display: none !important;
}

/* ── Reset / Base ───────────────────────────────────────────────────────── */
.tf-header, .tf-hero, .tf-mission, .tf-services, .tf-ai, .tf-towbook,
.tf-roadsider, .tf-process, .tf-offer, .tf-contact, .tf-footer,
.tf-header *, .tf-hero *, .tf-mission *, .tf-services *, .tf-ai *,
.tf-towbook *, .tf-roadsider *, .tf-process *, .tf-offer *,
.tf-contact *, .tf-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tf-header a, .tf-footer a, .tf-contact a { text-decoration: none; }

/* ── Utility ────────────────────────────────────────────────────────────── */
.tf-container {
  max-width: var(--tf-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tf-section        { padding: 90px 0; }
.tf-section-dark   { background: var(--tf-dark); color: var(--tf-white); }
.tf-section-light  { background: var(--tf-light); }
.tf-section-accent { background: var(--tf-orange); color: var(--tf-white); }

.tf-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.tf-section-header-light .tf-section-title,
.tf-section-header-light .tf-section-subtitle { color: var(--tf-white); }

.tf-eyebrow {
  display: inline-block;
  font-family: var(--tf-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tf-orange);
  margin-bottom: 10px;
}
.tf-eyebrow-light { color: rgba(255,255,255,0.8); }

.tf-section-title {
  font-family: var(--tf-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ebeff2;
  line-height: 1.2;
  margin-bottom: 16px;
}
.tf-section-title-d {
  font-family: var(--tf-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #142236;
  line-height: 1.2;
  margin-bottom: 16px;
}
.tf-section-subtitle {
  font-size: 1.1rem;
  color: var(--tf-text-light);
  max-width: 600px;
  margin: 0 auto;
}
.tf-lead {
  font-size: 1.15rem;
  color: var(--tf-text-w);
  line-height: 1.7;
  margin-bottom: 20px;
}
.tf-green { color: var(--tf-green); font-weight: 600; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.tf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tf-font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--tf-radius);
  cursor: pointer;
  transition: all var(--tf-transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.tf-btn-primary {
  background: var(--tf-orange);
  color: var(--tf-white);
  border-color: var(--tf-orange);
}
.tf-btn-primary:hover {
  background: var(--tf-orange-h);
  border-color: var(--tf-orange-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,115,10,0.4);
  color: var(--tf-white);
}
.tf-btn-secondary {
  background: transparent;
  color: var(--tf-white);
  border-color: var(--tf-white);
}
.tf-btn-secondary:hover {
  background: var(--tf-white);
  color: var(--tf-dark);
}
.tf-btn-outline {
  background: transparent;
  color: var(--tf-dark);
  border-color: var(--tf-dark);
}
.tf-btn-white {
  background: var(--tf-white);
  color: var(--tf-orange);
  border-color: var(--tf-white);
}
.tf-btn-white:hover {
  background: transparent;
  color: var(--tf-white);
}
.tf-btn-lg  { padding: 16px 36px; font-size: 16px; }
.tf-btn-sm  { padding: 9px 18px;  font-size: 13px; }
.tf-btn-full{ width: 100%; justify-content: center; }

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.tf-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--tf-transition);
  overflow: visible; /* allows logo to extend beyond the bar height */
}
.tf-header.tf-scrolled {
  background: var(--tf-dark);
  box-shadow: var(--tf-shadow);
}
.tf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.tf-logo { text-decoration: none; }
.tf-logo-text {
  font-family: var(--tf-font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--tf-white);
  letter-spacing: -0.5px;
}
.tf-logo-text span { color: var(--tf-orange); }

/* Logo image — white pill, doubled height, overflows the fixed header bar */
.tf-logo-img {
  height: 104px;        /* 2× the original 52px */
  width: auto;
  display: block;
  object-fit: contain;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  position: relative;   /* stays in flex flow but can visually overflow */
  z-index: 1001;        /* above the header border */
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
/* Smaller version used in the footer — keep footer logo normal-sized */
.tf-logo-img-sm {
  height: 52px;
  padding: 5px 10px;
}

/* On very small screens scale back proportionally */
@media (max-width: 480px) {
  .tf-logo-img     { height: 72px;  padding: 6px 10px; }
  .tf-logo-img-sm  { height: 40px;  padding: 4px 8px;  }
}

.tf-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}
.tf-nav a {
  font-family: var(--tf-font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color var(--tf-transition);
  position: relative;
}
.tf-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--tf-orange);
  transition: width var(--tf-transition);
}
.tf-nav a:hover,
.tf-nav a.active { color: var(--tf-white); }
.tf-nav a:hover::after,
.tf-nav a.active::after { width: 100%; }

.tf-header-cta {
  color: var(--tf-white) !important;
  border-color: var(--tf-orange) !important;
  background: var(--tf-orange) !important;
  font-size: 13px;
  padding: 10px 18px;
}
.tf-header-cta:hover { background: var(--tf-orange-h) !important; }

.tf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.tf-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--tf-white);
  border-radius: 2px;
  transition: all var(--tf-transition);
}
.tf-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.tf-hamburger.open span:nth-child(2) { opacity: 0; }
.tf-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.tf-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--tf-dark) no-repeat center center / cover;
  position: relative;
  padding-top: 72px;
}
.tf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.75) 100%);
}

/* ── Light hero variant ──────────────────────────────────────────────── */
.tf-hero.tf-hero-light {
  background: linear-gradient(120deg, #ffffff 0%, #f8faff 50%, #fff5eb 100%) !important;
}
.tf-hero.tf-hero-light .tf-hero-overlay {
  background: none !important;
}
.tf-hero.tf-hero-light .tf-hero-headline {
  color: var(--tf-dark) !important;
  text-shadow: none !important;
}
.tf-hero.tf-hero-light .tf-hero-mission {
  color: rgba(20,33,50,0.62) !important;
}
.tf-hero.tf-hero-light .tf-hero-stats {
  border-top-color: rgba(0,0,0,0.09) !important;
}
.tf-hero.tf-hero-light .tf-stat-label {
  color: rgba(20,33,50,0.52) !important;
}
.tf-hero.tf-hero-light .tf-scroll-down {
  color: rgba(0,0,0,0.30) !important;
}
/* Secondary button readable on white */
.tf-hero.tf-hero-light .tf-btn-secondary {
  color: var(--tf-dark) !important;
  border-color: rgba(20,33,50,0.30) !important;
}
.tf-hero.tf-hero-light .tf-btn-secondary:hover {
  background: var(--tf-dark) !important;
  color: #fff !important;
}

/* Two-column hero layout */
.tf-hero-two-col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 24px 80px;
  width: 100%;
}
.tf-hero-copy { display: flex; flex-direction: column; gap: 0; }

.tf-hero-headline {
  font-family: var(--tf-font-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--tf-white);
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.tf-hero-tagline {
  font-family: var(--tf-font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--tf-orange);
  margin-bottom: 16px;
}
.tf-hero-mission {
  font-size: 1rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 28px;
  line-height: 1.7;
}
.tf-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tf-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.tf-stat { text-align: center; }
.tf-stat-num {
  display: block;
  font-family: var(--tf-font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--tf-orange);
}
.tf-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tf-scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  animation: tf-bounce 2s infinite;
  text-decoration: none;
}
@keyframes tf-bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%    { transform: translateX(-50%) translateY(8px); }
}

/* ── AI BLOB ─────────────────────────────────────────────────────────────── */
.tf-hero-blob-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

/* Wrapper holds the blob + its rings at a fixed square */
.tf-blob-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.93);
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.22),
    0 0 0 36px rgba(255, 255, 255, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.32);
}

/* Orbit rings */
.tf-blob-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(232,115,10,0.25);
  animation: tf-ring-spin 10s linear infinite;
}
.tf-blob-ring-1 {
  inset: -30px;
  border-color: rgba(232,115,10,0.20);
  animation-duration: 12s;
}
.tf-blob-ring-2 {
  inset: -55px;
  border-color: rgba(232,115,10,0.12);
  animation-duration: 18s;
  animation-direction: reverse;
}
.tf-blob-ring-3 {
  inset: -82px;
  border-color: rgba(232,115,10,0.07);
  animation-duration: 26s;
}
@keyframes tf-ring-spin {
  to { transform: rotate(360deg); }
}

/* Floating icon particles — orbit the blob */
.tf-blob-particle {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(232,115,10,0.15);
  border: 1px solid rgba(232,115,10,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--tf-orange);
  font-size: 14px;
  backdrop-filter: blur(4px);
}
.tf-bp-1 { top: -14px;  left: 50%; transform: translateX(-50%); animation: tf-float 4s ease-in-out infinite; }
.tf-bp-2 { bottom: -14px; left: 50%; transform: translateX(-50%); animation: tf-float 4s ease-in-out infinite 1s; }
.tf-bp-3 { top: 50%; right: -14px; transform: translateY(-50%); animation: tf-float 4s ease-in-out infinite 2s; }
.tf-bp-4 { top: 50%; left: -14px; transform: translateY(-50%); animation: tf-float 4s ease-in-out infinite 3s; }

@keyframes tf-float {
  0%,100% { transform: translateX(-50%) scale(1);   }
  50%      { transform: translateX(-50%) scale(1.15) translateY(-6px); }
}

/* Core blob — morphing border-radius */
.tf-blob-core {
  position: absolute;
  inset: 0;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: radial-gradient(circle at 35% 32%,
    #ffe0a0 0%,
    #ffaa33 20%,
    #f97316 42%,
    #ea6000 62%,
    #c04800 80%,
    #8b3000 100%
  );
  border: 2px solid rgba(255, 140, 30, 0.6);
  box-shadow:
    0 0 50px rgba(249, 115, 22, 0.65),
    0 0 110px rgba(234, 96, 0, 0.35),
    0 0 180px rgba(200, 72, 0, 0.18),
    inset 0 0 40px rgba(255, 200, 80, 0.22);
  animation: tf-blob-morph 8s ease-in-out infinite, tf-blob-glow 4s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes tf-blob-morph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  20%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  40%  { border-radius: 50% 60% 30% 60% / 40% 50% 60% 50%; }
  60%  { border-radius: 70% 30% 60% 40% / 60% 40% 60% 30%; }
  80%  { border-radius: 40% 60% 50% 50% / 30% 60% 40% 70%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
@keyframes tf-blob-glow {
  from { box-shadow: 0 0 50px rgba(249,115,22,0.55), 0 0 110px rgba(234,96,0,0.28), inset 0 0 35px rgba(255,200,80,0.18); }
  to   { box-shadow: 0 0 80px rgba(249,115,22,0.80), 0 0 160px rgba(249,115,22,0.45), 0 0 240px rgba(234,96,0,0.20), inset 0 0 60px rgba(255,210,90,0.30); }
}

/* Inner content of blob */
.tf-blob-inner {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.tf-blob-robot {
  font-size: 2.8rem;
  color: var(--tf-orange);
  filter: drop-shadow(0 0 12px rgba(232,115,10,0.6));
}
.tf-blob-text {
  font-family: var(--tf-font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.tf-blob-text.tf-text-fade {
  opacity: 0;
  transform: translateY(8px);
}
.tf-blob-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ── Outward sonar pulse rings (V1 Pulser) ──────────────────────────────── */
.tf-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.6);
  animation: tf-pulse-out 3s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
.tf-pr-1 { animation-delay: 0s; }
.tf-pr-2 { animation-delay: 1s; }
.tf-pr-3 { animation-delay: 2s; }
@keyframes tf-pulse-out {
  0%   { transform: scale(0.88); opacity: 0.85; }
  100% { transform: scale(2.10); opacity: 0; }
}

/* ── Voice equalizer bars (V1 Pulser) ───────────────────────────────────── */
.tf-blob-eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin-bottom: 8px;
}
.tf-blob-eq .tf-eq-bar {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(to top, rgba(255,255,255,0.50), rgba(255,255,255,0.95));
  transform-origin: bottom center;
  animation: tf-eq-bounce 0.7s ease-in-out infinite alternate;
}
.tf-blob-eq .tf-eq-bar:nth-child(1) { height: 12px; animation-delay: 0s;    animation-duration: 0.55s; }
.tf-blob-eq .tf-eq-bar:nth-child(2) { height: 26px; animation-delay: 0.08s; animation-duration: 0.78s; }
.tf-blob-eq .tf-eq-bar:nth-child(3) { height: 38px; animation-delay: 0.04s; animation-duration: 0.50s; }
.tf-blob-eq .tf-eq-bar:nth-child(4) { height: 44px; animation-delay: 0.12s; animation-duration: 0.65s; }
.tf-blob-eq .tf-eq-bar:nth-child(5) { height: 32px; animation-delay: 0.06s; animation-duration: 0.85s; }
.tf-blob-eq .tf-eq-bar:nth-child(6) { height: 20px; animation-delay: 0.10s; animation-duration: 0.60s; }
.tf-blob-eq .tf-eq-bar:nth-child(7) { height: 14px; animation-delay: 0.02s; animation-duration: 0.72s; }
@keyframes tf-eq-bounce {
  from { transform: scaleY(0.22); opacity: 0.45; }
  to   { transform: scaleY(1);    opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO BLOB VARIANTS — shared wrapper + per-variant styles
═══════════════════════════════════════════════════════════════════════════ */

/* Shared variant wrapper — centres the design in the right column */
.tf-bv-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.93);
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.22),
    0 0 0 36px rgba(255, 255, 255, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.32);
}

/* ── V3: Neon Phone Ring ──────────────────────────────────────────────── */
.tf-bv-neon {
  flex-direction: column;
  gap: 14px;
}
.tf-np-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0,229,255,0.65);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.85);
  animation: tf-np-expand 2.8s ease-out infinite;
}
.tf-np-r1 { width: 90px;  height: 90px;  animation-delay: 0s; }
.tf-np-r2 { width: 150px; height: 150px; animation-delay: 0.7s;  border-color: rgba(0,229,255,0.42); }
.tf-np-r3 { width: 220px; height: 220px; animation-delay: 1.4s;  border-color: rgba(0,229,255,0.24); }
.tf-np-r4 { width: 290px; height: 290px; animation-delay: 2.1s;  border-color: rgba(0,229,255,0.12); }
@keyframes tf-np-expand {
  0%   { transform: translate(-50%,-50%) scale(0.8);  opacity: 0.9; }
  100% { transform: translate(-50%,-50%) scale(1.08); opacity: 0; }
}
.tf-np-core {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #004466 0%, #001122 65%, #000811 100%);
  border: 2px solid #00e5ff;
  box-shadow: 0 0 35px rgba(0,229,255,0.6), 0 0 70px rgba(0,229,255,0.25), inset 0 0 25px rgba(0,229,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  animation: tf-np-glow 2s ease-in-out infinite alternate;
}
@keyframes tf-np-glow {
  from { box-shadow: 0 0 35px rgba(0,229,255,0.55), inset 0 0 22px rgba(0,229,255,0.12); }
  to   { box-shadow: 0 0 65px rgba(0,229,255,0.85), 0 0 110px rgba(0,229,255,0.35), inset 0 0 40px rgba(0,229,255,0.22); }
}
.tf-np-icon { font-size: 2.6rem; color: #00e5ff; filter: drop-shadow(0 0 10px #00e5ff); }
.tf-np-badge {
  font-size: 0.62rem; color: #00e5ff; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  display: flex; align-items: center; gap: 4px;
}
.tf-np-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #00e5ff;
  animation: tf-blink 1s step-end infinite;
}
.tf-np-hint { font-size: 0.6rem; color: rgba(0,229,255,0.55); }
.tf-np-label-top {
  position: absolute;
  top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00e5ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0,229,255,0.7);
}

/* ── V4: Aurora Glass ─────────────────────────────────────────────────── */
.tf-bv-aurora {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  background: transparent; /* aurora layers supply their own bg */
  box-shadow:
    0 0 0 18px rgba(255, 252, 248, 0.88),
    0 0 0 38px rgba(255, 255, 255, 0.16),
    0 24px 60px rgba(0, 0, 0, 0.36);
  height: auto;
  min-height: 300px;
}
.tf-au-bg {
  position: absolute;
  inset: 0;
  background: #1a0040;
  overflow: hidden;
}
.tf-au-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.75;
  animation: tf-au-drift 8s ease-in-out infinite alternate;
}
.tf-au-l1 { width: 280px; height: 200px; background: #7c3aed; top: -40px; left: -60px; animation-delay: 0s; }
.tf-au-l2 { width: 240px; height: 180px; background: #0d9488; bottom: -30px; right: -40px; animation-delay: 2.5s; }
.tf-au-l3 { width: 180px; height: 180px; background: #2563eb; top: 30%; left: 20%; animation-delay: 1.2s; }
@keyframes tf-au-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,15px) scale(1.1); }
}
.tf-au-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tf-au-badge {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.9);
  letter-spacing: 0.8px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.tf-au-badge i { color: #4ade80; }
.tf-au-stats {
  display: flex; align-items: center; gap: 0; justify-content: space-around;
}
.tf-au-stat { text-align: center; flex: 1; }
.tf-au-num {
  display: block;
  font-size: 2rem; font-weight: 900; color: #fff;
  font-family: var(--tf-font-head);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,255,255,0.4);
}
.tf-au-num.tf-au-green { color: #4ade80; text-shadow: 0 0 16px rgba(74,222,128,0.5); }
.tf-au-num.tf-au-blue  { color: #60a5fa; text-shadow: 0 0 16px rgba(96,165,250,0.5); }
.tf-au-stat small { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.tf-au-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.tf-au-ring-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.tf-au-inner-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  animation: tf-ring-spin 10s linear infinite;
}
.tf-au-ir1 { inset: 0; }
.tf-au-ir2 { inset: -12px; border-color: rgba(255,255,255,0.12); animation-duration: 16s; animation-direction: reverse; }
.tf-au-mic { font-size: 1.8rem; color: #fff; filter: drop-shadow(0 0 10px rgba(255,255,255,0.5)); }
.tf-au-cta {
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  text-align: center; letter-spacing: 0.5px;
}

/* ── V5: Heartbeat Monitor ────────────────────────────────────────────── */
.tf-bv-hb {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 20px;   /* override 50% from base */
  padding: 16px;         /* white cream shows as frame around the dark screen */
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.22),
    0 0 0 30px rgba(255, 255, 255, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.32);
}
.tf-hb-screen {
  width: 100%;
  background: #050f05;
  border: 1.5px solid rgba(74,222,128,0.35);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 30px rgba(74,222,128,0.12), inset 0 0 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tf-hb-top {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(74,222,128,0.15);
  padding-bottom: 10px;
}
.tf-hb-live-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 800; color: #4ade80;
  text-transform: uppercase; letter-spacing: 1px;
}
.tf-hb-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: tf-blink 1s step-end infinite;
}
.tf-hb-agent-name { font-size: 0.75rem; color: rgba(74,222,128,0.7); flex: 1; }
.tf-hb-clock { font-size: 0.7rem; color: #4ade80; font-family: monospace; }
.tf-hb-svg {
  width: 100%; height: 70px; display: block;
  filter: drop-shadow(0 0 6px rgba(74,222,128,0.5));
}
.tf-hb-line-static {
  fill: none;
  stroke: #4ade80;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: tf-hb-draw 3s linear infinite;
}
@keyframes tf-hb-draw {
  0%   { stroke-dashoffset: 900; }
  70%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.tf-hb-dot {
  fill: #4ade80;
  filter: drop-shadow(0 0 4px #4ade80);
  animation: tf-hb-dot-move 3s linear infinite;
}
@keyframes tf-hb-dot-move {
  0%   { cx: 0;   opacity: 1; }
  70%  { cx: 340; opacity: 1; }
  100% { cx: 340; opacity: 0; }
}
.tf-hb-metrics {
  display: flex; flex-direction: column; gap: 5px;
}
.tf-hb-metric {
  font-size: 0.72rem; color: rgba(74,222,128,0.75);
  display: flex; align-items: center; gap: 7px;
  font-family: monospace;
}
.tf-hb-metric i { font-size: 0.7rem; }
.tf-hb-metric strong { color: #4ade80; }
.tf-hb-cta {
  font-size: 0.72rem; color: rgba(74,222,128,0.55);
  text-align: center; letter-spacing: 0.5px;
}

/* ── V6: Sound Wave Visualizer ────────────────────────────────────────── */
.tf-bv-sw { flex-direction: column; gap: 20px; }
.tf-sw-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--tf-orange);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: tf-sw-expand 3s ease-out infinite;
  pointer-events: none;
}
.tf-sw-r1 { width: 80px;  height: 80px;  animation-delay: 0s;    border-color: rgba(249,115,22,0.9); }
.tf-sw-r2 { width: 130px; height: 130px; animation-delay: 0.6s;  border-color: rgba(249,115,22,0.65); }
.tf-sw-r3 { width: 190px; height: 190px; animation-delay: 1.2s;  border-color: rgba(249,115,22,0.4); }
.tf-sw-r4 { width: 250px; height: 250px; animation-delay: 1.8s;  border-color: rgba(249,115,22,0.22); }
.tf-sw-r5 { width: 310px; height: 310px; animation-delay: 2.4s;  border-color: rgba(249,115,22,0.1); }
@keyframes tf-sw-expand {
  0%   { transform: translate(-50%,-50%) scale(0.7); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1);   opacity: 0; }
}
.tf-sw-core {
  position: relative;
  z-index: 2;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #c2410c 0%, #7c2d12 55%, #1c0a00 100%);
  border: 2px solid rgba(249,115,22,0.7);
  box-shadow: 0 0 40px rgba(249,115,22,0.55), 0 0 80px rgba(249,115,22,0.25), inset 0 0 25px rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: tf-blob-glow 3s ease-in-out infinite alternate;
}
.tf-sw-icon { font-size: 2.5rem; color: #fb923c; filter: drop-shadow(0 0 10px rgba(249,115,22,0.7)); }
.tf-sw-label {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tf-sw-status {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: #fb923c;
}
.tf-sw-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fb923c; animation: tf-blink 1s step-end infinite;
}
.tf-sw-hint { font-size: 0.72rem; color: rgba(255,255,255,0.55); }

/* ── V7: Terminal Console ─────────────────────────────────────────────── */
.tf-bv-tm {
  width: 100%;
  max-width: 360px;
  height: auto;
  flex-direction: column;
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid rgba(110,231,183,0.25);
  overflow: hidden;
  font-family: 'Courier New', monospace;
  box-shadow:
    0 0 0 18px rgba(255, 252, 248, 0.88),
    0 0 0 38px rgba(255, 255, 255, 0.14),
    0 0 30px rgba(110, 231, 183, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.42);
}
.tf-tm-bar {
  background: #1a1a1a;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tf-tm-btn {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.tm-red    { background: #ff5f57; }
.tm-yellow { background: #ffbd2e; }
.tm-green  { background: #28ca41; }
.tf-tm-title {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
}
.tf-tm-body {
  padding: 10px 12px;
  min-height: 170px;
  max-height: 210px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tf-tm-line {
  font-size: 0.72rem;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  animation: tf-tm-appear 0.25s forwards;
}
@keyframes tf-tm-appear { to { opacity: 1; } }
.tf-tm-prompt { color: rgba(110,231,183,0.45); }
.tf-tm-cursor-line {
  padding: 4px 12px 10px;
  font-size: 0.72rem;
  color: rgba(110,231,183,0.5);
  font-family: monospace;
}
.tf-tm-cursor {
  display: inline-block;
  color: #6ee7b7;
  animation: tf-blink 1s step-end infinite;
}

/* ── V8: Stats Dashboard ──────────────────────────────────────────────── */
.tf-bv-sd {
  width: 100%;
  max-width: 340px;
  height: auto;
  min-height: 280px;
  flex-direction: column;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  gap: 16px;
  box-shadow:
    0 0 0 18px rgba(255, 252, 248, 0.88),
    0 0 0 38px rgba(255, 255, 255, 0.14),
    0 24px 60px rgba(0, 0, 0, 0.42);
}
.tf-sd-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}
.tf-sd-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  animation: tf-blink 1s step-end infinite; display: inline-block;
}
.tf-sd-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tf-sd-metric { text-align: center; }
.tf-sd-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--tf-font-head);
  line-height: 1;
}
.tf-sd-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-top: 3px; display: block; }
.tf-sd-chart { flex: 1; }
.tf-sd-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  padding-top: 4px;
}
.tf-sd-bar {
  flex: 1;
  background: var(--c, #f97316);
  border-radius: 3px 3px 0 0;
  height: var(--h, 50%);
  opacity: 0.65;
  transition: opacity .3s;
  position: relative;
}
.tf-sd-bar-today { opacity: 1 !important; box-shadow: 0 0 12px rgba(249,115,22,0.5); }
.tf-sd-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.tf-sd-cta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 14px;
}

/* ── V9: AI Chat Demo ─────────────────────────────────────────────────── */
.tf-bv-chat {
  width: 100%;
  max-width: 340px;
  height: auto;
  min-height: 300px;
  flex-direction: column;
  background: #1e1b4b;
  border-radius: 16px;
  border: 1px solid rgba(129,140,248,0.25);
  overflow: hidden;
  box-shadow:
    0 0 0 18px rgba(255, 252, 248, 0.88),
    0 0 0 38px rgba(255, 255, 255, 0.14),
    0 24px 60px rgba(0, 0, 0, 0.42);
}
.tf-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tf-chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  box-shadow: 0 0 12px rgba(99,102,241,0.5);
}
.tf-chat-info { flex: 1; }
.tf-chat-info strong { display: block; font-size: 0.82rem; color: #fff; }
.tf-chat-online {
  font-size: 0.65rem;
  color: #4ade80;
  display: flex; align-items: center; gap: 4px;
}
.tf-chat-online span {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  animation: tf-blink 1s step-end infinite;
  display: inline-block;
}
.tf-chat-badge {
  font-size: 0.6rem; font-weight: 700; color: #818cf8;
  border: 1px solid rgba(129,140,248,0.4);
  padding: 2px 7px; border-radius: 10px;
}
.tf-chat-msgs {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
  max-height: 240px;
  overflow: hidden;
}
.tf-chat-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  line-height: 1.45;
  animation: tf-chat-pop 0.25s ease forwards;
}
@keyframes tf-chat-pop {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tf-chat-customer {
  align-self: flex-end;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-bottom-right-radius: 4px;
}
.tf-chat-ai {
  align-self: flex-start;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px rgba(79,70,229,0.35);
}
.tf-chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  height: 36px;
}
.tf-chat-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(129,140,248,0.6);
  animation: tf-typing-bounce 1.2s ease-in-out infinite;
}
.tf-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.tf-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tf-typing-bounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* ── V10: Galaxy Vortex ───────────────────────────────────────────────── */
.tf-bv-vortex { overflow: hidden; }
.tf-vx-stars { position: absolute; inset: 0; pointer-events: none; }
.tf-vx-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: tf-vx-twinkle 2s ease-in-out infinite alternate;
}
@keyframes tf-vx-twinkle {
  from { opacity: 0.2; transform: scale(0.8); }
  to   { opacity: 1;   transform: scale(1.2); }
}
.tf-vx-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(168,85,247,0.5);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: tf-ring-spin 12s linear infinite;
}
.tf-vx-r1 { width: 110px; height: 110px; border-color: rgba(168,85,247,0.6); animation-duration: 8s; }
.tf-vx-r2 { width: 170px; height: 170px; border-color: rgba(139,92,246,0.4); animation-duration: 13s; animation-direction: reverse; }
.tf-vx-r3 { width: 234px; height: 234px; border-color: rgba(109,40,217,0.25); animation-duration: 20s; }
.tf-vx-r4 { width: 298px; height: 298px; border-color: rgba(91,33,182,0.12); animation-duration: 30s; animation-direction: reverse; }
.tf-vx-core {
  position: relative;
  z-index: 2;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #6d28d9 0%, #3b0764 55%, #0e001f 100%);
  border: 2px solid rgba(168,85,247,0.6);
  box-shadow: 0 0 50px rgba(168,85,247,0.55), 0 0 100px rgba(109,40,217,0.3), inset 0 0 30px rgba(168,85,247,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center;
  animation: tf-vx-pulse 4s ease-in-out infinite alternate;
}
@keyframes tf-vx-pulse {
  from { box-shadow: 0 0 50px rgba(168,85,247,0.5), inset 0 0 25px rgba(168,85,247,0.12); }
  to   { box-shadow: 0 0 80px rgba(168,85,247,0.8), 0 0 140px rgba(109,40,217,0.4), inset 0 0 50px rgba(168,85,247,0.22); }
}
.tf-vx-icon { font-size: 2.4rem; color: #d8b4fe; filter: drop-shadow(0 0 10px rgba(168,85,247,0.7)); }
.tf-vx-text { font-size: 0.82rem; font-weight: 700; color: #e9d5ff; font-family: var(--tf-font-head); }
.tf-vx-sub  { font-size: 0.62rem; color: rgba(216,180,254,0.6); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── Shared blink utility ─────────────────────────────────────────────── */
@keyframes tf-blink { 50% { opacity: 0; } }

/* ── LIVE DISPATCH CARD ──────────────────────────────────────────────────── */

/* Floating service pills that drift around the card */
.tf-dc-pills {
  position: absolute;
  inset: -60px;
  pointer-events: none;
  z-index: 0;
}
.tf-dc-pill {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  animation: tf-dc-drift 6s ease-in-out infinite;
}
.tf-dc-pill i { margin-right: 5px; color: var(--tf-orange); }
.tf-dcp-1 { top: 0;   left: -10px;  animation-delay: 0s;   animation-duration: 5.5s; }
.tf-dcp-2 { top: 20%; right: -20px; animation-delay: 1.2s; animation-duration: 6.8s; }
.tf-dcp-3 { bottom: 30%; left: -30px; animation-delay: 2.1s; animation-duration: 5.2s; }
.tf-dcp-4 { bottom: 8%; right: -10px; animation-delay: 0.7s; animation-duration: 7s; }
.tf-dcp-5 { top: 52%; left: -40px;  animation-delay: 3s;   animation-duration: 6s; }
@keyframes tf-dc-drift {
  0%,100% { transform: translateY(0px)   rotate(-1deg); }
  33%     { transform: translateY(-8px)  rotate(1deg); }
  66%     { transform: translateY(4px)   rotate(-0.5deg); }
}

/* Main card */
.tf-dc-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 0;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow:
    0 0 0 18px rgba(255, 252, 248, 0.88),
    0 0 0 38px rgba(255, 255, 255, 0.14),
    0 24px 60px rgba(0, 0, 0, 0.36);
}

/* Header bar */
.tf-dc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tf-dc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: tf-dc-ping 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tf-dc-ping {
  0%,100% { box-shadow: 0 0 0 0   rgba(74,222,128,0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
}
.tf-dc-header-text {
  flex: 1;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.tf-dc-today-badge {
  background: rgba(232,115,10,0.18);
  border: 1px solid rgba(232,115,10,0.3);
  border-radius: 10px;
  padding: 2px 9px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #e8730a;
}

/* Active call block */
.tf-dc-call-block {
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tf-dc-live-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #4ade80;
  margin-bottom: 10px;
}
.tf-dc-caller-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.tf-dc-caller-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(232,115,10,0.12);
  border: 1px solid rgba(232,115,10,0.28);
  display: flex; align-items: center; justify-content: center;
  color: #e8730a;
  font-size: 1rem;
  flex-shrink: 0;
  animation: tf-dc-ping-orange 2s ease-in-out infinite;
}
@keyframes tf-dc-ping-orange {
  0%,100% { box-shadow: 0 0 0 0   rgba(232,115,10,0.45); }
  50%      { box-shadow: 0 0 0 8px rgba(232,115,10,0); }
}
.tf-dc-caller-info { display: flex; flex-direction: column; gap: 2px; }
.tf-dc-caller-num {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: opacity 0.28s;
}
.tf-dc-caller-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.28s;
}

/* Waveform */
.tf-dc-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}
.tf-dc-wbar {
  width: 3px;
  border-radius: 2px;
  background: #e8730a;
  height: var(--h, 8px);
  animation: tf-dc-wave-anim var(--dur, 0.6s) ease-in-out infinite alternate;
}
@keyframes tf-dc-wave-anim {
  from { height: 4px; opacity: 0.3; }
  to   { height: var(--h, 24px); opacity: 0.9; }
}

/* Activity feed */
.tf-dc-feed-label {
  padding: 10px 18px 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.tf-dc-feed {
  padding: 0 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 90px;
}
.tf-dc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.tf-dc-item.tf-dc-item-on { opacity: 1; transform: translateX(0); }
.tf-dc-item i { font-size: 0.8rem; flex-shrink: 0; width: 14px; text-align: center; }

/* Stats bar */
.tf-dc-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.tf-dc-stat { text-align: center; }
.tf-dc-stat-n {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #e8730a;
  line-height: 1;
}
.tf-dc-stat-l {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tf-dc-stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.08);
}

/* ── CALLBACK CARD ───────────────────────────────────────────────────────── */
.tf-callback-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--tf-radius-lg);
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.tf-callback-label {
  font-family: var(--tf-font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tf-callback-label i { color: var(--tf-orange); }
.tf-callback-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.tf-callback-row input[type="tel"] {
  flex: 1;
  width:120px;
  padding: 13px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--tf-radius);
  background: rgba(255,255,255,0.08);
  color: var(--tf-white);
  font-family: var(--tf-font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--tf-transition);
}
.tf-callback-row input[type="tel"]::placeholder { color: rgba(255,255,255,0.35); }
.tf-callback-row input[type="tel"]:focus { border-color: var(--tf-orange); }
.tf-callback-btn {
  flex-shrink: 0;
  padding: 13px 12px;
  font-size: 14px;
  white-space: nowrap;
}
.tf-callback-status {
  font-size: 13px;
  font-weight: 600;
  min-height: 20px;
  padding: 4px 0;
  color: var(--tf-green);
  display: none;
}
.tf-callback-status.error { color: #e74c3c; }
.tf-callback-status.success { display: block; }
.tf-callback-status.error   { display: block; }
.tf-callback-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  margin-top: 8px;
}

/* ── MISSION ────────────────────────────────────────────────────────────── */
.tf-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tf-mission-text p { color: var(--tf-text-w); line-height: 1.8; margin-bottom: 20px; }
.tf-quote {
  border-left: 4px solid var(--tf-orange);
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--tf-text-light);
  background: var(--tf-light);
  border-radius: 0 var(--tf-radius) var(--tf-radius) 0;
  font-size: 1.05rem;
}
.tf-mission-benefits h3 {
  font-family: var(--tf-font-head);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--tf-white);
}
.tf-benefit-list { list-style: none; }
.tf-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--tf-border);
  font-size: 0.97rem;
  color: var(--tf-text-w);
}
.tf-benefit-list li:last-child { border-bottom: none; }
.tf-benefit-list li i {
  color: var(--tf-orange);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── SERVICES GRID ──────────────────────────────────────────────────────── */
.tf-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tf-service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--tf-radius-lg);
  padding: 36px 28px;
  transition: all var(--tf-transition);
  position: relative;
  overflow: hidden;
}
.tf-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tf-orange);
  transform: scaleX(0);
  transition: transform var(--tf-transition);
}
.tf-service-card:hover { transform: translateY(-6px); border-color: rgba(232,115,10,0.3); }
.tf-service-card:hover::before { transform: scaleX(1); }
.tf-service-icon {
  width: 60px; height: 60px;
  background: rgba(232,115,10,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--tf-orange);
}
.tf-service-title {
  font-family: var(--tf-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 12px;
}
.tf-service-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── AI SECTION ─────────────────────────────────────────────────────────── */
.tf-ai-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.tf-feature-list { list-style: none; margin: 24px 0 32px; }
.tf-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.97rem;
  color: var(--tf-text-w);
  border-bottom: 1px solid var(--tf-border);
}
.tf-feature-list li:last-child { border-bottom: none; }
.tf-feature-icon {
  width: 34px; height: 34px;
  background: rgba(232,115,10,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tf-orange);
  flex-shrink: 0;
}
.tf-ai-badge-wrap { display: flex; justify-content: center; }
.tf-ai-card {
  background: var(--tf-dark);
  color: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--tf-shadow-lg);
  max-width: 340px;
  width: 100%;
}
.tf-ai-badge {
  background: var(--tf-orange);
  border-radius: var(--tf-radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.tf-badge-value {
  font-family: var(--tf-font-head);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}
.tf-badge-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 4px;
}
.tf-ai-card-caption {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.tf-ai-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.tf-ai-robot { font-size: 3rem; color: var(--tf-orange); }
.tf-ai-pulse {
  width: 14px; height: 14px;
  background: var(--tf-green);
  border-radius: 50%;
  animation: tf-pulse 1.5s infinite;
}
@keyframes tf-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(39,174,96,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(39,174,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(39,174,96,0); }
}
.tf-ai-available {
  font-size: 0.88rem;
  color: var(--tf-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ── TOWBOOK ────────────────────────────────────────────────────────────── */
.tf-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.tf-split-visual {
  display: flex;
  justify-content: center;
}
.tf-icon-block {
  background: var(--tf-dark);
  color: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--tf-shadow-lg);
}
.tf-icon-xl { font-size: 5rem; color: var(--tf-orange); margin-bottom: 12px; display: block; }
.tf-icon-block span {
  font-family: var(--tf-font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.tf-split-content p { color: var(--tf-text); line-height: 1.8; margin-bottom: 20px; }
.tf-check-list { list-style: none; margin-bottom: 28px; }
.tf-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.97rem;
  color: var(--tf-text);
}
.tf-check-list li i { color: var(--tf-orange); }

/* ── ROADSIDER BANNER ───────────────────────────────────────────────────── */
.tf-roadsider-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.tf-roadsider-icon {
  font-size: 3rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.tf-roadsider-content { flex: 1; min-width: 280px; }
.tf-roadsider-content h2 {
  font-family: var(--tf-font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 10px;
}
.tf-roadsider-content p { color: rgba(255,255,255,0.85); line-height: 1.7; }

/* ── PROCESS TIMELINE ───────────────────────────────────────────────────── */
.tf-process-timeline {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.tf-process-timeline::before {
  content: '';
  position: absolute;
  top: 38px; left: 10%; right: 10%;
  height: 2px;
  background: rgba(232,115,10,0.4);
  z-index: 0;
}
.tf-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.tf-step-number {
  width: 76px; height: 76px;
  background: var(--tf-orange);
  color: var(--tf-white);
  font-family: var(--tf-font-head);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(232,115,10,0.2);
}
.tf-step-body h3 {
  font-family: var(--tf-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 10px;
}
.tf-step-body p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── OFFER ──────────────────────────────────────────────────────────────── */
.tf-offer-card {
  background: linear-gradient(135deg, var(--tf-dark) 0%, var(--tf-dark3) 100%);
  border-radius: var(--tf-radius-lg);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  border: 1px solid rgba(232,115,10,0.3);
  box-shadow: var(--tf-shadow-lg);
  position: relative;
  overflow: hidden;
}
.tf-offer-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(232,115,10,0.08);
  border-radius: 50%;
}
.tf-offer-badge-wrap { flex-shrink: 0; }
.tf-offer-badge {
  background: var(--tf-orange);
  color: var(--tf-white);
  font-family: var(--tf-font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
}
.tf-offer-content { flex: 1; min-width: 280px; }
.tf-offer-content h2 {
  font-family: var(--tf-font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 10px;
}
.tf-offer-content p { color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.tf-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.tf-contact-form-wrap {
  background: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: 40px;
  box-shadow: var(--tf-shadow);
}
.tf-form-row { margin-bottom: 20px; }
.tf-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tf-form-group label {
  display: block;
  font-family: var(--tf-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--tf-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tf-form-group label .required { color: var(--tf-orange); }
.tf-form-group input,
.tf-form-group select,
.tf-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--tf-border);
  border-radius: var(--tf-radius);
  font-family: var(--tf-font-body);
  font-size: 15px;
  color: var(--tf-text);
  background: var(--tf-white);
  transition: border-color var(--tf-transition), box-shadow var(--tf-transition);
  outline: none;
  appearance: none;
}
.tf-form-group input:focus,
.tf-form-group select:focus,
.tf-form-group textarea:focus {
  border-color: var(--tf-orange);
  box-shadow: 0 0 0 3px rgba(232,115,10,0.15);
}
.tf-form-group textarea { resize: vertical; min-height: 120px; }
.tf-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%236b7c93'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.tf-form-status {
  padding: 12px 16px;
  border-radius: var(--tf-radius);
  font-size: 14px;
  font-weight: 600;
  display: none;
  margin-top: 12px;
}
.tf-form-status.success {
  display: block;
  background: rgba(39,174,96,0.1);
  color: var(--tf-green);
  border: 1px solid rgba(39,174,96,0.3);
}
.tf-form-status.error {
  display: block;
  background: rgba(231,76,60,0.1);
  color: #c0392b;
  border: 1px solid rgba(231,76,60,0.3);
}

.tf-info-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: 36px;
  box-shadow: var(--tf-shadow);
  margin-bottom: 24px;
}
.tf-info-card h3 {
  font-family: var(--tf-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tf-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tf-orange);
}
.tf-contact-details { list-style: none; }
.tf-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--tf-border);
  font-size: 0.95rem;
  color: var(--tf-text);
}
.tf-contact-details li:last-child { border-bottom: none; }
.tf-contact-details li i {
  color: var(--tf-orange);
  font-size: 1.05rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.tf-contact-details a { color: var(--tf-text); text-decoration: none; }
.tf-contact-details a:hover { color: var(--tf-orange); }

.tf-social-links { margin-top: 24px; }
.tf-social-links h4,
.tf-footer h4 {
  font-family: var(--tf-font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tf-text-light);
  margin-bottom: 12px;
}
.tf-social-icons {
  display: flex;
  gap: 10px;
}
.tf-social-icons a {
  width: 38px; height: 38px;
  background: var(--tf-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--tf-dark);
  text-decoration: none;
  transition: all var(--tf-transition);
}
.tf-social-icons a:hover {
  background: var(--tf-orange);
  color: var(--tf-white);
  transform: translateY(-2px);
}
.tf-footer .tf-social-icons a {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.tf-footer .tf-social-icons a:hover {
  background: var(--tf-orange);
  color: var(--tf-white);
}

.tf-office-hours {
  background: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: 28px 36px;
  box-shadow: var(--tf-shadow);
}
.tf-office-hours h3 {
  font-family: var(--tf-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tf-dark);
  margin-bottom: 16px;
}
.tf-office-hours ul { list-style: none; }
.tf-office-hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--tf-border);
  font-size: 0.9rem;
  color: var(--tf-text);
}
.tf-office-hours li:last-child { border-bottom: none; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.tf-footer {
  background: var(--tf-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.tf-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tf-footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.55);
}
.tf-footer h4 { color: var(--tf-white); margin-bottom: 16px; margin-top: 4px; }
.tf-footer-links ul,
.tf-footer-services ul,
.tf-footer-contact ul { list-style: none; }
.tf-footer-links li,
.tf-footer-services li,
.tf-footer-contact li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.tf-footer-links a { color: rgba(255,255,255,0.55); transition: color var(--tf-transition); }
.tf-footer-links a:hover { color: var(--tf-orange); }
.tf-footer-contact li { display: flex; align-items: center; gap: 10px; }
.tf-footer-contact i { color: var(--tf-orange); }
.tf-footer-contact a { color: rgba(255,255,255,0.55); }
.tf-footer-contact a:hover { color: var(--tf-orange); }
.tf-footer-cta { margin-top: 20px; }

.tf-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.tf-footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color var(--tf-transition);
}
.tf-footer-legal a:hover { color: var(--tf-orange); }

/* ── RESULTS STATS BANNER ───────────────────────────────────────────────── */
.tf-results {
  background: var(--tf-orange);
  padding: 48px 0;
}
.tf-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.tf-result-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.tf-result-item:last-child { border-right: none; }
.tf-result-value {
  font-family: var(--tf-font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--tf-white);
  line-height: 1;
}
.tf-result-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  font-weight: 500;
}

/* ── CALL FLOWS ──────────────────────────────────────────────────────────── */
.tf-flow-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.tf-flow-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--tf-radius);
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--tf-font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tf-transition);
}
.tf-flow-tab:hover { border-color: var(--tf-orange); color: var(--tf-white); }
.tf-flow-tab.active {
  background: var(--tf-orange);
  border-color: var(--tf-orange);
  color: var(--tf-white);
}
.tf-flow-panel { display: none; }
.tf-flow-panel.active { display: block; }

.tf-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tf-flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: tf-fade-up 0.5s ease both;
}
@keyframes tf-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tf-flow-step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(232,115,10,0.15);
  border: 2px solid rgba(232,115,10,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--tf-orange);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.tf-flow-step-num {
  display: inline-block;
  font-family: var(--tf-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--tf-orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tf-flow-step-body h3 {
  font-family: var(--tf-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 8px;
}
.tf-flow-step-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
}

/* ── CALL SCENARIOS ──────────────────────────────────────────────────────── */
.tf-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tf-scenario-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: 28px;
  box-shadow: var(--tf-shadow);
  border: 1px solid var(--tf-border);
  transition: transform var(--tf-transition), box-shadow var(--tf-transition);
}
.tf-scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tf-shadow-lg);
}
.tf-scenario-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tf-border);
}
.tf-scenario-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.tf-scenario-title {
  font-family: var(--tf-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tf-dark);
  margin-bottom: 4px;
}
.tf-scenario-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.tf-scenario-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tf-scenario-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--tf-text);
  line-height: 1.5;
}
.tf-scenario-steps li i {
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── WORKFLOW ────────────────────────────────────────────────────────────── */
.tf-wf-nodes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.tf-wf-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--tf-radius-lg);
  padding: 32px 28px;
  text-align: center;
  width: 220px;
  flex-shrink: 0;
  transition: border-color var(--tf-transition);
}
.tf-wf-node:hover { border-color: rgba(232,115,10,0.5); }
.tf-wf-node-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}
.tf-wf-caller   { background: rgba(52,152,219,0.15); color: #3498db; border: 2px solid rgba(52,152,219,0.3); }
.tf-wf-ai       { background: rgba(232,115,10,0.15); color: var(--tf-orange); border: 2px solid rgba(232,115,10,0.4); }
.tf-wf-software { background: rgba(39,174,96,0.15);  color: var(--tf-green);  border: 2px solid rgba(39,174,96,0.3); }
.tf-wf-node h3 {
  font-family: var(--tf-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 8px;
}
.tf-wf-node p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

.tf-wf-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  color: var(--tf-orange);
  flex-shrink: 0;
}
.tf-wf-arrow-line {
  display: block;
  width: 60px; height: 2px;
  background: linear-gradient(to right, rgba(232,115,10,0.3), var(--tf-orange));
  position: relative;
}
.tf-wf-arrow-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.tf-wf-arrow > .fa-chevron-right { font-size: 1rem; }

.tf-wf-decisions { margin-bottom: 48px; }
.tf-wf-decision-title {
  font-family: var(--tf-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.tf-wf-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tf-wf-decision {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-radius: var(--tf-radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.tf-wf-auto     { background: rgba(39,174,96,0.08);  border-color: rgba(39,174,96,0.2); }
.tf-wf-auto > i { color: var(--tf-green); font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.tf-wf-escalate { background: rgba(231,76,60,0.08);  border-color: rgba(231,76,60,0.2); }
.tf-wf-escalate > i { color: #e74c3c; font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.tf-wf-schedule { background: rgba(52,152,219,0.08); border-color: rgba(52,152,219,0.2); }
.tf-wf-schedule > i { color: #3498db; font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.tf-wf-decision div strong {
  display: block;
  font-family: var(--tf-font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tf-white);
  margin-bottom: 6px;
}
.tf-wf-decision div span { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.tf-wf-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Fade-in animation ──────────────────────────────────────────────────── */
.tf-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tf-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tf-hero-two-col { grid-template-columns: 1fr; gap: 40px; padding: 90px 24px 60px; }
  .tf-hero-copy { text-align: center; align-items: center; }
  .tf-hero-ctas { justify-content: center; }
  .tf-hero-stats { justify-content: center; }
  .tf-blob-wrap { width: 260px; height: 260px; }
  .tf-services-grid { grid-template-columns: repeat(2,1fr); }
  .tf-scenarios-grid { grid-template-columns: repeat(2,1fr); }
  .tf-flow-steps { grid-template-columns: repeat(2,1fr); }
  .tf-results-grid { grid-template-columns: repeat(2,1fr); }
  .tf-wf-nodes { gap: 8px; }
  .tf-wf-arrow-line { width: 30px; }
  .tf-wf-decision-grid { grid-template-columns: 1fr; }
  .tf-process-timeline { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .tf-process-timeline::before { display: none; }
  .tf-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .tf-section { padding: 60px 0; }
  .tf-hero-two-col { grid-template-columns: 1fr; }
  .tf-blob-wrap { width: 220px; height: 220px; }
  .tf-blob-robot { font-size: 2rem; }
  .tf-blob-text { font-size: 0.9rem; }
  .tf-callback-card { max-width: 100%; }
  .tf-hamburger { display: flex; }
  .tf-nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--tf-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    display: none;
    flex-direction: column;
  }
  .tf-nav.open { display: flex; }
  .tf-nav ul { flex-direction: column; gap: 0; }
  .tf-nav a { display: block; padding: 14px 24px; }
  .tf-header-cta { display: none; }
  .tf-mission-grid,
  .tf-ai-grid,
  .tf-split-grid,
  .tf-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .tf-services-grid { grid-template-columns: 1fr; }
  .tf-scenarios-grid { grid-template-columns: 1fr; }
  .tf-flow-steps { grid-template-columns: 1fr; }
  .tf-flow-tabs { flex-direction: column; align-items: center; }
  .tf-results-grid { grid-template-columns: repeat(2,1fr); }
  .tf-result-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .tf-result-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .tf-result-item:last-child { border-bottom: none; }
  .tf-wf-nodes { flex-direction: column; gap: 16px; }
  .tf-wf-arrow { flex-direction: row; transform: rotate(90deg); }
  .tf-wf-arrow-label { display: none; }
  .tf-process-timeline { grid-template-columns: 1fr; }
  .tf-offer-card { flex-direction: column; text-align: center; padding: 36px 24px; }
  .tf-roadsider-inner { flex-direction: column; text-align: center; }
  .tf-form-row-2 { grid-template-columns: 1fr; }
  .tf-footer-grid { grid-template-columns: 1fr; }
  .tf-footer-bottom { flex-direction: column; text-align: center; }
  .tf-hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .tf-hero-ctas { flex-direction: column; align-items: center; }
  .tf-contact-form-wrap,
  .tf-info-card,
  .tf-office-hours { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════════════════════════════
   SELECTIVE ROUTING  — "Only the Calls You Want"  (towpilot.ai style)
════════════════════════════════════════════════════════════════════════ */
.tf-selective { background: var(--tf-dark); }

/* section header override for light text on dark bg */
.tf-selective .tf-section-title { color: #fff; }
.tf-selective .tf-section-subtitle { color: rgba(255,255,255,0.6); }

/* 3-column flow diagram */
.tf-sr-diagram {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 0 24px;
  align-items: stretch; /* all columns same height */
  margin-top: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
}
.tf-sr-col-head {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
  text-align: center;
}
.tf-sr-transfer-head { margin-top: 20px; }

/* ── Callers column ── */
.tf-sr-callers { display: flex; flex-direction: column; }
.tf-sr-caller-list { display: flex; flex-direction: column; gap: 10px; }

@keyframes tf-sr-bubble-in {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.tf-sr-caller-bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #e1ebf5;
  animation: tf-sr-bubble-in 0.5s ease both;
  animation-delay: calc(var(--idx) * 0.15s);
}
.tf-sr-caller-bubble i { color: var(--tf-orange); flex-shrink: 0; margin-top: 2px; }

/* ── Active states — lit up when the dot visits each element ── */
.tf-sr-caller-active {
  background: rgba(232,115,10,0.18) !important;
  border-color: rgba(232,115,10,0.5) !important;
  transition: background 0.25s, border-color 0.25s;
}
.tf-sr-chip-active {
  background: rgba(232,115,10,0.25) !important;
  border-color: rgba(232,115,10,0.7) !important;
  color: #fff !important;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.tf-sr-out-active {
  box-shadow: 0 0 14px rgba(232,115,10,0.45);
  transform: scale(1.03);
  transition: box-shadow 0.25s, transform 0.25s;
}

/* ── AI box ── */
.tf-sr-ai-box {
  display: flex;
  flex-direction: column;
}
.tf-sr-ai-core {
  flex: 1; /* stretch to match tallest column */
  width: 90%;
  background: rgba(232,115,10,0.08);
  border: 1px solid rgba(232,115,10,0.3);
  border-radius: 16px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tf-sr-ai-icon {
  position: relative;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.tf-sr-ai-icon i {
  font-size: 1.5rem;
  color: var(--tf-orange);
  position: relative;
  z-index: 1;
}
@keyframes tf-sr-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}
.tf-sr-ai-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--tf-orange);
  animation: tf-sr-ring 1.8s ease-out infinite;
}
.tf-sr-ai-types {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.tf-sr-type-chip {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.tf-sr-type-chip:hover {
  background: rgba(232,115,10,0.12);
  border-color: rgba(232,115,10,0.4);
  color: #fff;
}

/* ── Outputs column ── */
.tf-sr-outputs { display: flex; flex-direction: column; }
.tf-sr-output-box {
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tf-sr-software  { background: rgba(39,174,96,0.08);  border: 1px solid rgba(39,174,96,0.25); }
.tf-sr-transfer  { background: rgba(232,115,10,0.08); border: 1px solid rgba(232,115,10,0.25); }

.tf-sr-action-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #5dde8d;
  background: rgba(39,174,96,0.08);
  border-radius: 6px;
  padding: 5px 10px;
}
.tf-sr-action-chip i { font-size: 0.7rem; }
.tf-sr-chip-orange {
  color: #ffb07a;
  background: rgba(232,115,10,0.08);
}

/* ════════════════════════════════════════════════════════════════════════
   AUTOMATION JOURNEY v2  —  Dark showcase design
   Dark navy background — no theme override needed
════════════════════════════════════════════════════════════════════════ */
#tf-journey {
  background: #0b1628 !important;
  color: #fff !important;
}

/* ── Header ── */
.tf-aj2-header { text-align: center; margin-bottom: 36px; }
.tf-aj2-eyebrow {
  display: inline-block;
  background: rgba(232,115,10,0.12);
  color: #e8730a;
  border: 1px solid rgba(232,115,10,0.35);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tf-aj2-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}
.tf-aj2-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Scenario tabs ── */
.tf-aj2-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tf-aj2-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  color: rgba(255,255,255,0.50);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 7px 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.tf-aj2-tab:hover { color: #fff; border-color: rgba(255,255,255,0.28); }
.tf-aj2-tab.tf-aj2-tab-active {
  background: var(--tc, #e8730a);
  border-color: var(--tc, #e8730a);
  color: #fff;
}

/* ── Two-column showcase ── */
.tf-aj2-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
}

/* ── LEFT: Phone mock ── */
.tf-aj2-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.tf-aj2-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.tf-aj2-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(232,115,10,0.35);
  animation: tf-aj2-ring 3.2s ease-out infinite;
}
.tf-aj2-ring:nth-child(1) { width: 260px; height: 260px; animation-delay: 0s;   }
.tf-aj2-ring:nth-child(2) { width: 330px; height: 330px; animation-delay: 1.1s; }
.tf-aj2-ring:nth-child(3) { width: 400px; height: 400px; animation-delay: 2.2s; }
@keyframes tf-aj2-ring {
  0%   { transform: scale(0.65); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 0; }
}

.tf-aj2-phone {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 22px;
  padding: 26px 28px;
  width: 100%;
  max-width: 360px;
  backdrop-filter: blur(6px);
  transition: opacity 0.22s ease;
}
.tf-aj2-fade { opacity: 0 !important; }

.tf-aj2-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.tf-aj2-time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  font-variant-numeric: tabular-nums;
}
.tf-aj2-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 3px 10px;
  color: #fff;
  transition: background 0.3s;
}

.tf-aj2-caller-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.tf-aj2-caller-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(232,115,10,0.13);
  border: 1px solid rgba(232,115,10,0.30);
  display: flex; align-items: center; justify-content: center;
  color: #e8730a;
  font-size: 1.15rem;
  flex-shrink: 0;
  animation: tf-aj2-pulse 1.8s ease-in-out infinite;
}
@keyframes tf-aj2-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(232,115,10,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(232,115,10,0);   }
}
.tf-aj2-caller-num {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  word-break: break-all;
}

/* Voice waveform */
.tf-aj2-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 46px;
  margin-bottom: 12px;
}
.tf-aj2-wbar {
  width: 4px;
  border-radius: 2px;
  background: #e8730a;
  height: var(--bh, 10px);
  animation: tf-aj2-wave 0.7s ease-in-out infinite alternate;
  animation-duration: calc(0.55s + var(--wi, 0) * 0.04s);
}
@keyframes tf-aj2-wave {
  from { height: 5px;          opacity: 0.35; }
  to   { height: var(--bh, 28px); opacity: 1;   }
}

.tf-aj2-ai-label {
  text-align: center;
  font-size: 0.70rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.tf-aj2-ai-label i { color: #e8730a; margin-right: 4px; }

.tf-aj2-quote {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #e8730a;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.60);
  font-style: italic;
  line-height: 1.55;
}

/* ── RIGHT: Animated steps ── */
.tf-aj2-right { display: flex; flex-direction: column; }
.tf-aj2-steps-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 22px;
}
.tf-aj2-steps { display: flex; flex-direction: column; gap: 0; }

.tf-aj2-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  margin-bottom: 4px;
}
.tf-aj2-step.tf-aj2-step-on { opacity: 1; transform: translateX(0); }

.tf-aj2-step-icon {
  grid-column: 1;
  grid-row: 1;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.tf-aj2-step-line {
  grid-column: 1;
  grid-row: 2;
  width: 1.5px;
  height: 20px;
  margin: 0 auto;
}
.tf-aj2-step-text {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  padding-top: 9px;
  padding-bottom: 12px;
}

.tf-aj2-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 18px;
  background: rgba(39,174,96,0.10);
  border: 1px solid rgba(39,174,96,0.28);
  border-radius: 10px;
  color: #2ecc71;
  font-size: 0.86rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.tf-aj2-result.tf-aj2-result-on { opacity: 1; transform: translateY(0); }
.tf-aj2-result i { font-size: 1.1rem; }

/* ── Feature row ── */
.tf-aj2-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.tf-aj2-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.tf-aj2-feat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,115,10,0.3);
}
.tf-aj2-feat-icon {
  font-size: 1.5rem;
  color: #e8730a;
  flex-shrink: 0;
  margin-top: 2px;
}
.tf-aj2-feat strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.tf-aj2-feat p {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA ── */
.tf-aj-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
#tf-journey .tf-btn-secondary {
  color: rgba(255,255,255,0.78) !important;
  border-color: rgba(255,255,255,0.28) !important;
}
#tf-journey .tf-btn-secondary:hover {
  background: rgba(255,255,255,0.10) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .tf-sr-diagram { grid-template-columns: 1fr; gap: 24px; }
  .tf-sr-dot-track { display: none; }
  .tf-aj2-showcase { grid-template-columns: 1fr; gap: 36px; }
  .tf-aj2-left { min-height: 280px; }
  .tf-aj2-ring:nth-child(3) { display: none; }
  .tf-aj2-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tf-aj2-showcase { gap: 28px; }
  .tf-aj2-tabs { gap: 6px; }
  .tf-aj2-tab { font-size: 0.66rem; padding: 6px 12px; }
  .tf-aj2-ring:nth-child(2) { display: none; }
  .tf-aj2-features { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   JOTFORM INLINE EMBED
════════════════════════════════════════════════════════════════════════ */
.tf-jf-embed-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  width: 100%;
}
.tf-jf-iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

/* ════════════════════════════════════════════════════════════════════════
   VERIFICATION MODAL  (hero demo-call flow)
════════════════════════════════════════════════════════════════════════ */
.tf-vm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 16px;
}
.tf-vm-hidden { display: none !important; }

.tf-vm-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: tf-vm-drop 0.22s ease;
  color: #1a2332;
}
@keyframes tf-vm-drop {
  from { opacity:0; transform: translateY(-16px); }
  to   { opacity:1; transform: translateY(0); }
}
.tf-vm-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none; border: none;
  font-size: 1.8rem; font-weight: 700;
  color: #aaa; cursor: pointer; line-height: 1;
  padding: 2px 6px; border-radius: 4px;
}
.tf-vm-close:hover { color: #333; background: #f0f0f0; }

.tf-vm-title {
  font-size: 1.4rem; font-weight: 800;
  color: #1a2332; margin: 0 0 8px;
  text-align: center;
}
.tf-vm-sub {
  font-size: 0.88rem; color: #5a6a7a;
  text-align: center; line-height: 1.6;
  margin: 0 0 20px;
}
.tf-vm-error {
  background: #fef2f2; border: 1px solid #fca5a5;
  color: #dc2626; border-radius: 8px;
  padding: 10px 14px; font-size: 0.84rem;
  margin-bottom: 14px;
}

.tf-vm-fields { display: flex; flex-direction: column; gap: 14px; }
.tf-vm-field label {
  display: block; font-size: 0.82rem;
  font-weight: 600; color: #374151;
  margin-bottom: 5px;
}
.tf-vm-field input,
.tf-vm-field select {
  display: block; width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px; font-size: 0.9rem;
  color: #1a2332; background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tf-vm-field input:focus,
.tf-vm-field select:focus {
  outline: none;
  border-color: #e8730a;
  box-shadow: 0 0 0 3px rgba(232,115,10,0.15);
}
.tf-vm-field input:disabled,
.tf-vm-field select:disabled { background: #f3f4f6; color: #9ca3af; }

.tf-vm-timer-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 0.82rem; color: #6b7280;
  flex-wrap: wrap;
}
.tf-vm-timer-val { font-weight: 700; color: #e8730a; }
.tf-vm-resend {
  background: none; border: none;
  color: #1d4ed8; font-weight: 700;
  font-size: 0.82rem; cursor: pointer;
  padding: 2px 4px; text-decoration: underline;
}
.tf-vm-disabled { opacity: 0.5; cursor: not-allowed; }

/* Success modal */
.tf-vm-success-box { text-align: center; }
.tf-vm-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(232,115,10,0.1);
  border: 2px solid rgba(232,115,10,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #e8730a;
  margin: 0 auto 20px;
  animation: tf-vm-pulse 1.5s ease-in-out infinite;
}
@keyframes tf-vm-pulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(232,115,10,0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(232,115,10,0); }
}

@media (max-width: 480px) {
  .tf-vm-box { padding: 36px 20px 24px; }
}
