/* ================================================================
   QUALZY — Pricing Page Styles
   Prefix: pr-
   ================================================================ */


/* HERO (dark)
   ---------------------------------------------------------------- */
.pr-hero {
  padding-top: 64px; /* nav offset */
  background: var(--dk);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pr-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(250, 88, 2, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.pr-hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pr-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 48px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.pr-hero h1 em {
  font-style: italic;
  color: var(--o);
}

.pr-hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  font-weight: 300;
  max-width: 760px;
}


/* OPTIONS SECTION
   ---------------------------------------------------------------- */
.pr-options {
  background: var(--wh);
}

.pr-opts-hd {
  text-align: center;
  margin-bottom: 64px;
}

.pr-opts-hd .sbod {
  margin: 0 auto;
}

/* Three-column card grid */
.pr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Individual card */
.pr-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.pr-card:hover {
  border-color: rgba(250, 88, 2, 0.3);
  box-shadow: 0 8px 32px rgba(250, 88, 2, 0.08);
}

/* Featured card — orange accent */
.pr-card--featured {
  border-color: var(--o);
  background: var(--op);
}

.pr-card--featured:hover {
  border-color: var(--o);
  box-shadow: 0 8px 32px rgba(250, 88, 2, 0.16);
}

.pr-card-featured-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--o);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Card icon */
.pr-card-icon {
  width: 44px;
  height: 44px;
  color: var(--o);
  margin-bottom: 20px;
}

.pr-card-icon svg {
  width: 44px;
  height: 44px;
}

/* Card text */
.pr-card-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--dk);
  margin-bottom: 6px;
}

.pr-card-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--o);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.pr-card-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 28px;
}

/* Bullet list */
.pr-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pr-card-list li {
  font-size: 14px;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.pr-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--o);
  font-weight: 700;
  font-size: 13px;
}


/* PANEL & COMMUNITY PRICING
   ---------------------------------------------------------------- */
.pr-panels {
  background: var(--op);
  position: relative;
}

.pr-pan-hd {
  text-align: center;
  margin-bottom: 64px;
}

.pr-pan-intro {
  max-width: 680px;
  margin: 0 auto;
}

/* Two-column card grid */
.pr-pan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.pr-pan-card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 20px;
  padding: 44px 42px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.pr-pan-card:hover {
  border-color: rgba(250, 88, 2, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

.pr-pan-card--featured {
  background: var(--wh);
  border-color: var(--o);
  box-shadow: 0 4px 24px rgba(250, 88, 2, 0.1);
}

.pr-pan-card--featured:hover {
  border-color: var(--o);
  box-shadow: 0 12px 48px rgba(250, 88, 2, 0.16);
}

.pr-pan-annual {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--o);
  background: var(--op);
  border: 1px solid rgba(250, 88, 2, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 24px;
  width: fit-content;
}

.pr-pan-icon {
  width: 48px;
  height: 48px;
  color: var(--o);
  margin-bottom: 20px;
}

.pr-pan-icon svg {
  width: 48px;
  height: 48px;
}

.pr-pan-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--dk);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.pr-pan-pitch {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.68;
  font-weight: 300;
  margin-bottom: 28px;
}

.pr-pan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.pr-pan-list li {
  font-size: 14px;
  color: var(--mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.pr-pan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--o);
  font-weight: 700;
  font-size: 13px;
}

.pr-pan-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--o);
  text-decoration: none;
  border: 1.5px solid rgba(250, 88, 2, 0.35);
  border-radius: 8px;
  padding: 11px 20px;
  transition: all var(--t-base);
  width: fit-content;
  margin-top: auto;
}

.pr-pan-link:hover {
  background: var(--o);
  color: #fff;
  border-color: var(--o);
}

/* Info note below the cards */
.pr-pan-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1.5px solid rgba(250, 88, 2, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.pr-pan-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--o);
  margin-top: 2px;
}

.pr-pan-note p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}

.pr-pan-note p strong {
  color: var(--dk);
  font-weight: 600;
}

.pr-pan-note p a {
  color: var(--o);
  font-weight: 500;
  text-decoration: none;
}

.pr-pan-note p a:hover {
  text-decoration: underline;
}


/* ALWAYS INCLUDED (dark background)
   ---------------------------------------------------------------- */
.pr-included {
  background: var(--dk);
  padding: 100px 80px;
}

.pr-included-inner {
  /* inherits .inn max-width + centering */
}

.pr-inc-hd {
  text-align: center;
  margin-bottom: 72px;
}

.pr-inc-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}

/* Six-item grid */
.pr-inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pr-inc-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 32px;
  transition: background var(--t-base);
}

.pr-inc-item:hover {
  background: rgba(250, 88, 2, 0.07);
}

/* Icon */
.pr-inc-icon {
  width: 36px;
  height: 36px;
  color: var(--o);
  margin-bottom: 16px;
}

.pr-inc-icon svg {
  width: 36px;
  height: 36px;
}

.pr-inc-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pr-inc-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}


/* HONEST PRICING
   ---------------------------------------------------------------- */
.pr-honest {
  background: #fff;
}

.pr-hon-hd {
  margin-bottom: 60px;
}

/* Three equal columns */
.pr-hon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pr-hon-item {
  /* no card — clean text layout */
}

.pr-hon-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--op);
  border: 1.5px solid rgba(250, 88, 2, 0.25);
  color: var(--o);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pr-hon-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--dk);
  margin-bottom: 10px;
}

.pr-hon-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

.pr-hon-quote {
  margin: 60px auto 0;
  padding: 48px 56px;
  background: var(--op);
  border-radius: 16px;
  max-width: 820px;
  text-align: center;
}

.pr-hon-quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: var(--dk);
  margin-bottom: 20px;
  font-weight: 700;
}

.pr-hon-quote cite {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mu);
  font-style: normal;
}

.pr-hon-quote cite a {
  color: var(--o);
  text-decoration: none;
}


/* SUBSCRIPTION CONSULTATION CTA (inside form section left col)
   ---------------------------------------------------------------- */
.pr-sub-cta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1.5px solid rgba(232, 97, 44, 0.18);
}

.pr-sub-cta-note {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.6;
  margin-top: 12px;
}


/* ENQUIRY FORM SECTION
   ---------------------------------------------------------------- */
.pr-form-sec {
  background: var(--op);
  border-top: 1.5px solid rgba(232, 97, 44, 0.15);
}

.pr-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.pr-form-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1.5px solid rgba(232, 97, 44, 0.12);
}

/* HUBSPOT FORM OVERRIDES
   ---------------------------------------------------------------- */
#pr-hs-form .hs-form,
#pr-hs-form fieldset {
  max-width: 100% !important;
}

#pr-hs-form fieldset {
  display: block !important;
}

#pr-hs-form fieldset .hs-form-field {
  width: 100% !important;
  float: none !important;
  margin-bottom: 16px;
}

#pr-hs-form .hs-form-field > label,
#pr-hs-form .hs-label {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--dk) !important;
  margin-bottom: 6px !important;
  display: block;
}

#pr-hs-form input[type="text"],
#pr-hs-form input[type="email"],
#pr-hs-form input[type="tel"],
#pr-hs-form textarea,
#pr-hs-form select {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--dk) !important;
  background: var(--wh) !important;
  border: 1.5px solid var(--rule) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  -webkit-appearance: none;
  appearance: none;
}

/* Checkboxes and radios — restore natural sizing */
#pr-hs-form input[type="checkbox"],
#pr-hs-form input[type="radio"] {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: revert !important;
  border-radius: 0 !important;
  background: revert !important;
  -webkit-appearance: revert;
  appearance: revert;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Checkbox / radio option lists */
#pr-hs-form .inputs-list {
  list-style: none !important;
  margin: 6px 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

#pr-hs-form .inputs-list li {
  display: block !important;
  width: 100% !important;
}

#pr-hs-form .inputs-list label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--mid) !important;
  cursor: pointer;
}

#pr-hs-form .hs-input:focus,
#pr-hs-form input:focus,
#pr-hs-form textarea:focus,
#pr-hs-form select:focus {
  border-color: var(--o) !important;
  box-shadow: 0 0 0 3px rgba(250, 88, 2, 0.1) !important;
}

#pr-hs-form textarea {
  min-height: 110px !important;
  resize: vertical !important;
}

#pr-hs-form .hs-button,
#pr-hs-form input[type="submit"] {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: var(--o) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 13px 28px !important;
  cursor: pointer !important;
  transition: background 0.15s ease !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 4px;
}

#pr-hs-form .hs-button:hover,
#pr-hs-form input[type="submit"]:hover {
  background: var(--o2, #d4541f) !important;
}

#pr-hs-form .legal-consent-container,
#pr-hs-form .hs-richtext {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: var(--mu) !important;
  line-height: 1.55 !important;
}

#pr-hs-form .legal-consent-container a,
#pr-hs-form .hs-richtext a {
  color: var(--o) !important;
}

#pr-hs-form .hs-error-msg,
#pr-hs-form .hs-main-font-element {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: #c0392b !important;
  margin-top: 4px !important;
}

#pr-hs-form .hs-form ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .pr-hero-inner  { padding: 60px 24px 72px; }
  .pr-included    { padding: 60px 24px; }

  .pr-cards       { grid-template-columns: 1fr; gap: 20px; }
  .pr-pan-cards   { grid-template-columns: 1fr; gap: 20px; }
  .pr-inc-grid    { grid-template-columns: 1fr 1fr; }
  .pr-hon-grid    { grid-template-columns: 1fr; gap: 36px; }
  .pr-form-grid   { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .pr-inc-grid { grid-template-columns: 1fr; }
}
