/* css/pakety.css */

/* ─── HERO ─── */
.pak-hero { padding: 40px 0; background: var(--surface); }

.pak-hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 22%;
  min-height: 300px;
}

.pak-hero__body {
  padding: 52px 48px 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pak-hero__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}

.pak-hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pak-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pak-hero__list li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pak-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.pak-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.pak-hero__img-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pak-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── ABOUT ─── */
.pak-about { padding: 0 0 40px; }

.pak-about__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}

.pak-about__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pak-about__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.pak-about__text + .pak-about__text { margin-top: 12px; }

.pak-about__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pak-about__list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pak-about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.pak-about__imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateX(40px) scale(1.5);
  transform-origin: center center;
}

.pak-about__imgs img {
  width: 62%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.pak-about__imgs img:first-child {
  position: relative;
  z-index: 2;
  transform: translate(61px, 20px);
}

.pak-about__imgs img:last-child {
  margin-left: -20%;
  position: relative;
  z-index: 1;
}

/* ─── COLORS ─── */
.pak-colors { padding: 0 0 40px; }

.pak-colors__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pak-colors__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.pak-colors__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pak-colors__names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pak-colors__chip {
  font-size: 13px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 6px;
  padding: 5px 12px;
  line-height: 1.4;
}

.pak-colors__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pak-colors__img-wrap img {
  max-width: 100%;
  max-height: 340px;
  width: auto;
  height: auto;
  display: block;
}

/* ─── PRICES ─── */
.pak-price { padding: 0 0 40px; }

.pak-price__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 56px;
}

.pak-price__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.pak-price__note {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pak-price__sub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 14px;
}

.pak-table-wrap { overflow-x: auto; }

.pak-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pak-table th {
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  text-align: right;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.pak-table th:first-child { text-align: left; }

.pak-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
}

.pak-table td:first-child {
  text-align: left;
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
}

.pak-table td.pak-na { color: var(--border); font-weight: 400; }

.pak-table tr:last-child td { border-bottom: none; }

.pak-price__footnote {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .pak-hero__body    { padding: 36px 32px; }
  .pak-about__card   { padding: 36px 32px; gap: 32px; }
  .pak-colors__card  { padding: 36px 32px; }
  .pak-price__card   { padding: 36px 32px; }
}

@media (max-width: 860px) {
  .pak-about__card  { grid-template-columns: 1fr; }
  .pak-colors__card { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .pak-hero__card  { grid-template-columns: 1fr; }
  .pak-hero__img-wrap { max-height: 220px; overflow: hidden; }
  .pak-hero__img-wrap img { object-fit: contain; object-position: top center; }
}

@media (max-width: 560px) {
  .pak-hero__body    { padding: 28px 24px; }
  .pak-about__card   { padding: 28px 24px; }
  .pak-colors__card  { padding: 28px 24px; }
  .pak-price__card   { padding: 28px 24px; }
}
