body{
    margin: 0;
}
/* ===== BLOCK RESET ===== */
.pik-card,
.pik-card * { box-sizing: border-box; }
.pik-card input,
.pik-card textarea,
.pik-card select { font: inherit; }

/* ===== VARIABLES ===== */
.pik-card {
  --pik-navy: #0D2137;
  --pik-navy-light: #143352;
  --pik-orange: #E8730A;
  --pik-orange-hover: #D06608;
  --pik-bg: #F4F5F7;
  --pik-bg-white: #FFFFFF;
  --pik-text: #1A1A2E;
  --pik-text-muted: #5A6577;
  --pik-border: #DEE2E8;

  font-family: var(--t-text-font);
  color: var(--pik-text);
  background: var(--pik-bg);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.pik-card img { display: block; max-width: 100%; height: auto; }
.pik-card a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.pik-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== MODAL ===== */
.pik-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pik-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.pik-modal {
  position: relative;
  background: var(--pik-bg-white);
  border-radius: 8px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.pik-modal-overlay.is-active .pik-modal {
  transform: translateY(0);
}

.pik-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--pik-border);
  flex-shrink: 0;
}

.pik-modal__title {
  font-family: var(--t-headline-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--pik-navy);
  margin: 0;
}

.pik-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background: var(--pik-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.pik-modal__close:hover {
  background: var(--pik-border);
}

.pik-modal__close svg {
  width: 18px;
  height: 18px;
  stroke: var(--pik-text-muted);
}

.pik-modal__body {
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.pik-modal__body img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--pik-border);
}

/* ===== HERO ===== */
.pik-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--pik-navy);
  overflow: hidden;
}

.pik-hero__bg {
  position: absolute;
  inset: 0;
}

.pik-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(0.3);
}

.pik-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pik-hero__badge {
  display: inline-block;
  font-family: var(--t-headline-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pik-orange);
  background: rgba(232, 115, 10, 0.12);
  border: 1px solid rgba(232, 115, 10, 0.25);
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 32px;
}

.pik-hero__title {
  font-family: var(--t-headline-font);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.pik-hero__title-accent {
  color: var(--pik-orange);
}

.pik-hero__desc {
  font-family: var(--t-text-font);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px;
  max-width: 480px;
}

.pik-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pik-hero__right {
  display: flex;
  justify-content: flex-end;
}

.pik-hero__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  max-width: 420px;
  width: 100%;
}

.pik-hero__card-title {
  font-family: var(--t-headline-font);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.pik-hero__card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pik-hero__card-row:last-child {
  border-bottom: none;
}

.pik-hero__card-label {
  font-family: var(--t-text-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.pik-hero__card-value {
  font-family: var(--t-headline-font);
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}

/* ===== ABOUT ===== */
.pik-about {
  padding: 100px 0;
  background: var(--pik-bg-white);
}

.pik-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pik-about__image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.pik-about__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.pik-about__image-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--t-headline-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFF;
  background: var(--pik-navy);
  padding: 8px 14px;
  border-radius: 3px;
}

.pik-about__label {
  font-family: var(--t-headline-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pik-orange);
  margin-bottom: 16px;
}

.pik-about__title {
  font-family: var(--t-headline-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pik-navy);
  margin: 0 0 24px;
}

.pik-about__text {
  font-family: var(--t-text-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--pik-text-muted);
  margin: 0 0 16px;
}

.pik-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.pik-about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pik-about__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(232, 115, 10, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pik-about__feature-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(65%) saturate(2000%) hue-rotate(10deg) brightness(100%) contrast(100%);
}

.pik-about__feature-text {
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--pik-text);
}

/* ===== PRODUCT CARD ===== */
.pik-product {
  padding: 100px 0;
  background: var(--pik-bg);
}

.pik-product__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.pik-product__label {
  font-family: var(--t-headline-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pik-orange);
  margin-bottom: 16px;
}

.pik-product__title {
  font-family: var(--t-headline-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pik-navy);
  margin: 0;
}

.pik-product__card {
  background: var(--pik-bg-white);
  border: 1px solid var(--pik-border);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pik-product__gallery {
  position: relative;
  background: #ECEEF1;
}

.pik-product__gallery img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.pik-product__gost {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--t-headline-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFF;
  background: var(--pik-navy);
  padding: 8px 16px;
  border-radius: 3px;
}

.pik-product__info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.pik-product__name {
  font-family: var(--t-headline-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--pik-navy);
  margin: 0 0 8px;
  line-height: 1.2;
}

.pik-product__subtitle {
  font-family: var(--t-text-font);
  font-size: 15px;
  color: var(--pik-text-muted);
  margin: 0 0 32px;
}

.pik-product__specs {
  margin-bottom: 32px;
}

.pik-product__spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--pik-border);
}

.pik-product__spec-row:first-child {
  border-top: 1px solid var(--pik-border);
}

.pik-product__spec-label {
  font-family: var(--t-text-font);
  font-size: 14px;
  color: var(--pik-text-muted);
}

.pik-product__spec-value {
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--pik-text);
  text-align: right;
}

.pik-product__description {
  margin-bottom: 36px;
}

.pik-product__desc-title {
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--pik-navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 12px;
}

.pik-product__desc-text {
  font-family: var(--t-text-font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--pik-text-muted);
  margin: 0;
}

.pik-product__cta {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== ADVANTAGES ===== */
.pik-adv {
  padding: 100px 0;
  background: var(--pik-navy);
  color: #FFFFFF;
}

.pik-adv__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.pik-adv__label {
  font-family: var(--t-headline-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pik-orange);
  margin-bottom: 16px;
}

.pik-adv__title {
  font-family: var(--t-headline-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0;
}

.pik-adv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pik-adv-card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.pik-adv-card:hover {
  border-color: rgba(232, 115, 10, 0.4);
}

.pik-adv-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 115, 10, 0.12);
  border-radius: 8px;
}

.pik-adv-card__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(85%) saturate(3500%) hue-rotate(10deg) brightness(100%) contrast(100%);
}

.pik-adv-card__title {
  font-family: var(--t-headline-font);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.pik-adv-card__text {
  font-family: var(--t-text-font);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ===== CONTACTS SECTION ===== */
.pik-contacts {
  padding: 100px 0;
  background: var(--pik-bg-white);
}

.pik-contacts__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.pik-contacts__label {
  font-family: var(--t-headline-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pik-orange);
  margin-bottom: 16px;
}

.pik-contacts__title {
  font-family: var(--t-headline-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pik-navy);
  margin: 0;
}

.pik-contacts__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== DEPARTMENT CARD ===== */
.pik-dept {
  background: var(--pik-navy);
  border-radius: 8px;
  padding: 48px 40px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.pik-dept__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(232, 115, 10, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.pik-dept__icon img {
  width: 28px;
  height: 28px;
}

.pik-dept__tag {
  display: inline-block;
  font-family: var(--t-headline-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pik-orange);
  background: rgba(232, 115, 10, 0.12);
  border: 1px solid rgba(232, 115, 10, 0.25);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
  width: fit-content;
}

.pik-dept__name {
  font-family: var(--t-headline-font);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pik-dept__desc {
  font-family: var(--t-text-font);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px;
}

.pik-dept__contacts {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pik-dept__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pik-dept__contact:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pik-dept__contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pik-dept__contact-icon svg {
  width: 18px;
  height: 18px;
}

.pik-dept__contact-label {
  font-family: var(--t-text-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.pik-dept__contact-value {
  font-family: var(--t-headline-font);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
}

.pik-dept__contact-value a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pik-dept__contact-value a:hover {
  color: var(--pik-orange);
}

/* ===== COMMON CONTACT INFO ===== */
.pik-contacts__common {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: var(--pik-bg);
  border-radius: 8px;
  border: 1px solid var(--pik-border);
}

.pik-contacts__common-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pik-contacts__common-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 115, 10, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pik-contacts__common-icon img {
  width: 16px;
  height: 16px;
}

.pik-contacts__common-label {
  font-family: var(--t-text-font);
  font-size: 12px;
  color: var(--pik-text-muted);
}

.pik-contacts__common-value {
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--pik-text);
}

/* ===== FOOTER ===== */
.pik-footer {
  padding: 48px 0;
  background: #091624;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pik-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.pik-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pik-footer__name {
  font-family: var(--t-headline-font);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.pik-footer__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.pik-footer__tagline {
  font-family: var(--t-text-font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.pik-footer__contacts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.pik-footer__link {
  font-family: var(--t-text-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.pik-footer__link:hover {
  color: #E8730A;
}

.pik-footer__copy {
  width: 100%;
  text-align: center;
  font-family: var(--t-text-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.t-btnflex {
  font-weight: bold;
  padding: 16px 32px;     /* внутренние отступы — основной рычаг */
  min-height: 56px;       /* минимальная высота */
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: rgba(208, 207, 207, 0.44);
  opacity: 1;
  margin-top: 1px;
  margin-right: 1px;
  margin-bottom: 1px;
  margin-left: 1px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  
}

.t-btnflex:hover {
  color: #E8730A;
}

.t-btnflex:active {
  border-color: #E8730A;
}

.t-btnflex:focus-visible {
  outline: 2px solid #E8730A;
  outline-offset: 2px;
}

/* Кнопки на тёмном фоне — белая рамка 
.pik-hero .t-btnflex,
.pik-adv .t-btnflex,
.pik-dept .t-btnflex,
.pik-footer .t-btnflex {
  border-color: rgba(255, 255, 255, 0.25); 
}*/

/* Кнопки на светлом фоне — серая рамка */
.pik-product .t-btnflex {
  border-color: var(--pik-border);
}

#product {
  background-color: rgba(0, 0, 0, 0);
}

/* ===== RESPONSIVE — 960–1200 ===== */
@media (max-width: 1200px) {
  .pik-hero__content { gap: 60px; }
  .pik-about__grid { gap: 60px; }
}

/* ===== RESPONSIVE — 640–960 ===== */
@media (max-width: 960px) {
  .pik-hero { min-height: auto; }
  .pik-hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 20px 64px;
  }
  .pik-hero__right { justify-content: flex-start; }
  .pik-hero__card { max-width: 100%; }

  .pik-about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pik-about__image img { height: 340px; }

  .pik-product__card {
    grid-template-columns: 1fr;
  }
  .pik-product__gallery img { min-height: 340px; }

  .pik-adv__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pik-contacts__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pik-contacts__common {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }
}

/* ===== RESPONSIVE — 480–640 ===== */
@media (max-width: 640px) {
  .pik-about { padding: 64px 0; }
  .pik-product { padding: 64px 0; }
  .pik-adv { padding: 64px 0; }
  .pik-contacts { padding: 64px 0; }

  .pik-hero__content { padding: 64px 20px 48px; }

  .pik-about__features {
    grid-template-columns: 1fr;
  }

  .pik-adv__grid {
    grid-template-columns: 1fr;
  }

  .pik-product__info {
    padding: 32px 24px;
  }

  .pik-dept {
    padding: 36px 28px;
  }

  .pik-dept__contact-value {
    font-size: 16px;
  }

  .pik-footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .pik-footer__contacts {
    flex-direction: column;
    gap: 12px;
  }
  .pik-footer__brand { flex-direction: column; }
  .pik-footer__divider { display: none; }

  .pik-modal { max-width: 100%; }
  .pik-modal__body { padding: 16px; }
}

/* ===== RESPONSIVE — 320–480 ===== */
@media (max-width: 480px) {
  .pik-hero__content { padding: 56px 16px 40px; }
  .pik-hero__badge { font-size: 10px; padding: 6px 12px; }
  .pik-hero__actions { flex-direction: column; }
  .pik-hero__actions .t-btnflex { width: 100%; }

  .pik-product__specs {
    font-size: 13px;
  }

  .pik-about__image img { height: 260px; }
  .pik-product__gallery img { min-height: 260px; }

  .pik-dept { padding: 28px 20px; }
  .pik-dept__icon { width: 48px; height: 48px; }
  .pik-dept__name { font-size: 20px; }
  .pik-dept__contact-value { font-size: 15px; }

  .pik-contacts__common {
    padding: 20px 16px;
  }
  .pik-contacts__common-value { font-size: 13px; }
}
