/*
Theme Name: Polimertest Premium Minimal
Theme URI: https://polimertest.ru/
Author: ChatGPT
Description: Минималистичный премиум‑шаблон для сайта ООО «Полимертест» (единая шапка/подвал, выпадающее меню, чистая типографика).
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: polimertest-premium
*/

:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --ink:#0b0f1a;
  --muted:#5b616e;
  --accent:#0b1322;
  --accent2:#1d4ed8;
  --border:rgba(15,23,42,.10);
  --border2:rgba(15,23,42,.16);
  --shadow:0 10px 24px rgba(2,6,23,.08);
  --radius:12px;
  --radius-sm:10px;
  --space:clamp(18px, 3vw, 34px);
  --gap:clamp(12px, 2vw, 18px);
  --max:1200px;
  --headerH:72px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  position:relative;
}

body::after{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity:.03;
  mix-blend-mode:multiply;
  z-index:0;
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline; text-underline-offset:3px}

img{max-width:100%; height:auto; display:block}
.pt-container{width:min(var(--max), calc(100% - 2*var(--space))); margin-inline:auto; position:relative; z-index:1}
.pt-main{min-height:55vh; padding-bottom:clamp(22px,4vw,44px); position:relative; z-index:1}

/* Header */
.pt-header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,247,249,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.pt-header__inner{
  height:var(--headerH);
  display:flex; align-items:center; gap:16px;
}
.pt-brand{min-width:240px}
.pt-brand__link{display:flex; flex-direction:column; gap:2px}
.pt-brand__name{font-weight:800; letter-spacing:-.02em}
.pt-brand__meta{font-size:13px; color:rgba(2,6,23,.68)}
.pt-brand__logo img{max-height:40px; width:auto}

.pt-head-actions{margin-left:auto; display:flex; align-items:center; gap:10px}
.pt-mini{font-size:13px; color:rgba(2,6,23,.70); display:none}
.pt-mini a{color:inherit; text-decoration:underline; text-underline-offset:3px}

.pt-burger{
  display:none; margin-left:auto;
  width:44px; height:44px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.65);
  border-radius:12px;
  padding:0;
}
.pt-burger span{
  display:block; width:18px; height:2px; background:rgba(2,6,23,.85);
  margin:4px auto; border-radius:2px;
}

/* Nav */
.pt-nav{margin-left:6px}
.pt-nav ul{list-style:none; margin:0; padding:0; display:flex; align-items:center; gap:6px}
.pt-nav a{
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 12px;
  border-radius:12px;
  font-weight:650;
  color:rgba(2,6,23,.82);
}
.pt-nav a:hover{
  background:rgba(2,6,23,.04);
  text-decoration:none;
}
.pt-nav .current-menu-item > a,
.pt-nav .current_page_item > a{
  background:rgba(2,6,23,.06);
  color:rgba(2,6,23,.92);
}
.pt-nav li{position:relative}
.pt-nav .menu-item-has-children > a::after{
  content:"";
  width:7px; height:7px;
  border-right:2px solid rgba(2,6,23,.55);
  border-bottom:2px solid rgba(2,6,23,.55);
  transform:rotate(45deg);
  margin-left:4px;
  opacity:.8;
}
.pt-nav .sub-menu{
  position:absolute; left:0; top:calc(100% + 8px);
  min-width:260px;
  background:rgba(255,255,255,.95);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:8px;
  display:none;
}
.pt-nav .sub-menu a{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  font-weight:600;
}
.pt-nav li:hover > .sub-menu,
.pt-nav li:focus-within > .sub-menu{display:block}

/* Buttons */
.pt-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.75);
  font-weight:750;
  cursor:pointer;
}
.pt-btn:hover{text-decoration:none; filter:brightness(.98)}
.pt-btn--primary{
  background:var(--accent);
  color:#fff;
  border-color:rgba(2,6,23,.14);
}
.pt-btn--ghost{
  background:transparent;
}

.pt-search{display:none}
.pt-search input[type="search"]{
  height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  padding:0 12px;
  background:rgba(255,255,255,.70);
  outline:none;
}
.pt-search button{
  height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.70);
  padding:0 12px;
  font-weight:700;
}

/* Hero */
.pt-hero{
  padding:clamp(28px,4vw,46px) 0;
  background:linear-gradient(180deg, rgba(2,6,23,.035), transparent 65%);
  position:relative;
}
.pt-hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(2,6,23,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(2,6,23,.05) 1px, transparent 1px);
  background-size:80px 80px;
  opacity:.16;
  pointer-events:none;
}
.pt-hero__grid{
  display:grid; gap:var(--gap);
  grid-template-columns: 1.25fr .75fr;
  align-items:start;
  position:relative; z-index:1;
}
.pt-kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.70);
  font-size:13px;
  color:rgba(2,6,23,.75);
}
.pt-h1{font-size:clamp(28px, 4vw, 44px); line-height:1.12; letter-spacing:-.03em; margin:14px 0 10px}
.pt-lead{font-size:18px; color:rgba(2,6,23,.78); max-width:68ch; margin:0}

.pt-trustline{
  display:flex; flex-wrap:wrap; gap:10px 14px;
  margin-top:14px;
  color:rgba(2,6,23,.78);
  font-size:14px;
}
.pt-trustline .sep{opacity:.35}
.pt-trustline a{color:var(--ink); text-decoration:underline; text-underline-offset:3px}

.pt-card{
  background:rgba(255,255,255,.88);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 1px 0 rgba(2,6,23,.04);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.pt-card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: var(--border2);
}
@media (prefers-reduced-motion: reduce){
  .pt-card{ transition:none; }
  .pt-card:hover{ transform:none; }
}
.pt-card__title{font-weight:850; margin:0 0 6px}
.pt-hint{font-size:13px; color:rgba(2,6,23,.62); margin:0}

.pt-docpreview{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.pt-docbadge{
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  background:rgba(2,6,23,.02);
}

/* Estimator */
.pt-est__row{display:grid; grid-template-columns: 1fr; gap:10px; margin-top:10px}
.pt-seg{
  display:flex; gap:8px; flex-wrap:wrap;
}
.pt-seg label{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid rgba(15,23,42,.14);
  border-radius:14px;
  background:transparent;
  cursor:pointer;
  font-weight:650;
  color:rgba(2,6,23,.80);
}
.pt-seg input{accent-color:var(--accent); margin:0}
.pt-seg input:checked + span{
  /* if we use span wrapper, but we keep label layout; handled in JS for broad support */
}
.pt-field{width:100%; height:44px; border-radius:12px; border:1px solid var(--border); padding:0 12px; background:rgba(255,255,255,.70); outline:none}
.pt-field:focus{border-color:rgba(2,6,23,.26)}
.pt-est__out{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:12px}
.pt-est__sum{font-weight:900}
.pt-badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.pt-badge{
  font-size:12px;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.70);
  color:rgba(2,6,23,.72);
}

/* Sections */
.pt-section{padding:clamp(26px,4vw,46px) 0}
.pt-h2{font-size:clamp(20px, 2.4vw, 28px); margin:0 0 12px; letter-spacing:-.02em}
.pt-grid{display:grid; gap:var(--gap); grid-template-columns:repeat(3, 1fr)}
.pt-grid--2{grid-template-columns:repeat(2,1fr)}
.pt-item{padding:16px}
.pt-item h3{margin:0 0 6px; font-size:16px}
.pt-item p{margin:0; color:rgba(2,6,23,.72); font-size:14px}

/* Content pages */
.pt-pagehead{padding:24px 0 10px}
.pt-pagehead h1{margin:0; font-size:clamp(24px,3.2vw,36px); letter-spacing:-.02em}
.entry-content{
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:clamp(16px,2.5vw,22px);
}
.entry-content h2,.entry-content h3{letter-spacing:-.01em}
.entry-content a{color:var(--accent2)}
.entry-content ul{padding-left:20px}
.entry-content table{width:100%; border-collapse:collapse}
.entry-content th,.entry-content td{border:1px solid var(--border); padding:10px; text-align:left; vertical-align:top}
.entry-content blockquote{
  margin:16px 0;
  padding:12px 14px;
  border-left:3px solid rgba(2,6,23,.18);
  background:rgba(2,6,23,.02);
}

/* Footer */
.pt-footer{
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.92);
  padding:clamp(22px,4vw,44px) 0;
}
.pt-footer__grid{display:grid; gap:var(--gap); grid-template-columns: 1.1fr 1fr 1fr}
.pt-foot-title{font-weight:850; margin:0 0 8px}
.pt-foot{margin:0; color:rgba(2,6,23,.72); font-size:14px}
.pt-footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--border);
  color:rgba(2,6,23,.68);
  font-size:13px;
}

/* Responsive */
@media (max-width: 980px){
  .pt-hero__grid{grid-template-columns:1fr}
  .pt-grid{grid-template-columns:1fr}
  .pt-grid--2{grid-template-columns:1fr}
  .pt-footer__grid{grid-template-columns:1fr}
  .pt-brand{min-width:0}
  .pt-head-actions{display:none}
  .pt-burger{display:block}
  .pt-nav{
    position:fixed; left:var(--space); right:var(--space);
    top:calc(var(--headerH) + 12px);
    background:rgba(255,255,255,.96);
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:10px;
    display:none;
  }
  .pt-nav.is-open{display:block}
  .pt-nav ul{flex-direction:column; align-items:stretch}
  .pt-nav a{justify-content:space-between}
  .pt-nav .sub-menu{
    position:static; display:none; box-shadow:none; border-radius:14px; padding:6px; margin-top:6px;
  }
  .pt-nav li.is-sub-open > .sub-menu{display:block}
}

/* ===== Desktop header polish + dropdown fix (>=981px) ===== */
@media (min-width: 981px){
  :root{ --headerH:68px; }

  .pt-header__inner{ gap:14px; }
  .pt-brand{ flex:0 0 auto; max-width:360px; min-width:280px; }
  .pt-brand__link{ gap:4px; }

  .pt-brand__name{
    font-size:20px;
    line-height:1.1;
    letter-spacing:-.001em;
  }
  .pt-brand__meta{
    font-size:12px;
    line-height:1.2;
    color:rgba(2,6,23,.72);
  }
  .pt-brand__meta strong{
    font-weight:850;
    color:rgba(2,6,23,.90);
  }

  /* меню по центру */
  .pt-nav{ flex:1 1 auto; display:flex; justify-content:center; margin-left:0; }
  .pt-nav ul{ gap:10px; }
  .pt-nav a{
    height:40px;
    padding:0 10px;
    border-radius:12px;
    font-size:14px;
    line-height:1;
    font-weight:650;
    color:rgba(2,6,23,.78);
  }

  /* FIX: выпадающее меню без “мертвой зоны” */
  .pt-nav .sub-menu{
    top:100%;                      /* вместо calc(100% + 8px) */
    transform:translateY(8px);     /* визуальный зазор без потери hover */
    display:none;
    z-index:99;
  }
  .pt-nav .sub-menu::before{
    content:"";
    position:absolute;
    left:0; right:0;
    top:-10px;                     /* “мостик” для курсора */
    height:10px;
  }

  /* поиск в шапке — только на широких экранах */
  .pt-search{display:block}
  .pt-search input[type="search"]{ width:220px; height:40px; }
}

/* на средних и мобильных — поиск скрываем (чтобы не теснило) */
@media (max-width: 1100px){
  .pt-search{display:none}
}

/* чуть плотнее на узких десктопах */
@media (max-width: 1120px){
  .pt-brand{ max-width:300px; min-width:260px; }
  .pt-nav ul{ gap:6px; }
  .pt-nav a{ padding:0 9px; }
}


.pt-search{display:block}
.pt-search input[type="search"]{
  width:220px;
  height:40px;
}
@media (max-width: 1100px){
  .pt-search{display:none} /* чтобы не теснить */
}
/* Footer: small helpers */
.pt-foot-links{
  display:flex; flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:rgba(2,6,23,.68);
}
.pt-foot-links a{
  text-decoration:underline;
  text-underline-offset:3px;
}
.pt-foot-sep{opacity:.35}

.pt-foot-sub{margin-top:10px}

.pt-foot-list{
  list-style:none;
  padding:0;
  margin:0 0 6px 0;
  display:grid;
  gap:6px;
}
.pt-foot-list li{margin:0}
.pt-foot-list a{text-decoration:none}
.pt-foot-list a:hover{text-decoration:underline; text-underline-offset:3px}

/* Footer — premium separators between columns (desktop only) */
@media (min-width: 981px){
  .pt-footer__grid > div{
    position:relative;
    padding-right:18px;
  }
  .pt-footer__grid > div:not(:last-child)::after{
    content:"";
    position:absolute;
    top:6px; bottom:6px; right:0;
    width:1px;
    background:var(--border);
    opacity:.85;
  }
}
/* Footer — premium labels */
.pt-foot .pt-label{
  display:inline-block;
  min-width:74px;              /* чтобы “E-mail/Телефон” стояли ровной колонкой */
  color:rgba(2,6,23,.62);
  font-weight:650;
}
.pt-foot a{
  text-decoration:none;
}
.pt-foot a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}
.pt-footer__bottom a{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:3px;
}
.pt-footer__bottom a:hover{
  filter:brightness(.95);
}
.pt-footer__bottom strong{font-weight:850}

/* Menu: Promo item (Акции) */
.pt-nav .pt-menu-promo > a{
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.22);
  color: rgba(2,6,23,.92);
}
.pt-nav .pt-menu-promo > a:hover{
  background: rgba(29,78,216,.14);
  border-color: rgba(29,78,216,.30);
  text-decoration:none;
}
/* ===== Promo ticker ===== */
.pt-ticker{
  display:block;
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
}
.pt-ticker:hover{ text-decoration:none; }
.pt-ticker__inner{
  height: 34px;
  display:flex;
  align-items:center;
  gap:12px;
}
.pt-ticker__badge{
  font-size:12px;
  font-weight:850;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(29,78,216,.22);
  background: rgba(29,78,216,.10);
  color: rgba(2,6,23,.92);
  flex: 0 0 auto;
}
.pt-ticker__cta{
  font-size:13px;
  font-weight:750;
  color: rgba(2,6,23,.70);
  white-space:nowrap;
  flex: 0 0 auto;
}
.pt-ticker__viewport{
  flex:1 1 auto;
  overflow:hidden;
  white-space:nowrap;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.pt-ticker__track{
  display:inline-flex;
  gap: 40px;
  align-items:center;
  will-change: transform;
  animation: ptTicker 22s linear infinite;
}
.pt-ticker:hover .pt-ticker__track{
  animation-play-state: paused; /* удобно читать */
}
.pt-ticker__text{
  font-size:13px;
  color: rgba(2,6,23,.78);
}
@keyframes ptTicker{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

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

/* уважение к настройке "уменьшить движение" */
@media (prefers-reduced-motion: reduce){
  .pt-ticker__track{ animation:none; }
  .pt-ticker__text:nth-child(2){ display:none; }
}

/* на телефоне можно скрыть "Подробнее", чтобы не теснило */
@media (max-width: 980px){
  .pt-ticker__cta{ display:none; }
}
.pt-header .pt-ticker{
  display:block;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
/* Мобилки/планшеты: убираем поиск из верхней строки */
@media (max-width: 980px){
  .pt-search{ display:none !important; } /* важно, чтобы не переопределялось на разных страницах */
}
@media (max-width: 980px){
  /* когда меню открыто — прячем тикер, чтобы не мешал и не перекрывался */
  body.pt-nav-open .pt-ticker{ display:none; }

  /* панель меню на весь экран, но стартует ниже шапки */
  .pt-nav{
    position: fixed;
    left: 0;
    right: 0;
    top: var(--pt-header-offset, 64px);
    height: calc(100dvh - var(--pt-header-offset, 64px));
    overflow: auto;
    z-index: 9999;
    /* если у вас есть анимация открытия — оставьте свою, это просто пример */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
  }
  body.pt-nav-open .pt-nav{
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
/* ===== Floating scroll buttons (up/down) ===== */
.pt-fabscroll{
  position: fixed;
  right: 16px;
  bottom: 92px; /* чуть выше зоны, где обычно всплывают баннеры/виджеты */
  z-index: 9998;
  display: grid;
  gap: 10px;
}

.pt-fabscroll[hidden]{ display:none; }

.pt-fabscroll__btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  color: rgba(2,6,23,.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease, background .12s ease;
  backdrop-filter: blur(10px);
}

.pt-fabscroll__btn:hover{
  transform: translateY(-1px);
  filter: brightness(.98);
  border-color: var(--border2);
}

.pt-fabscroll__btn:active{
  transform: translateY(0);
}

.pt-fabscroll__btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(29,78,216,.18), var(--shadow);
}

/* Мобильные: компактнее и ближе к краю */
@media (max-width: 980px){
  .pt-fabscroll{
    right: 12px;
    bottom: 86px;
    gap: 8px;
  }
  .pt-fabscroll__btn{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}
/* ===== Header search: показываем только один поиск ===== */

/* На десктопе мобильную форму всегда прячем */
.pt-search--mobile{ display:none !important; }

/* Десктопную форму показываем по вашим правилам (она и так включается на >=981) */
.pt-search--desktop{ display:block; }

@media (max-width: 980px){
  /* на мобилке десктопный поиск прячем */
  .pt-search--desktop{ display:none !important; }

  /* мобильный поиск показываем только при открытом меню */
  body.pt-nav-open .pt-search--mobile{ display:block !important; }
}
/* Видимый фокус для клавиатуры (доступность + ощущение качества) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px rgba(29,78,216,.22), var(--shadow);
  border-color: var(--border2);
  border-radius: 12px;
}
:root{
  /* Более “премиальные” тени */
  --shadow-soft: 0 10px 30px rgba(2, 6, 23, .08);
  --shadow-lift: 0 1px 0 rgba(2, 6, 23, .06), 0 18px 48px rgba(2, 6, 23, .10);

  /* Тонкая “дорогая” граница */
  --border-premium: rgba(2, 6, 23, .10);
}
.pt-card{
  position: relative;
  overflow: hidden;
}

.pt-card::before{
  content:"";
  position:absolute;
  left:-20%;
  top:-40%;
  width:140%;
  height:70%;
  background: radial-gradient(closest-side, rgba(255,255,255,.55), rgba(255,255,255,0));
  transform: rotate(-6deg);
  pointer-events:none;
  opacity:.7;
}
.pt-btn{
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  box-shadow: 0 1px 0 rgba(2,6,23,.06);
}
.pt-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(2,6,23,.10);
}
.pt-btn:active{
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(2,6,23,.10);
}
.pt-btn--primary{
  background: linear-gradient(180deg, rgba(29,78,216,1), rgba(29,78,216,.92));
  border-color: rgba(29,78,216,.35);
}
.pt-btn--primary:hover{
  background: linear-gradient(180deg, rgba(29,78,216,1), rgba(29,78,216,.86));
}
/* Визуальный акцент для заголовков секций */
.pt-section-title{
  display:flex;
  align-items:center;
  gap:12px;
}

.pt-section-title::after{
  content:"";
  height:1px;
  flex:1;
  background: linear-gradient(90deg, rgba(2,6,23,.18), rgba(2,6,23,0));
}

/* Маленький “премиум-бейдж” для подзаголовка, если есть */
.pt-kicker{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.75);
  box-shadow: 0 1px 0 rgba(2,6,23,.05);
}
input[type="text"], input[type="tel"], input[type="email"], textarea, select{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,6,23,.12);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(2,6,23,.05);
  transition: box-shadow .12s ease, border-color .12s ease;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, textarea:focus, select:focus{
  border-color: rgba(29,78,216,.35);
  box-shadow: 0 0 0 3px rgba(29,78,216,.16), 0 1px 0 rgba(2,6,23,.05);
  outline: none;
}
/* Легкая текстура фона: почти незаметная */
/* 1) Возвращаем светлый “премиум” фон */
html, body{
  background: #ffffff;
}

.pt-wrap{
  background: #ffffff;
}
/* 2) Карточки читаются на белом фоне за счёт границы + мягкой тени */
:root{
  --border-premium: rgba(2, 6, 23, .10);
  --shadow-soft: 0 1px 0 rgba(2, 6, 23, .05), 0 14px 40px rgba(2, 6, 23, .08);
  --shadow-lift: 0 1px 0 rgba(2, 6, 23, .06), 0 22px 55px rgba(2, 6, 23, .10);
}

.pt-card{
  background: #fff;
  border: 1px solid var(--border-premium);
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.pt-card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(2, 6, 23, .14);
}
@media (prefers-reduced-motion: reduce){
  .pt-card, .pt-card:hover{ transition:none; transform:none; }
}
