/* ==========================================================================
   True2 Digital Marketing, shared site styles
   Scoped under #t2-site so the whole site can be pasted into the hosting
   platform's custom-code blocks without style collisions.
   Brand: black, green, and white. Green #3ddc97 on near-black.
   Fonts: Bricolage Grotesque (headings), Inter (body).
   ========================================================================== */

:root {
  --t2-bg: #050505;
  --t2-surface: #0b0c0b;
  --t2-card: #101211;
  --t2-card-hover: #161917;
  --t2-mint: #3ddc97;
  --t2-blue: #17b26a;
  --t2-grad: linear-gradient(120deg, #14b866 0%, #3ddc97 55%, #a9f5d3 100%);
  --t2-text: #f4f8f6;
  --t2-muted: #98a6a0;
  --t2-border: rgba(255, 255, 255, 0.08);
  --t2-border-strong: rgba(255, 255, 255, 0.16);
  --t2-glass: rgba(10, 12, 11, 0.72);
  --t2-radius: 18px;
  --t2-ink: #06150d;
  --t2-font-head: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --t2-font-body: 'Inter', system-ui, sans-serif;
  --t2-squiggle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 20 2 40 11 60 6 C 80 2 100 10 118 6' fill='none' stroke='%233ddc97' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");

  /* re-skin the scroll-scrub hero component to True2 brand */
  --ssh-accent: #3ddc97;
  --ssh-bg: #050505;
  --ssh-glass-bg: rgba(10, 12, 11, 0.55);
  --ssh-glass-border: rgba(61, 220, 151, 0.28);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--t2-bg);
  color: var(--t2-text);
  font-family: var(--t2-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#t2-site img { max-width: 100%; display: block; }
#t2-site a { color: inherit; text-decoration: none; }
#t2-site ul { list-style: none; }

#t2-site .t2-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

#t2-site h1, #t2-site h2, #t2-site h3, #t2-site h4 {
  font-family: var(--t2-font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

/* Highlighted words: white type with a hand-drawn green squiggle under
   it instead of gradient-filled text. */
#t2-site .t2-grad-text {
  background: var(--t2-squiggle) no-repeat 0 100% / 100% 0.24em;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  padding-bottom: 0.16em;
}

#t2-site ::selection { background: var(--t2-mint); color: var(--t2-ink); }

#t2-site .t2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 14.5px/1 var(--t2-font-head);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--t2-mint);
  margin-bottom: 18px;
}
#t2-site .t2-eyebrow::before {
  content: "\2733";
  font-size: 15px;
  line-height: 1;
}

/* ---------- restyle the ssh hero typography to True2 ---------- */
#t2-site .ssh-intro h1 {
  font-family: var(--t2-font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
#t2-site .ssh-intro .ssh-eyebrow {
  font-family: var(--t2-font-head);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
}
#t2-site .ssh-card-inner h3 { font-family: var(--t2-font-head); font-weight: 600; }
#t2-site .ssh-bg {
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(23, 178, 106, 0.13) 0%, rgba(5, 5, 5, 0) 60%),
    radial-gradient(80% 70% at 25% 75%, rgba(61, 220, 151, 0.1) 0%, rgba(5, 5, 5, 0) 55%),
    #050505;
}

/* ==========================================================================
   NAVIGATION, fixed glass pill bar, one tab per page
   ========================================================================== */
#t2-site .t2-nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}
#t2-site .t2-nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 12px 10px 22px;
  border-radius: 16px;
  background: var(--t2-glass);
  border: 1px solid var(--t2-border);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#t2-site .t2-nav.is-scrolled .t2-nav-inner {
  border-color: var(--t2-border-strong);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

#t2-site .t2-logo {
  font: 700 19px/1 var(--t2-font-head);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
#t2-site .t2-logo span { color: var(--t2-mint); }

#t2-site .t2-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
#t2-site .t2-nav-links a {
  font: 500 13.5px/1 var(--t2-font-body);
  color: var(--t2-muted);
  padding: 10px 13px;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
#t2-site .t2-nav-links a:hover { color: var(--t2-text); background: rgba(255, 255, 255, 0.06); }
#t2-site .t2-nav-links a.is-active {
  color: var(--t2-ink);
  background: var(--t2-mint);
  font-weight: 600;
}

#t2-site .t2-nav-cta {
  font: 600 13.5px/1 var(--t2-font-head);
  color: var(--t2-ink);
  background: var(--t2-mint);
  padding: 12px 20px;
  border-radius: 12px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 3px 3px 0 0 rgba(61, 220, 151, 0.3);
}
#t2-site .t2-nav-cta:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 0 rgba(61, 220, 151, 0.38); }

#t2-site .t2-burger {
  display: none;
  appearance: none;
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
#t2-site .t2-burger span,
#t2-site .t2-burger span::before,
#t2-site .t2-burger span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--t2-text);
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#t2-site .t2-burger span { top: 50%; }
#t2-site .t2-burger span::before { top: -7px; }
#t2-site .t2-burger span::after { top: 7px; }
#t2-site .t2-nav.is-open .t2-burger span { background: transparent; }
#t2-site .t2-nav.is-open .t2-burger span::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
#t2-site .t2-nav.is-open .t2-burger span::after { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

#t2-site .t2-mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 24px;
  right: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 22px;
  background: var(--t2-glass);
  border: 1px solid var(--t2-border-strong);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
#t2-site .t2-mobile-menu a {
  font: 500 15px/1 var(--t2-font-body);
  color: var(--t2-muted);
  padding: 14px 16px;
  border-radius: 14px;
}
#t2-site .t2-mobile-menu a:hover { color: var(--t2-text); background: rgba(255, 255, 255, 0.06); }
#t2-site .t2-mobile-menu a.is-active { color: var(--t2-ink); background: var(--t2-mint); font-weight: 600; }
#t2-site .t2-nav.is-open ~ .t2-mobile-menu { display: flex; }

@media (max-width: 1080px) {
  #t2-site .t2-nav-links { display: none; }
  #t2-site .t2-nav-cta { display: none; }
  #t2-site .t2-burger { display: block; }
  #t2-site .t2-nav-inner { gap: 12px; padding: 8px 10px 8px 20px; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
#t2-site .t2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 15px/1 var(--t2-font-head);
  padding: 16px 26px;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
#t2-site .t2-btn-primary {
  color: var(--t2-ink);
  background: var(--t2-mint);
  box-shadow: 5px 5px 0 0 rgba(61, 220, 151, 0.25);
}
#t2-site .t2-btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 0 rgba(61, 220, 151, 0.32); }
#t2-site .t2-btn-ghost {
  color: var(--t2-text);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
#t2-site .t2-btn-ghost:hover { border-color: var(--t2-mint); color: var(--t2-mint); transform: translate(-2px, -2px); }
#t2-site .t2-btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
#t2-site .t2-section { padding: 110px 0; position: relative; }
#t2-site .t2-section.is-tight { padding: 80px 0; }
#t2-site .t2-section-head { max-width: 640px; margin-bottom: 60px; }
#t2-site .t2-section-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
#t2-site .t2-section-head.is-center .t2-eyebrow { justify-content: center; }
#t2-site .t2-section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
#t2-site .t2-section-head p { color: var(--t2-muted); font-size: 17px; line-height: 1.65; }

#t2-site .t2-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t2-border-strong), transparent);
}

/* ---------- glow ornaments ---------- */
#t2-site .t2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.5;
}
#t2-site .t2-glow.is-mint { background: rgba(61, 220, 151, 0.14); }
#t2-site .t2-glow.is-blue { background: rgba(23, 178, 106, 0.16); }

/* ==========================================================================
   CARDS (services grid, feature cards), 3D tilt on hover via site.js
   ========================================================================== */
#t2-site .t2-grid {
  display: grid;
  gap: 22px;
}
#t2-site .t2-grid.is-3 { grid-template-columns: repeat(3, 1fr); }
#t2-site .t2-grid.is-2 { grid-template-columns: repeat(2, 1fr); }
#t2-site .t2-grid.is-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  #t2-site .t2-grid.is-3, #t2-site .t2-grid.is-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #t2-site .t2-grid.is-3, #t2-site .t2-grid.is-2, #t2-site .t2-grid.is-4 { grid-template-columns: 1fr; }
}

#t2-site .t2-card {
  position: relative;
  background: var(--t2-card);
  border: 1px solid var(--t2-border);
  border-radius: var(--t2-radius);
  padding: 34px 30px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}
#t2-site .t2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(61, 220, 151, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
#t2-site .t2-card:hover { border-color: rgba(61, 220, 151, 0.35); background: var(--t2-card-hover); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
#t2-site .t2-card:hover::before { opacity: 1; }

/* Circle-outline icons, same look as the True2 calculators. */
#t2-site .t2-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 2.5px solid rgba(61, 220, 151, 0.6);
  margin-bottom: 22px;
}
#t2-site .t2-card-icon svg { width: 24px; height: 24px; stroke: var(--t2-mint); }

#t2-site .t2-card h3 { font-size: 20px; margin-bottom: 10px; }
#t2-site .t2-card p { color: var(--t2-muted); font-size: 14.5px; line-height: 1.65; }
#t2-site .t2-card .t2-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font: 600 13.5px/1 var(--t2-font-body);
  color: var(--t2-mint);
  transition: gap 0.25s ease;
}
#t2-site .t2-card:hover .t2-card-link { gap: 13px; }

/* Sticker-style corner badges, slightly crooked on purpose. */
#t2-site .t2-card-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font: 700 11.5px/1 var(--t2-font-head);
  letter-spacing: 0.08em;
  color: var(--t2-ink);
  background: var(--t2-mint);
  padding: 6px 9px;
  border-radius: 7px;
  transform: rotate(5deg);
  opacity: 0.9;
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
#t2-site .t2-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { #t2-site .t2-steps { grid-template-columns: 1fr; } }
#t2-site .t2-step {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--t2-radius);
  border: 1px solid var(--t2-border);
  background: var(--t2-surface);
}
#t2-site .t2-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-block;
  font: 700 13px/1 var(--t2-font-head);
  color: var(--t2-ink);
  background: var(--t2-mint);
  padding: 7px 10px;
  border-radius: 8px;
  transform: rotate(-4deg);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
#t2-site .t2-step h3 { font-size: 19px; margin-bottom: 10px; }
#t2-site .t2-step p { color: var(--t2-muted); font-size: 14.5px; line-height: 1.65; }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
#t2-site .t2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
@media (max-width: 900px) { #t2-site .t2-stats { grid-template-columns: repeat(2, 1fr); } }
#t2-site .t2-stat-value {
  font: 700 clamp(34px, 4.4vw, 52px)/1 var(--t2-font-head);
  color: var(--t2-mint);
  margin-bottom: 10px;
}
#t2-site .t2-stat-label {
  font: 500 13px/1.4 var(--t2-font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t2-muted);
}

/* ==========================================================================
   FEATURE ROWS (alternating text / visual panels on service pages)
   ========================================================================== */
#t2-site .t2-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
#t2-site .t2-feature-row.is-flipped .t2-feature-copy { order: 2; }
@media (max-width: 900px) {
  #t2-site .t2-feature-row { grid-template-columns: 1fr; gap: 32px; padding: 44px 0; }
  #t2-site .t2-feature-row.is-flipped .t2-feature-copy { order: 0; }
}
#t2-site .t2-feature-copy h3 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 14px; }
#t2-site .t2-feature-copy p { color: var(--t2-muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 18px; }
#t2-site .t2-feature-copy ul { display: grid; gap: 12px; }
#t2-site .t2-feature-copy li {
  position: relative;
  padding-left: 30px;
  color: var(--t2-text);
  font-size: 14.5px;
  line-height: 1.6;
}
#t2-site .t2-feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(var(--t2-card), var(--t2-card)) padding-box,
    var(--t2-grad) border-box;
  border: 1.5px solid transparent;
}
#t2-site .t2-feature-copy li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--t2-mint);
  border-bottom: 2px solid var(--t2-mint);
  transform: rotate(-45deg);
}

#t2-site .t2-feature-visual {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--t2-border);
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(61, 220, 151, 0.12), transparent 60%),
    radial-gradient(80% 80% at 80% 90%, rgba(23, 178, 106, 0.14), transparent 60%),
    var(--t2-surface);
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* Chips styled like little chat bubbles, each sitting a bit crooked. */
#t2-site .t2-feature-visual .t2-visual-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  background: var(--t2-glass);
  border: 1px solid var(--t2-border-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font: 600 12.5px/1.4 var(--t2-font-body);
  color: var(--t2-text);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: t2-float 5s ease-in-out infinite;
  rotate: -1.5deg;
}
#t2-site .t2-feature-visual .t2-visual-chip:nth-of-type(odd) {
  rotate: 1.5deg;
  border-radius: 16px 16px 4px 16px;
}
#t2-site .t2-feature-visual .t2-visual-chip small {
  display: block;
  font-weight: 500;
  color: var(--t2-muted);
  margin-top: 3px;
}
#t2-site .t2-feature-visual .t2-visual-chip:nth-child(2) { animation-delay: -1.6s; }
#t2-site .t2-feature-visual .t2-visual-chip:nth-child(3) { animation-delay: -3.2s; }
@keyframes t2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
#t2-site .t2-visual-core {
  width: 130px;
  height: 130px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(61, 220, 151, 0.25), rgba(23, 178, 106, 0.25));
  border: 1px solid rgba(61, 220, 151, 0.4);
  display: grid;
  place-items: center;
  box-shadow: 0 0 80px rgba(61, 220, 151, 0.18);
}
#t2-site .t2-visual-core svg { width: 54px; height: 54px; stroke: var(--t2-mint); }

/* ==========================================================================
   TESTIMONIALS / QUOTE
   ========================================================================== */
#t2-site .t2-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
#t2-site .t2-quote blockquote {
  font: 500 clamp(20px, 2.6vw, 28px)/1.5 var(--t2-font-head);
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
#t2-site .t2-quote cite {
  font: 600 14px/1.5 var(--t2-font-body);
  font-style: normal;
  color: var(--t2-mint);
}
#t2-site .t2-quote cite small { display: block; color: var(--t2-muted); font-weight: 500; margin-top: 4px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
#t2-site .t2-cta {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--t2-border-strong);
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(61, 220, 151, 0.16), transparent 55%),
    radial-gradient(90% 120% at 85% 100%, rgba(23, 178, 106, 0.18), transparent 55%),
    var(--t2-surface);
  padding: clamp(48px, 7vw, 90px) clamp(28px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
#t2-site .t2-cta h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
#t2-site .t2-cta p { color: var(--t2-muted); font-size: 16.5px; line-height: 1.65; max-width: 520px; margin: 0 auto 34px; }
#t2-site .t2-cta .t2-btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   SUB-PAGE HERO + BREADCRUMBS
   ========================================================================== */
#t2-site .t2-page-hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 75% 10%, rgba(23, 178, 106, 0.14), transparent 60%),
    radial-gradient(60% 55% at 15% 80%, rgba(61, 220, 151, 0.1), transparent 55%),
    var(--t2-bg);
}
#t2-site .t2-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, black, transparent);
  pointer-events: none;
}
#t2-site .t2-page-hero .t2-container { position: relative; z-index: 2; }
#t2-site .t2-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 13px/1 var(--t2-font-body);
  color: var(--t2-muted);
  margin-bottom: 28px;
}
#t2-site .t2-breadcrumbs a { color: var(--t2-muted); transition: color 0.25s ease; }
#t2-site .t2-breadcrumbs a:hover { color: var(--t2-mint); }
#t2-site .t2-breadcrumbs .sep { opacity: 0.45; }
#t2-site .t2-breadcrumbs .current { color: var(--t2-text); }
#t2-site .t2-page-hero h1 { font-size: clamp(36px, 5.4vw, 62px); max-width: 15ch; margin-bottom: 20px; }
#t2-site .t2-page-hero .t2-lede { color: var(--t2-muted); font-size: 18px; line-height: 1.7; max-width: 560px; }
#t2-site .t2-page-hero .t2-btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
#t2-site .t2-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { #t2-site .t2-contact-grid { grid-template-columns: 1fr; gap: 40px; } }

#t2-site .t2-contact-list { display: grid; gap: 18px; margin-top: 34px; }
#t2-site .t2-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--t2-border);
  background: var(--t2-card);
}
#t2-site .t2-contact-item svg { width: 21px; height: 21px; stroke: var(--t2-mint); flex-shrink: 0; margin-top: 2px; }
#t2-site .t2-contact-item strong { display: block; font: 600 14.5px/1.4 var(--t2-font-head); margin-bottom: 3px; }
#t2-site .t2-contact-item span { color: var(--t2-muted); font-size: 13.5px; line-height: 1.55; }

#t2-site .t2-form {
  background: var(--t2-card);
  border: 1px solid var(--t2-border);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 18px;
}
#t2-site .t2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { #t2-site .t2-form-row { grid-template-columns: 1fr; } }
#t2-site .t2-form label {
  display: block;
  font: 600 12.5px/1 var(--t2-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t2-muted);
  margin-bottom: 9px;
}
#t2-site .t2-form input,
#t2-site .t2-form select,
#t2-site .t2-form textarea {
  width: 100%;
  appearance: none;
  background: var(--t2-bg);
  border: 1px solid var(--t2-border-strong);
  border-radius: 12px;
  color: var(--t2-text);
  font: 400 15px/1.5 var(--t2-font-body);
  padding: 14px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#t2-site .t2-form textarea { min-height: 130px; resize: vertical; }
#t2-site .t2-form input:focus,
#t2-site .t2-form select:focus,
#t2-site .t2-form textarea:focus {
  outline: none;
  border-color: var(--t2-mint);
  box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.15);
}
#t2-site .t2-form .t2-btn { justify-content: center; border: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
#t2-site .t2-footer {
  border-top: 1px solid var(--t2-border);
  background: var(--t2-surface);
  padding: 70px 0 34px;
}
#t2-site .t2-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 54px;
}
@media (max-width: 900px) { #t2-site .t2-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { #t2-site .t2-footer-grid { grid-template-columns: 1fr; } }
#t2-site .t2-footer .t2-logo { font-size: 22px; margin-bottom: 16px; display: inline-block; }
#t2-site .t2-footer-tag { color: var(--t2-muted); font-size: 14px; line-height: 1.7; max-width: 30ch; }
#t2-site .t2-footer h4 {
  font: 600 12.5px/1 var(--t2-font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t2-text);
  margin-bottom: 20px;
}
#t2-site .t2-footer-grid ul { display: grid; gap: 12px; }
#t2-site .t2-footer-grid ul a { color: var(--t2-muted); font-size: 14px; transition: color 0.25s ease; }
#t2-site .t2-footer-grid ul a:hover { color: var(--t2-mint); }
#t2-site .t2-footer-bottom {
  border-top: 1px solid var(--t2-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--t2-muted);
  font-size: 13px;
}

/* ==========================================================================
   SCROLL REVEAL (site.js adds .is-revealed via IntersectionObserver)
   ========================================================================== */
#t2-site .t2-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--rd, 0s);
}
#t2-site .t2-reveal.is-revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  #t2-site .t2-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   CALCULATOR EMBEDS (True2's own calculator widgets in iframes;
   desktop version on wide screens, mobile version under 640px)
   ========================================================================== */
#t2-site .t2-embed-wrap {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--t2-border-strong);
  background: #ffffff;
  box-shadow: 8px 8px 0 0 rgba(61, 220, 151, 0.18);
}
#t2-site iframe.t2-embed {
  display: block;
  width: 100%;
  border: 0;
  background: #ffffff;
  min-height: 560px;
}
#t2-site iframe.t2-embed.is-mobile { display: none; }
@media (max-width: 640px) {
  #t2-site iframe.t2-embed.is-desktop { display: none; }
  #t2-site iframe.t2-embed.is-mobile { display: block; }
}

/* ==========================================================================
   HERO BADGE (crooked little intro chip under the headline)
   ========================================================================== */
#t2-site .t2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font: 600 13px/1 var(--t2-font-head);
  color: var(--t2-mint);
  border: 1.5px dashed rgba(61, 220, 151, 0.55);
  background: rgba(61, 220, 151, 0.07);
  padding: 10px 16px;
  border-radius: 12px;
  transform: rotate(-2deg);
}

/* ==========================================================================
   WORD-MASK HEADLINE REVEAL (site.js wraps words, IO reveals them)
   ========================================================================== */
#t2-site .word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
#t2-site .word {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.21, 1);
}
#t2-site .word-mask.visible .word { transform: translateY(0); }
/* When words are wrapped, move the squiggle from the phrase onto each word
   so it reveals along with the text. */
#t2-site .t2-grad-text.has-words { background: none; padding-bottom: 0; }
#t2-site .t2-grad-text .word {
  background: var(--t2-squiggle) no-repeat 0 100% / 100% 0.22em;
  padding-bottom: 0.14em;
}

/* ==========================================================================
   TICKER (scrolling marquee strip)
   ========================================================================== */
#t2-site .t2-ticker {
  overflow: hidden;
  border-top: 1px dashed rgba(61, 220, 151, 0.3);
  border-bottom: 1px dashed rgba(61, 220, 151, 0.3);
  padding: 16px 0;
  background: rgba(61, 220, 151, 0.03);
}
#t2-site .t2-ticker-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  white-space: nowrap;
  font: 600 15px/1 var(--t2-font-head);
  color: var(--t2-mint);
  animation: t2-marquee 32s linear infinite;
}
#t2-site .t2-ticker-track .tick-sep { opacity: 0.45; font-size: 13px; }
@keyframes t2-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  #t2-site .t2-ticker-track { animation: none; }
}

/* ==========================================================================
   CREW ROSTER (Mark / Bailey / Sage employee cards)
   ========================================================================== */
#t2-site .t2-crew-card {
  position: relative;
  background: var(--t2-card);
  border: 1px solid var(--t2-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: rotate 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
#t2-site .t2-crew-card:hover {
  rotate: 0deg !important;
  border-color: rgba(61, 220, 151, 0.4);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
#t2-site .t2-crew-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--t2-mint);
  color: var(--t2-ink);
  display: grid;
  place-items: center;
  font: 800 26px/1 var(--t2-font-head);
  margin-bottom: 18px;
  box-shadow: 4px 4px 0 0 rgba(61, 220, 151, 0.25);
}
#t2-site .t2-crew-card h3 { font-size: 22px; margin-bottom: 2px; }
#t2-site .t2-crew-role {
  font: 600 13px/1.4 var(--t2-font-head);
  color: var(--t2-mint);
  margin-bottom: 12px;
}
#t2-site .t2-crew-card p { color: var(--t2-muted); font-size: 14.5px; line-height: 1.65; }
#t2-site .t2-crew-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font: 600 11.5px/1 var(--t2-font-body);
  color: var(--t2-mint);
  border: 1px dashed rgba(61, 220, 151, 0.45);
  padding: 7px 11px;
  border-radius: 8px;
}
#t2-site .t2-crew-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t2-mint);
  box-shadow: 0 0 8px rgba(61, 220, 151, 0.9);
}

/* ==========================================================================
   WAVE DIVIDER (green squiggle, repeated as a water line)
   ========================================================================== */
#t2-site .t2-wave {
  height: 14px;
  margin: 0 auto;
  width: min(420px, 70%);
  background: var(--t2-squiggle) repeat-x center / 96px 12px;
  opacity: 0.45;
}

/* Keep the hero intro readable over the bright pool deck. */
#t2-site .ssh-intro h1 { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.75); }
#t2-site .ssh-intro p { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85); }
#t2-site .t2-hero-badge { background: rgba(5, 8, 6, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* ==========================================================================
   FORM EMBED (True2 main form iframe on the contact page)
   ========================================================================== */
#t2-site .t2-form-embed {
  background: var(--t2-card);
  border: 1px solid var(--t2-border);
  border-radius: 24px;
  padding: 12px;
  min-height: 897px;
}
#t2-site .t2-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 873px;
  background: transparent;
}

/* ==========================================================================
   MOBILE HOMEPAGE HERO (<=760px only; the desktop scroll-scrub hero is left
   completely untouched). On phones the pinned scroll-scrub hero is swapped
   for a lightweight auto-animated hero via JS in index.html; these rules lay
   it out so nothing clips and the page scrolls natively.
   ========================================================================== */
@media (max-width: 760px) {
  /* Lay the hero out as a flex column so the headline (top) and the cycling
     card (bottom) can never overlap, whatever the phone height. The 3D canvas
     stays a full-bleed background in the gap between them. */
  #t2-site #t2-hero .ssh-pin {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 94px 20px 88px;
  }
  /* background layers stay absolute, out of the flex flow */
  #t2-site #t2-hero .ssh-bg,
  #t2-site #t2-hero .ssh-overlay-gradient { position: absolute; inset: 0; }

  /* CRITICAL: the component sets touch-action:none on the canvas, which
     blocks touch-scrolling anywhere over the (full-bleed) hero canvas. Allow
     vertical panning so the page scrolls normally on phones. */
  #t2-site #t2-hero .ssh-canvas,
  #t2-site #t2-hero .ssh-bg,
  #t2-site #t2-hero .ssh-pin { touch-action: pan-y; }

  /* intro = top flex item */
  #t2-site #t2-hero .ssh-intro {
    position: relative;
    inset: auto;
    z-index: 5;
    display: block;
    padding: 0;
    text-align: center;
  }
  #t2-site #t2-hero .ssh-intro h1 { font-size: clamp(27px, 7.8vw, 38px); max-width: 15ch; margin: 0 auto 14px; }
  #t2-site #t2-hero .ssh-intro p { font-size: 14px; max-width: 32ch; margin: 0 auto; }
  #t2-site #t2-hero .t2-hero-badge { display: none; }

  /* card zone = bottom flex item: a fixed-height box holding the stacked
     cards (only one visible at a time, cycled by JS) */
  #t2-site #t2-hero .ssh-cards {
    position: relative;
    inset: auto;
    z-index: 10;
    height: 200px;
    width: min(90vw, 360px);
    margin: 0 auto;
    pointer-events: none;
  }
  #t2-site #t2-hero .ssh-card {
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    width: 100%;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  #t2-site #t2-hero .ssh-card.is-active { opacity: 1; transform: translateY(0); }

  /* dots + scroll hint live in the bottom padding, clear of the card */
  #t2-site #t2-hero .ssh-progress { bottom: 46px; }
  #t2-site #t2-hero .ssh-scroll-hint { bottom: 16px; }
}

/* Mobile only: the word-mask headline reveal can stall mid-transition on
   phones (percentage transform + late webfont layout), leaving the hero H1
   clipped/hidden. Show it plainly on the homepage hero at <=760px. Desktop
   and every sub-page headline reveal is unaffected. */
@media (max-width: 760px) {
  #t2-site #t2-hero .ssh-intro h1 .word-mask { overflow: visible; }
  #t2-site #t2-hero .ssh-intro h1 .word { transform: none !important; transition: none; }
}

/* ==========================================================================
   PHOTO HERO (pool-businesses page): real backyard-pool photo background with
   a dark green-tinted scrim. Normal section, no 3D / no pin, so it scrolls
   cleanly on every device.
   ========================================================================== */
#t2-site .t2-photo-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 96px;
  isolation: isolate;
}
#t2-site .t2-photo-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/backyard-pool.jpg');
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}
#t2-site .t2-photo-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,7,6,0.62) 0%, rgba(5,7,6,0.32) 42%, rgba(5,7,6,0.94) 100%),
    linear-gradient(90deg, rgba(5,7,6,0.8) 0%, rgba(5,7,6,0.25) 62%, rgba(5,7,6,0) 100%),
    radial-gradient(70% 80% at 82% 18%, rgba(61,220,151,0.16), transparent 60%);
}
#t2-site .t2-photo-hero .t2-container { position: relative; z-index: 2; }
#t2-site .t2-photo-hero h1 { font-size: clamp(38px, 6vw, 66px); max-width: 15ch; margin-bottom: 20px; }
#t2-site .t2-photo-hero .t2-lede { color: rgba(244,248,246,0.86); font-size: 18px; line-height: 1.7; max-width: 560px; }
#t2-site .t2-photo-hero .t2-btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
#t2-site .t2-photo-hero .t2-hero-badge { margin-top: 26px; }
@media (max-width: 760px) {
  #t2-site .t2-photo-hero { padding: 132px 0 72px; }
  #t2-site .t2-photo-hero .t2-lede { font-size: 15.5px; }
}

/* ==========================================================================
   INDUSTRIES DROPDOWN NAV
   ========================================================================== */
#t2-site .t2-nav-dd { position: relative; }
#t2-site .t2-nav-dd-toggle {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: 500 13.5px/1 var(--t2-font-body);
  color: var(--t2-muted);
  padding: 10px 13px;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
#t2-site .t2-nav-dd-toggle svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
#t2-site .t2-nav-dd:hover .t2-nav-dd-toggle,
#t2-site .t2-nav-dd-toggle:focus-visible { color: var(--t2-text); background: rgba(255,255,255,0.06); }
#t2-site .t2-nav-dd:hover .t2-nav-dd-toggle svg { transform: rotate(180deg); }
#t2-site .t2-nav-dd-toggle.is-active { color: var(--t2-ink); background: var(--t2-mint); font-weight: 600; }

#t2-site .t2-nav-dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 12px;
  border-radius: 18px;
  background: var(--t2-glass);
  border: 1px solid var(--t2-border-strong);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 120;
}
#t2-site .t2-nav-dd:hover .t2-nav-dd-menu,
#t2-site .t2-nav-dd:focus-within .t2-nav-dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
#t2-site .t2-nav-dd-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 18px;
}
#t2-site .t2-nav-dd-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--t2-text);
  transition: background 0.2s ease;
}
#t2-site .t2-nav-dd-menu a:hover { background: rgba(61,220,151,0.12); }
#t2-site .t2-nav-dd-menu a strong { font: 600 13.5px/1.3 var(--t2-font-head); }
#t2-site .t2-nav-dd-menu a span { font: 400 11.5px/1.3 var(--t2-font-body); color: var(--t2-muted); }
#t2-site .t2-nav-dd-menu a.t2-dd-all {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  background: rgba(61,220,151,0.1);
  color: var(--t2-mint);
  font: 600 13px/1 var(--t2-font-head);
}
#t2-site .t2-nav-dd-menu a.t2-dd-all:hover { background: rgba(61,220,151,0.2); }

/* mobile: industries becomes an expandable group inside the burger menu */
#t2-site .t2-m-ind-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font: 500 15px/1 var(--t2-font-body);
  color: var(--t2-muted);
  padding: 14px 16px;
  border-radius: 14px;
}
#t2-site .t2-m-ind-toggle svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
#t2-site .t2-m-ind.is-open .t2-m-ind-toggle svg { transform: rotate(180deg); }
#t2-site .t2-m-ind-list { display: none; padding: 2px 0 6px 12px; }
#t2-site .t2-m-ind.is-open .t2-m-ind-list { display: block; }
#t2-site .t2-m-ind-list a {
  display: block;
  font: 500 14px/1 var(--t2-font-body);
  color: var(--t2-muted);
  padding: 11px 16px;
  border-radius: 12px;
}
#t2-site .t2-m-ind-list a:hover { color: var(--t2-text); background: rgba(255,255,255,0.06); }

@media (max-width: 1080px) { #t2-site .t2-nav-dd { display: none; } }

/* ==========================================================================
   CONVERSION COMPONENTS (trust bar, proof stats, testimonials, FAQ,
   guarantee, sticky mobile CTA) + niche page pieces
   ========================================================================== */

/* trust / "trusted by" bar */
#t2-site .t2-trustbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding: 22px 0;
}
#t2-site .t2-trustbar .t2-trust-label {
  font: 600 12.5px/1.4 var(--t2-font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t2-muted);
}
#t2-site .t2-trust-stars { display: inline-flex; align-items: center; gap: 8px; color: var(--t2-text); font: 600 13.5px/1 var(--t2-font-body); }
#t2-site .t2-trust-stars .stars { color: var(--t2-mint); letter-spacing: 2px; font-size: 15px; }
#t2-site .t2-trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 13px/1 var(--t2-font-body); color: var(--t2-text);
  padding: 9px 15px; border-radius: 999px;
  border: 1px solid var(--t2-border-strong); background: var(--t2-card);
}
#t2-site .t2-trust-pill svg { width: 15px; height: 15px; stroke: var(--t2-mint); }

/* risk-reversal line under CTAs */
#t2-site .t2-reassure {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  font: 500 13px/1.5 var(--t2-font-body); color: var(--t2-muted);
}
#t2-site .t2-reassure svg { width: 14px; height: 14px; stroke: var(--t2-mint); flex-shrink: 0; }
#t2-site .t2-reassure .dot { opacity: 0.4; }

/* testimonial card row */
#t2-site .t2-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { #t2-site .t2-quotes { grid-template-columns: 1fr; } }
#t2-site .t2-quote-card {
  background: var(--t2-card);
  border: 1px solid var(--t2-border);
  border-radius: var(--t2-radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
#t2-site .t2-quote-card .t2-q-stars { color: var(--t2-mint); letter-spacing: 2px; font-size: 15px; }
#t2-site .t2-quote-card blockquote { font: 500 15.5px/1.6 var(--t2-font-body); color: var(--t2-text); }
#t2-site .t2-quote-card .t2-q-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
#t2-site .t2-q-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--t2-mint); color: var(--t2-ink);
  display: grid; place-items: center; font: 800 16px/1 var(--t2-font-head); flex-shrink: 0;
}
#t2-site .t2-q-by strong { display: block; font: 600 13.5px/1.3 var(--t2-font-head); }
#t2-site .t2-q-by span { font: 400 12.5px/1.3 var(--t2-font-body); color: var(--t2-muted); }

/* FAQ accordion */
#t2-site .t2-faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
#t2-site .t2-faq-item {
  border: 1px solid var(--t2-border);
  border-radius: 14px;
  background: var(--t2-card);
  overflow: hidden;
}
#t2-site .t2-faq-q {
  width: 100%; appearance: none; border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left;
  font: 600 16px/1.4 var(--t2-font-head); color: var(--t2-text);
  padding: 20px 22px;
}
#t2-site .t2-faq-q .t2-faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
#t2-site .t2-faq-q .t2-faq-icon::before,
#t2-site .t2-faq-q .t2-faq-icon::after {
  content: ""; position: absolute; background: var(--t2-mint); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#t2-site .t2-faq-q .t2-faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
#t2-site .t2-faq-q .t2-faq-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
#t2-site .t2-faq-item.is-open .t2-faq-icon::after { transform: scaleY(0); opacity: 0; }
#t2-site .t2-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
#t2-site .t2-faq-a p { padding: 0 22px 20px; color: var(--t2-muted); font-size: 14.5px; line-height: 1.7; }

/* niche "sound familiar" pain grid */
#t2-site .t2-pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { #t2-site .t2-pain-grid { grid-template-columns: 1fr; } }
#t2-site .t2-pain {
  position: relative;
  padding: 26px 26px 26px 62px;
  border-radius: 16px;
  border: 1px solid var(--t2-border);
  background: var(--t2-surface);
}
#t2-site .t2-pain::before {
  content: "";
  position: absolute; left: 22px; top: 27px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(255,90,90,0.5);
  background: radial-gradient(circle, rgba(255,90,90,0.18), transparent);
}
#t2-site .t2-pain::after {
  content: "!"; position: absolute; left: 30px; top: 28px;
  font: 800 14px/1 var(--t2-font-head); color: #ff7a7a;
}
#t2-site .t2-pain h3 { font-size: 17px; margin-bottom: 8px; }
#t2-site .t2-pain p { color: var(--t2-muted); font-size: 14px; line-height: 1.6; }

/* solution rows reuse .t2-feature-row; add an employee tag chip */
#t2-site .t2-emp-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 12.5px/1 var(--t2-font-head); color: var(--t2-ink);
  background: var(--t2-mint); padding: 7px 12px; border-radius: 999px; margin-bottom: 16px;
}

/* industries index grid */
#t2-site .t2-ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { #t2-site .t2-ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #t2-site .t2-ind-grid { grid-template-columns: 1fr; } }
#t2-site .t2-ind-card {
  position: relative; display: block;
  padding: 30px 28px;
  border-radius: var(--t2-radius);
  border: 1px solid var(--t2-border);
  background: var(--t2-card);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
#t2-site .t2-ind-card:hover { transform: translateY(-4px); border-color: rgba(61,220,151,0.4); background: var(--t2-card-hover); }
#t2-site .t2-ind-card .t2-card-icon { margin-bottom: 18px; }
#t2-site .t2-ind-card h3 { font-size: 19px; margin-bottom: 8px; }
#t2-site .t2-ind-card p { color: var(--t2-muted); font-size: 14px; line-height: 1.6; }
#t2-site .t2-ind-card .t2-card-link { margin-top: 16px; }

/* sticky mobile CTA bar */
.t2-sticky-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: var(--t2-glass);
  border: 1px solid var(--t2-border-strong);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.t2-sticky-cta a {
  flex: 1; text-align: center;
  font: 600 15px/1 var(--t2-font-head);
  padding: 15px 16px; border-radius: 12px;
  color: var(--t2-ink); background: var(--t2-mint);
}
@media (max-width: 760px) {
  /* End the bar before the chat-widget bubble (bottom-right, ~64px wide
     plus its margin) so the two never overlap. */
  .t2-sticky-cta { display: flex; right: 96px; }
  #t2-site .t2-footer { padding-bottom: 96px; }
}

/* ==========================================================================
   MOBILE MENU SCROLLING: the open menu can be taller than the screen once
   Industries expands, so the panel itself scrolls (and never chains the
   scroll to the page behind it).
   ========================================================================== */
#t2-site .t2-mobile-menu {
  max-height: calc(100vh - 108px);
  max-height: calc(100dvh - 108px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
