:root {
  --ts-ink: #0e0048;
  --ts-blue: #1e3ecd;
  --ts-line: rgba(14, 0, 72, 0.08);
  --ts-line-strong: rgba(14, 0, 72, 0.14);
  --ts-text-soft: rgba(14, 0, 72, 0.58);
  --ts-surface: #ffffff;
  --ts-surface-soft: #f9fbff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: #22197f !important; color: #fff !important; }

html { scroll-behavior: smooth; }

body {
  padding-top: 62px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--ts-ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

#lenis-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
}

#lenis-content {
  min-height: 100%;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1e3ecd;
  color: #fff;
  padding: 8px 16px;
  z-index: 999;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 62px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 0, 72, 0.06);
}

.nav-logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(14, 0, 72, 0.5);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.18s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ts-ink);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-sep {
  color: #ddd;
  margin: 0 8px;
}

.nav-link-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(14, 0, 72, 0.5);
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.nav-link-btn:hover {
  background: rgba(14, 0, 72, 0.04);
  color: var(--ts-ink);
}

.nav-cta {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0d2faa;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.15s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover { background: rgba(13, 47, 170, 0.06); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ts-ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(14, 0, 72, 0.08);
  z-index: 99;
  flex-direction: column;
  padding: 8px 24px 20px;
  box-shadow: 0 8px 28px rgba(14, 0, 72, 0.1);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  pointer-events: none;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 300;
  color: var(--ts-ink);
  text-decoration: none;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(14, 0, 72, 0.05);
  display: block;
}

.mobile-menu .m-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, #0e0048, #09227c);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
}

.fade-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(.22, 1, .36, 1), transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.fade-el.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-el {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

main { display: block; }

.ts-hero {
  position: relative;
  padding: 112px 48px 58px;
  background: linear-gradient(180deg, #fff 0%, #fff 76%, #fafcff 100%);
  overflow: hidden;
}

.ts-hero::before,
.ts-hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
}

.ts-hero::before {
  top: 82px;
  left: -180px;
  background: radial-gradient(circle at 60% 40%, rgba(127, 218, 255, 0.28) 0%, rgba(62, 128, 255, 0.18) 28%, rgba(62, 128, 255, 0.08) 48%, rgba(255, 255, 255, 0) 76%);
}

.ts-hero::after {
  top: 70px;
  right: -190px;
  background: radial-gradient(circle at 38% 42%, rgba(138, 158, 255, 0.28) 0%, rgba(30, 62, 205, 0.17) 30%, rgba(30, 62, 205, 0.07) 50%, rgba(255, 255, 255, 0) 78%);
}

.ts-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ts-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(30, 62, 205, 0.86);
  margin-bottom: 26px;
}

.ts-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ts-blue);
  flex-shrink: 0;
}

.ts-hero-title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  color: var(--ts-ink);
  letter-spacing: -0.055em;
  line-height: 1.04;
  margin-bottom: 20px;
}

.ts-highlight {
  position: relative;
  display: inline-block;
  color: var(--ts-blue);
}

.ts-highlight::after {
  display: none;
}

.ts-blue { color: var(--ts-blue); }

.ts-hero-sub {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 17px;
  font-weight: 300;
  color: var(--ts-text-soft);
  line-height: 1.75;
}

.ts-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ts-trust-bar,
.ts-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--ts-line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(14, 0, 72, 0.04);
}

.ts-stars {
  color: #f2b134;
  font-size: 15px;
  letter-spacing: 1px;
}

.ts-trust-text,
.ts-meta-pill span {
  font-size: 13px;
  color: rgba(14, 0, 72, 0.7);
}

.ts-trust-text a {
  color: var(--ts-blue);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.ts-trust-text a:hover { opacity: 0.76; }

.ts-trustpilot-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 3px;
  transition: opacity 0.2s;
}

.ts-trustpilot-link:hover { opacity: 0.75; }

.ts-trustpilot-logo {
  height: 14px;
  width: auto;
  display: block;
}

.ts-meta-pill svg {
  width: 16px;
  height: 16px;
  color: var(--ts-blue);
  flex-shrink: 0;
}

.ts-meta-pill span { font-weight: 500; }

.ts-grid-section {
  position: relative;
  background: #fff;
  padding: 24px 48px 104px;
}

.ts-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 34px;
}

.ts-card {
  grid-column: span 2;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
  border: 1px solid var(--ts-line);
  border-radius: 14px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  transition:
    transform 0.34s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.34s cubic-bezier(.22, 1, .36, 1),
    border-color 0.28s ease,
    background 0.28s ease;
}

.ts-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 62, 205, 0), rgba(30, 62, 205, 0.58), rgba(30, 62, 205, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ts-card::after {
  content: '';
  position: absolute;
  right: -56px;
  bottom: -92px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(30, 62, 205, 0.1) 0%, rgba(30, 62, 205, 0.04) 38%, rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  transform: translate3d(18px, 18px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.ts-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 62, 205, 0.16);
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  box-shadow: 0 24px 52px rgba(14, 0, 72, 0.08), 0 8px 18px rgba(14, 0, 72, 0.04);
}

.ts-card:hover::before { opacity: 1; }

.ts-card:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ts-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.ts-card-mark {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ts-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ts-blue);
  background: linear-gradient(180deg, rgba(30, 62, 205, 0.08), rgba(30, 62, 205, 0.03));
  border: 1px solid rgba(30, 62, 205, 0.12);
  border-radius: 12px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.ts-card-icon svg {
  width: 18px;
  height: 18px;
}

.ts-card:hover .ts-card-icon {
  transform: translateY(-2px);
  border-color: rgba(30, 62, 205, 0.2);
  background: linear-gradient(180deg, rgba(30, 62, 205, 0.12), rgba(30, 62, 205, 0.04));
}

.ts-card-company-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ts-card-company {
  font-size: 13px;
  font-weight: 600;
  color: var(--ts-ink);
  letter-spacing: -0.01em;
}

.ts-card-location {
  font-size: 12px;
  font-weight: 400;
  color: rgba(14, 0, 72, 0.46);
}

.ts-card-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 0, 72, 0.58);
  background: #f8f9fc;
  border: 1px solid rgba(14, 0, 72, 0.08);
  padding: 7px 10px;
  border-radius: 10px;
}

.ts-card-text {
  flex: 1;
  font-size: 15.5px;
  font-weight: 400;
  color: #222b45;
  line-height: 1.8;
  letter-spacing: -0.012em;
}

.ts-card-signal {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(30, 62, 205, 0.1);
  background: rgba(238, 242, 255, 0.78);
  color: #1836a3;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.ts-card-signal svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ts-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: #1e3ecd;
  text-decoration: none;
  transition: gap 0.24s ease, opacity 0.24s ease;
}

.ts-card-link svg {
  width: 14px;
  height: 14px;
}

.ts-card-link:hover {
  gap: 11px;
  opacity: 0.86;
}

.ts-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 0, 72, 0.1), rgba(14, 0, 72, 0.03));
}

.ts-card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ts-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(14, 0, 72, 0.08);
  background: #eef1f8;
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.ts-card:hover .ts-card-avatar {
  border-color: rgba(30, 62, 205, 0.18);
  transform: translateY(-1px);
}

.ts-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.ts-avatar-woerner { object-position: center 5%; }
.ts-avatar-aras { object-position: center 12%; }
.ts-avatar-jablonski { object-position: center 8%; }
.ts-avatar-haasis { object-position: center 5%; }
.ts-avatar-hermanns { object-position: center 12%; }
.ts-avatar-blitzbau { object-position: center 18%; }

.ts-card-author {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ts-card-stars {
  color: #f3b63c;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
}

.ts-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ts-ink);
  letter-spacing: -0.01em;
}

.ts-card-role {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(14, 0, 72, 0.54);
  line-height: 1.45;
}

.ts-card-arrow {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(14, 0, 72, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(14, 0, 72, 0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.ts-card-arrow svg {
  width: 15px;
  height: 15px;
}

.ts-card-arrow:focus-visible {
  outline: 2px solid rgba(30, 62, 205, 0.34);
  outline-offset: 3px;
  color: var(--ts-blue);
  border-color: rgba(30, 62, 205, 0.2);
}

.ts-card:hover .ts-card-arrow {
  transform: translateX(3px);
  color: var(--ts-blue);
  border-color: rgba(30, 62, 205, 0.16);
  background: rgba(238, 242, 255, 0.65);
}

.ts-cta-section {
  background: #fff;
  padding: 0 48px 96px;
}

.ts-cta-inner {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  border-radius: 10px;
  border: 1px solid var(--ts-line);
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  box-shadow: 0 8px 24px rgba(14, 0, 72, 0.04);
}

.ts-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 62, 205, 0), rgba(30, 62, 205, 0.38), rgba(30, 62, 205, 0));
}

.ts-cta-inner::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(30, 62, 205, 0.07) 0%, rgba(30, 62, 205, 0.02) 40%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.ts-cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 62, 205, 0.06);
  border: 1px solid rgba(30, 62, 205, 0.1);
  color: var(--ts-blue);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.ts-cta-icon svg {
  width: 17px;
  height: 17px;
}

.ts-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.ts-cta-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(30, 62, 205, 0.72);
  margin-bottom: 8px;
}

.ts-cta-title {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--ts-ink);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 7px;
}

.ts-cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--ts-text-soft);
  line-height: 1.65;
}

.ts-cta-btns {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.ts-btn-primary,
.ts-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.22s ease, color 0.22s ease;
}

.ts-btn-primary {
  background: linear-gradient(135deg, #0e0048, #1e3ecd);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 500;
}

.ts-btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.ts-btn-primary svg {
  width: 13px;
  height: 13px;
}

.ts-btn-ghost {
  color: var(--ts-ink);
  border: 1px solid var(--ts-line-strong);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.ts-btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(14, 0, 72, 0.025);
  border-color: rgba(14, 0, 72, 0.22);
}

.tf-site-footer {
  background: #0a0f1e;
  width: 100%;
  padding: 64px 80px calc(24px + env(safe-area-inset-bottom, 0px));
  position: relative;
  overflow: hidden;
}

.tf-site-footer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 24px;
  background: #0a0f1e;
  pointer-events: none;
  z-index: 2;
}

.tf-site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(30, 62, 205, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.tf-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tf-footer-top {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tf-footer-logo-wrap { margin-bottom: 16px; }

.tf-footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.tf-footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.tf-footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.tf-footer-contact-info a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}

.tf-footer-contact-info a:hover { color: rgba(255, 255, 255, 0.95); }

.tf-footer-social-row {
  display: flex;
  gap: 8px;
}

.tf-footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.tf-footer-social-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.tf-footer-social-btn svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.6);
}

.tf-footer-social-btn:hover svg { fill: rgba(255, 255, 255, 0.9); }

.tf-footer-nav-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.tf-footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.tf-footer-nav-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tf-footer-nav-col ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.18s;
}

.tf-footer-nav-col ul li a:hover { color: rgba(255, 255, 255, 0.95); }

.tf-footer-badge-hiring {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #1d4ed8;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
}

.tf-footer-trust-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tf-footer-avatar-stack {
  display: flex;
  align-items: center;
}

.tf-footer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid #0a0f1e;
  margin-left: -10px;
  overflow: hidden;
  flex-shrink: 0;
}

.tf-footer-avatar:first-child { margin-left: 0; }

.tf-footer-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.4);
  transform-origin: center 25%;
}

.tf-footer-trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tf-footer-trust-count {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.tf-footer-trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.tf-footer-stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.tf-footer-trust-links a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.tf-footer-trust-links a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.tf-footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.tf-footer-copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.tf-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.tf-footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.tf-footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.75); }

.tf-footer-compliance-badges {
  display: flex;
  gap: 10px;
}

.tf-footer-compliance-badge {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

@media (max-width: 960px) {
  .ts-cta-inner {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px 24px;
  }

  .ts-cta-btns {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tf-site-footer {
    padding: 48px 40px calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .tf-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ts-hero {
    padding: 92px 32px 46px;
  }

  .ts-grid-section {
    padding: 18px 32px 84px;
  }

  .ts-grid-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ts-card {
    grid-column: span 2;
  }

  .ts-cta-section {
    padding: 0 32px 80px;
  }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .ts-hero {
    padding: 84px 20px 42px;
  }

  .ts-hero::before,
  .ts-hero::after {
    width: 270px;
    height: 270px;
  }

  .ts-hero::before {
    top: 110px;
    left: -150px;
  }

  .ts-hero::after {
    top: 92px;
    right: -155px;
  }

  .ts-hero-title {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .ts-hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .ts-hero-meta {
    width: 100%;
  }

  .ts-trust-bar,
  .ts-meta-pill {
    width: 100%;
    justify-content: center;
  }

  .ts-grid-section {
    padding: 12px 20px 72px;
  }

  .ts-grid-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ts-card {
    grid-column: 1;
  }

  .ts-card {
    padding: 20px;
    gap: 18px;
  }

  .ts-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .ts-card-text {
    font-size: 15px;
    line-height: 1.72;
  }

  .ts-card-footer {
    align-items: flex-start;
  }

  .ts-card-arrow { display: none; }

  .ts-cta-section {
    padding: 0 20px 72px;
  }

  .ts-cta-inner {
    padding: 20px 18px;
    gap: 14px;
    grid-template-columns: auto 1fr;
  }

  .ts-cta-btns {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ts-btn-primary,
  .ts-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .tf-site-footer {
    padding: 40px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .tf-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tf-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
