/* ============================================================
   PRICING PAGE
   ============================================================ */

body { padding-top: 90px; }
@media (max-width: 768px) { body { padding-top: 76px; } }

/* ── HERO ── */
.pricing-hero {
  background-color: var(--clr-navy);
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 7rem) clamp(4.5rem, 10vw, 7.5rem);
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 82px
    );
  pointer-events: none;
}
.pricing-hero::after {
  content: '';
  position: absolute;
  left: calc(var(--gutter) - 1px);
  top: 0; bottom: 0;
  width: 3px;
  background: var(--clr-red);
  opacity: 0.7;
}
.pricing-hero__clip {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 72px;
  background: var(--clr-grey);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  pointer-events: none;
}
.pricing-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.pricing-hero h1 {
  font-size: var(--text-hero);
  color: var(--clr-white);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-5);
}
.pricing-hero__sub {
  font-size: var(--text-xl);
  color: var(--clr-muted);
  line-height: 1.6;
  max-width: 54ch;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .pricing-hero::after { display: none; }
  .pricing-hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .pricing-hero__sub { font-size: var(--text-base); }
}

/* ── PROGRAM CARDS ── */
.pricing-cards { background: var(--clr-grey); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

.pricing-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12,18,58,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card__top {
  height: 5px;
  background: var(--clr-red);
}
.pricing-card__body {
  padding: var(--sp-8) var(--sp-7);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(244,30,71,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-navy);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: var(--sp-2);
}
.pricing-card__sub {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1.0;
  margin-bottom: var(--sp-1);
}
.pricing-card__price-note {
  font-size: var(--text-sm);
  color: #888;
  margin-bottom: var(--sp-6);
}
.pricing-card p {
  font-size: var(--text-base);
  color: #555;
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}
.pricing-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.pricing-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: #444;
  line-height: 1.5;
}
.pricing-card__includes li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' fill='%23f41e47' fill-opacity='0.1'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23f41e47' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* ── CONTACT CTA ── */
.pricing-contact {
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
}
.pricing-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.015) 80px,
    rgba(255,255,255,0.015) 82px
  );
  pointer-events: none;
}
.pricing-contact__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.pricing-contact__inner h2 {
  color: var(--clr-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--sp-3);
}
.pricing-contact__inner p {
  color: var(--clr-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
  margin-inline: auto;
  text-align: center;
}
.pricing-contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-7);
}
.pricing-contact-method {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-6);
  text-decoration: none;
  color: var(--clr-white);
  font-weight: 600;
  font-size: var(--text-base);
  transition: background 0.2s, border-color 0.2s;
}
.pricing-contact-method:hover {
  background: rgba(244,30,71,0.15);
  border-color: rgba(244,30,71,0.4);
}
.pricing-contact-method svg {
  color: var(--clr-red);
  flex-shrink: 0;
}
.pricing-contact-method span strong {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

@media (max-width: 540px) {
  .pricing-contact-methods { flex-direction: column; align-items: center; }
  .pricing-contact-method { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── FAQ ── */
.pricing-faq { background: var(--clr-white); }

.pricing-faq h2 {
  color: var(--clr-navy);
  text-align: center;
  margin-bottom: var(--sp-10);
}
.pricing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  max-width: 860px;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .pricing-faq-grid { grid-template-columns: 1fr; }
}
.pricing-faq .faq-item {
  border: 1px solid rgba(12,18,58,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-faq .faq-q {
  padding: var(--sp-5) var(--sp-6);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--clr-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}
.pricing-faq .faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-red);
  flex-shrink: 0;
  line-height: 1;
}
.pricing-faq details[open] .faq-q::after { content: '−'; }
.pricing-faq .faq-a {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-sm);
  color: #555;
  line-height: 1.7;
  border-top: 1px solid rgba(12,18,58,0.06);
}
