/* ═══════════════════════════════════════════════════════════════
   TOUCHTONE BUSINESS — SHARED SITE STYLES
   Extracted from index.html's inline <style> block on 7/8/2026.
   This file must be linked from EVERY page (not just the homepage)
   for the new header/footer/card design to render correctly.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --tt-red:    #e2002c;
  --tt-navy:   #01002a;
  --tt-ink:    #010414;
  --tt-blue:   #034563;
  --tt-cream:  #F6F5EC;
  --tt-soft:   #f8f8f8;
  --tt-line:   #ececee;
  --tt-white:  #ffffff;
  --tt-shadow: 0 18px 50px rgba(1,4,20,0.12);
}

html, body, .tt-page,
.tt-page h1,.tt-page h2,.tt-page h3,
.tt-page h4,.tt-page h5,.tt-page h6,
.tt-page .heading-1,.tt-page .heading-2,
.tt-page .heading-3,.tt-page .heading-4,
.tt-page .heading-5,.tt-page .heading-6,
.tt-page .button,.tt-page input,
.tt-page textarea,.tt-page select {
  font-family: "Libre Franklin", Helvetica, Arial, sans-serif !important;
}

body { background: var(--tt-white); font-size: 17px; }
.tt-page p { color: #424552; font-size: 17px; line-height: 1.75; }
.tt-page .heading-1,.tt-page .heading-2,.tt-page .heading-3,
.tt-page h1,.tt-page h2,.tt-page h3 {
  font-weight: 700;
  color: #00112c;
}

/* ══ TOP BAR ══ */
.tt-topbar { background: var(--tt-navy); color: #fff; font-size: 15px; line-height: 1.4; padding: 10px 0; }
.tt-topbar a { color: #fff; }
.tt-topbar a:hover { opacity: .78; }

/* ══ HEADER ══ */
.tt-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--tt-line); box-shadow: 0 4px 18px rgba(1,4,20,0.05); }
.tt-header-inner { display: flex; align-items: center; min-height: 82px; gap: 20px; }
.tt-logo { display: inline-flex; align-items: center; flex-shrink: 0; line-height: 1; }
.tt-logo img { display: block; width: 205px; height: auto; }
.tt-main-nav-wrap { flex: 1 1 0%; display: flex; justify-content: center; min-width: 0; }
.tt-main-nav { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.tt-main-nav a,
.tt-main-nav button {
  color: var(--tt-ink); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; padding: 10px 10px;
  background: transparent; border: 0; cursor: pointer;
  font-family: "Libre Franklin", Helvetica, Arial, sans-serif;
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.tt-main-nav a:hover,
.tt-main-nav button:hover { color: var(--tt-red); }

/* ══ HEADER BUTTONS ══ */
.tt-header-buttons { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.tt-header-buttons a.button {
  display: inline-flex !important; align-items: center !important;
  justify-content: center !important; height: 40px !important;
  min-height: 0 !important; max-height: 40px !important;
  padding-top: 0 !important; padding-bottom: 0 !important;
  padding-left: 20px !important; padding-right: 20px !important;
  margin: 0 !important; line-height: 1 !important;
  box-sizing: border-box !important; white-space: nowrap !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: .06em !important; text-transform: uppercase !important;
}
.tt-header-buttons a.tt-btn-outline {
  background: transparent !important; border: 2px solid var(--tt-ink) !important;
  color: var(--tt-ink) !important; border-radius: 50px !important;
}
.tt-header-buttons a.tt-btn-outline:hover { border-color: var(--tt-red) !important; color: var(--tt-red) !important; }
.tt-header-buttons a.tt-btn-solid {
  background: var(--tt-red) !important; border: 2px solid var(--tt-red) !important;
  color: #fff !important; border-radius: 50px !important;
}
.tt-header-buttons a.tt-btn-solid:hover { background: #c61842 !important; border-color: #c61842 !important; }

/* ══ MOBILE HAMBURGER ══ */
.tt-mobile-toggle {
  display: none; flex-shrink: 0; margin-left: auto;
  background: transparent; border: 2px solid var(--tt-line);
  border-radius: 6px; padding: 8px 10px; cursor: pointer;
  line-height: 1; flex-direction: column;
}
.tt-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--tt-ink); border-radius: 2px; transition: .25s all ease; }
.tt-mobile-toggle span + span { margin-top: 5px; }
.tt-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tt-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.tt-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ MOBILE DRAWER ══ */
.tt-mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1200; background: rgba(1,4,20,.55); backdrop-filter: blur(3px); }
.tt-mobile-nav.is-open { display: block; }
.tt-mobile-drawer { position: absolute; top: 0; right: 0; width: min(340px,88vw); height: 100%; background: #fff; box-shadow: -8px 0 40px rgba(1,4,20,.18); display: flex; flex-direction: column; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease; }
.tt-mobile-nav.is-open .tt-mobile-drawer { transform: translateX(0); }
.tt-mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--tt-line); flex-shrink: 0; }
.tt-mobile-drawer-head img { width: 160px; height: auto; }
.tt-mobile-close { background: transparent; border: 0; font-size: 28px; line-height: 1; color: var(--tt-ink); cursor: pointer; padding: 4px 8px; }
.tt-mobile-close:hover { color: var(--tt-red); }
.tt-mobile-links { flex: 1; padding: 12px 0 24px; }
.tt-mobile-links a,
.tt-mobile-links button { display: block; width: 100%; text-align: left; padding: 14px 24px; color: var(--tt-ink); font-size: 15px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; background: transparent; border: 0; border-bottom: 1px solid var(--tt-line); cursor: pointer; font-family: "Libre Franklin", Helvetica, Arial, sans-serif; text-decoration: none; box-sizing: border-box; }
.tt-mobile-links a:hover,
.tt-mobile-links button:hover { color: var(--tt-red); background: #fafafa; }
.tt-mobile-sub { display: none; background: var(--tt-soft); }
.tt-mobile-sub.is-open { display: block; }
.tt-mobile-sub a { padding-left: 36px; font-size: 14px; font-weight: 500; text-transform: none; letter-spacing: 0; color: #424552; }
.tt-mobile-sub-label { display: block; padding: 10px 36px 4px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8a8d98; }
.tt-mobile-drawer-footer { padding: 20px 22px; border-top: 1px solid var(--tt-line); display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.tt-mobile-drawer-footer a { display: flex; align-items: center; justify-content: center; height: 46px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; }
.tt-mobile-btn-outline { border: 2px solid var(--tt-ink); color: var(--tt-ink) !important; }
.tt-mobile-btn-outline:hover { border-color: var(--tt-red); color: var(--tt-red) !important; }
.tt-mobile-btn-solid { background: var(--tt-red); border: 2px solid var(--tt-red); color: #fff !important; }
.tt-mobile-btn-solid:hover { background: #c61842; border-color: #c61842; }

/* ══ DROPDOWNS ══ */
.tt-nav-item { position: relative; display: inline-flex; align-items: center; }
.tt-nav-caret { display: inline-block; margin-left: 5px; font-size: 10px; line-height: 1; }
.tt-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 290px; padding: 14px 0; background: #fff; border: 1px solid var(--tt-line); box-shadow: 0 18px 42px rgba(1,4,20,.14); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s all ease; z-index: 1002; }
.tt-dropdown-menu-right { left: auto; right: 0; min-width: 330px; }
.tt-dropdown-menu a { display: block; width: 100%; padding: 10px 22px; color: var(--tt-ink); font-size: 14px; font-weight: 500; letter-spacing: 0; line-height: 1.35; text-transform: none; white-space: nowrap; }
.tt-dropdown-menu a:hover { color: var(--tt-red); background: #f8f8f8; }
.tt-nav-item:hover .tt-dropdown-menu,
.tt-nav-item:focus-within .tt-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.tt-dropdown-section-label { display: block; padding: 9px 22px 6px; color: #8a8d98; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tt-dropdown-divider { height: 1px; margin: 9px 0; background: var(--tt-line); }

/* ══ HERO ══ */
.tt-hero {
  position: relative; overflow: hidden; min-height: 600px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    linear-gradient(180deg, rgba(1,0,42,0.58) 0%, rgba(1,0,42,0.46) 60%, rgba(1,0,42,0.32) 100%),
    url("../images/hero.jpg") center center / cover no-repeat;
  padding: 175px 0 200px;
}
.tt-hero::before { content:""; position:absolute; inset:0; background:none; pointer-events:none; }
.tt-hero .container { position: relative; z-index: 2; }
.tt-hero h1.heading-1 {
  display: block; width: 100%; max-width: 1060px;
  margin: 0 auto !important; padding: 0 !important;
  color: #fff !important;
  font-size: clamp(40px,4.9vw,68px); font-weight: 600; line-height: 1.12;
  letter-spacing: -0.01em; text-align: center !important;
  text-shadow: 0 3px 20px rgba(0,0,0,.35);
}
.tt-hero .tt-hero-position {
  max-width: 820px; margin: 22px auto 0;
  color: rgba(255,255,255,.95); font-size: clamp(17px,1.4vw,21px);
  line-height: 1.72; font-weight: 300;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.tt-hero .tt-actions { justify-content: center; margin-top: 36px; }

/* ══ EYEBROWS ══ */
.tt-eyebrow { display: inline-block; padding: 7px 16px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 30px; color: #fff; background: rgba(226,0,44,.28); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tt-eyebrow-dark { color: var(--tt-red); background: rgba(226,0,44,.06); border-color: rgba(226,0,44,.22); }
.tt-sub-heading { color: var(--tt-red) !important; }

/* ══ ACTIONS ══ */
.tt-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.tt-actions .button { margin-top: 0; }
.tt-button-light-solid { background: #fff; border: 2px solid #fff; color: var(--tt-navy) !important; }
.tt-button-light-solid:hover { background: var(--tt-red); border-color: var(--tt-red); color: #fff !important; }

/* ══ SINGLE SOURCE ══ */
.tt-single-source {
  background: var(--tt-soft); padding: 100px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--tt-line);
  border-bottom: 1px solid var(--tt-line);
}
.tt-single-source::before { content:""; position:absolute; top:-120px; right:-120px; width:480px; height:480px; border-radius:50%; background:rgba(226,0,44,.04); pointer-events:none; }
.tt-single-source::after { content:""; position:absolute; bottom:-100px; left:-80px; width:340px; height:340px; border-radius:50%; background:rgba(3,69,99,.05); pointer-events:none; }
.tt-single-source .container { position: relative; z-index: 2; }
.tt-single-source-inner { text-align: center; max-width: 900px; margin: 0 auto; }
.tt-single-source-heading {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--tt-ink);
  line-height: 1.22;
  margin-bottom: 26px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .tt-single-source-heading { white-space: normal; font-size: 26px; }
}
.tt-single-source-heading em { font-style: normal; color: var(--tt-red); }
.tt-single-source-lead { font-size: 19px; line-height: 1.78; color: #424552; max-width: 680px; margin: 0 auto; }

.tt-source-stats { display: flex; gap: 0; margin-top: 48px; border-radius: 8px; overflow: hidden; background: var(--tt-navy); box-shadow: 0 8px 32px rgba(1,4,20,.14); }
.tt-source-stat { flex: 1; text-align: center; padding: 28px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.tt-source-stat:last-child { border-right: 0; }
.tt-source-stat-num { display: block; color: #fff; font-size: 32px; font-weight: 200; line-height: 1.1; }
.tt-source-stat-label { display: block; margin-top: 6px; color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; line-height: 1.35; }

/* ══ VALUE STRIP ══ */
.tt-value-strip { background: var(--tt-cream); padding: 64px 0; border-bottom: 1px solid var(--tt-line); }
.tt-value-item { text-align: center; padding: 24px 20px; }
.tt-value-icon-img { width: 72px; height: 72px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
.tt-value-icon-img img { width: 56px; height: 60px; object-fit: contain; }
.tt-value-item h4 { color: var(--tt-navy) !important; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.tt-value-item p { font-size: 17px; line-height: 1.7; color: #424552; margin: 0; }

/* ══ SECTIONS ══ */
.tt-section { padding: 100px 0; }
.tt-section-sm { padding: 64px 0; }
.tt-section-gray { background: var(--tt-soft); }
.tt-section-cream { background: var(--tt-cream); }
.tt-section-title { margin-bottom: 52px; }
.tt-section-title p { max-width: 760px; margin: 20px auto 0; font-size: 18px; }
.tt-section-heading-red { color: var(--tt-red) !important; }

/* ══ CARDS ══ */
.tt-card { height: 100%; background: #fff; border: 1px solid var(--tt-line); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 32px rgba(1,4,20,0.07); transition: .33s all ease; }
.tt-card:hover { transform: translateY(-6px); box-shadow: var(--tt-shadow); border-color: rgba(226,0,44,.25); }
.tt-card h3,.tt-card h4 { color: var(--tt-ink); font-size: 20px; }
.tt-card p { margin-top: 10px; font-size: 17px; }
.tt-card-img { width: 100%; height: 210px; object-fit: cover; display: block; }
.tt-card-body { padding: 30px 32px 32px; }
.tt-card .button-link { font-size: 15px; font-weight: 600; }

/* ══ CHECK LIST ══ */
.tt-check-list { list-style: none; padding: 0; margin: 0; }
.tt-check-list li { position: relative; padding-left: 28px; color: #424552; line-height: 1.7; font-size: 17px; }
.tt-check-list li + li { margin-top: 11px; }
.tt-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--tt-red); font-weight: 700; }

/* ══ SPLIT IMAGE ══ */
.tt-split-img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; border-radius: 8px; display: block; box-shadow: 0 22px 58px rgba(1,4,20,.14); }

/* ══ FEATURE BOX ══ */
.tt-feature-box { background: #fff; border: 1px solid var(--tt-line); border-radius: 8px; padding: 42px; box-shadow: var(--tt-shadow); }
.tt-service-tag { display: inline-block; margin-bottom: 13px; color: var(--tt-blue); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ══ INDUSTRY PILLS ══ */
.tt-industry-pill { min-height: 76px; padding: 20px 14px; display: flex; align-items: center; justify-content: center; text-align: center; background: #fff; border: 1px solid var(--tt-line); border-radius: 8px; color: var(--tt-ink); font-weight: 600; font-size: 16px; box-shadow: 0 6px 18px rgba(1,4,20,0.05); transition: .25s all ease; }
.tt-industry-pill:hover { border-color: var(--tt-red); color: var(--tt-red); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(226,0,44,.1); }

/* ══ TESTIMONIALS ══ */
.tt-testimonial-scroll { display: flex; gap: 24px; overflow-x: auto; padding: 8px 4px 28px; scroll-snap-type: x mandatory; }
.tt-testimonial-scroll::-webkit-scrollbar { height: 8px; }
.tt-testimonial-scroll::-webkit-scrollbar-track { background: #ececee; border-radius: 20px; }
.tt-testimonial-scroll::-webkit-scrollbar-thumb { background: var(--tt-red); border-radius: 20px; }
.tt-testimonial-card { flex: 0 0 440px; max-width: 440px; min-height: 360px; scroll-snap-align: start; background: #fff; border: 1px solid var(--tt-line); border-top: 4px solid var(--tt-red); border-radius: 8px; padding: 36px; box-shadow: 0 14px 36px rgba(1,4,20,0.08); }
.tt-testimonial-mark { color: var(--tt-red); font-size: 50px; line-height: 1; font-weight: 700; margin-bottom: 8px; }
.tt-testimonial-card p { color: var(--tt-ink); font-size: 17px; line-height: 1.7; margin-bottom: 22px; }
.tt-testimonial-card cite { display: block; color: #646875; font-size: 15px; font-style: normal; font-weight: 600; }
.tt-scroll-hint { margin-top: 12px; color: #646875; font-size: 15px; text-align: center; }

/* ══ CTA ══ */
.tt-cta { background-image: radial-gradient(circle at right top, rgba(226,0,44,.22), transparent 28%), linear-gradient(135deg, var(--tt-navy), var(--tt-blue)); color: #fff; border-radius: 8px; padding: 60px; box-shadow: var(--tt-shadow); }
.tt-cta h2,.tt-cta p { color: #fff; }
.tt-cta h2 { font-size: clamp(26px,2.5vw,36px); }
.tt-cta p { font-size: 18px; }

/* ══ BACK TO TOP ══ */
.tt-back-top { position: fixed; bottom: 32px; right: 32px; z-index: 999; width: 46px; height: 46px; background: var(--tt-red); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(226,0,44,.40); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease, visibility .3s ease; }
.tt-back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.tt-back-top:hover { background: #c61842; transform: translateY(-3px); }
.tt-back-top svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ══ FOOTER ══ */
.tt-footer { background: #060718; color: rgba(255,255,255,.75); padding: 64px 0 26px; font-size: 15px; line-height: 1.8; }
.tt-footer h5 { color: #fff; font-size: 16px; }
.tt-footer a { color: rgba(255,255,255,.78); }
.tt-footer a:hover { color: #fff; }
.tt-footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }

/* ══ SPACING ══ */
.tt-space-top    { margin-top: 32px; }
.tt-space-top-sm { margin-top: 18px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1199px) {
  .tt-main-nav a,.tt-main-nav button { padding: 10px 7px; font-size: 11px; }
  .tt-header-buttons a.button { padding-left: 14px !important; padding-right: 14px !important; font-size: 11px !important; }
}
@media (max-width: 991px) {
  .tt-main-nav-wrap  { display: none; }
  .tt-header-buttons { display: none; }
  .tt-mobile-toggle  { display: flex; }
  .tt-hero { min-height: 500px; padding: 60px 0 100px; }
  .tt-hero h1.heading-1 { font-size: clamp(34px,7vw,52px); }
  .tt-split-img { min-height: 280px; margin-bottom: 30px; }
  .tt-back-top { bottom: 20px; right: 20px; }
  .tt-source-stats { flex-wrap: wrap; }
  .tt-source-stats .tt-source-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.12); }
  .tt-single-source { padding: 64px 0; }
  .tt-single-source-heading { white-space: normal; font-size: 28px; }
}
@media (max-width: 767px) {
  .tt-section { padding: 68px 0; }
  .tt-card-body,.tt-feature-box,.tt-cta { padding: 28px; }
  .tt-logo img { width: 174px; }
  .tt-hero { min-height: 460px; padding: 52px 0 80px; }
  .tt-hero h1.heading-1 { font-size: 38px; line-height: 1.15; }
  .tt-hero .tt-hero-position { font-size: 17px; }
  .tt-actions { display: block; }
  .tt-actions .button + .button { margin-top: 12px; }
  .tt-testimonial-card { flex: 0 0 86%; max-width: 86%; min-height: auto; padding: 26px; }
  .tt-value-item { padding: 18px 10px; }
  .tt-cta { padding: 34px 26px; }
  .tt-single-source-heading { white-space: normal; font-size: 24px; }
  .tt-source-stats .tt-source-stat { flex: 0 0 50%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* ══ PHOTO HERO — reusable pattern for product/solution pages ══
   Usage: <section class="tt-photo-hero" style="background-image: url('images/YourPhoto.jpg');">
   Only the photo URL needs to be set per page; the gradient overlay is built in below. */
.tt-photo-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.tt-photo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,0,42,0.55) 0%, rgba(1,0,42,0.25) 45%, rgba(1,0,42,0.15) 100%);
  z-index: 1;
}
.tt-photo-hero.tt-photo-hero-dark::before {
  background: linear-gradient(90deg, rgba(0,28,45,.68) 0%, rgba(0,48,73,.48) 52%, rgba(0,81,117,.34) 100%);
}
.tt-photo-hero .container { position: relative; z-index: 2; text-align: center; }
.tt-photo-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  max-width: 980px;
  line-height: 1.15;
  margin-left: auto;
  margin-right: auto;
}
.tt-photo-hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  max-width: 760px;
  margin: 16px auto 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .tt-photo-hero { min-height: 400px; }
}

/* ══ CONTENT PHOTO STACK — reusable pattern for stacking 2-3 supporting photos
   next to body copy on product/solution pages ══ */
.tt-content-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tt-content-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 34px rgba(1,4,20,0.12);
}
@media (max-width: 767px) {
  .tt-content-photo { height: 220px; }
}

/* ══ PRODUCT PAGE COMPONENT SYSTEM ══
   Reusable across any solution/product page (Business Internet, SD-WAN, MPLS, etc.) */

.tt-eyebrow-label {
  color: #e2002c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.tt-section-intro-block {
  max-width: 860px;
  margin: 0 auto 45px;
  text-align: center;
}
.tt-section-intro-block h2,
.tt-section-intro-block h3 { color: #01002a; margin-bottom: 15px; }
.tt-section-intro-block p { font-size: 17px; line-height: 1.75; color: #4b5263; }

.tt-info-card {
  background: #ffffff;
  padding: 30px;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(1,4,20,0.08);
  border: 1px solid rgba(1,4,20,0.06);
  border-top: 4px solid var(--tt-red);
  display: flex;
  flex-direction: column;
}
.tt-info-card > .button { margin-top: auto; align-self: flex-start; }
.tt-info-card h5, .tt-info-card h6 { color: #e2002c; margin-bottom: 12px; }
.tt-info-card p { color: #4b5263; line-height: 1.7; }
.tt-info-card p:last-child { margin-bottom: 20px; }

.tt-callout {
  background: #f6f5ec;
  border-left: 5px solid #e2002c;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(1,4,20,0.08);
  border-radius: 4px;
}
.tt-callout h5 { color: #01002a; margin-bottom: 14px; }
.tt-callout p { margin-bottom: 0; color: #4b5263; line-height: 1.7; }

.tt-dark-section { background: #01002a; color: #ffffff; }
.tt-dark-section h2, .tt-dark-section h3, .tt-dark-section h4,
.tt-dark-section h5, .tt-dark-section h6 { color: #ffffff; }
.tt-dark-section p { color: rgba(255,255,255,0.78); }

.tt-dark-card {
  background: rgba(255,255,255,0.08);
  padding: 28px;
  height: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.tt-dark-card p { margin-bottom: 0; color: rgba(255,255,255,0.78); line-height: 1.7; }

.tt-border-card {
  background: #ffffff;
  border: 1px solid #e6e8ef;
  padding: 28px;
  height: 100%;
  border-radius: 6px;
}
.tt-border-card h5 { color: #e2002c; margin-bottom: 12px; }
.tt-border-card p { color: #4b5263; line-height: 1.7; margin-bottom: 0; }

.tt-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}
.tt-pill-list li {
  background: #ffffff;
  border: 1px solid #e6e8ef;
  border-radius: 50px;
  padding: 9px 16px;
  color: #01002a;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(1,4,20,0.04);
}

.tt-solution-item { margin-bottom: 22px; }
.tt-solution-item h6 { color: #e2002c; margin-bottom: 6px; }
.tt-solution-item p { margin-bottom: 0; color: #4b5263; line-height: 1.65; }

.tt-light-bg { background: #f7f9fc; }

@media (max-width: 767px) {
  .tt-info-card, .tt-border-card, .tt-dark-card, .tt-callout { padding: 24px; }
  .tt-section-intro-block { text-align: left; }
}

.tt-fine-print {
  max-width: 960px;
  margin: 25px auto 0;
  font-size: 13px;
  color: #6c7280;
  line-height: 1.6;
  text-align: center;
}

.tt-exec-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #01002a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 18px;
}

/* ══ RESOURCE CARD — image + category label + title/description/CTA,
   for asset libraries and resource-heavy pages ══ */
.tt-resource-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--tt-line);
  border-top: 4px solid var(--tt-red);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(1,4,20,0.08);
  transition: .3s all ease;
  display: flex;
  flex-direction: column;
}
.tt-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(1,4,20,0.14);
  border-color: rgba(226,0,44,.28);
}
.tt-resource-card img { display: block; width: 100%; height: auto; }
.tt-resource-card-body { padding: 28px 26px 30px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.tt-resource-card-body > .button { margin-top: auto; align-self: center; }
.tt-resource-card h3 { color: #01002a; font-size: 17px; line-height: 1.35; margin-bottom: 12px; font-weight: 700; }
.tt-resource-card p { color: #424552; font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.tt-resource-label {
  display: inline-block;
  color: #e2002c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

/* ══ JUMP NAV — pill-style in-page navigation for long resource pages ══ */
.tt-jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.tt-jump-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--tt-line);
  border-radius: 50px;
  background: #ffffff;
  color: #01002a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(1,4,20,0.06);
}
.tt-jump-nav a:hover { color: #ffffff; background: var(--tt-red); border-color: var(--tt-red); }

/* ══ VIDEO FRAME — responsive embedded video wrapper ══ */
.tt-video-frame { position: relative; overflow: hidden; aspect-ratio: 1920 / 1080; background: var(--tt-navy); }
.tt-video-frame iframe { position: absolute; width: 100%; height: 100%; inset: 0; border: none; }

/* ══ PLAIN HERO — for hub/directory pages that don't need a photo ══ */
.tt-hero-plain {
  background: #01002a;
  padding: 90px 0;
  text-align: center;
}
.tt-hero-plain h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  max-width: 980px;
  line-height: 1.15;
  margin: 0 auto;
}
.tt-hero-plain .tt-photo-hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  max-width: 760px;
  margin: 16px auto 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .tt-hero-plain { padding: 60px 0; }
}