﻿/* Project-specific layer over global styles.css baseline */

.pt-page {
  background: var(--bg-dark);
}

.pt-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
}

.pt-header .container {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pt-logo {
  display: inline-flex;
  align-items: center;
}

.pt-logo img {
  width: auto;
  height: 68px;
}

.pt-header-cta {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.88rem;
}

.pt-header-cta:hover {
  border-color: rgba(30, 215, 96, 0.65);
  color: var(--accent);
  background: rgba(30, 215, 96, 0.08);
}

.pt-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(122deg, rgba(5, 5, 5, 0.86) 16%, rgba(5, 5, 5, 0.45) 54%, rgba(5, 5, 5, 0.82) 100%);
  z-index: 1;
}

.pt-hero-bg {
  position: absolute;
  inset: 0;
}

.pt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 0 4.2rem;
}

.pt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: var(--gold);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.pt-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.pt-hero p {
  color: #d8dfdc;
  max-width: 62ch;
}

.pt-hero-highlight {
  margin-top: 0.9rem;
  color: #eff6f2;
  font-size: 1.03rem;
  font-weight: 500;
}

.pt-price-wrap {
  margin: 1.4rem 0 1.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.pt-price-regular {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: line-through;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 550;
  letter-spacing: 0.01em;
}

.pt-price-promo {
  color: var(--gold);
  font-size: clamp(2.25rem, 4.7vw, 3.45rem);
  font-weight: 780;
  line-height: 1;
}

.pt-section {
  padding: 4.7rem 0;
}

.pt-section--alt {
  background: var(--bg-section);
}

.pt-section h2 {
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  text-align: center;
  margin-bottom: 0.95rem;
}

.pt-section .section-subtitle {
  margin-bottom: 2rem;
}

.pt-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pt-bullet {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.15rem;
}

.pt-bullet p {
  color: var(--text-secondary);
}

.pt-offer-grid {
  align-items: stretch;
}

.pt-offer-card {
  min-height: 300px;
  height: 100%;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

.pt-offer-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0;
  color: var(--accent);
  font-family: "Lexend", sans-serif;
}

.pt-offer-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(30, 215, 96, 0.32);
  background: rgba(30, 215, 96, 0.1);
  color: #8cffba;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pt-offer-icon svg {
  width: 22px;
  height: 22px;
}

.pt-offer-card:hover {
  border-color: rgba(30, 215, 96, 0.72);
  box-shadow: 0 0 0 2px rgba(30, 215, 96, 0.22), 0 12px 34px rgba(30, 215, 96, 0.14);
  background: rgba(30, 215, 96, 0.05);
  transform: translateY(-4px);
}

.pt-before-purchase {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2.1rem 1.3rem;
}

.pt-before-purchase .section-subtitle {
  margin-bottom: 1.2rem;
}

.pt-before-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pt-mid-cta {
  padding-top: 0;
  padding-bottom: 4.2rem;
}

.pt-mid-cta-wrap {
  display: flex;
  justify-content: center;
}

.pt-mid-cta-btn {
  min-width: 220px;
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
}

.pt-order-shell {
  padding: 2rem 0 4rem;
}

.pt-wizard {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(150deg, rgba(16, 17, 17, 0.78) 0%, rgba(11, 12, 12, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 1.3rem;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

.pt-progress {
  margin-bottom: 1.35rem;
}

.pt-progress-text {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
  color: #cad2ce;
  margin-bottom: 0.5rem;
}

.pt-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  overflow: hidden;
}

.pt-progress-bar > span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.75), #e6ce71);
  transition: width var(--transition-base);
}

.wizard-step[hidden] {
  display: none !important;
}

.wizard-step h2 {
  margin-bottom: 1rem;
  text-align: left;
  font-family: "Lexend", sans-serif;
  font-size: 1.3rem;
  color: #f1f5f3;
}

.pt-wizard .form-group {
  margin-bottom: 1rem;
}

.pt-wizard .form-group label {
  color: #f0f4f2;
  font-weight: 400;
}

.pt-wizard .form-group input,
.pt-wizard .form-group select,
.pt-wizard .form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: #f9faf9;
  min-height: 50px;
}

.pt-wizard .form-group textarea {
  min-height: 92px;
}

.pt-wizard .form-group input:focus,
.pt-wizard .form-group select:focus,
.pt-wizard .form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.pt-wizard .form-group select option,
.pt-wizard .form-group select optgroup {
  background: #101111;
  color: #f2f4f3;
}

.pt-wizard fieldset.form-group,
.pt-choice-group {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  min-width: 0;
}

.pt-choice-group legend {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #f0f4f2;
  font-weight: 400;
}

.pt-field-helper {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #c7d2cd;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.choice-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card-label {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  text-align: center;
  color: #d2d9d6;
  font-size: 0.9rem;
  line-height: 1.3;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.choice-card:hover .choice-card-label {
  border-color: rgba(212, 175, 55, 0.45);
  color: #edf1ef;
}

.choice-card input[type="radio"]:focus-visible + .choice-card-label {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
}

.choice-card input[type="radio"]:checked + .choice-card-label {
  border-color: rgba(212, 175, 55, 0.9);
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.06));
  color: #f8f3df;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.42);
}

.pt-inline-note {
  font-size: 0.84rem;
  color: #c6ceca;
}

.pt-summary-card,
.pt-consent-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.2rem;
}

.pt-summary-card {
  margin-bottom: 1rem;
}

.pt-summary-card--premium {
  background: linear-gradient(150deg, rgba(17, 20, 19, 0.94) 0%, rgba(12, 15, 14, 0.96) 100%);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 26px rgba(0, 0, 0, 0.28);
}

.pt-summary-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: #efd898;
  margin-bottom: 0.45rem;
}

.pt-summary-product {
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  margin-bottom: 1rem;
  color: #fffdf7;
}

.pt-summary-metrics {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.pt-summary-metric {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem 0.9rem;
}

.pt-summary-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ccd4d0;
  margin-bottom: 0.35rem;
}

.pt-summary-metric strong {
  display: block;
  color: #f7fbf9;
  font-size: 0.99rem;
  line-height: 1.45;
  font-weight: 560;
}

.pt-summary-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #f2f6f4;
}

.pt-summary-note--emphasis {
  color: #f5faf7;
  font-weight: 500;
}

.pt-consent-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: #f4f8f6;
  font-family: "Lexend", sans-serif;
}

.pt-consent-card .checkbox-label {
  margin-bottom: 0.72rem;
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pt-consent-card .checkbox-label:last-of-type {
  margin-bottom: 0;
}

.pt-consent-card .checkbox-text {
  color: #edf3f0;
  line-height: 1.58;
}

.pt-consent-card .checkbox-text a {
  color: #fff8dd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pt-consent-card .checkbox-text a:hover {
  color: #fffdf3;
}

.wizard-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.wizard-nav .btn {
  width: 100%;
  min-height: 50px;
}

.pt-final-price {
  text-align: center;
  color: #edf2ef;
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.pt-hidden-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pt-status-box {
  min-height: 1.25rem;
  font-size: 0.88rem;
  margin-top: 0.65rem;
}

.pt-status-box.error {
  color: #ffb4b4;
}

.pt-status-box.success {
  color: #9bf3bb;
}

.pt-legal {
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.9;
  padding: 2.4rem 2rem;
}

.pt-legal h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 0.4rem;
}

.pt-legal-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2.1rem;
  font-size: 1.05rem;
}

.pt-legal h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.26rem, 3.2vw, 1.68rem);
}

.pt-legal p,
.pt-legal li {
  color: #d3dbd6;
}

.pt-legal ul,
.pt-legal ol {
  list-style: disc;
  margin-left: 1.3rem;
}

.pt-legal ol {
  list-style: decimal;
}

.pt-legal li + li {
  margin-top: 0.42rem;
}

.pt-footer {
  border-top: 1px solid var(--glass-border);
  padding: 2.4rem 0;
}

.pt-footer .footer-content {
  align-items: center;
}

.pt-footer .footer-tagline {
  color: #c4cdc8;
}

.pt-footer .footer-logo-link {
  display: inline-flex;
  line-height: 0;
}

.pt-footer .footer-links a {
  color: #d8e0db;
}

.pt-footer .footer-links a:hover {
  color: #ffffff;
}

.pt-footer .footer-contact {
  color: #c1cac5;
}

.pt-footer .footer-contact-line a {
  color: #dbe3de;
}

.pt-footer .footer-contact-line a:hover {
  color: #ffffff;
}

.pt-footer--order .footer-content {
  text-align: center;
}

.thankyou-panel {
  max-width: 760px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.3rem;
}

.thankyou-state {
  margin-top: 1rem;
}

.thankyou-state h2 {
  font-family: "Lexend", sans-serif;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.thankyou-state p {
  color: var(--text-secondary);
}

.thankyou-state.error h2 {
  color: #ff9f9f;
}

.small-link-list {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.small-link-list a {
  font-size: 0.88rem;
}

@media (min-width: 680px) {
  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .choice-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .pt-wizard {
    padding: 2rem;
  }

  .pt-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-before-purchase {
    padding: 2.3rem 2rem;
  }

  .pt-summary-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wizard-nav {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .wizard-nav .btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 190px;
  }

  .pt-final-price {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .pt-header .container {
    min-height: 82px;
    gap: 0.65rem;
  }

  .pt-logo img {
    height: 56px;
  }

  .pt-header-cta {
    font-size: 0.8rem;
    padding: 0.65rem 0.95rem;
    min-height: 42px;
  }

  .pt-section {
    padding: 3.6rem 0;
  }

  .pt-mid-cta {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .pt-mid-cta-btn {
    width: 100%;
    max-width: 360px;
  }

  .pt-hero-content {
    padding: 4.5rem 0 3.2rem;
  }

  .pt-offer-card {
    min-height: 0;
    padding: 1.35rem;
  }

  .choice-grid,
  .choice-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card-label {
    min-height: 44px;
    font-size: 0.86rem;
    padding: 0.55rem 0.6rem;
  }

  .pt-consent-card,
  .pt-summary-card {
    padding: 1rem;
  }

  .pt-legal {
    padding: 1.55rem 1.1rem;
    line-height: 1.78;
  }

  .pt-footer {
    padding: 2rem 0;
  }
}
