:root {
  --tg-blue: #173f55;
  --tg-blue-dark: #0d2d3d;
  --tg-dark: #26343d;
  --tg-darker: #111a20;
  --tg-white: #ffffff;
  --tg-muted: #66747d;
  --tg-line: #e2e7e9;
  --tg-bg: #f3f5f5;
  --tg-accent: #bf6200;
  --tg-orange: #bf6200;
  --tg-orange-dark: #984d00;
  --tg-header-h: 96px;
  --tg-font: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--tg-font);
  color: var(--tg-dark);
  background: var(--tg-white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.tg-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.tg-container-wide {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.tg-home { padding-top: 0; }
.tg-page { padding-top: 0; }

/* Buttons */
.tg-btn {
  --tg-btn-fill: var(--tg-orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: color .35s ease, border-color .35s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}
.tg-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-btn-fill);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: -1;
}
.tg-btn:hover::before { transform: scaleX(1); }
.tg-btn--primary {
  background: var(--tg-orange);
  color: #fff;
  border-color: var(--tg-orange);
  --tg-btn-fill: var(--tg-orange-dark);
}
.tg-btn--primary:hover { color: #fff; }
.tg-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
  --tg-btn-fill: var(--tg-orange);
}
.tg-btn--ghost:hover { color: #fff; border-color: var(--tg-orange); }
.tg-btn--blue {
  background: var(--tg-blue);
  color: #fff;
  border-color: var(--tg-blue);
  --tg-btn-fill: var(--tg-blue-dark);
}
.tg-btn--blue:hover { color: #fff; }
.tg-btn--outline {
  background: transparent;
  color: var(--tg-blue);
  border-color: var(--tg-blue);
  --tg-btn-fill: var(--tg-blue);
}
.tg-btn--outline:hover { color: #fff; }

/* Header */
.tg-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #fff;
  padding: 0;
  transition: padding .3s ease;
}
.tg-header__wrap {
  width: 100%;
  margin: 0;
}
.tg-header__bar {
  background: rgb(8 12 15 / 19%);
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tg-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 24px;
  font-size: 14px;
  background: rgba(0,0,0,.22);
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: padding .3s ease;
}
.tg-header__top-left,
.tg-header__top-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.tg-header__top a { color: #fff; opacity: .92; }
.tg-header__top a:hover { opacity: 1; }
.tg-header__top-left svg { margin-right: 6px; color: #f0a64c; vertical-align: -2px; }
.tg-header__social { display: flex; align-items: center; gap: 6px; }
.tg-header__social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.28);
  opacity: 1;
}
.tg-header__social a:hover { background: #fff; color: var(--tg-blue); }
.tg-header__social svg { margin: 0; color: inherit; }

.tg-header__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: min-height .3s ease, padding .3s ease;
}
.tg-header__brand { flex: 0 0 auto; margin-left: 24px; }
.tg-header__brand img {
  height: 62px;
  width: auto;
  transition: height .3s ease, filter .3s ease;
  filter: brightness(0) invert(1);
}
.tg-logo-dark { display: none; }
.tg-logo-white { display: block; }

.tg-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 5px;
}
.tg-nav > li { position: relative; flex: 0 0 auto; }
.tg-nav > li > a {
  display: block;
  padding: 10px 9px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 0;
  white-space: nowrap;
}
.tg-nav > li > a:hover,
.tg-nav > li > a.is-active {
  background: #984d00;
  color: #fff;
}
.tg-nav .has-sub > a::after {
  content: "▾";
  font-size: 10px;
  margin-left: 5px;
  opacity: .7;
}
.tg-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  color: var(--tg-dark);
  border-radius: 0;
  box-shadow: 0 16px 36px rgba(23,63,85,.16);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
.tg-nav > li:hover > .tg-sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.tg-sub a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--tg-dark);
}
.tg-sub a:hover { background: var(--tg-bg); color: var(--tg-blue); }

.tg-header__cta {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
  flex: 0 0 auto;
}
.tg-header__cta .tg-btn--primary {
  background: var(--tg-orange);
  color: #fff;
  border-color: var(--tg-orange);
  --tg-btn-fill: var(--tg-orange-dark);
  min-width: 154px;
  padding: 0 28px;
  border-width: 0;
}
.tg-header__cta .tg-btn svg { flex: 0 0 auto; transition: transform .25s ease; }
.tg-header__cta .tg-btn:hover svg { transform: translateX(4px); }
.tg-header__cta .tg-btn--primary:hover { color: #fff; }
.tg-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 22px;
}

.tg-header.is-sticky,
.tg-header.is-solid {
  position: fixed;
  padding-top: 0;
  color: var(--tg-dark);
}
.tg-header.is-sticky .tg-header__bar,
.tg-header.is-solid .tg-header__bar {
  background: #fff;
  box-shadow: 0 12px 32px rgba(20,30,40,.1);
  border-bottom-color: rgba(23,63,85,.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.tg-header.is-sticky .tg-header__top,
.tg-header.is-solid .tg-header__top {
  background: var(--tg-blue-dark);
  color: #fff;
  padding-top: 6px;
  padding-bottom: 6px;
}
.tg-header.is-sticky .tg-header__main,
.tg-header.is-solid .tg-header__main {
  background: #fff;
  min-height: 66px;
  padding: 0;
}
.tg-header.is-sticky .tg-header__brand img,
.tg-header.is-solid .tg-header__brand img {
  height: 42px;
  filter: none;
}
.tg-header.is-sticky .tg-header__cta .tg-btn,
.tg-header.is-solid .tg-header__cta .tg-btn {
  padding: 0 24px;
  font-size: 13px;
}
.tg-header.is-sticky .tg-nav > li > a,
.tg-header.is-solid .tg-nav > li > a { color: var(--tg-dark); }
.tg-header.is-sticky .tg-nav > li > a:hover,
.tg-header.is-sticky .tg-nav > li > a.is-active,
.tg-header.is-solid .tg-nav > li > a:hover,
.tg-header.is-solid .tg-nav > li > a.is-active {
  background: var(--tg-orange);
  color: #fff;
}
.tg-header.is-sticky .tg-logo-white,
.tg-header.is-solid .tg-logo-white { display: block; }
.tg-header.is-sticky .tg-logo-dark,
.tg-header.is-solid .tg-logo-dark { display: none; }
.tg-header.is-sticky .tg-burger,
.tg-header.is-solid .tg-burger { color: var(--tg-dark); }
.tg-header.is-sticky .tg-header__cta .tg-btn--primary,
.tg-header.is-solid .tg-header__cta .tg-btn--primary {
  background: var(--tg-orange);
  color: #fff;
  border-color: var(--tg-orange);
  --tg-btn-fill: var(--tg-orange-dark);
}
.tg-header.is-sticky .tg-header__cta .tg-btn--primary:hover,
.tg-header.is-solid .tg-header__cta .tg-btn--primary:hover {
  color: #fff;
}

body.tg-has-solid-header { padding-top: 118px; }

/* Mobile drawer */
.tg-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}
.tg-drawer.is-open { pointer-events: auto; }
.tg-drawer__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: .2s;
}
.tg-drawer.is-open .tg-drawer__bg { opacity: 1; }
.tg-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: #fff;
  color: var(--tg-dark);
  padding: 24px 20px;
  transform: translateX(100%);
  transition: .25s ease;
  overflow: auto;
}
.tg-drawer.is-open .tg-drawer__panel { transform: none; }
.tg-drawer__close {
  border: 0;
  background: transparent;
  font-size: 22px;
  float: right;
}
.tg-drawer nav a,
.tg-drawer__acc > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--tg-line);
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  text-align: left;
}
.tg-drawer__acc > button svg {
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.tg-drawer__acc.is-open > button svg { transform: rotate(180deg); }
.tg-drawer__acc-list {
  display: none;
  padding: 4px 0 10px 12px;
}
.tg-drawer__acc.is-open .tg-drawer__acc-list { display: block; }
.tg-drawer__acc-list a {
  font-weight: 500;
  color: var(--tg-muted);
  border-bottom-color: rgba(23,63,85,.06);
}
.tg-drawer__acc-list a:hover { color: var(--tg-blue); }
.tg-drawer .tg-sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 12px; }

/* Hero / Slider */
.tg-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: #111;
  overflow: hidden;
}
.tg-hero .swiper,
.tg-hero .swiper-wrapper,
.tg-hero .swiper-slide { height: 100%; }
.tg-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tg-hero__media img,
.tg-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.tg-hero__video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tg-hero__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tg-hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}
.tg-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(9,28,38,.72) 0%, rgba(15,18,20,.5) 55%, rgba(15,18,20,.22) 100%);
}
.tg-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  text-align: center;
}
.tg-hero__kicker,
.tg-hero__title,
.tg-hero__text,
.tg-hero__actions {
  opacity: 0;
  transform: translateY(28px);
}
.swiper-slide-active .tg-hero__kicker { animation: tgSlideIn .7s .15s cubic-bezier(.22,.68,0,1.2) forwards; }
.swiper-slide-active .tg-hero__title { animation: tgSlideIn .75s .32s cubic-bezier(.22,.68,0,1.2) forwards; }
.swiper-slide-active .tg-hero__text { animation: tgSlideIn .75s .48s cubic-bezier(.22,.68,0,1.2) forwards; }
.swiper-slide-active .tg-hero__actions { animation: tgSlideIn .7s .64s cubic-bezier(.22,.68,0,1.2) forwards; }
@keyframes tgSlideIn {
  to { opacity: 1; transform: none; }
}
.tg-hero__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f0a64c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tg-hero__kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: #fff;
}
.tg-hero__title {
  margin: 0 auto 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  max-width: 900px;
}
.tg-hero__title span { color: #f0a64c; }
.tg-hero__text {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.88);
  font-size: 16px;
}
.tg-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.tg-hero .swiper-pagination-bullet { background: #fff; opacity: .45; width: 10px; height: 10px; }
.tg-hero .swiper-pagination-bullet-active { opacity: 1; background: var(--tg-orange); width: 28px; border-radius: 8px; }
.tg-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-align: center;
  opacity: .8;
}
.tg-hero__scroll i { display: block; margin-top: 4px; }

/* Sections */
.tg-section { padding: 80px 0; }
.tg-section--gray { background: var(--tg-bg); }
.tg-section--dark { background: var(--tg-dark); color: #fff; }
.tg-head { margin-bottom: 36px; }
.tg-head--center { text-align: center; }
.tg-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.tg-carousel-nav { display: flex; gap: 10px; flex: 0 0 auto; margin-bottom: 4px; }
.tg-arrow {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 1px solid rgba(23,63,85,.2);
  background: #fff;
  color: var(--tg-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  cursor: pointer;
  padding: 0;
  transition: color .35s ease, border-color .35s ease;
}
.tg-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
  z-index: -1;
}
.tg-arrow:hover { color: #fff; border-color: var(--tg-blue); }
.tg-arrow:hover::before { transform: scaleX(1); }
.tg-arrow.swiper-button-disabled { opacity: .35; pointer-events: none; }
.tg-eyebrow {
  display: inline-block;
  color: var(--tg-orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tg-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--tg-dark);
}
.tg-section--dark .tg-title { color: #fff; }
.tg-lead { color: var(--tg-muted); max-width: 640px; }

/* Corporate */
.tg-corporate {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 720px;
  background: #fff;
  color: var(--tg-dark);
  overflow: hidden;
}
.tg-corporate__media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  margin: 100px 0;
}
.tg-corporate__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04);
  transition: transform .9s ease;
}
.tg-corporate:hover .tg-corporate__media img { transform: scale(1.025); }
.tg-corporate__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,45,61,.08) 30%, rgba(13,45,61,.88) 100%);
}
.tg-corporate__experience {
  position: absolute;
  left: 40px;
  bottom: 42px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  max-width: 280px;
  color: #fff;
}
.tg-corporate__experience strong {
  color: var(--tg-orange);
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.07em;
}
.tg-corporate__experience span {
  max-width: 120px;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tg-corporate__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(44px, 6vw, 104px);
  overflow: hidden;
  background: #fff;
}
.tg-corporate__index {
  position: absolute;
  top: 8px;
  right: 34px;
  color: rgba(23,63,85,.05);
  font-size: clamp(140px, 18vw, 270px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.tg-corporate__eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--tg-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tg-corporate__eyebrow span { width: 36px; height: 2px; background: var(--tg-orange); }
.tg-corporate__content h2 {
  position: relative;
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--tg-blue);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
}
.tg-corporate__text {
  position: relative;
  max-width: 680px;
  color: var(--tg-muted);
  font-size: 16px;
  line-height: 1.8;
}
.tg-corporate__text p { margin: 0 0 12px; }
.tg-corporate__values {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin-top: 26px;
  border-top: 1px solid var(--tg-line);
  border-bottom: 1px solid var(--tg-line);
}
.tg-corporate__values > div { min-height: 86px; padding: 18px 18px 16px 0; }
.tg-corporate__values > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--tg-line);
}
.tg-corporate__values span {
  display: block;
  margin-bottom: 5px;
  color: var(--tg-orange);
  font-size: 12px;
  font-weight: 800;
}
.tg-corporate__values strong {
  color: var(--tg-dark);
  font-size: 14px;
  line-height: 1.35;
}
.tg-corporate__actions {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 26px;
  margin: 30px 0 0;
}
.tg-corporate__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--tg-blue);
  font-weight: 700;
}
.tg-corporate__phone svg { color: var(--tg-orange); }
.tg-corporate__phone small {
  display: block;
  color: var(--tg-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tg-corporate__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 28px 0 8px;
  border-top: 1px solid var(--tg-line);
  border-bottom: 1px solid var(--tg-line);
}
.tg-corporate__stats > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  min-height: 118px;
  padding: 22px 22px 20px 0;
}
.tg-corporate__stats > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--tg-line);
}
.tg-corporate__stats i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--tg-orange);
  background: rgba(191,98,0,.08);
  border: 1px solid rgba(191,98,0,.18);
}
.tg-corporate__stats strong {
  color: var(--tg-blue);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}
.tg-corporate__stats span {
  color: var(--tg-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Cards / grids */
.tg-grid { display: grid; gap: 24px; }
.tg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tg-grid--4 { grid-template-columns: repeat(4, 1fr); }
.tg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(23,63,85,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23,63,85,.06);
}
.tg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(23,63,85,.12); }
.tg-card__img { aspect-ratio: 4/3; overflow: hidden; background: #eee; position: relative; }
.tg-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tg-card:hover .tg-card__img img { transform: scale(1.06); }
.tg-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tg-card__body h2,
.tg-card__body h3 { margin: 0 0 8px; font-size: 18px; }
.tg-card__body p { color: var(--tg-muted); margin: 0 0 14px; flex: 1; }
.tg-card__link { color: var(--tg-blue); font-weight: 600; font-size: 15px; }

.tg-tile {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: #dce3ea;
  box-shadow: 0 16px 36px rgba(20,30,40,.08);
}
.tg-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.tg-tile:hover img { transform: scale(1.08); }
.tg-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,63,85,0) 40%, rgba(10,30,55,.4) 100%);
  pointer-events: none;
}
.tg-tile__index {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.tg-tile__panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 18px 20px 16px;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(6px);
  transition: transform .35s ease, color .35s ease;
}
.tg-tile__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: -1;
}
.tg-tile:hover .tg-tile__panel {
  transform: translateY(0);
  color: #fff;
}
.tg-tile:hover .tg-tile__panel::before { transform: scaleX(1); }
.tg-tile__panel h2,
.tg-tile__panel h3 {
  position: relative;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.25;
  transition: color .35s ease;
}
.tg-tile__panel p {
  position: relative;
  margin: 0 0 12px;
  color: var(--tg-muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .35s ease;
}
.tg-tile__more {
  position: relative;
  color: var(--tg-blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .35s ease;
}
.tg-tile:hover .tg-tile__panel h2,
.tg-tile:hover .tg-tile__panel h3,
.tg-tile:hover .tg-tile__panel p,
.tg-tile:hover .tg-tile__more { color: #fff; }

.tg-blog-rail__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.tg-blog-rail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--tg-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tg-blog-rail__eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--tg-orange);
}
.tg-blog-rail__lead {
  max-width: 460px;
  margin: 10px 0 0;
  color: var(--tg-muted);
  font-size: 15px;
  line-height: 1.7;
}
.tg-blog-rail .tg-arrow:hover { border-color: var(--tg-orange); }
.tg-blog-rail .tg-arrow::before { background: var(--tg-orange); }
.tg-blog-swiper .swiper-slide { height: auto; }
.tg-blog-swiper .tg-plist { width: 100%; }
.tg-plist__date {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 12px;
  background: #fff;
  color: var(--tg-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  border: 1px solid var(--tg-line);
}

.tg-corp {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(23,63,85,.08);
  box-shadow: 0 12px 32px rgba(23,63,85,.06);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tg-corp:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(23,63,85,.16);
}
.tg-corp__media {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f8;
  padding: 28px 36px;
}
.tg-corp__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tg-corp__content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 24px 22px;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s ease;
}
.tg-corp__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: -1;
}
.tg-corp:hover .tg-corp__content { color: #fff; }
.tg-corp:hover .tg-corp__content::before { transform: scaleX(1); }
.tg-corp__watermark {
  position: absolute;
  right: 12px;
  top: 6px;
  z-index: 1;
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
  color: rgba(23,63,85,.12);
  pointer-events: none;
}
.tg-corp__icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(23,63,85,.18);
  color: var(--tg-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 18px rgba(23,63,85,.12);
}
.tg-corp h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  position: relative;
}
.tg-corp p {
  margin: 0 0 14px;
  color: var(--tg-muted);
  font-size: 15px;
  line-height: 1.65;
  transition: color .35s ease;
}
.tg-corp__more {
  margin-top: auto;
  color: var(--tg-blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .35s ease;
}
.tg-corp:hover h2,
.tg-corp:hover p,
.tg-corp:hover .tg-corp__more { color: #fff; }

.tg-products {
  background: #fff;
  border-top: 1px solid var(--tg-line);
}
.tg-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.tg-products__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--tg-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tg-products__eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--tg-orange);
}
.tg-products__lead {
  max-width: 460px;
  margin: 10px 0 0;
  color: var(--tg-muted);
  font-size: 15px;
  line-height: 1.7;
}
.tg-products .tg-arrow:hover { border-color: var(--tg-orange); }
.tg-products .tg-arrow::before { background: var(--tg-orange); }

.tg-plist {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--tg-line);
  box-shadow: none;
  transition: border-color .3s ease, transform .35s ease;
}
.tg-plist:hover {
  transform: translateY(-4px);
  border-color: var(--tg-blue);
  box-shadow: 0 18px 36px rgba(23,63,85,.1);
}
.tg-plist__media {
  position: relative;
  height: 250px;
  background: #eef3f8;
  overflow: hidden;
}
.tg-plist__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.tg-plist:hover .tg-plist__media img { transform: scale(1.05); }
.tg-plist__no {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 54px;
  height: 42px;
  padding: 0 14px;
  border-radius: 0;
  background: var(--tg-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tg-plist__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 0;
  border-top: 0;
}
.tg-plist__body small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--tg-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tg-plist__body h2 {
  margin: 0 0 10px;
  color: var(--tg-blue);
  font-size: 22px;
  line-height: 1.25;
}
.tg-plist__body p {
  margin: 0 0 22px;
  color: var(--tg-muted);
  font-size: 14px;
  line-height: 1.7;
}
.tg-plist__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% + 44px);
  margin-left: -22px;
  margin-right: -22px;
  padding: 14px 22px;
  border-radius: 0;
  border-top: 1px solid var(--tg-line);
  background: transparent;
  color: var(--tg-blue);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s ease;
}
.tg-plist__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: -1;
}
.tg-plist__cta i {
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 1px solid rgba(23,63,85,.18);
  background: #fff;
  color: var(--tg-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}
.tg-plist:hover .tg-plist__cta { color: #fff; }
.tg-plist:hover .tg-plist__cta::before { transform: scaleX(1); }
.tg-plist:hover .tg-plist__cta i {
  background: #fff;
  color: var(--tg-orange);
  border-color: #fff;
}

.tg-carousel .swiper-wrapper { align-items: stretch; }
.tg-carousel .swiper-slide { height: auto; display: flex; }
.tg-carousel .tg-plist { width: 100%; }
.tg-product {
  position: relative;
  display: block;
  height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: #dce3ea;
  box-shadow: 0 16px 36px rgba(20,30,40,.08);
}
.tg-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.tg-product:hover img { transform: scale(1.08); }
.tg-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,63,85,0) 42%, rgba(10,30,55,.38) 100%);
  pointer-events: none;
}
.tg-product__index {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.tg-product__panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 18px 20px 16px;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(6px);
  transition: transform .35s ease, color .35s ease;
}
.tg-product__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: -1;
}
.tg-product:hover .tg-product__panel,
.tg-product__panel:hover {
  transform: translateY(0);
  color: #fff;
}
.tg-product:hover .tg-product__panel::before,
.tg-product__panel:hover::before { transform: scaleX(1); }
.tg-product__panel h3 {
  position: relative;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.25;
  transition: color .35s ease;
}
.tg-product__panel p {
  position: relative;
  margin: 0 0 12px;
  color: var(--tg-muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .35s ease;
}
.tg-product__more {
  position: relative;
  color: var(--tg-blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .35s ease;
}
.tg-carousel.animated .tg-product__panel h3 {
  animation: fadeInUp .65s ease both;
}
.tg-carousel.animated .tg-product__panel p {
  animation: fadeInUp .65s ease both .08s;
}
.tg-carousel.animated .tg-product__more {
  animation: fadeInUp .65s ease both .16s;
}
.tg-carousel.animated .swiper-slide:nth-child(2) .tg-product__panel h3,
.tg-carousel.animated .swiper-slide:nth-child(2) .tg-product__panel p,
.tg-carousel.animated .swiper-slide:nth-child(2) .tg-product__more { animation-delay: .18s; }
.tg-carousel.animated .swiper-slide:nth-child(2) .tg-product__panel p { animation-delay: .26s; }
.tg-carousel.animated .swiper-slide:nth-child(2) .tg-product__more { animation-delay: .34s; }
.tg-carousel.animated .swiper-slide:nth-child(3) .tg-product__panel h3 { animation-delay: .28s; }
.tg-carousel.animated .swiper-slide:nth-child(3) .tg-product__panel p { animation-delay: .36s; }
.tg-carousel.animated .swiper-slide:nth-child(3) .tg-product__more { animation-delay: .44s; }
.tg-product:hover .tg-product__panel h3,
.tg-product:hover .tg-product__panel p,
.tg-product:hover .tg-product__more {
  color: #fff;
}

/* Gallery / logos */
.tg-refs {
  background: var(--tg-bg);
  border-top: 1px solid var(--tg-line);
}
.tg-refs__head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
.tg-refs__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--tg-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tg-refs__eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--tg-orange);
}
.tg-refs__lead {
  margin: 12px auto 0;
  max-width: 520px;
  color: var(--tg-muted);
  font-size: 15px;
  line-height: 1.7;
}
.tg-refs-swiper {
  border: 1px solid var(--tg-line);
  background: #fff;
  overflow: hidden;
}
.tg-refs-swiper .swiper-wrapper { align-items: stretch; }
.tg-refs-swiper .swiper-slide {
  height: auto;
  border-right: 1px solid var(--tg-line);
}
.tg-refs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 28px 24px;
  background: #fff;
  transition: background-color .25s ease;
}
.tg-refs__item:hover { background: rgba(191,98,0,.04); }
.tg-refs__item img {
  max-height: 84px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .8;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.tg-refs__item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.tg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.tg-logos img { max-height: 64px; width: auto; filter: grayscale(1); opacity: .75; }
.tg-logos a:hover img { filter: none; opacity: 1; }

.tg-logo-marquee {
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 1px solid var(--tg-line);
  background: #fff;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.tg-logo-marquee__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 0;
  padding: 0;
  animation: tg-logo-scroll 32s linear infinite;
}
.tg-logo-marquee:hover .tg-logo-marquee__track { animation-play-state: paused; }
.tg-logo-marquee a,
.tg-logo-marquee span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 110px;
  padding: 18px 28px;
  background: #fff;
  border: 0;
  border-right: 1px solid var(--tg-line);
  border-radius: 0;
  box-shadow: none;
  transition: background-color .25s ease;
}
.tg-logo-marquee a:hover,
.tg-logo-marquee span:hover {
  background: rgba(191,98,0,.04);
}
.tg-logo-marquee img {
  max-height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .3s ease, opacity .3s ease;
}
.tg-logo-marquee a:hover img,
.tg-logo-marquee span:hover img { filter: none; opacity: 1; }
@keyframes tg-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tg-logo-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .tg-logo-marquee a,
  .tg-logo-marquee span {
    border: 1px solid var(--tg-line);
    border-right-width: 1px;
  }
}

.tg-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tg-gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }

/* Video widget */
.tg-video-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(20,30,40,.06); }
.tg-video-card__thumb { position: relative; }
.tg-video-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.tg-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}
.tg-play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tg-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-video-card h3 { margin: 0; padding: 16px 18px 18px; font-size: 16px; }

/* FAQ */
.tg-faq { max-width: 860px; margin: 0 auto; }
.tg-faq details {
  background: #fff;
  border: 1px solid var(--tg-line);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.tg-faq summary { font-weight: 700; cursor: pointer; }
.tg-faq p { margin: 12px 0 0; color: var(--tg-muted); }

/* Parallax */
.tg-parallax {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.tg-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23,63,85,.72);
}
.tg-parallax__inner { position: relative; z-index: 1; color: #fff; }
.tg-parallax__inner h2 { color: #fff; }

/* Stats */
.tg-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.tg-stat { text-align: center; }
.tg-stat strong { display: block; font-size: 36px; color: var(--tg-orange); }
.tg-stat span { font-size: 14px; opacity: .85; }

/* Breadcrumb */
.tg-crumb {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  background: var(--tg-blue) center/cover no-repeat;
  color: #fff;
  padding: 190px 0 58px;
  overflow: hidden;
}
.tg-crumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,31,44,.94) 0%, rgba(13,45,61,.78) 52%, rgba(13,45,61,.45) 100%);
}
.tg-crumb::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -120px;
  width: 34vw;
  height: 300px;
  border: 1px solid rgba(255,255,255,.12);
  transform: skewX(-24deg);
}
.tg-crumb__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  text-align: left;
}
.tg-crumb h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
}
.tg-crumb__path {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  opacity: .9;
}
.tg-crumb__path a {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.76);
  transition: color .25s ease;
}
.tg-crumb__path a:hover {
  color: #f5a54f;
}

.tg-detail-hero__eyebrow,
.tg-detail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--tg-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tg-detail-hero__eyebrow { margin-bottom: 0; color: #f5a54f; }
.tg-detail-hero__eyebrow span,
.tg-detail__eyebrow span {
  width: 36px;
  height: 2px;
  background: currentColor;
}
.tg-detail-hero__lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
}

.tg-detail { background: #fff; }
.tg-detail__content {
  color: #4b5962;
  font-size: 16px;
  line-height: 1.85;
}
.tg-detail__content > :first-child:not(.tg-detail__eyebrow) { margin-top: 0; }
.tg-detail__content h2,
.tg-detail-block h2,
.tg-detail-section-head h2 {
  color: var(--tg-blue);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}
.tg-detail__content h3 { color: var(--tg-blue); }
.tg-detail__content a { color: var(--tg-orange); text-decoration: underline; }
.tg-detail__content ul,
.tg-detail__content ol { padding-left: 20px; }
.tg-detail__content li { margin-bottom: 8px;list-style: disc; }
.tg-detail__cover { margin-bottom: 36px; }
.tg-detail__cover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 5px;
  background: var(--tg-orange);
  z-index: 2;
}
.tg-detail__media-no {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  min-width: 58px;
  height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}
.tg-detail__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: stretch;
}
.tg-detail__split .tg-detail__cover {
  margin: 0;
  min-height: 480px;
  height: 100%;
  aspect-ratio: auto;
  align-self: stretch;
}
.tg-detail__split .tg-detail__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tg-detail__standalone { max-width: 1240px; margin: 0 auto; }
.tg-detail-block {
  margin-top: 58px;
  padding-top: 40px;
  border-top: 1px solid var(--tg-line);
}
.tg-detail-block--spec {
  padding: 40px;
  border: 0;
  border-left: 5px solid var(--tg-orange);
  background: var(--tg-bg);
}
.tg-detail-block__head { margin-bottom: 24px; }
.tg-detail-block__head h2,
.tg-detail-block--spec h2 { margin: 0; }
.tg-detail-block__content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.tg-detail-block__content th,
.tg-detail-block__content td {
  padding: 14px 16px;
  border: 1px solid var(--tg-line);
  text-align: left;
}
.tg-detail-section-head {
  max-width: 720px;
  margin-bottom: 38px;
}
.tg-detail-section-head h2 { margin: 0 0 12px; }
.tg-detail-section-head > p:last-child {
  margin: 0;
  color: var(--tg-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Inner content */
.tg-article { padding: 88px 0; }
.tg-article__layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  grid-template-areas: "side main";
  gap: 48px;
  align-items: start;
}
.tg-article__layout > .tg-aside { grid-area: side; }
.tg-article__layout > .tg-article__body { grid-area: main; }
.tg-article__layout--blog {
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-areas: "main side";
}
.tg-article__body { background: #fff; border-radius: 0; padding: 0; }
.tg-article__body h2 { margin-top: 0; }
.tg-article__body p { color: #4b5563; }
.tg-article__body img { border-radius: 0; margin-bottom: 24px; }
.tg-cover {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 28px;
  background: #eef3f8;
  aspect-ratio: 16/9;
  border: 1px solid var(--tg-line);
}
.tg-cover a { display: block; height: 100%; }
.tg-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.tg-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tg-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 200px;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid var(--tg-line);
  border-radius: 0;
  box-shadow: none;
  transition: transform .35s ease, background-color .35s ease, border-color .35s ease;
}
.tg-brand img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  margin: 0;
}
.tg-brand span {
  color: var(--tg-dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.tg-brand:hover {
  transform: translateY(-4px);
  border-color: var(--tg-orange);
  background: rgba(191,98,0,.04);
}
.tg-media-section__head { margin-bottom: 28px; }
.tg-media-section__head h2 {
  margin: 0;
  color: var(--tg-blue);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}
.tg-media-section--spaced {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--tg-line);
}
.tg-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.tg-media-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--tg-line);
  background: #eef3f8;
}
.tg-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,45,61,.72) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.tg-media-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  margin: 0;
  transition: transform .5s ease;
}
.tg-media-card:hover img { transform: scale(1.05); }
.tg-media-card:hover::after { opacity: 1; }
.tg-media-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background: var(--tg-orange);
  color: #fff;
  transition: background-color .3s ease, transform .3s ease;
}
.tg-media-card__play svg { margin-left: 3px; }
.tg-media-card:hover .tg-media-card__play {
  background: var(--tg-blue);
  transform: translate(-50%, -50%) scale(1.08);
}
.tg-media-card__title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.tg-media-card:hover .tg-media-card__title {
  opacity: 1;
  transform: none;
}
.tg-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.tg-shots--page { margin-top: 0; }
.tg-shot {
  position: relative;
  display: block;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eef3f8;
}
.tg-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  transition: transform .5s ease;
}
.tg-shot:hover img { transform: scale(1.06); }
.tg-shot__label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--tg-dark);
  font-size: 13px;
  font-weight: 700;
}
.tg-blog {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(23,63,85,.08);
  box-shadow: 0 12px 32px rgba(23,63,85,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.tg-blog:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(23,63,85,.16);
}
.tg-blog__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #eef3f8;
}
.tg-blog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tg-blog:hover .tg-blog__media img { transform: scale(1.06); }
.tg-blog__media time {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--tg-blue);
  font-size: 12px;
  font-weight: 700;
}
.tg-blog__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.tg-blog__body h2 { margin: 0 0 8px; font-size: 20px; line-height: 1.3; }
.tg-blog__body p { margin: 0 0 16px; color: var(--tg-muted); font-size: 14px; }
.tg-blog__more {
  margin-top: auto;
  color: var(--tg-blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tg-blog-detail { max-width: 980px; }
.tg-blog-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tg-line);
  color: var(--tg-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tg-blog-detail__meta time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tg-blue);
  letter-spacing: .03em;
}
.tg-blog-detail__content {
  max-width: none;
  margin: 0;
  font-size: 17px;
}
.tg-blog-detail__content > h2 {
  margin: 0 0 18px;
  color: var(--tg-blue);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}
.tg-blog-detail__content > p:first-of-type::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--tg-orange);
  font-size: 58px;
  font-weight: 800;
  line-height: .8;
}
.tg-blog-detail__date {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23,63,85,.18);
  color: var(--tg-blue);
  font-size: 13px;
  font-weight: 700;
}
.tg-aside {
  position: sticky;
  top: 108px;
}
.tg-side {
  background: #fff;
  border: 1px solid var(--tg-line);
  border-radius: 0;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: none;
}
.tg-side h5 { margin: 0 0 16px; }
.tg-side-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tg-side-nav h5 { margin-bottom: 8px; }
.tg-side-nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid var(--tg-line);
  border-radius: 0;
  background: #f6f8fb;
  color: var(--tg-dark);
  font-size: 15px;
  font-weight: 600;
  transition: color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.tg-side-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: -1;
}
.tg-side-nav a::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .45;
}
.tg-side-nav a:hover,
.tg-side-nav a.is-active {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(23,63,85,.18);
}
.tg-side-nav a:hover::before,
.tg-side-nav a.is-active::before { transform: scaleX(1); }
.tg-side-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tg-side-posts h5 { margin-bottom: 4px; }
.tg-side-post {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--tg-line);
  background: #fff;
  color: var(--tg-dark);
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.tg-side-post:hover {
  border-color: var(--tg-orange);
  background: rgba(191,98,0,.04);
  transform: translateY(-2px);
}
.tg-side-post__media {
  display: block;
  width: 84px;
  height: 72px;
  overflow: hidden;
  background: #eef3f8;
}
.tg-side-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  transition: transform .4s ease;
}
.tg-side-post:hover .tg-side-post__media img { transform: scale(1.06); }
.tg-side-post__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.tg-side-post__body strong {
  color: var(--tg-blue);
  font-size: 15px;
  line-height: 1.3;
}
.tg-side-post__body span {
  color: var(--tg-muted);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tg-side-contact .tg-info-row { margin-bottom: 14px; }
.tg-side-contact .tg-info-row:last-child { margin-bottom: 0; }
.tg-side-contact .tg-info-row i {
  width: 38px;
  height: 38px;
}
.tg-side-contact .tg-info-row small {
  display: block;
  margin-bottom: 2px;
  color: var(--tg-muted);
  font-size: 12px;
  font-weight: 700;
}
.tg-side-contact .tg-info-row a { color: inherit; }
.tg-side-cta { background: var(--tg-blue); color: #fff; border: 0; }
.tg-side-cta h5 { color: #fff; }
.tg-side-form { grid-template-columns: 1fr; gap: 10px; }
.tg-side-form input,
.tg-side-form select,
.tg-side-form textarea {
  background: rgba(255,255,255,.96);
  border-color: transparent;
}
.tg-side-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23173f55' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: rgba(255,255,255,.96);
}
.tg-side-form textarea { min-height: 96px; }
.tg-side-cta .tg-btn--primary {
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--tg-blue);
  border-color: #fff;
  --tg-btn-fill: var(--tg-blue-dark);
}
.tg-side-cta .tg-btn--primary:hover { color: #fff; }
.tg-files { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.tg-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--tg-bg);
  border-radius: 10px;
}
.tg-file img { width: 36px; }

.tg-docs { display: flex; flex-direction: column; gap: 14px; }
.tg-doc {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 16px 16px 18px;
  background: #fff;
  border: 1px solid var(--tg-line);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease, color .35s ease;
}
.tg-doc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: -1;
}
.tg-doc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(23,63,85,.14);
  color: #fff;
}
.tg-doc:hover::before { transform: scaleX(1); }
.tg-doc__no {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--tg-blue);
  transition: color .35s ease;
}
.tg-doc__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 1px solid rgba(23,63,85,.18);
  color: var(--tg-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f6fa;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}
.tg-doc__meta { flex: 1 1 auto; min-width: 0; }
.tg-doc__meta small {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--tg-blue);
  margin-bottom: 2px;
  transition: color .35s ease;
}
.tg-doc__meta strong { display: block; font-size: 17px; }
.tg-doc__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  border-radius: 0;
  background: #f3f6fa;
  color: var(--tg-blue);
  font-size: 14px;
  font-weight: 700;
  transition: background-color .35s ease, color .35s ease;
}
.tg-doc__cta i {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tg-doc:hover .tg-doc__no,
.tg-doc:hover .tg-doc__meta small { color: #c5dbf5; }
.tg-doc:hover .tg-doc__icon {
  background: var(--tg-blue-dark);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.tg-doc:hover .tg-doc__cta { background: #fff; color: var(--tg-blue); }

/* Contact / quote */
.tg-contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.tg-contact__info,
.tg-contact__form {
  border-radius: 22px;
  padding: 32px 28px;
}
.tg-contact__info {
  background: #fff;
  border: 1px solid rgba(23,63,85,.08);
  box-shadow: 0 12px 32px rgba(23,63,85,.06);
}
.tg-contact__info .tg-title { margin: 0 0 10px; }
.tg-contact__info .tg-lead { margin: 0 0 22px; }
.tg-contact__info .tg-info-row {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--tg-line);
}
.tg-contact__info .tg-info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.tg-contact__info .tg-info-row small {
  display: block;
  margin-bottom: 2px;
  color: var(--tg-muted);
  font-size: 12px;
  font-weight: 700;
}
.tg-contact__info .tg-info-row a { color: inherit; }
.tg-contact__form {
  background: linear-gradient(160deg, var(--tg-blue-dark) 0%, var(--tg-blue) 62%, #285f73 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(23,63,85,.18);
}
.tg-contact__form .tg-title { color: #fff; margin: 0 0 8px; }
.tg-contact__form .tg-lead { color: rgba(255,255,255,.82); margin: 0 0 22px; }
.tg-contact__form .tg-form input,
.tg-contact__form .tg-form textarea {
  background: rgba(255,255,255,.96);
  border-color: transparent;
  border-radius: 12px;
}
.tg-contact__form .tg-btn--primary {
  background: #fff;
  color: var(--tg-blue);
  border-color: #fff;
  --tg-btn-fill: var(--tg-blue-dark);
}
.tg-contact__form .tg-btn--primary:hover { color: #fff; }
.tg-info-row { display: flex; gap: 14px; margin-bottom: 18px; }
.tg-info-row i {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(23,63,85,.1);
  color: var(--tg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-info-row i svg { display: block; }
.tg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tg-form .full { grid-column: 1 / -1; }
.tg-form input,
.tg-form select,
.tg-form textarea {
  width: 100%;
  border: 1px solid var(--tg-line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--tg-dark);
}
.tg-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23173f55' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.tg-form textarea { min-height: 140px; resize: vertical; }
.tg-alert { display: none; padding: 10px 12px; border-radius: 0; font-weight: 600; }
.tg-form-consent {
  display: grid;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
}
.tg-form-consent p { margin: 0; }
.tg-form-consent a { color: var(--tg-orange); text-decoration: underline; }
.tg-form-consent__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}
.tg-form-consent__opt input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--tg-orange);
  flex: 0 0 auto;
}
.tg-form-consent .g-recaptcha { margin-top: 6px; }
.tg-alert--ok { color: #0a7a12; background: #e8f8ea; }
.tg-alert--err { color: #b42318; background: #fdecea; }
.tg-alert--wait { color: #9a6700; background: #fff6db; }
.tg-map {
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(23,63,85,.08);
}
.tg-map iframe { width: 100%; min-height: 420px; border: 0; display: block; }

.tg-quote {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  background: #fff;
  overflow: hidden;
  border-top: 1px solid var(--tg-line);
}
.tg-quote__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(36px, 5vw, 88px);
  background: var(--tg-blue);
  color: #fff;
  overflow: hidden;
}
.tg-quote__index {
  position: absolute;
  top: 8px;
  right: 24px;
  color: rgba(255,255,255,.06);
  font-size: clamp(120px, 16vw, 240px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.tg-quote__eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #f0a64c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tg-quote__eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--tg-orange);
}
.tg-quote__info h2 {
  position: relative;
  max-width: 460px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.tg-quote__lead {
  position: relative;
  max-width: 420px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.75;
}
.tg-quote__contacts {
  position: relative;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.tg-quote__contact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.tg-quote__contact i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--tg-orange);
  border: 1px solid rgba(240,166,76,.35);
  background: rgba(191,98,0,.12);
}
.tg-quote__contact small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tg-quote__contact strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
.tg-quote__contact a { color: inherit; }
.tg-quote__contact a:hover { color: #f0a64c; }

.tg-quote__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(36px, 5vw, 88px);
  background: #fff;
}
.tg-quote__form-head { margin-bottom: 28px; }
.tg-quote__form-head .tg-quote__eyebrow { color: var(--tg-orange); }
.tg-quote__form-head h3 {
  margin: 0;
  color: var(--tg-blue);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.tg-quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.tg-quote-form .full { grid-column: 1 / -1; }
.tg-quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tg-quote-form label > span {
  color: var(--tg-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tg-quote-form input,
.tg-quote-form select,
.tg-quote-form textarea {
  width: 100%;
  border: 1px solid var(--tg-line);
  border-radius: 0;
  padding: 14px 16px;
  font: inherit;
  color: var(--tg-dark);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tg-quote-form input:focus,
.tg-quote-form select:focus,
.tg-quote-form textarea:focus {
  outline: 0;
  border-color: var(--tg-orange);
  box-shadow: 0 0 0 3px rgba(191,98,0,.12);
}
.tg-quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23173f55' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.tg-quote-form textarea { min-height: 140px; resize: vertical; }
.tg-quote-form__actions { margin-top: 6px; }
.tg-quote-form__actions .tg-btn {
  min-width: 180px;
  padding: 15px 28px;
}

/* Footer */
.tg-footer {
  background: #fff;
  color: var(--tg-dark);
  padding: 0;
}
.tg-footer__bar {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  border-top: 1px solid var(--tg-line);
}
.tg-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 36px 36px;
}
.tg-footer img { height: 100px; width: auto; margin-bottom: 16px; }
.tg-footer h5 {
  color: var(--tg-blue);
  margin: 0 0 18px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tg-footer h5 svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 0;
  border: 1px solid rgba(23,63,85,.2);
  box-sizing: border-box;
  color: var(--tg-blue);
}
.tg-footer a { color: var(--tg-dark); }
.tg-footer a:hover { color: var(--tg-orange); }
.tg-footer li { margin-bottom: 10px; font-size: 16px; }
.tg-footer ul:not(.tg-footer__contacts) a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tg-footer ul:not(.tg-footer__contacts) a::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 0;
  border: 1px solid rgba(23,63,85,.2);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23173f55' stroke-width='2.4'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E") center no-repeat;
  flex: 0 0 auto;
  transition: background-color .25s ease, border-color .25s ease;
}
.tg-footer ul:not(.tg-footer__contacts) a:hover::before {
  background-color: var(--tg-orange);
  border-color: var(--tg-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
}
.tg-footer p { margin: 50px 0; max-width: 340px; line-height: 1.7; font-size: 16px; color: var(--tg-muted); }
.tg-footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--tg-dark);
}
.tg-footer__contacts svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 0;
  border: 1px solid rgba(23,63,85,.2);
  box-sizing: border-box;
  margin-top: 1px;
  color: var(--tg-blue);
}
.tg-social { display: flex; gap: 10px; margin-top: 16px; }
.tg-social a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid rgba(23,63,85,.2);
  color: var(--tg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.tg-social a:hover {
  background: var(--tg-orange);
  color: #fff;
  border-color: var(--tg-orange);
}
.tg-footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 36px;
  background: var(--tg-blue);
  color: rgba(255,255,255,.9);
  font-size: 15px;
}
.tg-footer__copy a { color: #fff; }
.tg-footer__copy a:hover { color: #fff; }
.tg-footer__copy img { height: 70px; margin: 0; display: inline-block; vertical-align: middle; }

.tg-empty { text-align: center; padding: 80px 0; }
.tg-page .tg-empty { padding-top: 220px; }
.tg-empty h2 { font-size: 72px; margin: 0; color: var(--tg-blue); }

@media (max-width: 1240px) {
  .tg-nav { display: none; }
  .tg-sub { display: none !important; }
  .tg-burger { display: inline-flex; align-items: center; justify-content: center; }
  .tg-header__cta .tg-btn { display: none; }
}

@media (max-width: 1100px) {
  .tg-nav { display: none; }
  .tg-sub { display: none !important; }
  .tg-burger { display: inline-flex; align-items: center; justify-content: center; }
  .tg-contact,
  .tg-quote,
  .tg-footer__grid { grid-template-columns: 1fr; }
  .tg-corporate { grid-template-columns: 1fr; }
  .tg-corporate__media { min-height: 460px; }
  .tg-corporate__content { padding: 64px 40px; }
  .tg-corporate__stats { margin-right: 0; margin-left: 0; }
  .tg-detail__split { grid-template-columns: 1fr; gap: 36px; }
  .tg-detail__split .tg-detail__cover { min-height: 420px; height: 420px; }
  .tg-quote__info,
  .tg-quote__form { padding: 64px 40px; }
  .tg-article__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side";
    gap: 28px;
  }
  .tg-aside { position: static; }
  .tg-refs__item { min-height: 130px; }
  .tg-refs__item img { max-height: 72px; max-width: 160px; }
  .tg-grid--3,
  .tg-grid--4,
  .tg-gallery,
  .tg-shots,
  .tg-brands,
  .tg-media-grid,
  .tg-stats { grid-template-columns: repeat(2, 1fr); }
  .tg-header__cta .tg-btn { display: none; }
  .tg-header__wrap { width: 100%; }
}

@media (max-width: 700px) {
  .tg-header__top { display: none; }
  .tg-grid--3,
  .tg-grid--4,
  .tg-gallery,
  .tg-shots,
  .tg-brands,
  .tg-media-grid,
  .tg-stats,
  .tg-files,
  .tg-form,
  .tg-quote-form { grid-template-columns: 1fr; }
  .tg-refs__item { min-height: 120px; padding: 22px 16px; }
  .tg-refs__item img { max-height: 64px; max-width: 140px; }
  .tg-quote__info,
  .tg-quote__form { padding: 48px 20px; }
  .tg-hero { min-height: 560px; height: 92vh; }
  .tg-crumb { min-height: 380px; padding: 150px 0 42px; }
  .tg-crumb::after { display: none; }
  .tg-crumb h1 { font-size: 36px; }
  .tg-detail-hero__lead { font-size: 14px; line-height: 1.55; }
  .tg-article { padding: 58px 0; }
  .tg-detail__split .tg-detail__cover { min-height: 280px; height: 280px; }
  .tg-detail-block { margin-top: 42px; padding-top: 30px; }
  .tg-detail-block--spec { padding: 28px 20px; }
  .tg-detail-block__content { overflow-x: auto; }
  .tg-blog-detail__meta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .tg-header { padding-top: 0; }
  .tg-header__wrap { width: 100%; }
  .tg-header__bar { border-radius: 0; }
  .tg-header__main { min-height: 72px; border-radius: 0; padding: 0 18px; }
  .tg-header__brand { margin-left: 0; }
  .tg-corporate__media { min-height: 330px; }
  .tg-corporate__experience { left: 20px; bottom: 24px; }
  .tg-corporate__experience strong { font-size: 64px; }
  .tg-corporate__content { padding: 48px 20px; }
  .tg-corporate__content h2 { font-size: 38px; }
  .tg-corporate__index { right: 18px; font-size: 140px; }
  .tg-corporate__stats { grid-template-columns: 1fr; }
  .tg-corporate__stats > div { min-height: auto; padding: 18px 0; }
  .tg-corporate__stats > div + div { padding-left: 0; border-top: 1px solid var(--tg-line); border-left: 0; }
  .tg-corporate__values { grid-template-columns: 1fr; }
  .tg-corporate__values > div { min-height: auto; padding: 14px 0; }
  .tg-corporate__values > div + div { padding-left: 0; border-top: 1px solid var(--tg-line); border-left: 0; }
  .tg-corporate__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .tg-head--split,
  .tg-products__head { align-items: center; }
  .tg-products__head { flex-wrap: wrap; }
  .tg-product,
  .tg-tile { height: 360px; }
  .tg-footer { padding: 0; }
  .tg-footer__bar { border-radius: 0; }
  .tg-footer__grid { padding: 32px 20px 24px; }
  .tg-footer__copy { padding: 14px 20px; }
  .tg-footer__copy img { height: 36px; }
}
