:root {
  --pt-blue: #004799;
  --pt-blue-strong: #003a82;
  --pt-deep: #081421;
  --pt-text: #1d2430;
  --pt-muted: #687385;
  --pt-line: #dce4ee;
  --pt-soft: #eef2f7;
  --pt-white: #ffffff;
  --pt-max: 1540px;
  --pt-content: 1180px;
  --pt-hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pt-hover-shadow: 0 20px 42px rgba(8, 20, 33, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--pt-white);
  color: var(--pt-text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.wp-site-blocks > * + * {
  margin-block-start: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.pt-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(125, 138, 150, 0.86);
  color: var(--pt-white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pt-header__inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  min-height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pt-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--pt-white);
  font-weight: 900;
  font-size: 31px;
  line-height: 0.95;
  text-decoration: none;
  white-space: nowrap;
}

.pt-logo__word {
  display: block;
}

.pt-logo__mark {
  color: #1d72d2;
}

.pt-logo small {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pt-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: transparent;
  color: var(--pt-white);
  flex-direction: column;
  gap: 5px;
}

.pt-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--pt-white);
}

.pt-nav {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.pt-nav__list {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-nav__item {
  position: relative;
}

.pt-nav__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 28px;
  color: var(--pt-white);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.pt-nav__link:hover,
.pt-nav__link:focus {
  background: rgba(0, 71, 153, 0.32);
}

.pt-subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 360px;
  margin: 0;
  padding: 18px 0;
  list-style: none;
  background: rgba(8, 20, 33, 0.96);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  opacity: 1;
  pointer-events: auto;
}

.pt-nav__item:hover > .pt-subnav,
.pt-nav__item:focus-within > .pt-subnav {
  display: block;
}

.pt-subnav__item {
  position: relative;
}

.pt-subnav a {
  position: relative;
  display: block;
  padding: 10px 24px;
  color: var(--pt-white);
  font-size: 14px;
  text-decoration: none;
}

.pt-subnav__item--has-children > a {
  padding-right: 46px;
}

.pt-subnav__item--has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.75;
  transform: translateY(-50%) rotate(-45deg);
}

.pt-subnav a:hover,
.pt-subnav a:focus {
  background: var(--pt-blue);
}

.pt-subnav--level-1 {
  z-index: 40;
}

.pt-subnav--level-2 {
  display: none;
  top: 0;
  left: calc(100% - 1px);
  width: 320px;
  padding: 12px 0;
  background: rgba(6, 18, 32, 0.98);
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 41;
}

.pt-subnav__item:hover > .pt-subnav--level-2,
.pt-subnav__item:focus-within > .pt-subnav--level-2 {
  display: block;
}

.pt-subnav--level-2 a {
  padding: 9px 22px;
  font-size: 13px;
  line-height: 1.35;
  text-transform: none;
}

.pt-header__tools {
  display: flex;
  align-items: stretch;
}

.pt-phone,
.pt-search,
.pt-lang {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.pt-phone {
  padding: 0 26px;
  font-weight: 800;
  white-space: nowrap;
}

.pt-search form {
  display: flex;
  align-items: center;
  height: 100%;
}

.pt-search input {
  width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--pt-white);
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: width 0.16s ease;
}

.pt-search:focus-within input {
  width: 132px;
  padding-right: 14px;
}

.pt-search input::placeholder {
  color: rgba(255, 255, 255, 0.92);
}

.pt-search button {
  width: 64px;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--pt-white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.pt-lang {
  padding: 0 46px;
  background: var(--pt-blue);
  font-weight: 800;
}

.pt-main {
  background: var(--pt-white);
}

.pt-section {
  padding: 92px 20px;
}

.pt-section--soft {
  background: var(--pt-soft);
}

.pt-section__inner {
  width: min(var(--pt-max), 100%);
  margin: 0 auto;
}

.pt-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}

.pt-section__head h2,
.pt-page-title {
  margin: 0;
  color: var(--pt-text);
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
}

.pt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pt-text);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.22s var(--pt-hover-ease), transform 0.22s var(--pt-hover-ease);
}

.pt-link::before {
  content: "";
  width: 19px;
  height: 2px;
  background: var(--pt-blue);
  transition: width 0.22s var(--pt-hover-ease), background-color 0.22s var(--pt-hover-ease);
}

.pt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 2px solid var(--pt-blue);
  border-radius: 6px;
  background: var(--pt-blue);
  color: var(--pt-white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(8, 20, 33, 0);
  transition: transform 0.22s var(--pt-hover-ease), box-shadow 0.22s var(--pt-hover-ease), background-color 0.22s var(--pt-hover-ease), border-color 0.22s var(--pt-hover-ease), color 0.22s var(--pt-hover-ease);
}

.pt-button--ghost {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(8, 20, 33, 0.08);
  color: var(--pt-white);
}

.pt-reveal {
  opacity: 0;
  transform: translate3d(0, 64px, 0);
  filter: blur(5px);
  transition: opacity 1.08s ease, transform 1.08s cubic-bezier(0.22, 1, 0.36, 1), filter 1.08s ease;
  transition-delay: var(--pt-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.pt-reveal--left {
  transform: translate3d(-96px, 0, 0);
}

.pt-reveal--right {
  transform: translate3d(96px, 0, 0);
}

.pt-reveal--down {
  transform: translate3d(0, -80px, 0);
}

.pt-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.pt-split-text {
  position: relative;
  display: inline-block;
  overflow: visible;
  z-index: 1;
}

.pt-split-text .pt-char {
  display: inline-block;
  min-width: 0.18em;
  opacity: 0;
  transform: translate3d(0, -1.18em, 0) scale(0.92);
  filter: blur(6px);
  transition: opacity 1.05s ease, transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), filter 1.05s ease;
  transition-delay: var(--pt-char-delay, 0ms);
  will-change: opacity, transform, filter;
}

.pt-split--right .pt-char {
  transform: translate3d(1.15em, 0, 0) scale(0.92);
}

.pt-split-text.is-visible .pt-char {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.pt-split--right.is-visible .pt-char {
  transform: translate3d(0, 0, 0);
}

.pt-animated-heading::before {
  content: "";
  position: absolute;
  left: -0.56em;
  top: -0.34em;
  width: 1.12em;
  height: 0;
  background: #dfe9f6;
  opacity: 0.9;
  transform: skewX(-15deg);
  transform-origin: left top;
  transition: height 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
  z-index: -1;
}

.pt-animated-heading.is-visible::before {
  height: 1.9em;
}

@keyframes ptFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -0.8em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ptFadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-52px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ptFadeInRight {
  from {
    opacity: 0;
    transform: translate3d(0.8em, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ptFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .pt-main .pt-link:hover,
  .pt-main .pt-link:focus-visible {
    color: var(--pt-blue);
    transform: translateX(2px);
  }

  .pt-main .pt-link:hover::before,
  .pt-main .pt-link:focus-visible::before {
    width: 25px;
    background: var(--pt-blue-strong);
  }

  .pt-main .pt-button:hover,
  .pt-main .pt-button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--pt-blue-strong);
    background: var(--pt-blue-strong);
    box-shadow: 0 14px 28px rgba(0, 71, 153, 0.2);
  }

  .pt-main .pt-button--ghost:hover,
  .pt-main .pt-button--ghost:focus-visible {
    border-color: var(--pt-white);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 28px rgba(8, 20, 33, 0.18);
  }
}

.pt-hero {
  position: relative;
  min-height: 925px;
  background-image: url("../images/hero-design.jpg");
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--pt-white);
}

.pt-hero__inner {
  display: flex;
  align-items: flex-start;
  width: min(var(--pt-max), calc(100% - 300px));
  min-height: 925px;
  margin: 0 auto;
  padding: 250px 0 160px;
}

.pt-hero__content {
  width: min(640px, 100%);
  opacity: 0;
  pointer-events: none;
}

.pt-hero h1 {
  margin: 0 0 38px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.pt-hero__dots {
  position: absolute;
  bottom: 90px;
  left: calc((100% - min(var(--pt-max), calc(100% - 40px))) / 2);
  display: none;
  gap: 14px;
}

.pt-hero__dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.pt-hero__dots span:first-child {
  background: var(--pt-white);
}

.pt-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f7faff 0%, #ffffff 54%, #f1f6fb 100%);
}

.pt-about::before {
  content: "ABOUT US";
  position: absolute;
  top: 74px;
  right: 118px;
  color: rgba(226, 234, 244, 0.72);
  font-size: clamp(92px, 10vw, 178px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.pt-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 910px) minmax(360px, 720px);
  justify-content: start;
  align-items: start;
  gap: clamp(60px, 8.8vw, 170px);
  width: min(1920px, 100%);
}

.pt-about__media img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: left top;
}

.pt-about__media {
  overflow: hidden;
}

.pt-about__media img,
.pt-advantage-card img,
.pt-news-card img,
.pt-product-card img {
  transition: transform 0.28s var(--pt-hover-ease), filter 0.28s var(--pt-hover-ease);
  will-change: transform;
}

.pt-about__copy {
  position: relative;
  z-index: 1;
  padding-top: 170px;
}

.pt-kicker {
  margin: 0 0 8px;
  color: var(--pt-muted);
  font-size: 18px;
}

.pt-about h2 {
  margin: 0 0 28px;
  color: var(--pt-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.pt-about p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #3b4554;
}

.pt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(1520px, calc(100% - 400px));
  min-height: 145px;
  margin: -38px auto 0;
  position: relative;
  z-index: 3;
  background: url("../images/stats-strip.jpg") center / 100% 100% no-repeat;
  border-radius: 4px;
}

.pt-stats > * {
  opacity: 0;
}

.pt-stat {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 144px;
  padding: 28px 34px;
  background: var(--pt-blue);
  color: var(--pt-white);
  border-radius: 4px;
}

.pt-stat__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 6px;
  font-size: 24px;
  font-weight: 900;
}

.pt-stat strong {
  display: block;
  font-size: 46px;
  line-height: 1;
}

.pt-stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.pt-products {
  padding-top: 130px;
  padding-bottom: 110px;
}

.pt-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pt-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--pt-white);
  border-radius: 4px;
  text-decoration: none;
  color: var(--pt-text);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(8, 20, 33, 0.05);
  transition: transform 0.24s var(--pt-hover-ease), box-shadow 0.24s var(--pt-hover-ease);
}

.pt-product-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--pt-hover-shadow);
}

.pt-product-card img {
  width: 100%;
  aspect-ratio: 360 / 520;
  object-fit: cover;
  background: var(--pt-white);
}

.pt-product-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.pt-slider-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 58px;
}

.pt-slider-dots span {
  width: 14px;
  height: 14px;
  background: var(--pt-white);
}

.pt-slider-dots span:first-child {
  background: var(--pt-blue);
}

.pt-advantages {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 70px;
  align-items: start;
}

.pt-advantages__copy {
  position: relative;
  min-height: 420px;
  z-index: 1;
}

.pt-advantages__copy::after {
  content: "";
  position: absolute;
  left: -92px;
  top: 145px;
  width: 640px;
  height: 420px;
  background: url("../images/decor-outline-left.jpg") left top / contain no-repeat;
  opacity: 0.85;
  z-index: -1;
}

.pt-advantages__copy h2 {
  margin: 0 0 28px;
  font-size: 46px;
  line-height: 1.15;
}

.pt-advantages__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.pt-advantage-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f7fb;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(6, 35, 72, 0.08);
  transition: transform 0.28s var(--pt-hover-ease), box-shadow 0.28s var(--pt-hover-ease);
}

.pt-advantage-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2.42 / 1;
  object-fit: cover;
}

.pt-advantage-card span {
  display: block;
  min-height: 62px;
  padding: 18px 34px;
  background: linear-gradient(90deg, rgba(0, 160, 216, 0.94) 0%, rgba(0, 72, 154, 0.94) 76%, rgba(0, 58, 136, 0.94) 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.pt-video__frame {
  overflow: hidden;
  background: #000;
}

.pt-video {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.pt-video__frame {
  position: relative;
}

.pt-video__player,
.pt-video__frame .video-js {
  width: 100%;
  display: block;
  background: #000;
}

.pt-video__frame .video-js {
  padding-top: 45% !important;
}

.pt-video__frame .video-js .vjs-tech,
.pt-video__frame .video-js .vjs-poster {
  object-fit: cover;
  background-size: cover !important;
}

.pt-video__frame .vjs-big-play-button {
  width: 126px;
  height: 126px;
  margin: -63px 0 0 -63px;
  background: url("../images/video_i.png") no-repeat center / 100% !important;
  border: none !important;
  opacity: 0.7;
  transition: opacity 0.22s var(--pt-hover-ease);
}

.pt-video__frame .vjs-big-play-button .vjs-icon-placeholder::before {
  display: none;
}

.pt-video__frame:hover .vjs-big-play-button,
.pt-video__frame:focus-within .vjs-big-play-button {
  opacity: 1;
}

@media (max-width: 1200px) {
  .pt-video__frame .vjs-big-play-button {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
  }
}

.pt-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.pt-news-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  background: var(--pt-white);
  border-radius: 4px;
  color: var(--pt-text);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(8, 20, 33, 0.04);
  transition: transform 0.24s var(--pt-hover-ease), box-shadow 0.24s var(--pt-hover-ease);
}

.pt-news-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.pt-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 28px;
}

.pt-news-card time {
  color: var(--pt-muted);
  font-size: 15px;
}

.pt-news-card h3 {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

.pt-news-card .pt-link {
  margin-top: auto;
  align-self: flex-end;
}

@media (hover: hover) and (pointer: fine) {
  .pt-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pt-hover-shadow);
  }

  .pt-product-card:hover img,
  .pt-product-card:focus-visible img,
  .pt-advantage-card:hover img,
  .pt-advantage-card:focus-visible img,
  .pt-news-card:hover img,
  .pt-news-card:focus-visible img,
  .pt-about__media:hover img,
  .pt-about__media:focus-within img {
    transform: scale(1.035);
    filter: saturate(1.04) brightness(1.02);
  }

  .pt-advantage-card:hover,
  .pt-advantage-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--pt-hover-shadow);
  }

  .pt-news-card:hover,
  .pt-news-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--pt-hover-shadow);
  }

  .pt-news-card:hover h3,
  .pt-news-card:focus-visible h3 {
    color: var(--pt-blue);
  }

  .pt-about__media:hover img {
    transform: scale(1.025);
  }
}

.pt-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 20px 72px;
  background: linear-gradient(90deg, #f7fbff, #ffffff);
}

.pt-cta::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: 70px;
  width: 360px;
  height: 470px;
  border: 3px solid #edf2f7;
  border-radius: 8px;
}

.pt-cta__inner {
  position: relative;
  z-index: 1;
  width: min(var(--pt-max), 100%);
  margin: 0 auto;
}

.pt-cta p {
  margin: 0 0 16px;
  color: var(--pt-muted);
  font-size: 18px;
}

.pt-cta h2 {
  margin: 0 0 34px;
  color: #000;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 1.05;
  font-weight: 500;
}

.pt-footer {
  background: #f6fbff;
  color: var(--pt-text);
  padding: 0 20px 44px;
}

.pt-footer__inner {
  width: min(var(--pt-max), 100%);
  margin: 0 auto;
}

.pt-footer__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.8fr 0.8fr;
  gap: 52px;
  padding: 30px 0 70px;
}

.pt-footer h3 {
  margin: 0 0 20px;
  font-size: 18px;
  text-transform: uppercase;
}

.pt-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-footer li + li {
  margin-top: 10px;
}

.pt-footer a {
  color: #4c5968;
  text-decoration: none;
}

.pt-footer a:hover,
.pt-footer a:focus {
  color: var(--pt-blue);
}

.pt-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #536071;
}

.pt-page-hero {
  padding: 110px 20px 70px;
  background: var(--pt-soft);
}

.pt-page-hero__inner,
.pt-page-content,
.pt-post-content {
  width: min(var(--pt-content), calc(100% - 40px));
  margin: 0 auto;
}

.pt-page-content,
.pt-post-content {
  padding: 70px 0 100px;
}

.pt-page-content p,
.pt-post-content p {
  color: #3b4554;
  font-size: 18px;
}

.pt-tire-catalog {
  background: #fff;
}

.pt-tire-hero {
  padding: 84px 20px 68px;
  background: linear-gradient(120deg, rgba(8, 20, 33, 0.82), rgba(8, 20, 33, 0.45)), url("../images/product-quick-coupler.jpg") center / cover no-repeat;
  color: #fff;
}

.pt-tire-hero__inner,
.pt-tire-layout__inner {
  width: min(var(--pt-max), 100%);
  margin: 0 auto;
}

.pt-tire-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.pt-tire-hero__crumb a:hover,
.pt-tire-hero__crumb a:focus {
  color: #fff;
  text-decoration: underline;
}

.pt-tire-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.pt-tire-hero__lead {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.pt-tire-layout {
  padding: 56px 20px 94px;
}

.pt-tire-layout__inner {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.pt-tire-sidebar {
  display: grid;
  gap: 20px;
}

.pt-tire-panel,
.pt-tire-help {
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  background: #fff;
  padding: 22px 20px;
}

.pt-tire-panel h2,
.pt-tire-help h2 {
  margin: 0 0 16px;
  color: var(--pt-text);
  font-size: 21px;
  line-height: 1.25;
}

.pt-tire-cat-list,
.pt-tire-cat-list ul,
.pt-tire-download-list,
.pt-tire-related {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-tire-cat-list > li {
  padding: 10px 0;
  border-bottom: 1px solid var(--pt-line);
}

.pt-tire-cat-list > li:last-child {
  border-bottom: 0;
}

.pt-tire-cat-list a {
  color: #2a3646;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}

.pt-tire-cat-list > li > ul {
  margin-top: 8px;
  padding-left: 14px;
}

.pt-tire-cat-list > li > ul li + li {
  margin-top: 8px;
}

.pt-tire-cat-list a:hover,
.pt-tire-cat-list a:focus {
  color: var(--pt-blue);
}

.pt-tire-download-list li + li {
  margin-top: 10px;
}

.pt-tire-download-list a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  color: #334052;
  font-size: 14px;
}

.pt-tire-download-list a:hover,
.pt-tire-download-list a:focus {
  border-color: var(--pt-blue);
  color: var(--pt-blue);
}

.pt-tire-help {
  background: linear-gradient(140deg, #0f2f57 0%, #004799 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.pt-tire-help p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

.pt-tire-help__phone {
  display: block;
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.pt-tire-help .pt-button {
  min-height: 50px;
  padding: 0 24px;
  border-color: #fff;
  background: #fff;
  color: var(--pt-blue);
}

.pt-tire-help .pt-button:hover,
.pt-tire-help .pt-button:focus {
  background: rgba(255, 255, 255, 0.9);
  color: var(--pt-blue-strong);
}

.pt-tire-related li + li {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--pt-line);
}

.pt-tire-related a {
  display: inline-block;
  color: #1f2b3a;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.pt-tire-related a:hover,
.pt-tire-related a:focus {
  color: var(--pt-blue);
}

.pt-tire-related p {
  margin: 6px 0 0;
  color: #5a6573;
  font-size: 13px;
  line-height: 1.55;
}

.pt-tire-main h2 {
  margin: 0 0 24px;
  color: var(--pt-text);
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}

.pt-tire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-tire-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s var(--pt-hover-ease), box-shadow 0.2s var(--pt-hover-ease);
}

.pt-tire-card__media {
  display: block;
  background: #f6f8fb;
}

.pt-tire-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pt-tire-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 18px;
}

.pt-tire-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.pt-tire-card h3 a {
  color: #1f2b3a;
  text-decoration: none;
}

.pt-tire-card__tag {
  margin: 0;
}

.pt-tire-card__tag a {
  color: var(--pt-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.pt-tire-card p {
  margin: 0;
  color: #4f5b6a;
  font-size: 14px;
  line-height: 1.55;
}

.pt-tire-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

.pt-tire-pagination span,
.pt-tire-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  color: #415063;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.pt-tire-pagination .is-current {
  border-color: var(--pt-blue);
  background: var(--pt-blue);
  color: #fff;
}

.pt-tire-pagination a:hover,
.pt-tire-pagination a:focus {
  border-color: var(--pt-blue);
  color: var(--pt-blue);
}

.pt-tire-copy {
  margin-top: 28px;
  border-top: 1px solid var(--pt-line);
  padding-top: 24px;
}

.pt-tire-copy p {
  margin: 0;
  color: #394556;
  font-size: 16px;
  line-height: 1.75;
}

.pt-tire-copy p + p {
  margin-top: 14px;
}

.pt-product-detail-hero {
  background-image: linear-gradient(120deg, rgba(8, 20, 33, 0.82), rgba(8, 20, 33, 0.46)), url("../images/product-connecting-pipe.jpg");
}

.pt-tire-cat-list .is-active > a {
  color: var(--pt-blue);
  font-weight: 800;
}

.pt-product-detail-layout .pt-tire-layout__inner {
  align-items: start;
}

.pt-product-detail-main {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.pt-product-intro {
  display: grid;
  grid-template-columns: minmax(300px, 46%) minmax(0, 1fr);
  gap: 30px;
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  background: #fff;
  padding: 26px;
}

.pt-product-gallery {
  min-width: 0;
}

.pt-product-gallery__main {
  display: block;
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  background: #f6f8fb;
  overflow: hidden;
}

.pt-product-gallery__main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.pt-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.pt-product-gallery__thumbs a {
  display: block;
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  background: #f6f8fb;
  overflow: hidden;
}

.pt-product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pt-product-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-top: 4px;
}

.pt-product-summary h2 {
  margin: 0 0 16px;
  color: var(--pt-text);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.pt-product-summary p {
  margin: 0 0 22px;
  color: #435064;
  font-size: 16px;
  line-height: 1.75;
}

.pt-product-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: auto 0 24px;
}

.pt-product-share span {
  color: #5a6573;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pt-product-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--pt-line);
  border-radius: 50%;
  color: #344155;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.pt-product-share a:hover,
.pt-product-share a:focus {
  border-color: var(--pt-blue);
  background: var(--pt-blue);
  color: #fff;
}

.pt-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.pt-product-phone,
.pt-product-actions .pt-button {
  min-height: 50px;
}

.pt-product-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  padding: 0 22px;
  color: var(--pt-blue);
  font-weight: 900;
  text-decoration: none;
}

.pt-product-phone:hover,
.pt-product-phone:focus {
  border-color: var(--pt-blue);
  background: #eef5ff;
}

.pt-product-tabs,
.pt-product-about,
.pt-product-detail-section {
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  background: #fff;
}

.pt-product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--pt-line);
}

.pt-product-tabs__nav button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--pt-line);
  background: #f6f8fb;
  padding: 0 24px;
  color: #334052;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.pt-product-tabs__nav button.is-active {
  background: var(--pt-blue);
  color: #fff;
}

.pt-product-tabs__panel {
  padding: 28px;
  color: #394556;
}

.pt-product-tabs__panel p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
}

.pt-product-specs {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 15px;
}

.pt-product-specs th,
.pt-product-specs td {
  border: 1px solid var(--pt-line);
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

.pt-product-specs th {
  width: 30%;
  background: #f6f8fb;
  color: #1f2b3a;
  font-weight: 900;
}

.pt-product-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  padding: 28px;
}

.pt-product-about h2,
.pt-product-detail-section h2 {
  margin: 0 0 18px;
  color: var(--pt-text);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.pt-product-about p {
  margin: 0;
  color: #3d4858;
  font-size: 16px;
  line-height: 1.75;
}

.pt-product-about p + p {
  margin-top: 14px;
}

.pt-product-about img {
  width: 100%;
  min-height: 210px;
  border-radius: 6px;
  object-fit: cover;
}

.pt-product-honor {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pt-product-honor img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.pt-product-detail-section {
  padding: 28px;
}

.pt-product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pt-product-related-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  background: #fff;
  color: #1f2b3a;
  text-decoration: none;
  overflow: hidden;
}

.pt-product-related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f6f8fb;
  object-fit: cover;
}

.pt-product-related-card span {
  padding: 14px 14px 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.pt-product-related-card p {
  margin: 8px 0 0;
  padding: 0 14px 16px;
  color: #5a6573;
  font-size: 13px;
  line-height: 1.55;
}

.pt-product-related-card:hover,
.pt-product-related-card:focus {
  border-color: var(--pt-blue);
  box-shadow: 0 16px 38px rgba(10, 30, 55, 0.1);
}

.pt-listing {
  width: min(var(--pt-content), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.pt-listing .wp-block-post {
  padding: 28px 0;
  border-bottom: 1px solid var(--pt-line);
}

.pt-listing .wp-block-post-title {
  margin: 0 0 12px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1280px) {
  .pt-header__inner {
    grid-template-columns: 220px minmax(0, 1fr) auto;
  }

  .pt-logo {
    padding: 0 28px;
    font-size: 30px;
  }

  .pt-nav__link {
    padding: 0 16px;
  }

  .pt-subnav--level-1 {
    width: 330px;
  }

  .pt-subnav--level-2 {
    width: 300px;
  }

  .pt-phone {
    display: none;
  }

  .pt-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .pt-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .pt-logo {
    border-right: 0;
  }

  .pt-nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }

  .pt-nav {
    display: none;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .pt-header.is-nav-open .pt-nav {
    display: block;
  }

  .pt-nav__list {
    display: block;
  }

  .pt-nav__link {
    min-height: 54px;
    padding: 0 28px;
  }

  .pt-subnav {
    display: block;
    position: static;
    width: auto;
    margin: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(8, 20, 33, 0.55);
  }

  .pt-subnav--level-2 {
    display: block;
    padding: 0 0 10px;
    background: rgba(0, 71, 153, 0.18);
  }

  .pt-subnav__item--has-children > a::after {
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
  }

  .pt-subnav--level-2 a {
    padding-left: 46px;
  }

  .pt-header__tools {
    display: none;
    grid-column: 1 / -1;
  }

  .pt-header.is-nav-open .pt-header__tools {
    display: block;
  }

  .pt-search,
  .pt-lang {
    min-height: 54px;
    padding-left: 28px;
  }

  .pt-hero__inner {
    width: min(var(--pt-max), calc(100% - 40px));
    padding-top: 170px;
  }

  .pt-hero {
    min-height: 700px;
    background-image: linear-gradient(90deg, rgba(8, 20, 33, 0.2), rgba(8, 20, 33, 0.02)), url("../images/hero-bg.jpg");
    background-size: cover;
  }

  .pt-hero__inner {
    min-height: 700px;
  }

  .pt-hero__content {
    opacity: 1;
    pointer-events: auto;
  }

  .pt-hero__dots {
    display: flex;
  }

  .pt-about::before {
    display: none;
  }

  .pt-about__grid,
  .pt-advantages {
    grid-template-columns: 1fr;
    width: min(var(--pt-max), calc(100% - 40px));
  }

  .pt-about__copy {
    padding-top: 0;
  }

  .pt-stats,
  .pt-news-grid {
    grid-template-columns: 1fr;
  }

  .pt-stats {
    width: min(var(--pt-content), calc(100% - 40px));
    min-height: 0;
    margin: 24px auto 0;
    background: none;
  }

  .pt-stats > * {
    opacity: 1;
  }

  .pt-advantages__copy {
    min-height: auto;
  }

  .pt-advantages__copy::after {
    display: none;
  }

  .pt-advantages__media {
    gap: 18px;
  }

  .pt-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-products {
    padding-bottom: 72px;
  }

  .pt-slider-dots {
    display: none;
  }

  .pt-tire-layout__inner {
    grid-template-columns: 1fr;
  }

  .pt-tire-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-product-intro,
  .pt-product-about {
    grid-template-columns: 1fr;
  }

  .pt-product-about img {
    max-height: 360px;
  }

  .pt-product-related-grid,
  .pt-product-honor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pt-header__inner {
    min-height: 72px;
  }

  .pt-logo {
    padding: 0 18px;
    font-size: 26px;
  }

  .pt-section {
    padding: 64px 16px;
  }

  .pt-section__head {
    display: block;
  }

  .pt-section__head h2,
  .pt-page-title,
  .pt-advantages__copy h2 {
    font-size: 34px;
  }

  .pt-hero,
  .pt-hero__inner {
    min-height: 620px;
  }

  .pt-hero__inner {
    padding: 90px 0 120px;
  }

  .pt-hero h1 {
    font-size: 48px;
  }

  .pt-about__media img {
    min-height: 360px;
  }

  .pt-product-grid,
  .pt-advantages__media,
  .pt-footer__grid {
    grid-template-columns: 1fr;
  }

  .pt-tire-hero {
    padding-top: 62px;
    padding-bottom: 54px;
  }

  .pt-tire-hero__lead {
    font-size: 16px;
  }

  .pt-tire-layout {
    padding-top: 42px;
  }

  .pt-tire-grid {
    grid-template-columns: 1fr;
  }

  .pt-product-intro,
  .pt-product-tabs__panel,
  .pt-product-about,
  .pt-product-detail-section {
    padding: 20px;
  }

  .pt-product-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pt-product-tabs__nav button {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid var(--pt-line);
  }

  .pt-product-actions .pt-button,
  .pt-product-phone {
    width: 100%;
  }

  .pt-product-related-grid,
  .pt-product-honor {
    grid-template-columns: 1fr;
  }

  .pt-advantage-card span {
    min-height: 56px;
    padding: 16px 24px;
    font-size: 20px;
  }

  .pt-product-card {
    min-height: auto;
  }

  .pt-stat {
    grid-template-columns: 58px 1fr;
    padding: 24px;
  }

  .pt-stat strong {
    font-size: 38px;
  }

  .pt-cta h2 {
    font-size: 52px;
  }

  .pt-footer__bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pt-main .pt-link,
  .pt-main .pt-link::before,
  .pt-main .pt-button,
  .pt-product-card,
  .pt-product-related-card,
  .pt-advantage-card,
  .pt-news-card,
  .pt-reveal,
  .pt-split-text .pt-char,
  .pt-animated-heading::before,
  .pt-about__media img,
  .pt-advantage-card img,
  .pt-video__frame .vjs-big-play-button,
  .pt-news-card img,
  .pt-product-card img {
    transition: none;
  }

  .pt-main .pt-link:hover,
  .pt-main .pt-link:focus-visible,
  .pt-main .pt-button:hover,
  .pt-main .pt-button:focus-visible,
  .pt-product-card:hover,
  .pt-product-card:focus-visible,
  .pt-product-related-card:hover,
  .pt-product-related-card:focus-visible,
  .pt-advantage-card:hover,
  .pt-advantage-card:focus-visible,
  .pt-news-card:hover,
  .pt-news-card:focus-visible,
  .pt-product-card:hover img,
  .pt-product-card:focus-visible img,
  .pt-advantage-card:hover img,
  .pt-advantage-card:focus-visible img,
  .pt-news-card:hover img,
  .pt-news-card:focus-visible img,
  .pt-about__media:hover img,
  .pt-about__media:focus-within img,
  .pt-video__frame:hover .vjs-big-play-button,
  .pt-video__frame:focus-within .vjs-big-play-button {
    transform: none;
  }

  .pt-reveal,
  .pt-reveal.is-visible,
  .pt-split-text .pt-char {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .pt-animated-heading::before {
    display: none;
  }
}

/* Reference-home polish: closer to provided Poriton screenshot. */
.pt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(119, 132, 145, 0.88);
  backdrop-filter: blur(10px);
}

.pt-header__inner {
  grid-template-columns: 178px minmax(0, 1fr) auto;
  min-height: 54px;
  max-width: 1920px;
  margin: 0 auto;
}

.pt-logo {
  padding: 0 28px;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.pt-logo small {
  font-size: 8px;
  letter-spacing: 0.06em;
}

.pt-nav__link {
  padding: 0 20px;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.pt-phone {
  padding: 0 20px;
  font-size: 10px;
}

.pt-phone::before {
  content: "☎";
  margin-right: 8px;
  font-size: 13px;
}

.pt-search button {
  width: 66px;
  font-size: 10px;
}

.pt-search button::before {
  content: "⌕";
  margin-right: 6px;
  font-size: 13px;
}

.pt-lang {
  padding: 0 34px;
  font-size: 10px;
  background: #004996;
}

.pt-main {
  background: #fff;
}

.pt-section__inner,
.pt-cta__inner,
.pt-footer__inner {
  width: min(1130px, calc(100% - 80px));
}

.pt-section {
  padding: 88px 0;
}

.pt-section--soft {
  background: #eef2f7;
}

.pt-section__head {
  margin-bottom: 38px;
}

.pt-section__head h2,
.pt-page-title {
  font-size: 30px;
  letter-spacing: -0.02em;
}

.pt-link {
  font-size: 12px;
}

.pt-button {
  min-height: 36px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 11px;
}

.pt-hero {
  min-height: 560px;
  background-size: cover;
  background-position: center top;
}

.pt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.02) 52%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.pt-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1130px, calc(100% - 80px));
  min-height: 560px;
  padding: 130px 0 90px;
}

.pt-hero__content {
  opacity: 1;
  pointer-events: auto;
  width: min(470px, 100%);
}

.pt-hero h1 {
  margin-bottom: 36px;
  font-size: clamp(48px, 5.5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.pt-hero__subtitle {
  display: none;
}

.pt-hero .pt-button--ghost {
  min-height: 28px;
  padding: 0 20px;
  border-color: rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.08);
  font-size: 10px;
}

.pt-hero__dots {
  display: flex;
  bottom: 64px;
  left: calc((100% - min(1130px, calc(100% - 80px))) / 2);
  gap: 9px;
}

.pt-hero__dots span,
.pt-slider-dots span {
  width: 8px;
  height: 8px;
}

.pt-about {
  min-height: 520px;
  background: linear-gradient(90deg, #f6faff 0%, #fff 48%, #f5f9fd 100%);
}

.pt-about::before {
  top: 54px;
  right: calc((100% - min(1130px, calc(100% - 80px))) / 2 + 110px);
  font-size: clamp(70px, 9vw, 136px);
  letter-spacing: 0.04em;
  color: rgba(222, 232, 244, 0.62);
}

.pt-about__grid {
  width: min(1280px, 100%);
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.9fr);
  gap: clamp(44px, 7vw, 105px);
  align-items: center;
}

.pt-about__media img {
  height: 520px;
  object-fit: cover;
  object-position: left center;
}

.pt-about__copy {
  padding-top: 0;
  padding-right: max(40px, calc((100vw - 1130px) / 2));
}

.pt-kicker {
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.pt-about h2 {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: 0.06em;
}

.pt-about p:not(.pt-kicker) {
  max-width: 510px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.85;
}

.pt-stats {
  width: min(1000px, calc(100% - 160px));
  min-height: 92px;
  margin-top: -45px;
  gap: 4px;
  background: none;
}

.pt-stats > * {
  opacity: 1;
}

.pt-stat {
  grid-template-columns: 54px 1fr;
  min-height: 92px;
  padding: 18px 30px;
  border-radius: 0;
  background: #004996;
}

.pt-stat__icon {
  width: 38px;
  height: 38px;
  font-size: 17px;
}

.pt-stat strong {
  font-size: 31px;
}

.pt-stat span {
  margin-top: 5px;
  font-size: 9px;
  opacity: 0.9;
}

.pt-products {
  padding-top: 86px;
  padding-bottom: 68px;
}

.pt-products .pt-section__inner {
  width: min(1000px, calc(100% - 90px));
}

.pt-product-grid {
  gap: 20px;
}

.pt-product-card {
  border-radius: 0;
  min-height: 0;
  box-shadow: 0 2px 10px rgba(8, 20, 33, 0.025);
}

.pt-product-card img {
  aspect-ratio: 0.73 / 1;
  object-fit: cover;
  object-position: center top;
}

.pt-product-card span {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  padding: 11px 14px 14px;
  border-top: 1px solid #232a32;
  color: #2b3440;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.pt-slider-dots {
  margin-top: 34px;
}

.pt-advantages {
  grid-template-columns: 0.38fr 0.62fr;
  width: min(1000px, calc(100% - 90px));
  gap: 48px;
  min-height: 440px;
  align-items: center;
}

.pt-advantages__copy {
  min-height: 360px;
  padding-top: 26px;
}

.pt-advantages__copy::after {
  left: -90px;
  top: 120px;
  width: 440px;
  height: 360px;
  opacity: 0.55;
}

.pt-advantages__copy h2 {
  margin-bottom: 28px;
  font-size: 30px;
}

.pt-advantages__media {
  gap: 12px;
}

.pt-advantage-card {
  border-radius: 5px;
}

.pt-advantage-card img {
  aspect-ratio: 2.45 / 1;
}

.pt-advantage-card span {
  min-height: 34px;
  padding: 9px 18px;
  font-size: 11px;
}

.pt-video {
  width: min(1000px, calc(100% - 90px));
}

.pt-video__frame .video-js {
  padding-top: 52% !important;
}

.pt-video__frame .vjs-big-play-button {
  width: 94px;
  height: 94px;
  margin: -47px 0 0 -47px;
}

.pt-news-grid {
  gap: 24px;
}

.pt-news-card {
  min-height: 365px;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(8, 20, 33, 0.03);
}

.pt-news-card img {
  aspect-ratio: 1.5 / 1;
}

.pt-news-card__body {
  padding: 24px 22px 20px;
}

.pt-news-card time {
  font-size: 11px;
}

.pt-news-card h3 {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.45;
}

.pt-news-card .pt-link {
  font-size: 11px;
}

.pt-cta {
  padding: 82px 0 62px;
  background: linear-gradient(90deg, #f7fbff, #fff 60%, #f4f9fe);
}

.pt-cta::after {
  right: max(38px, calc((100vw - 1130px) / 2));
  bottom: 52px;
  width: 300px;
  height: 390px;
  opacity: 0.72;
}

.pt-cta p {
  font-size: 12px;
}

.pt-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.04em;
}

.pt-footer {
  padding-top: 0;
  padding-bottom: 34px;
}

.pt-footer__grid {
  grid-template-columns: 0.75fr 1.5fr 0.75fr 0.8fr;
  gap: 54px;
}

.pt-footer h3 {
  font-size: 11px;
}

.pt-footer a,
.pt-footer li,
.pt-footer__bottom {
  font-size: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .pt-product-card:hover,
  .pt-news-card:hover,
  .pt-advantage-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .pt-main .pt-link:hover {
    color: #004996;
    transform: translateX(5px);
  }

  .pt-main .pt-link:hover::before {
    width: 28px;
  }

  .pt-hero .pt-button--ghost:hover,
  .pt-main .pt-button:hover {
    transform: translateY(-3px) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .pt-header__inner {
    grid-template-columns: 160px auto 1fr;
  }

  .pt-header__tools {
    display: none;
  }

  .pt-about__grid,
  .pt-advantages {
    grid-template-columns: 1fr;
  }

  .pt-about__copy {
    padding: 44px 40px 72px;
  }

  .pt-stats {
    width: min(760px, calc(100% - 40px));
  }
}

@media (max-width: 760px) {
  .pt-header__inner {
    min-height: 58px;
    grid-template-columns: 1fr auto;
  }

  .pt-nav-toggle {
    margin: 5px 12px;
  }

  .pt-logo {
    font-size: 21px;
  }

  .pt-hero,
  .pt-hero__inner {
    min-height: 520px;
  }

  .pt-hero__inner,
  .pt-section__inner,
  .pt-products .pt-section__inner,
  .pt-advantages,
  .pt-video,
  .pt-cta__inner,
  .pt-footer__inner {
    width: min(100% - 32px, 560px);
  }

  .pt-hero__inner {
    padding-top: 118px;
  }

  .pt-hero h1 {
    font-size: 44px;
  }

  .pt-about__media img {
    height: 360px;
  }

  .pt-stats,
  .pt-product-grid,
  .pt-news-grid,
  .pt-footer__grid {
    grid-template-columns: 1fr;
  }

  .pt-stats {
    margin-top: 0;
    width: 100%;
  }

  .pt-product-grid,
  .pt-advantages__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pt-header.pt-header--scrolled {
  background: rgba(82, 98, 113, 0.94);
  box-shadow: 0 10px 30px rgba(8, 20, 33, 0.16);
}

/* Reference polish iteration 2: prevent heading/card over-wrap. */
.pt-split-text .pt-char {
  min-width: 0;
}

.pt-hero__content {
  width: min(620px, 100%);
}

.pt-hero h1 {
  font-size: clamp(46px, 5vw, 68px);
  letter-spacing: -0.055em;
}

.pt-about h2 {
  max-width: 620px;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: 0.055em;
  word-break: normal;
}

.pt-product-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  padding: 0;
  border: 0;
}

/* Reference polish iteration 3: compact hero title like source image. */
.pt-hero h1 {
  font-size: clamp(42px, 4.55vw, 58px);
  line-height: 1.22;
}



/* Reference polish iteration 4: make hero headline two clean lines. */
.pt-hero h1 {
  font-size: clamp(42px, 4.1vw, 52px);
  line-height: 1.42;
  letter-spacing: -0.035em;
}

