﻿/* pages.css — page-specific patterns (pricing, special cases) */
.pricing {
  padding-top: 84px;
}

.pricing .section-title,
.pricing .section-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing .section-title {
  max-width: 760px;
  font-size: 42px;
}

.pricing .section-text {
  max-width: 880px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.65;
}

.card.rast {
  /* variant override kept for page-level emphasis */
}

.small-note {
  margin-top: 16px;
  font-size: 13px;
  color: #c4cee2;
  opacity: 0.95;
}

.pricing > .container > .small-note {
  margin-top: 86px;
  text-align: center;
}

/* Deliver section */
.deliver-section {
  padding-top: 80px;
}

.deliver-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.deliver-section .two-col {
  max-width: 1040px;
  margin: 0 auto;
  gap: 18px;
  align-items: stretch;
}

.deliver-section .panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 100%;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.018)
    ),
    rgba(7,21,46,0.16);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.deliver-section .panel:hover {
  transform: translateY(-4px);

  border-color: rgba(255,255,255,0.14);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 42px rgba(0,0,0,0.22);
}

.deliver-section .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 110px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.deliver-section .panel:first-child::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent2),
    transparent
  );
}

.deliver-section .panel:last-child::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--green),
    transparent
  );
}

.deliver-section .panel h3 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 28px;
}

.deliver-section .panel ul {
  display: block;
  width: 100%;
  max-width: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliver-section .panel li {
  display: block;
  padding: 14px 0;
  line-height: 1.65;
  color: #dce4f3;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.deliver-section .panel li:last-child {
  border-bottom: none;
}

.deliver-section .panel li::before {
  display: none;
}

@media (max-width: 900px) {
  .deliver-section .two-col {
    grid-template-columns: 1fr;
  }

  .deliver-section .panel {
    padding: 22px;
  }

  .deliver-section .panel h3 {
    font-size: 24px;
  }

}
