:root {
  --tf-navy: #071d37;
  --tf-navy-soft: #0c2d50;
  --tf-blue: #1677ff;
  --tf-cyan: #13b9c5;
  --tf-ink: #15243a;
  --tf-muted: #6c7b91;
  --tf-border: #e6edf5;
  --tf-surface: #f5f8fc;
  --tf-white: #fff;
  --tf-shadow: 0 16px 42px rgba(20, 55, 96, .08);
  --tf-radius: 14px;
}

body.page-home {
  background: var(--tf-white);
  color: var(--tf-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.page-home .tf-home,
body.page-home .tf-home *,
body.page-home .tf-home *::before,
body.page-home .tf-home *::after {
  box-sizing: border-box;
}

body.page-home .tf-home {
  overflow: hidden;
  line-height: 1.6;
}

body.page-home .tf-home a {
  color: inherit;
  text-decoration: none;
}

body.page-home .tf-home button {
  font: inherit;
}

body.page-home .tf-home .container {
  width: min(calc(100% - 48px), 1240px);
  max-width: 1240px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-home .tf-section {
  padding: 96px 0;
}

body.page-home .tf-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--tf-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.page-home .tf-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 40px;
}

body.page-home .tf-section-head > div {
  min-width: 0;
}

body.page-home .tf-section-head h2 {
  margin: 0;
  color: var(--tf-ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.22;
}

body.page-home .tf-section-head p {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--tf-muted);
  font-size: 15px;
  line-height: 1.8;
}

body.page-home .tf-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--tf-blue);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

body.page-home .tf-text-link span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}

body.page-home .tf-text-link:hover span {
  transform: translateX(4px);
}

body.page-home .tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.page-home .tf-btn:hover {
  transform: translateY(-2px);
}

body.page-home .tf-btn-primary {
  background: var(--tf-blue);
  box-shadow: 0 9px 22px rgba(22, 119, 255, .26);
  color: var(--tf-white);
}

body.page-home .tf-btn-primary:hover {
  background: #0d67ea;
  color: var(--tf-white);
}

body.page-home .tf-btn-secondary {
  border-color: rgba(255, 255, 255, .38);
  color: var(--tf-white);
}

body.page-home .tf-btn-secondary:hover {
  border-color: var(--tf-white);
  background: rgba(255, 255, 255, .12);
  color: var(--tf-white);
}

/* Hero */
body.page-home .tf-hero {
  position: relative;
  min-height: 590px;
  background: var(--tf-navy);
}

body.page-home .tf-hero .swiper-container,
body.page-home .tf-hero .swiper-wrapper,
body.page-home .tf-hero .swiper-slide {
  height: 590px;
}

body.page-home .tf-hero-slide {
  position: relative;
  overflow: hidden;
  background-color: var(--tf-navy);
  background-image: linear-gradient(90deg, rgba(4, 24, 47, .93) 0%, rgba(4, 24, 47, .7) 37%, rgba(4, 24, 47, .2) 76%, rgba(4, 24, 47, .46) 100%), var(--tf-hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.page-home .tf-hero-slide::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(2, 19, 39, .08), transparent 45%, rgba(2, 19, 39, .4));
  content: "";
  pointer-events: none;
}

body.page-home .tf-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 58px;
}

body.page-home .tf-hero-copy {
  width: min(610px, 57%);
  color: var(--tf-white);
}

body.page-home .tf-hero-copy .tf-eyebrow {
  color: #7fd9ff;
}

body.page-home .tf-hero-copy h1,
body.page-home .tf-hero-copy h2 {
  margin: 0;
  color: var(--tf-white);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: 1.15;
}

body.page-home .tf-hero-copy p {
  max-width: 580px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.9;
}

body.page-home .tf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

body.page-home .tf-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 25px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  list-style: none;
}

body.page-home .tf-hero-points li {
  position: relative;
  padding-left: 15px;
}

body.page-home .tf-hero-points li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #61d9ee;
  content: "";
}

body.page-home .tf-hero-console {
  width: min(330px, 32%);
  padding: 25px 26px 20px;
  border: 1px solid rgba(173, 225, 255, .22);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(19, 75, 118, .56), rgba(4, 29, 58, .56));
  box-shadow: 0 25px 55px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
  color: var(--tf-white);
  backdrop-filter: blur(8px);
}

body.page-home .tf-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

body.page-home .tf-console-kicker {
  display: block;
  margin-bottom: 4px;
  color: #83d6f3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

body.page-home .tf-console-head strong {
  display: block;
  font-size: 16px;
  font-weight: 650;
}

body.page-home .tf-status {
  color: #9de6bd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

body.page-home .tf-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 4px 1px 0;
  border-radius: 50%;
  background: #62e4a1;
  box-shadow: 0 0 0 4px rgba(98, 228, 161, .13);
}

body.page-home .tf-console-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 23px 0 19px;
}

body.page-home .tf-console-metric strong {
  color: #fff;
  font-size: 42px;
  font-weight: 750;
  letter-spacing: -.07em;
  line-height: 1;
}

body.page-home .tf-console-metric span {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

body.page-home .tf-console-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
}

body.page-home .tf-console-list b {
  color: #8ce4f0;
  font-size: 11px;
  font-weight: 650;
}

body.page-home .tf-hero .swiper-button-prev,
body.page-home .tf-hero .swiper-button-next {
  z-index: 2;
  top: auto;
  right: auto;
  bottom: 103px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--tf-white);
  opacity: .82;
  transition: background-color .2s ease, border-color .2s ease;
}

body.page-home .tf-hero .swiper-button-prev:hover,
body.page-home .tf-hero .swiper-button-next:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .13);
}

body.page-home .tf-hero .swiper-button-prev {
  left: max(calc((100% - 1240px) / 2), 24px);
}

body.page-home .tf-hero .swiper-button-next {
  left: max(calc((100% - 1240px) / 2 + 48px), 72px);
}

body.page-home .tf-hero .swiper-button-prev::after,
body.page-home .tf-hero .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

body.page-home .tf-hero .swiper-pagination {
  bottom: 118px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}

body.page-home .tf-hero .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  margin: 0 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
}

body.page-home .tf-hero .swiper-pagination-bullet-active {
  background: #6dd9ee;
}

body.page-home .tf-hero-tabs {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 22, 44, .72);
  backdrop-filter: blur(12px);
}

body.page-home .tf-hero-tabs-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}

body.page-home .tf-hero-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: rgba(255, 255, 255, .63);
  cursor: pointer;
  text-align: left;
  transition: color .2s ease, background-color .2s ease;
}

body.page-home .tf-hero-tab:first-child {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

body.page-home .tf-hero-tab::before {
  position: absolute;
  top: -1px;
  right: 100%;
  left: 0;
  height: 2px;
  background: #62d8ef;
  content: "";
  opacity: 0;
  transition: opacity .2s ease;
}

body.page-home .tf-hero-tab.active,
body.page-home .tf-hero-tab:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

body.page-home .tf-hero-tab.active::before {
  right: 0;
  opacity: 1;
}

body.page-home .tf-hero-tab span {
  color: #75d9f0;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
}

body.page-home .tf-hero-tab strong {
  font-size: 14px;
  font-weight: 650;
}

/* Service shortcuts */
body.page-home .tf-event-strip {
  position: relative;
  z-index: 4;
  background: #fff;
  box-shadow: 0 12px 35px rgba(29, 57, 91, .07);
}

body.page-home .tf-event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 98px;
}

body.page-home .tf-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 19px 25px;
  border-right: 1px solid var(--tf-border);
  transition: background-color .2s ease, transform .2s ease;
}

body.page-home .tf-event-item:first-child {
  border-left: 1px solid var(--tf-border);
}

body.page-home .tf-event-item:hover {
  background: #f8fbff;
  transform: translateY(-2px);
}

body.page-home .tf-event-item > i {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #edf6ff;
  color: var(--tf-blue);
  font-size: 16px;
}

body.page-home .tf-event-item:nth-child(2) > i {
  background: #effaf8;
  color: #0ca797;
}

body.page-home .tf-event-item:nth-child(3) > i {
  background: #fff5e8;
  color: #ec961c;
}

body.page-home .tf-event-item:nth-child(4) > i {
  background: #f3efff;
  color: #8663d9;
}

body.page-home .tf-event-item > span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.page-home .tf-event-item strong {
  color: var(--tf-ink);
  font-size: 15px;
  font-weight: 700;
}

body.page-home .tf-event-item small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--tf-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.page-home .tf-event-item > b {
  align-self: flex-start;
  margin-left: auto;
  color: #c8d4e2;
  font-size: 12px;
  font-weight: 700;
}

/* Products */
body.page-home .tf-products {
  background: #fff;
}

body.page-home .tf-product-layout {
  display: grid;
  grid-template-columns: minmax(255px, .82fr) 2fr;
  gap: 18px;
}

body.page-home .tf-product-featured {
  display: flex;
  min-height: 388px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 29px;
  border-radius: var(--tf-radius);
  background: radial-gradient(circle at 100% 0, rgba(51, 170, 203, .32), transparent 44%), linear-gradient(145deg, #0b2b4b 0%, #061c37 70%);
  box-shadow: 0 22px 45px rgba(6, 34, 65, .17);
  color: #fff;
}

body.page-home .tf-product-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.page-home .tf-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 4px;
  background: #eff6ff;
  color: var(--tf-blue);
  font-size: 11px;
  font-weight: 700;
}

body.page-home .tf-pill-light {
  background: rgba(120, 224, 239, .13);
  color: #8ce8f0;
}

body.page-home .tf-product-index {
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
}

body.page-home .tf-product-featured h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 730;
  letter-spacing: -.045em;
}

body.page-home .tf-product-featured p {
  max-width: 255px;
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.8;
}

body.page-home .tf-product-featured ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-home .tf-product-featured li {
  padding: 5px 9px;
  border: 1px solid rgba(142, 223, 240, .2);
  border-radius: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

body.page-home .tf-product-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

body.page-home .tf-btn-white {
  background: #fff;
  color: #0b3962;
}

body.page-home .tf-btn-white:hover {
  background: #eaf8ff;
  color: #0b3962;
}

body.page-home .tf-btn-ghost-white {
  border-color: rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .78);
}

body.page-home .tf-btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, .62);
  color: #fff;
}

body.page-home .tf-product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

body.page-home .tf-product-card {
  position: relative;
  display: flex;
  min-height: 187px;
  flex-direction: column;
  padding: 23px 20px 18px;
  border: 1px solid var(--tf-border);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.page-home .tf-product-card:hover {
  border-color: #a8cffb;
  box-shadow: var(--tf-shadow);
  transform: translateY(-3px);
}

body.page-home .tf-product-card-hot {
  border-color: #cae1ff;
  background: linear-gradient(145deg, #f7fbff, #fff);
}

body.page-home .tf-product-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

body.page-home .tf-product-card h3 {
  margin: 0;
  color: var(--tf-ink);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -.02em;
  line-height: 1.45;
}

body.page-home .tf-product-card h3 span {
  display: inline-block;
  margin-left: 3px;
  color: var(--tf-blue);
  font-size: 10px;
  font-weight: 650;
}

body.page-home .tf-product-card-title i {
  padding: 2px 5px;
  border-radius: 3px;
  background: #fff0eb;
  color: #f16a47;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

body.page-home .tf-product-card p {
  min-height: 42px;
  margin: 11px 0 8px;
  color: var(--tf-muted);
  font-size: 11px;
  line-height: 1.7;
}

body.page-home .tf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

body.page-home .tf-tags span {
  padding: 2px 6px;
  border-radius: 3px;
  background: #f2f6fa;
  color: #7f8da0;
  font-size: 10px;
}

body.page-home .tf-product-card > b {
  align-self: flex-end;
  margin-top: auto;
  color: var(--tf-blue);
  font-size: 12px;
  font-weight: 700;
}

body.page-home .tf-physical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 18px;
}

body.page-home .tf-physical-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 82px;
  padding: 16px 20px;
  border: 1px solid var(--tf-border);
  border-radius: 10px;
  background: #f8fafd;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

body.page-home .tf-physical-card:hover {
  border-color: #b6d5fb;
  background: #f1f7ff;
  transform: translateY(-2px);
}

body.page-home .tf-physical-card > span {
  color: #9db5ce;
  font-size: 11px;
  font-weight: 750;
}

body.page-home .tf-physical-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

body.page-home .tf-physical-card strong {
  color: var(--tf-ink);
  font-size: 14px;
  font-weight: 700;
}

body.page-home .tf-physical-card small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--tf-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.page-home .tf-physical-card > b {
  margin-left: auto;
  color: var(--tf-blue);
  font-size: 18px;
  font-weight: 400;
}

/* Services */
body.page-home .tf-services {
  background: var(--tf-surface);
}

body.page-home .tf-service-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--tf-border);
  border-radius: 8px;
  background: #fff;
}

body.page-home .tf-service-tabs button {
  flex: 1;
  min-height: 43px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--tf-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

body.page-home .tf-service-tabs button:hover {
  color: var(--tf-blue);
}

body.page-home .tf-service-tabs button.active {
  background: #eaf4ff;
  box-shadow: inset 0 0 0 1px #c8e0ff;
  color: var(--tf-blue);
}

body.page-home .tf-service-panel {
  display: none;
  min-height: 374px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(29, 57, 91, .04);
}

body.page-home .tf-service-panel.active {
  display: grid;
}

body.page-home .tf-service-media {
  display: flex;
  min-height: 374px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #eef7ff;
}

body.page-home .tf-service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-home .tf-service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 58px;
}

body.page-home .tf-service-copy h3 {
  max-width: 460px;
  margin: 0;
  color: var(--tf-ink);
  font-size: clamp(23px, 2.1vw, 30px);
  font-weight: 730;
  letter-spacing: -.045em;
  line-height: 1.38;
}

body.page-home .tf-service-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 19px;
  margin: 23px 0 15px;
  padding: 0;
  list-style: none;
}

body.page-home .tf-service-copy li {
  color: #334b66;
  font-size: 12px;
}

body.page-home .tf-service-copy li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: #41c9d3;
  content: "";
}

body.page-home .tf-service-copy p {
  max-width: 470px;
  margin: 0 0 24px;
  color: var(--tf-muted);
  font-size: 13px;
  line-height: 1.9;
}

body.page-home .tf-service-copy .tf-text-link {
  align-self: flex-start;
}

body.page-home .tf-service-security-visual {
  flex-direction: column;
  gap: 8px;
  background: radial-gradient(circle at 50% 42%, rgba(30, 191, 209, .36), transparent 25%), linear-gradient(145deg, #0a2c4c, #061a33);
  color: #fff;
}

body.page-home .tf-service-security-visual i {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(133, 232, 239, .5);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(86, 213, 226, .08), 0 0 0 32px rgba(86, 213, 226, .04);
  color: #87eaf1;
  font-size: 36px;
}

body.page-home .tf-service-security-visual strong {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 650;
}

body.page-home .tf-service-security-visual small {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  letter-spacing: .18em;
}

/* Solutions */
body.page-home .tf-solutions {
  background: #fff;
}

body.page-home .tf-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

body.page-home .tf-solution-card {
  position: relative;
  display: flex;
  min-height: 252px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 23px 21px;
  overflow: hidden;
  border: 1px solid var(--tf-border);
  border-radius: 11px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.page-home .tf-solution-card::after {
  position: absolute;
  top: -42px;
  right: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f1f7ff;
  content: "";
  transition: background-color .2s ease, transform .2s ease;
}

body.page-home .tf-solution-card:hover,
body.page-home .tf-solution-card.active {
  border-color: #a7cff8;
  box-shadow: var(--tf-shadow);
  transform: translateY(-3px);
}

body.page-home .tf-solution-card:hover::after,
body.page-home .tf-solution-card.active::after {
  background: #e5f2ff;
  transform: scale(1.15);
}

body.page-home .tf-solution-card > span {
  position: relative;
  z-index: 1;
  color: #9fb4ca;
  font-size: 12px;
  font-weight: 800;
}

body.page-home .tf-solution-card > div {
  position: relative;
  z-index: 1;
}

body.page-home .tf-solution-card h3 {
  margin: 0 0 10px;
  color: var(--tf-ink);
  font-size: 21px;
  font-weight: 730;
  letter-spacing: -.035em;
}

body.page-home .tf-solution-card p {
  margin: 0;
  color: var(--tf-muted);
  font-size: 12px;
  line-height: 1.8;
}

body.page-home .tf-solution-card > b {
  position: relative;
  z-index: 1;
  color: var(--tf-blue);
  font-size: 12px;
  font-weight: 700;
}

/* Global resources */
body.page-home .tf-regions {
  background: var(--tf-surface);
}

body.page-home .tf-region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(265px, .8fr);
  gap: 22px;
  min-height: 415px;
}

body.page-home .tf-region-map {
  position: relative;
  display: flex;
  min-height: 415px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius);
  background: radial-gradient(circle at 52% 48%, #fff, #edf6ff 68%, #e7f1fa);
}

body.page-home .tf-region-map::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  border: 1px dashed rgba(22, 119, 255, .14);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

body.page-home .tf-region-map img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(88%, 680px);
  max-height: 350px;
  object-fit: contain;
  opacity: .9;
}

body.page-home .tf-map-stats {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 22px;
  display: flex;
  gap: 21px;
  padding: 12px 15px;
  border: 1px solid rgba(174, 209, 239, .6);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 20px rgba(29, 57, 91, .08);
  backdrop-filter: blur(8px);
}

body.page-home .tf-map-stats div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

body.page-home .tf-map-stats strong {
  color: var(--tf-blue);
  font-size: 23px;
  font-weight: 760;
  line-height: 1;
}

body.page-home .tf-map-stats span {
  color: var(--tf-muted);
  font-size: 10px;
}

body.page-home .tf-region-list {
  padding: 27px 29px;
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius);
  background: #fff;
}

body.page-home .tf-region-list h3 {
  margin: 0 0 12px;
  color: var(--tf-ink);
  font-size: 17px;
  font-weight: 720;
}

body.page-home .tf-region-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 10px;
  border-top: 1px solid #eef2f6;
  color: var(--tf-muted);
  font-size: 12px;
  transition: color .2s ease, background-color .2s ease;
}

body.page-home .tf-region-list > div.active,
body.page-home .tf-region-list > div:hover {
  border-radius: 5px;
  background: #f0f7ff;
  color: var(--tf-blue);
}

body.page-home .tf-region-list div span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.page-home .tf-region-list div i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9bb5d0;
}

body.page-home .tf-region-list div.active i {
  background: var(--tf-blue);
  box-shadow: 0 0 0 4px rgba(22, 119, 255, .12);
}

body.page-home .tf-region-list b {
  color: #536b84;
  font-size: 11px;
  font-weight: 600;
}

/* News */
body.page-home .tf-news {
  background: #fff;
}

body.page-home .tf-news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

body.page-home .tf-news-featured,
body.page-home .tf-news-card {
  min-height: 274px;
  border-radius: var(--tf-radius);
}

body.page-home .tf-news-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px 28px;
  overflow: hidden;
  background-color: #0b2e50;
  background-position: center;
  background-size: cover;
  color: #fff;
}

body.page-home .tf-news-featured::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(2, 25, 49, .28), rgba(3, 24, 47, .9));
  content: "";
}

body.page-home .tf-news-featured > *,
body.page-home .tf-news-featured div {
  position: relative;
  z-index: 1;
}

body.page-home .tf-news-featured > span {
  color: #8de3f1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

body.page-home .tf-news-featured h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.035em;
}

body.page-home .tf-news-featured p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
}

body.page-home .tf-news-card {
  display: flex;
  flex-direction: column;
  padding: 25px 23px 21px;
  border: 1px solid var(--tf-border);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.page-home .tf-news-card:hover {
  border-color: #b0d4fa;
  box-shadow: var(--tf-shadow);
  transform: translateY(-3px);
}

body.page-home .tf-news-date {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 20px;
  color: #a1b1c4;
}

body.page-home .tf-news-date span {
  font-size: 11px;
}

body.page-home .tf-news-date strong {
  color: var(--tf-blue);
  font-size: 29px;
  font-weight: 760;
  letter-spacing: -.07em;
  line-height: 1;
}

body.page-home .tf-news-card .tf-pill {
  align-self: flex-start;
}

body.page-home .tf-news-card h3 {
  margin: 16px 0 0;
  color: var(--tf-ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.55;
}

body.page-home .tf-news-card > b {
  margin-top: auto;
  color: var(--tf-blue);
  font-size: 12px;
  font-weight: 700;
}

/* Customer stories and compliance */
body.page-home .tf-clients,
body.page-home .tf-compliance {
  background: var(--tf-surface);
}

body.page-home .tf-client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

body.page-home .tf-client-logo {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid var(--tf-border);
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

body.page-home .tf-client-logo:hover {
  border-color: #b5d5f5;
  box-shadow: 0 8px 22px rgba(29, 57, 91, .06);
}

body.page-home .tf-client-logo img {
  display: block;
  width: 74%;
  max-width: 132px;
  max-height: 45px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .66;
  transition: filter .2s ease, opacity .2s ease;
}

body.page-home .tf-client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

body.page-home .tf-compliance {
  padding-top: 0;
}

body.page-home .tf-compliance-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

body.page-home .tf-cert {
  display: flex;
  min-height: 148px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 17px 10px;
  border: 1px solid var(--tf-border);
  border-radius: 8px;
  background: #fff;
}

body.page-home .tf-cert img {
  display: block;
  width: 82px;
  height: 75px;
  object-fit: contain;
}

body.page-home .tf-cert span {
  color: #65768b;
  font-size: 11px;
  text-align: center;
}

@media (min-width: 1600px) {
  body.page-home .tf-home .container {
    width: min(calc(100% - 72px), 1380px);
    max-width: 1380px !important;
  }

  body.page-home .tf-hero .swiper-button-prev {
    left: max(calc((100% - 1380px) / 2), 36px);
  }

  body.page-home .tf-hero .swiper-button-next {
    left: max(calc((100% - 1380px) / 2 + 48px), 84px);
  }
}

@media (max-width: 1100px) {
  body.page-home .tf-hero-copy {
    width: 59%;
  }

  body.page-home .tf-hero-copy h1,
  body.page-home .tf-hero-copy h2 {
    font-size: clamp(35px, 4.8vw, 52px);
  }

  body.page-home .tf-product-layout {
    grid-template-columns: minmax(235px, .75fr) 2fr;
  }

  body.page-home .tf-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home .tf-service-copy {
    padding: 35px 38px;
  }

  body.page-home .tf-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-home .tf-client-grid,
  body.page-home .tf-compliance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  body.page-home .tf-home .container {
    width: calc(100% - 32px);
    max-width: none !important;
  }

  body.page-home .tf-section {
    padding: 62px 0;
  }

  body.page-home .tf-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 27px;
  }

  body.page-home .tf-section-head h2 {
    font-size: 28px;
  }

  body.page-home .tf-section-head p {
    margin-top: 9px;
    font-size: 13px;
  }

  body.page-home .tf-hero,
  body.page-home .tf-hero .swiper-container,
  body.page-home .tf-hero .swiper-wrapper,
  body.page-home .tf-hero .swiper-slide {
    height: 650px;
  }

  body.page-home .tf-hero-slide {
    background-position: 63% center;
  }

  body.page-home .tf-hero-slide::after {
    background: linear-gradient(180deg, rgba(2, 19, 39, .55), rgba(2, 19, 39, .87));
  }

  body.page-home .tf-hero-layout {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding-top: 36px;
    padding-bottom: 98px;
  }

  body.page-home .tf-hero-copy,
  body.page-home .tf-hero-console {
    width: 100%;
  }

  body.page-home .tf-hero-copy h1,
  body.page-home .tf-hero-copy h2 {
    font-size: 37px;
    letter-spacing: -.06em;
  }

  body.page-home .tf-hero-copy p {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.75;
  }

  body.page-home .tf-hero-actions {
    margin-top: 22px;
  }

  body.page-home .tf-btn {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px;
  }

  body.page-home .tf-hero-points {
    gap: 15px;
    margin-top: 18px;
  }

  body.page-home .tf-hero-console {
    padding: 17px 18px 12px;
  }

  body.page-home .tf-console-head {
    padding-bottom: 14px;
  }

  body.page-home .tf-console-metric {
    padding: 16px 0 12px;
  }

  body.page-home .tf-console-metric strong {
    font-size: 31px;
  }

  body.page-home .tf-console-list > div {
    padding: 7px 0;
  }

  body.page-home .tf-hero .swiper-button-prev,
  body.page-home .tf-hero .swiper-button-next {
    display: none;
  }

  body.page-home .tf-hero .swiper-pagination {
    bottom: 95px;
  }

  body.page-home .tf-hero-tabs {
    height: 78px;
  }

  body.page-home .tf-hero-tab {
    justify-content: center;
    padding: 0 5px;
  }

  body.page-home .tf-hero-tab span {
    display: none;
  }

  body.page-home .tf-hero-tab strong {
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
  }

  body.page-home .tf-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-home .tf-event-item {
    min-height: 83px;
    padding: 14px 13px;
  }

  body.page-home .tf-event-item:nth-child(3) {
    border-left: 1px solid var(--tf-border);
    border-top: 1px solid var(--tf-border);
  }

  body.page-home .tf-event-item:nth-child(4) {
    border-top: 1px solid var(--tf-border);
  }

  body.page-home .tf-event-item > i {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 13px;
  }

  body.page-home .tf-event-item strong {
    font-size: 13px;
  }

  body.page-home .tf-event-item small {
    font-size: 10px;
  }

  body.page-home .tf-product-layout,
  body.page-home .tf-region-layout,
  body.page-home .tf-news-grid {
    grid-template-columns: 1fr;
  }

  body.page-home .tf-product-featured {
    min-height: 295px;
  }

  body.page-home .tf-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home .tf-product-card {
    min-height: 177px;
    padding: 17px 14px 14px;
  }

  body.page-home .tf-product-card h3 {
    font-size: 13px;
  }

  body.page-home .tf-product-card h3 span {
    display: block;
    margin: 3px 0 0;
  }

  body.page-home .tf-product-card p {
    font-size: 10px;
  }

  body.page-home .tf-physical-grid {
    grid-template-columns: 1fr;
  }

  body.page-home .tf-service-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 3px;
  }

  body.page-home .tf-service-tabs button {
    min-height: 44px;
    padding: 0 5px;
    font-size: 11px;
  }

  body.page-home .tf-service-panel.active {
    grid-template-columns: 1fr;
  }

  body.page-home .tf-service-media {
    min-height: 210px;
    max-height: 250px;
  }

  body.page-home .tf-service-copy {
    padding: 30px 23px 32px;
  }

  body.page-home .tf-service-copy h3 {
    font-size: 23px;
  }

  body.page-home .tf-service-copy ul {
    margin-top: 17px;
  }

  body.page-home .tf-solution-card {
    min-height: 215px;
  }

  body.page-home .tf-region-layout {
    gap: 14px;
  }

  body.page-home .tf-region-map {
    min-height: 305px;
  }

  body.page-home .tf-region-map::before {
    width: 300px;
    height: 300px;
  }

  body.page-home .tf-region-map img {
    width: 92%;
  }

  body.page-home .tf-region-list {
    padding: 20px 17px;
  }

  body.page-home .tf-news-featured,
  body.page-home .tf-news-card {
    min-height: 235px;
  }

  body.page-home .tf-client-grid,
  body.page-home .tf-compliance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  body.page-home .tf-client-logo {
    min-height: 67px;
  }

  body.page-home .tf-client-logo img {
    width: 82%;
  }

  body.page-home .tf-cert {
    min-height: 126px;
    gap: 4px;
    padding: 10px 5px;
  }

  body.page-home .tf-cert img {
    width: 61px;
    height: 58px;
  }

  body.page-home .tf-cert span {
    font-size: 9px;
  }
}

@media (max-width: 420px) {
  body.page-home .tf-hero,
  body.page-home .tf-hero .swiper-container,
  body.page-home .tf-hero .swiper-wrapper,
  body.page-home .tf-hero .swiper-slide {
    height: 675px;
  }

  body.page-home .tf-hero-copy h1,
  body.page-home .tf-hero-copy h2 {
    font-size: 32px;
  }

  body.page-home .tf-hero-console {
    margin-top: 2px;
  }

  body.page-home .tf-hero-tab strong {
    font-size: 10px;
  }

  body.page-home .tf-product-list {
    grid-template-columns: 1fr;
  }

  body.page-home .tf-product-card {
    min-height: 154px;
  }

  body.page-home .tf-client-grid,
  body.page-home .tf-compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* De-AI treatment: use real product hierarchy instead of decorative dashboard chrome. */
body.page-home .tf-eyebrow,
body.page-home .tf-hero-console,
body.page-home .tf-hero .swiper-button-prev,
body.page-home .tf-hero .swiper-button-next,
body.page-home .tf-hero-tab span,
body.page-home .tf-product-index,
body.page-home .tf-solution-card > span,
body.page-home .tf-news-featured > span {
  display: none;
}

body.page-home .tf-hero-slide {
  background-image: linear-gradient(90deg, rgba(4, 24, 47, .86) 0%, rgba(4, 24, 47, .56) 48%, rgba(4, 24, 47, .12) 100%), var(--tf-hero-image);
}

body.page-home .tf-hero-slide::after {
  background: none;
}

body.page-home .tf-service-security-visual small {
  display: none;
}

body.page-home .tf-hero-layout {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 138px;
  padding-bottom: 82px;
}

body.page-home .tf-hero-copy {
  width: min(650px, 68%);
  padding-top: 2px;
}

body.page-home .tf-hero-copy h1,
body.page-home .tf-hero-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -.045em;
}

body.page-home .tf-hero-copy p {
  max-width: 530px;
  color: rgba(255, 255, 255, .76);
}

body.page-home .tf-hero-tabs {
  height: 72px;
  border-top: 1px solid #dfe8f2;
  background: #fff;
  backdrop-filter: none;
}

body.page-home .tf-hero-tab,
body.page-home .tf-hero-tab:first-child {
  gap: 0;
  justify-content: center;
  border-color: #e7edf4;
  color: #65758a;
  text-align: center;
}

body.page-home .tf-hero-tab.active,
body.page-home .tf-hero-tab:hover {
  background: #f4f8fc;
  color: #102b4a;
}

body.page-home .tf-hero-tab::before {
  background: var(--tf-blue);
}

body.page-home .tf-hero-tab strong {
  font-size: 13px;
  font-weight: 650;
}

body.page-home .tf-event-strip {
  border-top: 1px solid var(--tf-border);
  border-bottom: 1px solid var(--tf-border);
  box-shadow: none;
}

body.page-home .tf-event-item > i {
  flex-basis: 28px;
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  font-size: 17px;
}

body.page-home .tf-event-item:nth-child(2) > i,
body.page-home .tf-event-item:nth-child(3) > i,
body.page-home .tf-event-item:nth-child(4) > i {
  background: transparent;
}

body.page-home .tf-event-item > b {
  display: none;
}

body.page-home .tf-product-featured {
  min-height: 388px;
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  background: #f4f8fc;
  box-shadow: none;
  color: var(--tf-ink);
}

body.page-home .tf-pill-light {
  background: #e4f0ff;
  color: var(--tf-blue);
}

body.page-home .tf-product-featured p {
  color: var(--tf-muted);
}

body.page-home .tf-product-featured li {
  border-color: #d7e3ee;
  color: #536a81;
}

body.page-home .tf-btn-white {
  background: var(--tf-blue);
  color: #fff;
}

body.page-home .tf-btn-white:hover {
  background: #0d67ea;
  color: #fff;
}

body.page-home .tf-btn-ghost-white {
  border-color: #b8cde1;
  color: #315777;
}

body.page-home .tf-btn-ghost-white:hover {
  border-color: var(--tf-blue);
  color: var(--tf-blue);
}

body.page-home .tf-product-card,
body.page-home .tf-physical-card,
body.page-home .tf-news-card,
body.page-home .tf-client-logo,
body.page-home .tf-cert {
  border-radius: 6px;
  box-shadow: none;
}

body.page-home .tf-product-card:hover,
body.page-home .tf-physical-card:hover,
body.page-home .tf-news-card:hover,
body.page-home .tf-solution-card:hover,
body.page-home .tf-solution-card.active {
  box-shadow: none;
  transform: none;
}

body.page-home .tf-service-tabs {
  gap: 26px;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #dce6f0;
  border-radius: 0;
  background: transparent;
}

body.page-home .tf-service-tabs button,
body.page-home .tf-service-tabs button.active {
  min-height: 48px;
  padding: 0 2px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #65758a;
}

body.page-home .tf-service-tabs button.active {
  border-bottom: 2px solid var(--tf-blue);
  color: var(--tf-blue);
}

body.page-home .tf-service-panel {
  border-radius: 6px;
  box-shadow: none;
}

body.page-home .tf-solution-card {
  min-height: 210px;
  padding: 22px 20px 20px;
  border-width: 2px 0 0;
  border-color: #dbe6f0;
  border-radius: 0;
  background: transparent;
}

body.page-home .tf-solution-card::after {
  display: none;
}

body.page-home .tf-solution-card:hover,
body.page-home .tf-solution-card.active {
  border-color: var(--tf-blue);
  background: #f8fbfe;
}

body.page-home .tf-region-map {
  align-items: stretch;
  flex-direction: column;
  border-radius: 6px;
  background: #fff;
}

body.page-home .tf-region-map::before {
  display: none;
}

body.page-home .tf-region-map img {
  flex: 1;
  width: 88%;
  min-height: 0;
  margin: auto;
}

body.page-home .tf-map-stats {
  position: static;
  justify-content: flex-start;
  padding: 15px 21px;
  border: 0;
  border-top: 1px solid var(--tf-border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

body.page-home .tf-news-featured {
  border-radius: 6px;
}

body.page-home .tf-news-card {
  border-radius: 6px;
}

body.page-home .tf-client-logo:hover,
body.page-home .tf-cert:hover {
  box-shadow: none;
}

body.page-home .tf-service-security-visual {
  gap: 10px;
  background: #eef4f8;
  color: var(--tf-ink);
}

body.page-home .tf-service-security-visual i {
  width: 74px;
  height: 74px;
  border: 1px solid #b5d3e8;
  box-shadow: none;
  color: var(--tf-blue);
  font-size: 29px;
}

body.page-home .tf-service-security-visual strong {
  margin-top: 14px;
  font-size: 17px;
}

body.page-home .tf-service-security-visual small {
  color: #71869a;
  letter-spacing: .08em;
}

@media (max-width: 767px) {
  body.page-home .tf-hero-layout {
    align-items: flex-start;
    padding-top: 36px;
    padding-bottom: 98px;
  }

  body.page-home .tf-hero-copy {
    width: 100%;
    padding-top: 0;
  }

  body.page-home .tf-hero-tabs {
    height: 70px;
  }

  body.page-home .tf-hero-tab strong {
    font-size: 11px;
  }

  body.page-home .tf-service-tabs {
    gap: 10px;
  }

  body.page-home .tf-service-tabs button {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  body.page-home .tf-hero-copy h1,
  body.page-home .tf-hero-copy h2 {
    font-size: 32px;
  }
}