﻿@charset "UTF-8";
:root {
  --tb-font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --tb-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --tb-brand: #14bdff;
  --tb-brand-dark: #0a9fd9;
  --tb-text: #0f172a;
  --tb-text-muted: #64748b;
  --tb-bg-dark: #0f172a;
  --tb-shadow-glow: 0 0 24px rgba(20, 189, 255, 0.35);
  --tb-radius-pill: 9999px;
  --tb-transition: 0.2s ease; }

html {
  font-size: 15px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth; }

@media (min-width: 768px) {
  html {
    font-size: 16px; } }

body {
  margin: 0;
  min-height: 100vh;
  color: #0f172a;
  background: #ffffff;
  font-family: var(--tb-font-body);
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  flex-direction: column; }

main {
  flex: 1 0 auto; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--tb-font-heading);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25; }

.display-1, .display-2, .display-3, .display-4 {
  font-family: var(--tb-font-heading);
  font-weight: 800;
  letter-spacing: -0.02em; }

.btn:focus, .btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(20, 189, 255, 0.35);
  outline: none; }

.navbar-tablitz {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05); }

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 1.5rem; }

.navbar-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block; }

.navbar-brand .brand-fallback {
  font-family: var(--tb-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #0f172a; }

.nav-link {
  font-weight: 500;
  color: #334155 !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease; }

.nav-link:hover,
.nav-link:focus {
  color: #14bdff !important;
  background: rgba(20, 189, 255, 0.08); }

.nav-link.active {
  color: #14bdff !important;
  background: rgba(20, 189, 255, 0.12); }

.btn {
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.6rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease; }

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem; }

.btn-primary {
  background: #14bdff;
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06); }
  .btn-primary:hover {
    background: #0a9fd9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 189, 255, 0.35); }
  .btn-primary:active {
    transform: translateY(0); }

.btn-outline-primary {
  border-width: 2px;
  border-color: #14bdff;
  color: #14bdff;
  background: transparent; }
  .btn-outline-primary:hover {
    background: rgba(20, 189, 255, 0.1);
    border-color: #0a9fd9;
    color: #0a9fd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06); }

.btn-outline-secondary {
  border-width: 2px;
  color: #334155; }
  .btn-outline-secondary:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #64748b;
    transform: translateY(-2px); }

.hero-primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #ffffff;
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden; }
  .hero-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(20, 189, 255, 0.35) 0%, transparent 70%);
    pointer-events: none; }
  .hero-primary .display-4, .hero-primary .display-5, .hero-primary h1 {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); }
  .hero-primary .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem; }
  .hero-primary .btn-primary {
    box-shadow: 0 4px 20px rgba(20, 189, 255, 0.35); }
  .hero-primary .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff; }
    .hero-primary .btn-outline-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: #ffffff;
      color: #ffffff; }

.hero-page {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid #e2e8f0; }
  .hero-page h1 {
    margin-bottom: 0.5rem; }
  .hero-page .lead {
    color: #334155;
    margin-bottom: 0; }

.card-tablitz {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
  .card-tablitz:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    border-color: rgba(20, 189, 255, 0.2); }
  .card-tablitz .card-body {
    padding: 1.5rem; }
  .card-tablitz .card-title {
    font-weight: 700;
    color: #0f172a; }

.card-accent {
  border-left: 4px solid #14bdff;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06); }

.section-alt {
  background: #f1f5f9;
  padding: 3rem 0; }

.section-dark {
  background: #0f172a;
  color: #ffffff;
  padding: 3rem 0; }
  .section-dark h2, .section-dark h3 {
    color: #ffffff; }
  .section-dark p, .section-dark .text-muted {
    color: rgba(255, 255, 255, 0.85); }
  .section-dark .btn-primary {
    box-shadow: 0 4px 20px rgba(20, 189, 255, 0.35); }
  .section-dark.section-dark-compact {
    padding: 10px 0; }

.home-contact-cta {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e8f0; }
  .home-contact-cta.home-content-section {
    padding: 1.25rem 0; }
  .home-contact-cta .home-contact-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem; }
  .home-contact-cta .home-contact-cta-text {
    flex: 1 1 auto;
    min-width: 0; }
  .home-contact-cta .home-contact-cta-text .mud-typography-h4 {
    color: #0f172a; }
  .home-contact-cta .home-cta-btn {
    white-space: nowrap; }

.article-book-demo-cta {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden; }
  .article-book-demo-cta .home-contact-cta-text .article-book-demo-cta-title {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 189, 255, 0.95) 45%, rgba(15, 23, 42, 0.95) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    letter-spacing: -0.01em; }
  .article-book-demo-cta .article-book-demo-cta-subtitle {
    color: #334155 !important; }
  .article-book-demo-cta .article-book-demo-cta-btn {
    white-space: nowrap; }

.services-cta-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box; }

.services-cta-pad-top {
  margin-top: 2.75rem !important; }

.section-brand {
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.08) 0%, rgba(20, 189, 255, 0.02) 100%);
  padding: 3rem 0;
  border-top: 1px solid rgba(20, 189, 255, 0.15);
  border-bottom: 1px solid rgba(20, 189, 255, 0.15); }

.services-section {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 2rem 0; }

.services-section-alt {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 2rem 0; }

.services-page-hero {
  background: linear-gradient(180deg, #e2e8f0 0%, #ffffff 50%, #e2e8f0 100%);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden; }
  .services-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(20, 189, 255, 0.12) 0, rgba(20, 189, 255, 0.12) 1px, transparent 1px, transparent 56px), repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.12) 0, rgba(148, 163, 184, 0.12) 1px, transparent 1px, transparent 56px);
    opacity: 0.18;
    pointer-events: none; }
  .services-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 10%, rgba(20, 189, 255, 0.26) 0%, transparent 44%), radial-gradient(circle at 84% 18%, rgba(20, 189, 255, 0.18) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none; }
  .services-page-hero > * {
    position: relative;
    z-index: 1; }

.tb-header-bar {
  background: linear-gradient(180deg, #e2e8f0 0%, #ffffff 50%, #e2e8f0 100%);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid #e2e8f0; }

.services-hero-subtitle {
  color: #0a9fd9;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 0 28px rgba(20, 189, 255, 0.18);
  position: relative;
  padding-bottom: 0.45rem; }
  .services-hero-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 88px;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(20, 189, 255, 0.95) 0%, rgba(20, 189, 255, 0) 100%); }

.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0;
  margin-top: auto;
  border-top: none; }
  .footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease; }
    .footer a:hover {
      color: #5dd1ff; }
  .footer .small {
    color: rgba(255, 255, 255, 0.6); }

.form-control {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; }
  .form-control:focus {
    border-color: #14bdff; }

.form-label {
  font-weight: 600;
  color: #0f172a; }

.list-check {
  list-style: none;
  padding-left: 0; }
  .list-check li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem; }
    .list-check li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #14bdff;
      font-weight: 700; }

.link-arrow {
  font-weight: 600;
  color: #14bdff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease; }
  .link-arrow:hover {
    color: #0a9fd9; }
  .link-arrow::after {
    content: " →"; }

.text-brand {
  color: #14bdff; }

.badge-tablitz {
  background: rgba(20, 189, 255, 0.15);
  color: #0a9fd9;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px; }

.event-thumbnail {
  width: 160px;
  height: auto;
  max-height: 120px;
  object-fit: cover;
  object-position: top center; }

.card-article .card-body {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem; }
  @media (min-width: 768px) {
    .card-article .card-body {
      padding: 2rem 2.5rem; } }
  @media (min-width: 992px) {
    .card-article .card-body {
      padding: 2.5rem 3rem; } }

.article-thumbnail-wrap {
  width: 200px;
  align-content: center; }
  @media (min-width: 768px) {
    .article-thumbnail-wrap {
      width: 240px; } }

.article-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block; }

.article-thumbnail-placeholder {
  width: 100%;
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.12) 0%, rgba(15, 23, 42, 0.06) 100%);
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0; }
  .article-thumbnail-placeholder .mud-icon-root {
    font-size: 3rem !important;
    color: #14bdff;
    opacity: 0.9; }

.article-list-card-inner {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .article-list-card-inner {
      flex-direction: row;
      align-items: stretch; } }

.article-list-card-thumb {
  flex-shrink: 0; }
  @media (max-width: 767px) {
    .article-list-card-thumb .article-thumbnail-wrap {
      width: 100%; }
    .article-list-card-thumb .article-thumbnail,
    .article-list-card-thumb .article-thumbnail-placeholder {
      border-radius: 0; } }
  @media (min-width: 768px) {
    .article-list-card-thumb .article-thumbnail-wrap {
      width: 100%;
      max-width: 240px;
      min-height: 100%; }
    .article-list-card-thumb .article-thumbnail,
    .article-list-card-thumb .article-thumbnail-placeholder {
      height: 100%;
      object-fit: cover;
      border-radius: 0; } }

.article-list-card-body {
  flex: 1 1 auto;
  min-width: 0; }

.article-category-nav-menu {
  width: 100%; }

.article-category-nav-list.mud-list {
  padding: 0.25rem 0; }

.article-category-nav-item.mud-list-item {
  border-radius: 12px;
  margin: 2px 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: background 0.2s ease, box-shadow 0.2s ease; }
  .article-category-nav-item.mud-list-item .mud-list-item-icon {
    color: #64748b;
    transition: color 0.2s ease; }
  .article-category-nav-item.mud-list-item:hover {
    background: rgba(20, 189, 255, 0.07); }
    .article-category-nav-item.mud-list-item:hover .mud-list-item-icon {
      color: #14bdff; }
  .article-category-nav-item.mud-list-item.article-category-nav-item--active {
    background: rgba(20, 189, 255, 0.12);
    box-shadow: inset 3px 0 0 #14bdff; }
    .article-category-nav-item.mud-list-item.article-category-nav-item--active .mud-list-item-icon {
      color: #14bdff; }
    .article-category-nav-item.mud-list-item.article-category-nav-item--active .mud-typography {
      font-weight: 600;
      color: #0a9fd9; }

.article-pagination-wrap {
  flex-wrap: wrap;
  row-gap: 0.75rem; }
  .article-pagination-wrap .mud-pagination {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    gap: 0.35rem; }
    .article-pagination-wrap .mud-pagination li {
      list-style: none;
      list-style-type: none;
      margin: 0;
      padding: 0; }

.article-title {
  font-size: 1.15rem;
  line-height: 1.35; }
  @media (min-width: 768px) {
    .article-title {
      font-size: 1.35rem; } }
  @media (min-width: 992px) {
    .article-title {
      font-size: 1.5rem; } }

.article-back-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #14bdff !important;
  text-decoration: none !important;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease; }
  .article-back-nav:hover {
    border-color: #14bdff;
    background: rgba(20, 189, 255, 0.06);
    color: #0a9fd9 !important; }
  .article-back-nav .article-back-nav-icon {
    font-size: 1.25rem; }
  .article-back-nav .article-back-nav-text {
    white-space: nowrap; }

.article-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #0f172a; }
  .article-body h2 {
    font-size: 1.5rem;
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e2e8f0; }
  .article-body h3 {
    font-size: 1.3rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem; }
  .article-body h4, .article-body h5 {
    font-size: 1.15rem;
    margin-top: 1.35rem;
    margin-bottom: 0.4rem; }
  .article-body h6 {
    font-size: 1.05rem;
    margin-top: 1.1rem;
    margin-bottom: 0.35rem; }
  .article-body p {
    margin-bottom: 1rem;
    color: #334155; }
  .article-body .article-figure {
    margin: 1.5rem 0;
    padding: 0;
    text-align: center; }
    .article-body .article-figure img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06); }
    .article-body .article-figure .article-figcaption {
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: #64748b;
      font-style: italic; }
  .article-body .article-wp-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
    display: block;
    margin: 1rem auto; }
  .article-body .article-wp-content ul,
  .article-body .article-wp-content ol {
    margin: 0 0 1rem 1.25rem;
    padding-left: 1rem;
    color: #334155; }
  .article-body .article-wp-content li {
    margin-bottom: 0.35rem; }
  .article-body .article-wp-content a {
    color: #14bdff; }
  .article-body .article-wp-content a.btn.btn-default {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid #14bdff;
    background: rgba(20, 189, 255, 0.08);
    font-weight: 600;
    text-decoration: none; }
    .article-body .article-wp-content a.btn.btn-default:hover {
      background: rgba(20, 189, 255, 0.14); }
  .article-body .article-wp-content strong {
    color: #0f172a; }
  .article-body .article-wp-content figure {
    margin: 1.5rem 0; }
  .article-body .article-wp-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    text-align: center; }
  .article-body .article-doe-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06); }
  .article-body .article-doe-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem; }
    .article-body .article-doe-table th,
    .article-body .article-doe-table td {
      padding: 0.65rem 0.85rem;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid #e2e8f0;
      color: #334155; }
    .article-body .article-doe-table th {
      background: rgba(20, 189, 255, 0.08);
      color: #0f172a;
      font-weight: 600; }
    .article-body .article-doe-table thead th {
      border-bottom: 2px solid #e2e8f0; }
    .article-body .article-doe-table tbody tr:last-child td {
      border-bottom: none; }
    .article-body .article-doe-table caption {
      caption-side: top;
      padding: 0.75rem 0.85rem;
      font-weight: 600;
      color: #0f172a;
      text-align: left;
      border-bottom: 1px solid #e2e8f0;
      background: rgba(15, 23, 42, 0.03); }
  .article-body .article-social-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0; }
    .article-body .article-social-row a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      opacity: 0.9; }
      .article-body .article-social-row a:hover {
        opacity: 1; }
      .article-body .article-social-row a img {
        display: block;
        width: 40px;
        height: 40px;
        border: none;
        box-shadow: none; }
  .article-body .article-video-embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
    background: #0f172a; }
    .article-body .article-video-embed-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block; }

.technology-feature-card .mud-card-content {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  @media (min-width: 992px) {
    .technology-feature-card .mud-card-content {
      padding-top: 2.75rem;
      padding-bottom: 2.75rem; } }

.technology-feature-card .technology-feature-title-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  text-align: left; }

.technology-feature-card .technology-feature-title-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px; }
  @media (max-width: 599px) {
    .technology-feature-card .technology-feature-title-icon {
      width: 48px;
      height: 48px; } }

.technology-feature-card .technology-feature-body {
  line-height: 1.7; }

.technology-feature-card .technology-feature-subheading {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0; }

.technology-faq {
  border: none !important;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a; }
  .technology-faq .mud-expansion-panel,
  .technology-faq .mud-expand-panel {
    margin: 0 !important;
    border-bottom: none; }
    .technology-faq .mud-expansion-panel + .mud-expansion-panel,
    .technology-faq .mud-expansion-panel + .mud-expand-panel,
    .technology-faq .mud-expand-panel + .mud-expansion-panel,
    .technology-faq .mud-expand-panel + .mud-expand-panel {
      border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .technology-faq .mud-expand-panel-header,
  .technology-faq .mud-expansion-panel-header {
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%) !important;
    color: #0f172a !important;
    border-radius: 0;
    min-height: 56px;
    padding: 0.85rem 1rem 0.85rem 1.25rem !important;
    border: 1px solid #94a3b8;
    margin: 0 !important; }
    .technology-faq .mud-expand-panel-header .mud-expand-panel-header-content, .technology-faq .mud-expand-panel-header .mud-expand-panel-header-content *,
    .technology-faq .mud-expand-panel-header .mud-expansion-panel-header-content,
    .technology-faq .mud-expand-panel-header .mud-expansion-panel-header-content *,
    .technology-faq .mud-expansion-panel-header .mud-expand-panel-header-content,
    .technology-faq .mud-expansion-panel-header .mud-expand-panel-header-content *,
    .technology-faq .mud-expansion-panel-header .mud-expansion-panel-header-content,
    .technology-faq .mud-expansion-panel-header .mud-expansion-panel-header-content * {
      color: #0f172a !important;
      font-weight: 700;
      font-size: 1.1rem; }
  .technology-faq .mud-expansion-panel-content,
  .technology-faq .mud-expand-panel-content {
    background: #0f172a !important;
    padding: 0 !important; }
  .technology-faq .mud-collapse-wrapper {
    margin: 0 !important;
    padding: 0 !important; }
  .technology-faq .mud-collapse-wrapper-inner {
    background: #0f172a !important;
    padding: 1.25rem 1.5rem !important;
    margin: 0 !important; }
    .technology-faq .mud-collapse-wrapper-inner .mud-typography {
      color: rgba(255, 255, 255, 0.95) !important;
      font-size: 1rem;
      line-height: 1.7; }
    .technology-faq .mud-collapse-wrapper-inner .mud-typography:first-child {
      margin-top: 0 !important; }
    .technology-faq .mud-collapse-wrapper-inner .mud-typography:last-child {
      margin-bottom: 0 !important; }
    .technology-faq .mud-collapse-wrapper-inner .mud-stack .mud-typography {
      margin-top: 0;
      margin-bottom: 0.5rem; }
      .technology-faq .mud-collapse-wrapper-inner .mud-stack .mud-typography:last-child {
        margin-bottom: 0; }
    .technology-faq .mud-collapse-wrapper-inner .mud-typography.text-primary {
      color: #14bdff !important; }

.technology-faq-panels .mud-expansion-panel-header .mud-typography-h6 {
  font-size: 1.1rem; }

.about-capability-list .mud-list-item {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  min-height: unset; }

.service-detail-list .mud-list-item {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #334155;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  min-height: unset; }

.tb-specific-service-card {
  position: relative; }

.tb-specific-service-title {
  color: #0f172a !important;
  text-shadow: none !important;
  position: relative;
  padding-bottom: 0.85rem; }
  .tb-specific-service-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.95) 0%, rgba(34, 197, 94, 0) 100%); }

.tb-specific-service-list {
  list-style: none;
  padding-left: 0;
  margin: 0; }
  .tb-specific-service-list .mud-list-item {
    position: relative;
    padding-left: 1.7rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem; }
    .tb-specific-service-list .mud-list-item::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0.38rem;
      color: rgba(34, 197, 94, 0.95);
      font-weight: 900;
      font-size: 1rem; }

.services-hero-media {
  width: 100%; }

.services-hero-video {
  width: 100%;
  max-width: 980px;
  max-height: 420px;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  background: #0b1220;
  box-shadow: 0 18px 70px rgba(20, 189, 255, 0.12); }

@media (max-width: 768px) {
  .services-hero-video {
    max-height: 320px; } }

.services-what-we-offer-lead {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 0 1.5rem;
  text-align: center;
  position: relative;
  background: transparent;
  overflow: visible; }
  .services-what-we-offer-lead::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
    z-index: 0;
    pointer-events: none; }
  .services-what-we-offer-lead::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    bottom: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 0;
    pointer-events: none; }
  .services-what-we-offer-lead > * {
    position: relative;
    z-index: 1; }
  .services-what-we-offer-lead .services-what-we-offer-subtitle {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }

.services-what-we-offer-title {
  letter-spacing: 0.02em;
  text-shadow: 0 0 35px rgba(20, 189, 255, 0.22);
  position: relative;
  padding-bottom: 0.9rem; }
  .services-what-we-offer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82px;
    height: 2px;
    background: linear-gradient(90deg, rgba(20, 189, 255, 0.95) 0%, rgba(20, 189, 255, 0) 100%);
    border-radius: 9999px; }

.services-what-we-offer-subtitle {
  max-width: 62ch; }

.services-what-we-offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
  .services-what-we-offer-card .mud-card-content {
    position: relative;
    z-index: 1; }
  .services-what-we-offer-card:hover {
    transform: translateY(-2px); }

.services-offer-row-white {
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.06) 0%, rgba(20, 189, 255, 0.02) 100%);
  border-left: 4px solid rgba(20, 189, 255, 0.65) !important;
  box-shadow: 0 18px 60px rgba(20, 189, 255, 0.1); }
  .services-offer-row-white::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 18% 10%, rgba(20, 189, 255, 0.22) 0%, transparent 45%), radial-gradient(circle at 84% 22%, rgba(20, 189, 255, 0.14) 0%, transparent 48%);
    z-index: 0;
    pointer-events: none; }

.services-offer-row-gray {
  background: #f1f5f9;
  border-left: 4px solid rgba(148, 163, 184, 0.95) !important;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.06); }
  .services-offer-row-gray::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0, rgba(148, 163, 184, 0.08) 1px, transparent 1px, transparent 56px);
    z-index: 0;
    opacity: 0.35;
    pointer-events: none; }

.services-service-grid {
  margin-top: 0.5rem; }

.tb-service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem; }

.tb-service-icon-wrap {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0a9fd9;
  background: rgba(20, 189, 255, 0.1);
  border: 1px solid rgba(20, 189, 255, 0.28);
  box-shadow: 0 0 28px rgba(20, 189, 255, 0.14);
  position: relative;
  top: 2px; }

.tb-service-icon {
  color: #14bdff !important;
  font-size: 1.1rem; }

.tb-service-icon-wrap--gold {
  width: 40px;
  height: 40px;
  color: #7c5e00;
  background: linear-gradient(145deg, rgba(255, 236, 160, 0.95) 0%, rgba(212, 175, 55, 0.55) 42%, rgba(180, 140, 40, 0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 248, 220, 0.65) inset, 0 4px 18px rgba(180, 130, 20, 0.35), 0 0 32px rgba(255, 200, 60, 0.28); }

.tb-service-icon--gold {
  color: #b8860b !important;
  font-size: 1.28rem !important;
  filter: drop-shadow(0 0 5px rgba(255, 200, 72, 0.65)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4)); }

.tb-service-card-title {
  color: #14bdff;
  text-shadow: 0 0 22px rgba(20, 189, 255, 0.16); }

.tb-service-description {
  color: #334155; }

.tb-service-story {
  color: #64748b; }

.tb-service-story strong {
  color: #0f172a; }

.tb-capability-title {
  color: #14bdff; }

.tb-services-italic-note {
  color: #64748b;
  font-style: italic; }

.tb-center-cta {
  text-align: center;
  margin: 2rem 0; }

.tb-value-chain-paper {
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.06) 0%, rgba(20, 189, 255, 0.02) 100%);
  border-left: 4px solid #14bdff;
  position: relative;
  overflow: hidden; }
  .tb-value-chain-paper::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 16% 10%, rgba(20, 189, 255, 0.22) 0%, transparent 45%), radial-gradient(circle at 84% 22%, rgba(20, 189, 255, 0.16) 0%, transparent 48%), linear-gradient(135deg, rgba(20, 189, 255, 0.08) 0%, transparent 45%);
    opacity: 0.75;
    z-index: 0;
    pointer-events: none; }
  .tb-value-chain-paper > * {
    position: relative;
    z-index: 1; }

.tb-services-timeline {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 0; }
  @media (min-width: 768px) {
    .tb-services-timeline {
      padding-left: 1.25rem;
      border-left: 3px solid rgba(20, 189, 255, 0.35); } }

.tb-timeline-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tb-font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #14bdff 0%, #00a8ea 100%);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.95), 0 8px 24px rgba(20, 189, 255, 0.25); }

.tb-timeline-formulation-dual .tb-timeline-section {
  min-width: 0; }

.tb-timeline-formulation-dual .mud-divider {
  border-color: rgba(20, 189, 255, 0.22); }

.tb-timeline-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start; }

.tb-timeline-step--gold .tb-services-timeline-card {
  border-left: 4px solid rgba(20, 189, 255, 0.95) !important;
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.07) 0%, white 55%);
  box-shadow: 0 18px 60px rgba(20, 189, 255, 0.12); }

.tb-timeline-loop-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(20, 189, 255, 0.08);
  border: 1px dashed rgba(20, 189, 255, 0.45);
  font-size: 0.9rem;
  color: #334155; }

.tb-services-timeline-card {
  flex: 1;
  min-width: 0;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06) !important; }

.tb-ct-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem; }

.tb-ct-title {
  color: #14bdff;
  text-shadow: 0 0 22px rgba(20, 189, 255, 0.16);
  line-height: 1.15; }

.tb-ct-chip {
  margin-top: 0.35rem; }

.tb-ct-troubleshooting-card {
  border-left: 4px solid rgba(20, 189, 255, 0.95) !important;
  box-shadow: 0 22px 80px rgba(20, 189, 255, 0.14);
  position: relative;
  overflow: hidden; }
  .tb-ct-troubleshooting-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: repeating-linear-gradient(90deg, rgba(20, 189, 255, 0.16) 0, rgba(20, 189, 255, 0.16) 1px, transparent 1px, transparent 52px);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none; }
  .tb-ct-troubleshooting-card .mud-card-content {
    position: relative;
    z-index: 1; }

.specific-services-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.5; }
  .specific-services-list li {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; }

.home-hero .home-hero-title {
  font-family: var(--tb-font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--home-hero-text-color, #fff);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35); }

.home-hero .home-hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
  opacity: 0.95;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  color: var(--home-hero-text-color, #fff); }

.home-formulation-video {
  width: 100%;
  max-width: 560px;
  max-height: 320px;
  border-radius: 12px;
  object-fit: contain;
  background: transparent !important;
  border: none;
  display: block; }

.home-inline-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  margin-left: auto;
  margin-right: auto; }

.home-inline-video {
  border: none;
  box-shadow: none;
  display: block; }

.home-inline-video-frame--stacked {
  max-height: none;
  aspect-ratio: auto;
  min-height: 0; }
  .home-inline-video-frame--stacked .home-inline-video {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center; }

.home-inline-video-frame--split {
  max-height: 320px;
  aspect-ratio: 16 / 9;
  min-height: 11rem; }
  .home-inline-video-frame--split .home-inline-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.home-hero.home-hero-building {
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative; }
  .home-hero.home-hero-building::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, var(--home-hero-overlay, rgba(15, 23, 42, 0.84)) 45%, rgba(15, 23, 42, 0.92) 100%);
    opacity: 1;
    z-index: 0;
    pointer-events: none; }
  .home-hero.home-hero-building::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 16% 20%, rgba(20, 189, 255, 0.35) 0%, transparent 48%), radial-gradient(circle at 82% 18%, rgba(99, 102, 241, 0.26) 0%, transparent 55%), linear-gradient(90deg, rgba(20, 189, 255, 0.06) 0%, transparent 45%, rgba(20, 189, 255, 0.06) 100%);
    opacity: 0.65;
    z-index: 0;
    pointer-events: none; }
  .home-hero.home-hero-building > * {
    position: relative;
    z-index: 1; }

.home-section-intro .home-section-title {
  font-family: var(--tb-font-heading);
  font-weight: 700;
  font-size: 1.65rem;
  color: #14bdff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  position: relative;
  text-shadow: 0 0 30px rgba(20, 189, 255, 0.18); }
  .home-section-intro .home-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.85rem;
    width: 78px;
    height: 2px;
    background: linear-gradient(90deg, rgba(20, 189, 255, 0.9) 0%, rgba(20, 189, 255, 0) 100%);
    border-radius: 9999px; }

.home-section-intro .home-section-subtitle {
  color: #64748b;
  font-size: 1.125rem; }

.home-section-intro--centered {
  text-align: center; }
  .home-section-intro--centered .home-section-title {
    display: inline-block; }
    .home-section-intro--centered .home-section-title::after {
      left: 50%;
      transform: translateX(-50%); }

.home-what-we-offer-section {
  background: linear-gradient(180deg, rgba(20, 189, 255, 0.06) 0%, #ffffff 50%, rgba(20, 189, 255, 0.06) 100%);
  padding: 4rem 0 3.25rem;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden; }
  .home-what-we-offer-section .home-what-we-offer-inner {
    padding: 0 0.5rem;
    position: relative;
    z-index: 1; }
  .home-what-we-offer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(20, 189, 255, 0.14) 0, rgba(20, 189, 255, 0.14) 1px, transparent 1px, transparent 52px), repeating-linear-gradient(0deg, rgba(20, 189, 255, 0.1) 0, rgba(20, 189, 255, 0.1) 1px, transparent 1px, transparent 52px);
    opacity: 0.18;
    pointer-events: none; }
  .home-what-we-offer-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(20, 189, 255, 0.18) 0%, transparent 58%);
    opacity: 0.6;
    pointer-events: none; }
  .home-what-we-offer-section .home-section-intro {
    padding-bottom: 0; }
  .home-what-we-offer-section .home-offer-stack {
    padding-top: 2rem;
    padding-bottom: 0; }
  .home-what-we-offer-section .home-offer-title {
    font-family: var(--tb-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    line-height: 1.3; }
  .home-what-we-offer-section .home-offer-subtitle {
    font-size: 0.9375rem;
    line-height: 1.5; }
  .home-what-we-offer-section .home-offer-body {
    font-size: 1rem;
    line-height: 1.65;
    color: #334155; }
  .home-what-we-offer-section .home-offer-btn {
    align-self: flex-start;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9375rem !important;
    min-height: 40px !important; }

.home-offer-section.home-section-white,
.home-section-white {
  background: #ffffff !important; }

.home-offer-section {
  padding: 5.5rem 0;
  border-bottom: 1px solid #e2e8f0; }
  .home-offer-section .home-offer-title {
    font-family: var(--tb-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    line-height: 1.3; }
  .home-offer-section .home-offer-subtitle {
    font-size: 0.9375rem;
    line-height: 1.5; }
  .home-offer-section .home-offer-body {
    font-size: 1rem;
    line-height: 1.65;
    color: #334155; }
  .home-offer-section .home-offer-btn {
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    min-height: 40px; }
  .home-offer-section .home-core-subtitle {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #64748b; }

.home-content-section {
  background: linear-gradient(180deg, #e2e8f0 0%, #ffffff 50%, #e2e8f0 100%);
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid #e2e8f0; }
  .home-content-section .home-offer-title,
  .home-content-section .mud-typography-h5 {
    font-size: 1.5rem; }
  .home-content-section .home-offer-body,
  .home-content-section .mud-typography-body1 {
    font-size: 1.125rem;
    line-height: 1.65; }
  .home-content-section .home-platform-tagline-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px; }
    @media (min-width: 960px) {
      .home-content-section .home-platform-tagline-wrap {
        min-height: 280px; } }
  .home-content-section .home-platform-tagline .nowrap {
    white-space: nowrap; }
  .home-content-section .home-platform-tagline {
    margin: 0;
    font-weight: 600;
    font-style: italic;
    color: #14bdff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    font-size: clamp(1.5rem, calc(4vh + 1.25rem), 2.75rem); }
    @media (min-width: 600px) {
      .home-content-section .home-platform-tagline {
        font-size: clamp(1.75rem, calc(5vh + 1.5rem), 3.25rem); } }
    @media (min-width: 960px) {
      .home-content-section .home-platform-tagline {
        font-size: clamp(2rem, calc(6vh + 1.5rem), 3.5rem); } }

.home-why-card {
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.08) 0%, rgba(20, 189, 255, 0.02) 100%);
  border-radius: 12px;
  border: 1px solid rgba(20, 189, 255, 0.15); }

.why-tablitz-pillars {
  position: relative;
  overflow: visible;
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1.5rem;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  background: linear-gradient(165deg, #e6f4ff 0%, #ffffff 45%, #f0f9ff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(20, 189, 255, 0.12); }

.why-tablitz-pillars__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  background-image: radial-gradient(ellipse 120% 80% at 100% 100%, rgba(20, 189, 255, 0.07) 0%, transparent 55%), radial-gradient(circle at 10% 0%, rgba(20, 189, 255, 0.06) 0%, transparent 40%);
  z-index: 0; }

@keyframes why-tablitz-section-roll {
  0% {
    opacity: 0;
    transform: translate3d(-14px, 14px, 0) rotate(-2deg); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0); } }

.why-tablitz-pillars__stack {
  position: relative;
  z-index: 1; }

.why-tablitz-pillars--compact {
  padding: 1.1rem 1.1rem 1.35rem;
  max-width: 100%; }
  .why-tablitz-pillars--compact .why-tablitz-pillar-heading--compact {
    font-size: 1rem !important;
    line-height: 1.35 !important; }
  .why-tablitz-pillars--compact .why-tablitz-pillar-line {
    font-size: 0.875rem !important;
    line-height: 1.5 !important; }

.why-tablitz-pillar-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  overflow: visible;
  transform-origin: left center;
  opacity: 0;
  transform: translate3d(-14px, 14px, 0) rotate(-2deg); }

.why-tablitz-pillars--in-view .why-tablitz-pillar-row {
  animation: why-tablitz-section-roll 0.52s ease-out both; }

.why-tablitz-pillars--in-view .why-tablitz-pillar-row--0 {
  animation-delay: 0.08s; }

.why-tablitz-pillars--in-view .why-tablitz-pillar-row--1 {
  animation-delay: 0.72s; }

.why-tablitz-pillars--in-view .why-tablitz-pillar-row--2 {
  animation-delay: 1.36s; }

.why-tablitz-pillar-icon {
  font-size: 2rem !important;
  width: 1em;
  height: 1em; }

.why-tablitz-pillars--compact .why-tablitz-pillar-icon {
  font-size: 1.7rem !important; }

.why-tablitz-pillar-icon-wrap {
  flex: 0 0 auto;
  line-height: 0; }

.why-tablitz-pillar-body {
  flex: 1 1 auto;
  min-width: 0; }

@media (prefers-reduced-motion: reduce) {
  .why-tablitz-pillars .why-tablitz-pillar-row {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important; } }

.why-tablitz-pillar-heading {
  color: #0f172a;
  font-size: 1.0625rem;
  line-height: 1.35 !important;
  letter-spacing: -0.01em; }

.why-tablitz-pillar-lines {
  margin-top: 0.35rem !important; }

.why-tablitz-pillar-line {
  color: #334155;
  line-height: 1.55 !important; }

.why-tablitz-pillar-list {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  color: #334155; }
  .why-tablitz-pillar-list li {
    margin-bottom: 0.2rem; }
  .why-tablitz-pillar-list li:last-child {
    margin-bottom: 0; }

.why-tablitz-pillars-link {
  display: block;
  max-width: 560px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .why-tablitz-pillars-link:hover .why-tablitz-pillars,
  .why-tablitz-pillars-link:focus-visible .why-tablitz-pillars {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(20, 189, 255, 0.2); }
  .why-tablitz-pillars-link:focus-visible {
    outline: 2px solid #14bdff;
    outline-offset: 3px; }

.partners-divider {
  margin: 2.5rem 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(20, 189, 255, 0.25) 15%, rgba(20, 189, 255, 0.5) 50%, rgba(20, 189, 255, 0.25) 85%, transparent 100%); }

.partners-logo-frame {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  box-sizing: border-box; }
  .partners-logo-frame .mud-image {
    width: auto;
    max-width: 100%;
    max-height: 120px;
    height: auto;
    display: block; }

.dr-tablitz-partners-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  overflow-x: auto;
  padding: 0.25rem 0.1rem 0.4rem; }

.dr-tablitz-partner-logo-link {
  flex: 1 1 0;
  min-width: 140px;
  max-width: 220px;
  min-height: 74px;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 189, 255, 0.65);
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.1) 0%, rgba(20, 189, 255, 0.02) 100%);
  box-shadow: 0 8px 20px rgba(20, 189, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
  .dr-tablitz-partner-logo-link:hover {
    transform: translateY(-1px);
    border-color: rgba(20, 189, 255, 0.95);
    box-shadow: 0 12px 28px rgba(20, 189, 255, 0.2); }

.dr-tablitz-partner-logo-img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 44px !important;
  height: auto !important;
  object-fit: contain;
  display: block; }

@media (max-width: 900px) {
  .dr-tablitz-partners-strip {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: flex-start; }
  .dr-tablitz-partner-logo-link {
    flex: 0 0 calc(50% - 0.375rem);
    max-width: calc(50% - 0.375rem);
    min-width: 0; } }

.dr-tablitz-playlist-search {
  max-width: 28rem; }

.dr-tablitz-playlist-upcoming {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 189, 255, 0.35);
  background: #ecfeff; }

.dr-tablitz-playlist-list {
  width: 100%; }

.dr-tablitz-playlist-item {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0; }
  .dr-tablitz-playlist-item:last-child {
    padding-bottom: 0;
    border-bottom: none; }

.dr-tablitz-playlist-thumb-link {
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0; }

.dr-tablitz-playlist-thumb {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: #f1f5f9; }
  .dr-tablitz-playlist-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    min-height: 112px;
    color: #14bdff; }

.dr-tablitz-playlist-body {
  flex: 1 1 auto;
  min-width: 0; }

.dr-tablitz-playlist-title {
  color: #0f172a !important;
  line-height: 1.35; }
  .dr-tablitz-playlist-title:hover {
    color: #14bdff !important; }

.dr-tablitz-playlist-description {
  white-space: pre-wrap;
  word-break: break-word; }

@media (max-width: 768px) {
  .dr-tablitz-playlist-item {
    flex-direction: column;
    gap: 0.75rem; }
  .dr-tablitz-playlist-thumb,
  .dr-tablitz-playlist-thumb--placeholder {
    width: 100%; } }

.events-section-break {
  position: relative;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #e2e8f0 0%, #ffffff 50%, #e2e8f0 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  text-align: center; }
  .events-section-break .mud-typography-h5,
  .events-section-break .mud-typography-h6 {
    color: #14bdff !important;
    letter-spacing: 0.01em;
    text-shadow: none;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem) !important;
    line-height: 1.25 !important; }
  .events-section-break .events-section-break-subtitle {
    color: #475569 !important;
    margin: 0;
    line-height: 1.55;
    font-size: clamp(1rem, 1.4vw, 1.125rem) !important; }

.events-section-break--upcoming {
  border-left: 4px solid rgba(148, 163, 184, 0.95); }

.events-section-break--past {
  border-left: 4px solid rgba(100, 116, 139, 0.95); }

.home-customer-logo-frame {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  padding: 1rem 0.875rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  max-height: 132px;
  box-sizing: border-box;
  overflow: hidden; }
  .home-customer-logo-frame .mud-image,
  .home-customer-logo-frame img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 72px !important;
    height: auto !important;
    object-fit: contain;
    display: block; }
  .home-customer-logo-frame--dark {
    background: #0f172a;
    border-color: #1e293b; }

@keyframes home-who-we-serve-line-flow {
  0% {
    background-position: 0% 50%; }
  100% {
    background-position: 200% 50%; } }

@keyframes home-who-we-serve-text-flow {
  0% {
    background-position: 0% 50%; }
  100% {
    background-position: 200% 50%; } }

.home-who-we-serve-section .home-who-we-serve-more-wrap {
  margin-top: 0.25rem;
  padding-top: 1.5rem;
  text-align: center;
  position: relative; }
  .home-who-we-serve-section .home-who-we-serve-more-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 90%;
    max-width: 520px;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(20, 189, 255, 0) 0%, rgba(20, 189, 255, 0.35) 35%, rgba(20, 189, 255, 0.85) 50%, rgba(20, 189, 255, 0.35) 65%, rgba(20, 189, 255, 0) 100%);
    background-size: 200% 100%;
    animation: home-who-we-serve-line-flow 7s linear infinite;
    pointer-events: none; }

.home-who-we-serve-section .home-who-we-serve-more {
  margin: 0 auto;
  max-width: 40rem;
  font-family: var(--tb-font-heading);
  font-size: clamp(1.3rem, 2.75vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, rgba(100, 116, 139, 0.75) 0%, rgba(20, 189, 255, 0.55) 18%, rgba(20, 189, 255, 0.95) 35%, rgba(99, 102, 241, 0.75) 52%, rgba(20, 189, 255, 0.95) 68%, rgba(20, 189, 255, 0.55) 85%, rgba(100, 116, 139, 0.75) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: home-who-we-serve-text-flow 9s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .home-who-we-serve-section .home-who-we-serve-more-wrap::before,
  .home-who-we-serve-section .home-who-we-serve-more {
    animation: none; }
  .home-who-we-serve-section .home-who-we-serve-more {
    color: #64748b;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset; } }

@keyframes about-grid-drift {
  0% {
    transform: translate3d(0, 0, 0); }
  100% {
    transform: translate3d(-48px, -48px, 0); } }

@keyframes about-shimmer-border {
  0% {
    background-position: 0% 50%; }
  100% {
    background-position: 200% 50%; } }

@keyframes about-pillar-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

.tb-header-bar.tb-subpage-header-immersive {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid rgba(20, 189, 255, 0.22);
  background: linear-gradient(165deg, #0b1220 0%, #1e293b 42%, #0f172a 100%); }
  .tb-header-bar.tb-subpage-header-immersive::before {
    content: "";
    position: absolute;
    inset: -40%;
    background-image: linear-gradient(rgba(20, 189, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 189, 255, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.55;
    animation: about-grid-drift 28s linear infinite;
    pointer-events: none; }
  .tb-header-bar.tb-subpage-header-immersive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 12% 0%, rgba(20, 189, 255, 0.2) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 88% 10%, rgba(99, 102, 241, 0.16) 0%, transparent 50%), linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, transparent 42%);
    pointer-events: none; }
  .tb-header-bar.tb-subpage-header-immersive .mud-container {
    position: relative;
    z-index: 1; }
  .tb-header-bar.tb-subpage-header-immersive .mud-typography-h4 {
    color: rgba(255, 255, 255, 0.98) !important;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(20, 189, 255, 0.2); }
  .tb-header-bar.tb-subpage-header-immersive .mud-typography-h6 {
    color: rgba(226, 232, 240, 0.92) !important;
    font-weight: 500;
    line-height: 1.55;
    max-width: 46rem; }
  .tb-header-bar.tb-subpage-header-immersive .services-hero-subtitle {
    color: rgba(20, 189, 255, 0.98) !important;
    text-shadow: 0 0 28px rgba(20, 189, 255, 0.35); }

.about-page .about-section-eyebrow {
  display: block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: rgba(20, 189, 255, 0.95) !important;
  margin-bottom: 0.35rem !important; }

.about-page .about-section-title {
  font-family: var(--tb-font-heading);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.65rem; }
  .about-page .about-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(20, 189, 255, 0.95) 0%, rgba(20, 189, 255, 0) 100%); }

.about-page .text-center .about-section-title::after {
  left: 50%;
  transform: translateX(-50%); }

.about-page .about-lead {
  color: #0f172a;
  font-size: 1.0625rem;
  line-height: 1.65; }

.about-page .about-body {
  color: #334155;
  font-size: 1.0625rem;
  line-height: 1.65; }

.about-section--who {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0; }

.about-section--pillars {
  background: linear-gradient(180deg, rgba(20, 189, 255, 0.04) 0%, #ffffff 22%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0; }

.about-pillar-grid .about-pillar-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: about-pillar-in 0.55s ease backwards;
  animation-delay: calc(0.04s * (var(--about-pillar-i, 0) + 1)); }
  .about-pillar-grid .about-pillar-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    background: radial-gradient(circle at 30% 0%, rgba(20, 189, 255, 0.12) 0%, transparent 55%); }
  .about-pillar-grid .about-pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 189, 255, 0.35);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(20, 189, 255, 0.12); }
    .about-pillar-grid .about-pillar-card:hover::before {
      opacity: 1; }
    .about-pillar-grid .about-pillar-card:hover .about-pillar-icon {
      color: #14bdff;
      filter: drop-shadow(0 0 12px rgba(20, 189, 255, 0.45)); }

.about-pillar-grid .about-pillar-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: linear-gradient(145deg, rgba(20, 189, 255, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  border: 1px solid rgba(20, 189, 255, 0.18); }

.about-pillar-grid .about-pillar-icon {
  font-size: 1.6rem !important;
  color: #0a9fd9;
  transition: color 0.2s ease, filter 0.2s ease; }

.about-pillar-grid .about-pillar-label {
  color: #0f172a !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.3 !important; }

.about-pillar-grid .about-pillar-text {
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 !important; }

.about-section--approach {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0; }

.about-approach-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem; }
  @media (min-width: 768px) {
    .about-approach-flow {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      align-items: stretch; } }

.about-approach-step {
  position: relative;
  padding: 1.25rem 1rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  text-align: center; }
  @media (min-width: 768px) {
    .about-approach-step::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -6px;
      width: 12px;
      height: 2px;
      background: linear-gradient(90deg, rgba(20, 189, 255, 0.5), rgba(20, 189, 255, 0));
      transform: translateY(-50%);
      z-index: 0; }
    .about-approach-step:last-child::after {
      display: none; } }

.about-approach-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 189, 255, 0.1);
  border: 1px solid rgba(20, 189, 255, 0.22);
  color: #14bdff; }
  .about-approach-icon .mud-icon-root {
    font-size: 1.35rem !important; }

.about-approach-step-title {
  color: #0f172a !important;
  margin-bottom: 0.35rem !important; }

.about-approach-step-caption {
  color: #64748b !important;
  line-height: 1.45 !important;
  margin: 0 !important; }

.about-section--cta {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }

.about-cta-shell {
  position: relative;
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(20, 189, 255, 0.55) 0%, rgba(99, 102, 241, 0.45) 35%, rgba(20, 189, 255, 0.5) 70%, rgba(99, 102, 241, 0.4) 100%);
  background-size: 200% 100%;
  animation: about-shimmer-border 10s linear infinite; }

.about-cta-inner {
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.5rem;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06); }
  @media (min-width: 960px) {
    .about-cta-inner {
      padding: 1.75rem 2rem; } }

.about-cta-link {
  font-weight: 600;
  color: #14bdff !important; }

.about-cta-btn {
  min-width: 10rem; }

@media (prefers-reduced-motion: reduce) {
  .tb-header-bar.tb-subpage-header-immersive::before {
    animation: none; }
  .about-cta-shell {
    animation: none; }
  .about-pillar-grid .about-pillar-card {
    animation: none; }
  .about-pillar-grid .about-pillar-card:hover {
    transform: none; } }

.contact-page .contact-section--main {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 35%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0; }

.contact-page .contact-booking-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right; }
  @media (max-width: 599px) {
    .contact-page .contact-booking-rail {
      align-items: stretch;
      text-align: left; } }
  .contact-page .contact-booking-rail--divider {
    border-bottom: 1px solid rgba(226, 232, 240, 0.95); }

.contact-page .contact-booking-item {
  width: 100%;
  max-width: 28rem;
  margin-left: 0; }
  @media (min-width: 600px) {
    .contact-page .contact-booking-item {
      margin-left: auto; } }

@media (max-width: 599px) {
  .contact-page .contact-booking-btn {
    width: 100%; } }

@media (min-width: 960px) {
  .contact-page .contact-aside-inner {
    position: sticky;
    top: 5.5rem; } }

.contact-page .contact-aside-eyebrow {
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: rgba(20, 189, 255, 0.95) !important;
  margin-bottom: 0.35rem !important; }

.contact-page .contact-aside-title {
  font-family: var(--tb-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 0.75rem; }

.contact-page .contact-aside-lead {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1rem; }

.contact-page .contact-help-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.55; }
  .contact-page .contact-help-list li {
    margin-bottom: 0.4rem; }

.contact-page .contact-next-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: contact-step; }

.contact-page .contact-next-step {
  position: relative;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.85rem; }
  .contact-page .contact-next-step:last-child {
    margin-bottom: 0; }

.contact-page .contact-next-step-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.95) 0%, rgba(59, 130, 246, 0.85) 100%);
  box-shadow: 0 0 20px rgba(20, 189, 255, 0.25); }

.contact-page .contact-next-step-body {
  flex: 1;
  min-width: 0; }

.contact-page .contact-next-step-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.9rem;
  margin-bottom: 0.15rem; }

.contact-page .contact-next-step-text {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0; }

.contact-page .contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem; }

.contact-page .contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #14bdff !important;
  padding: 0.35rem 0;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease; }
  .contact-page .contact-quick-link:hover {
    color: #0a9fd9 !important;
    background: rgba(20, 189, 255, 0.06); }
  .contact-page .contact-quick-link .mud-icon-root {
    font-size: 1.1rem !important;
    opacity: 0.9; }

.contact-page .contact-privacy-note {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
  margin: 0; }

.contact-page .contact-aside-card {
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05); }

.contact-page .contact-form-card {
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 50px rgba(20, 189, 255, 0.06);
  transition: box-shadow 0.2s ease; }
  .contact-page .contact-form-card:focus-within {
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 22px 55px rgba(20, 189, 255, 0.1); }

.contact-page .contact-success-panel {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto; }

.contact-page .contact-success-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem; }

.contact-calendly-frame {
  width: 100%;
  min-height: 700px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04); }

.contact-calendly-embed-wrap {
  position: relative;
  width: 100%; }

.contact-calendly-embed-wrap--dialog {
  position: relative;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  height: 80vh;
  min-height: 80vh;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column; }

.contact-calendly-loading-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9); }

.contact-calendly-loading-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  max-width: calc(100% - 2rem);
  box-sizing: border-box; }

.contact-calendly-embed-wrap--dialog .contact-calendly-frame--dialog {
  flex: 0 0 auto;
  width: 100%;
  height: 80vh;
  min-height: 80vh;
  box-sizing: border-box; }

.contact-calendly-frame--dialog {
  height: 80vh;
  min-height: 80vh; }

.contact-calendly-embed-wrap--dialog .contact-calendly-frame--dialog iframe {
  height: 80vh !important;
  min-height: 80vh !important;
  width: 100% !important;
  max-width: 100%;
  border: 0;
  box-sizing: border-box; }

.contact-calendly-tall-embed {
  padding: 0 0.5rem 0.5rem;
  min-height: 80vh;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box; }
  @media (min-width: 960px) {
    .contact-calendly-tall-embed {
      padding: 0 1rem 1rem; } }

@media (min-width: 992px) {
  .legal-page .legal-doc-aside {
    position: sticky;
    top: 5.5rem; } }

.legal-doc-nav-card {
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  background: linear-gradient(165deg, #fafbfc 0%, #ffffff 100%) !important;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05); }

.legal-doc-nav-eyebrow {
  letter-spacing: 0.12em;
  font-weight: 700 !important;
  color: #64748b !important; }

.legal-doc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem; }

.legal-doc-nav-link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #334155 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
  .legal-doc-nav-link:hover {
    background: rgba(20, 189, 255, 0.07);
    color: #0a9fd9 !important; }
  .legal-doc-nav-link.legal-doc-nav-link--active {
    background: rgba(20, 189, 255, 0.11);
    color: #0a9fd9 !important;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #14bdff; }

.legal-document {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1e293b;
  max-width: 46rem;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fdfefe;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04); }
  @media (min-width: 768px) {
    .legal-document {
      padding: 2rem 2.25rem 2.25rem; } }
  .legal-document .legal-doc-h1 {
    font-family: var(--tb-font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 1rem;
    line-height: 1.25; }
  .legal-document .legal-doc-h2 {
    font-family: var(--tb-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.45);
    letter-spacing: -0.01em; }
    .legal-document .legal-doc-h2:first-child {
      margin-top: 0; }
  .legal-document .legal-doc-h3 {
    font-family: var(--tb-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #334155;
    margin: 1.35rem 0 0.5rem; }
  .legal-document .legal-doc-lead {
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
    color: #334155; }
  .legal-document .legal-doc-caps {
    display: block;
    font-family: var(--tb-font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin: 1.75rem 0 0.5rem; }
  .legal-document p {
    margin: 0 0 0.9rem;
    color: #334155; }
  .legal-document .legal-doc-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic; }
  .legal-document strong {
    color: #0f172a;
    font-weight: 600; }
  .legal-document a {
    color: #14bdff;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px; }
    .legal-document a:hover {
      color: #0a9fd9; }
  .legal-document ul.legal-doc-list {
    margin: 0 0 1rem 0;
    padding-left: 1.35rem;
    color: #334155; }
    .legal-document ul.legal-doc-list li {
      margin-bottom: 0.45rem; }
  .legal-document ol.legal-doc-article-list {
    margin: 0 0 1rem 0;
    padding-left: 1.35rem;
    color: #334155; }
    .legal-document ol.legal-doc-article-list li {
      margin-bottom: 0.65rem; }

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2500;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 1rem 1.25rem;
  box-sizing: border-box; }

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem; }

.cookie-consent-text {
  flex: 1 1 280px;
  min-width: 0; }

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0; }

#components-reconnect-modal {
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.25); }
