/* ============================================================
   MARQUE — Price Match landing page styles
   Loads AFTER /assets/brand.css and /assets/quote.css.
   Section styles only — all tokens come from brand.css.
   ============================================================ */

/* ============================================================
   SHARED — .section-blue
   This selector is referenced by brand.js (nav-on-blue observer)
   and was originally defined only in home.css. Re-declared here
   so any page that loads only brand.css + price-match.css gets the
   correct blue background + overflow:hidden behaviour.
   ============================================================ */
.section-blue {
  background: var(--c-blue);
  color: var(--c-beige);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   GLOBAL z-INDEX DISCIPLINE
   Every section's container sits above decorative shapes.
   ============================================================ */
.pm-hero .container,
.pm-how .container,
.pm-why .container,
.pm-elig .container,
.pm-form .container,
.pm-trust-section .container,
.pm-faqs .container,
.pm-closer .container { position: relative; z-index: 1; }

.pm-hero-shapes,
.pm-closer-skyline,
.pm-form-shapes { z-index: 0; }

/* ============================================================
   SHARED SECTION RHYTHM
   ============================================================ */
.pm-section {
  padding-block: clamp(80px, 10vw, 160px);
  position: relative;
  overflow: hidden;
}
.pm-section--beige { background: var(--c-beige); }
.pm-section--white { background: var(--c-white); }

/* ============================================================
   HERO — Blue section
   ============================================================ */
.pm-hero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.pm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .pm-hero-grid {
    grid-template-columns: 1.15fr 1fr;
    column-gap: clamp(48px, 5vw, 88px);
  }
}
.pm-hero-copy { min-width: 0; }
.pm-hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(44px, 6.6vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--c-blue);
  margin-bottom: clamp(24px, 3vw, 40px);
  max-width: 18ch;
}
/* Multi-line key-word underline fix
   The shared brand .key-word uses ::before for the bar, which only paints ONE box
   per element — so multi-word key-words that wrap break the underline.
   For this page only, override to use a background-image gradient with
   box-decoration-break: clone, so each wrapped line gets its own bar. */
.pm-hero h1 .key-word,
.pm-how-head h2 .key-word,
.pm-why-head h2 .key-word,
.pm-elig-head h2 .key-word,
.pm-form-head h2 .key-word,
.pm-faqs-head h2 .key-word,
.pm-closer h2 .key-word,
.terms-page h1 .key-word {
  display: inline;
  isolation: auto;
  padding: 0 0.06em;
  background-image: linear-gradient(180deg, transparent 0%, transparent 68%, var(--kw-color) 68%, var(--kw-color) 96%, transparent 96%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.pm-hero h1 .key-word::before,
.pm-how-head h2 .key-word::before,
.pm-why-head h2 .key-word::before,
.pm-elig-head h2 .key-word::before,
.pm-form-head h2 .key-word::before,
.pm-faqs-head h2 .key-word::before,
.pm-closer h2 .key-word::before,
.terms-page h1 .key-word::before {
  content: none;
}
.pm-hero .lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--c-charcoal);
  max-width: 56ch;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.pm-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--c-charcoal);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.pm-hero-bullets svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-blue);
}
.pm-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.pm-hero-cta .btn-primary {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 30px 60px -30px rgba(0,0,0,0.4);
}
.pm-fineprint {
  font-size: 13px;
  color: var(--c-charcoal);
  opacity: 0.7;
  margin: 0;
}
.pm-fineprint a {
  color: var(--c-blue);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 180ms;
}
.pm-fineprint a:hover { color: var(--c-charcoal); }

/* Hero image — replaces shape composition (2 Jun per Blake).
   Brand shapes stay as small decorative accents behind the photo for brand-language. */
.pm-hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
  isolation: isolate;
}
.pm-hv-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 2px 4px rgba(0,18,32,0.06), 0 30px 60px -24px rgba(0,18,32,0.28), 0 60px 120px -40px rgba(0,18,32,0.22);
}
.pm-hv-shape {
  position: absolute;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.pm-hv-shape-1 {
  width: 28%;
  aspect-ratio: 1;
  background: var(--c-lime);
  top: -5%;
  right: -5%;
  border-radius: 50%;
}
.pm-hv-shape-2 {
  width: 34%;
  aspect-ratio: 1;
  background: var(--c-peach);
  bottom: -5%;
  left: -5%;
  border-radius: 0 100% 0 0;
}
@media (max-width: 899px) {
  .pm-hero-visual { max-width: 460px; }
}
@media (max-width: 640px) {
  .pm-hero-visual { max-width: 340px; }
  .pm-hero h1 { letter-spacing: -0.035em; }
  .pm-hero-cta .btn { width: 100%; justify-content: center; }
  .pm-hv-shape-1 { width: 24%; }
  .pm-hv-shape-2 { width: 28%; }
}

/* ============================================================
   HOW IT WORKS — 4 numbered steps
   ============================================================ */
.pm-how-head { max-width: 880px; margin-bottom: clamp(48px, 6vw, 80px); }
.pm-how-head .display-h { font-size: clamp(40px, 6vw, 84px); }
.pm-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .pm-steps { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1000px) { .pm-steps { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.pm-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 3vw, 40px);
  background: var(--c-white);
  border-radius: var(--r-lg);
  min-height: 240px;
  transition: transform 380ms var(--ease-out), box-shadow 380ms var(--ease-out);
  box-shadow: 0 1px 0 rgba(0,18,32,0.04), 0 20px 40px -28px rgba(0,18,32,0.16);
}
.pm-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(0,18,32,0.06), 0 34px 64px -32px rgba(0,18,32,0.24);
}
.pm-step-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--c-blue);
}
.pm-step h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-blue);
}
.pm-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-charcoal);
  opacity: 0.82;
}

/* ============================================================
   WHY SWITCH — 5 pillars on white
   ============================================================ */
.pm-why-head { max-width: 880px; margin-bottom: clamp(48px, 6vw, 80px); }
.pm-why-head .display-h { font-size: clamp(40px, 6vw, 84px); }
.pm-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .pm-pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pm-pillars { grid-template-columns: repeat(3, 1fr); } }

.pm-pillar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 3vw, 36px);
  background: var(--c-beige);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pm-pillar-mark {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--c-blue);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.pm-pillar:nth-child(2) .pm-pillar-mark { background: var(--c-rose); }
.pm-pillar:nth-child(3) .pm-pillar-mark { background: var(--c-lime); color: var(--c-charcoal); }
.pm-pillar:nth-child(4) .pm-pillar-mark { background: var(--c-peach); color: var(--c-charcoal); }
.pm-pillar:nth-child(5) .pm-pillar-mark { background: var(--c-blue); }
.pm-pillar h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--c-blue);
}
.pm-pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-charcoal);
  opacity: 0.82;
}

/* ============================================================
   ELIGIBILITY — two-column qualifies / doesn't
   ============================================================ */
.pm-elig-head { max-width: 880px; margin-bottom: clamp(40px, 5vw, 64px); }
.pm-elig-head .display-h { font-size: clamp(40px, 6vw, 84px); }
.pm-elig-head .lede { margin-top: clamp(20px, 2vw, 28px); }

.pm-elig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { .pm-elig-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.pm-elig-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 1px 0 rgba(0,18,32,0.04), 0 20px 40px -28px rgba(0,18,32,0.16);
}
.pm-elig-card h3 {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-blue);
  margin-bottom: 20px;
}
.pm-elig-card--yes h3 .pm-elig-badge { background: var(--c-pastel-green); color: var(--c-charcoal); }
.pm-elig-card--no h3  .pm-elig-badge { background: var(--c-pastel-pink); color: var(--c-charcoal); }
.pm-elig-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
}
.pm-elig-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pm-elig-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-charcoal);
}
.pm-elig-card li svg { flex-shrink: 0; margin-top: 3px; }
.pm-elig-card--yes li svg { color: var(--c-blue); }
.pm-elig-card--no  li svg { color: var(--c-rose); }

.pm-elig-foot {
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 14px;
  color: var(--c-charcoal);
  opacity: 0.78;
}
.pm-elig-foot a {
  color: var(--c-blue);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

/* ============================================================
   FORM SECTION — Beige background, White card
   ============================================================ */
.pm-form {
  background: var(--c-beige);
  color: var(--c-charcoal);
  padding-block: clamp(80px, 10vw, 140px);
}
.pm-form-head { text-align: left; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.pm-form-head .eyebrow { color: var(--c-charcoal); opacity: 0.7; }
.pm-form-head h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--c-blue);
  margin-bottom: clamp(18px, 2vw, 28px);
}
.pm-form-head .lede {
  color: var(--c-charcoal);
  max-width: 56ch;
}

.pm-form-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(0,18,32,0.08);
  box-shadow: 0 2px 4px rgba(0,18,32,0.04), 0 24px 48px -16px rgba(0,18,32,0.12), 0 48px 96px -32px rgba(0,18,32,0.18);
}

.pm-form-card .q-fieldset legend { color: var(--c-blue); }
.pm-form-card .q-input,
.pm-form-card .q-textarea,
.pm-form-card .q-select {
  background: var(--c-white);
  border-color: rgba(0,18,32,0.28);
}
.pm-form-card .q-input:focus,
.pm-form-card .q-textarea:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(54,84,194,0.12);
}

/* File dropzone tweak for this page */
.pm-form-card .q-dropzone {
  background: var(--c-white);
  border: 2px dashed rgba(0,18,32,0.22);
}
.pm-form-card .q-dropzone[data-required="true"]:not(.has-file) {
  border-color: rgba(54,84,194,0.32);
}
.pm-form-card .q-dropzone.has-file {
  border-style: solid;
  border-color: var(--c-blue);
  background: var(--c-pastel-pink);
}
.pm-form-card .q-dropzone.is-invalid {
  border-color: var(--c-rose);
  background: rgba(242,89,150,0.06);
}

.pm-dz-accepts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  justify-content: center;
}
.pm-dz-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--c-beige);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-charcoal);
  text-transform: uppercase;
}

.pm-required-mark {
  color: var(--c-rose);
  font-weight: 700;
  margin-left: 2px;
}

.pm-field-error {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-rose);
  margin-top: 4px;
}
.pm-field-error.is-visible { display: block; }

.q-input.is-invalid,
.q-textarea.is-invalid {
  border-color: var(--c-rose);
  box-shadow: 0 0 0 4px rgba(242,89,150,0.12);
}

.pm-form-foot {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-charcoal);
  opacity: 0.78;
  margin-top: 4px;
}
.pm-form-foot a {
  color: var(--c-blue);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.pm-submit-row {
  display: flex;
  justify-content: flex-end;
}
.pm-submit-row .btn { min-width: 240px; justify-content: center; }
@media (max-width: 640px) {
  .pm-submit-row .btn { width: 100%; min-width: 0; }
}

/* Submit loading state */
.pm-submit.is-loading {
  pointer-events: none;
  opacity: 0.8;
}
.pm-submit.is-loading::after {
  content: '';
  width: 14px; height: 14px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  display: inline-block;
  margin-left: 4px;
  animation: pmspin 700ms linear infinite;
}
@keyframes pmspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .pm-submit.is-loading::after { animation: none; }
}

/* Success card */
.pm-success {
  text-align: center;
  padding: clamp(40px, 6vw, 88px) clamp(24px, 4vw, 56px);
}
.pm-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: var(--c-pastel-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-charcoal);
}
.pm-success h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.pm-success p {
  font-size: 17px;
  max-width: 48ch;
  margin: 0 auto 16px;
  color: var(--c-charcoal);
  opacity: 0.82;
}

/* ============================================================
   TRUST STRIP — 6 items, 3 cols at desktop
   ============================================================ */
.pm-trust-section {
  background: var(--c-beige);
  padding-block: clamp(48px, 6vw, 80px);
}
.pm-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) { .pm-trust { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pm-trust { grid-template-columns: repeat(3, 1fr); } }
.pm-trust li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--c-charcoal);
}
.pm-trust svg { flex-shrink: 0; color: var(--c-blue); margin-top: 2px; }

/* ============================================================
   FAQ — reuse homepage .faq pattern, scope on this page
   ============================================================ */
.pm-faqs { padding-block: clamp(80px, 10vw, 140px); background: var(--c-beige); }
.pm-faqs-head { max-width: 1100px; margin-bottom: clamp(40px, 5vw, 64px); }
.pm-faqs-head .display-h { font-size: clamp(40px, 6vw, 84px); }

.pm-faq-list { border-top: 1.5px solid var(--c-charcoal); }
.pm-faq { border-bottom: 1.5px solid var(--c-charcoal); }
.pm-faq summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 2.4vw, 32px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color 220ms;
}
.pm-faq summary::-webkit-details-marker { display: none; }
.pm-faq-q {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--c-blue);
}
.pm-faq summary:hover .pm-faq-q { color: var(--c-charcoal); }
.pm-faq-icon {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--c-blue);
  flex-shrink: 0;
  transition: transform 320ms var(--ease-out), background 220ms;
}
.pm-faq-icon::before, .pm-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--c-beige);
  transform: translate(-50%, -50%);
  transition: transform 320ms var(--ease-out);
}
.pm-faq-icon::before { width: 12px; height: 1.75px; }
.pm-faq-icon::after  { width: 1.75px; height: 12px; }
.pm-faq[open] .pm-faq-icon { background: var(--c-rose); transform: rotate(180deg); }
.pm-faq[open] .pm-faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.pm-faq-a {
  padding-bottom: clamp(20px, 2.4vw, 32px);
  padding-right: 64px;
  max-width: 80ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-charcoal);
  animation: pmFaqOpen 380ms var(--ease-out);
}
@keyframes pmFaqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .pm-faq-a { animation: none; }
}

/* ============================================================
   CLOSING CTA — Blue with shape skyline
   ============================================================ */
.pm-closer {
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(100px, 12vw, 180px) 0 clamp(100px, 12vw, 160px);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.pm-closer h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(52px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--c-white);
  margin-bottom: 32px;
  max-width: 20ch;
  margin-inline: auto;
}
.pm-closer .lede {
  color: var(--c-beige);
  max-width: 52ch;
  margin: 0 auto clamp(28px, 3vw, 40px);
}
.pm-closer .btn-light {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 30px 60px -30px rgba(0,0,0,0.4);
}

.pm-closer-skyline {
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(80px, 10vw, 140px);
  pointer-events: none;
}
.pm-cs { position: absolute; bottom: 0; display: block; }
.pm-cs-1 {
  left: 4%;
  width: clamp(80px, 9vw, 160px);
  aspect-ratio: 1;
  background: var(--c-pastel-pink);
  border-radius: 100% 0 0 0;
}
.pm-cs-2 {
  left: 20%;
  width: clamp(60px, 7vw, 110px);
  aspect-ratio: 1;
  background: var(--c-rose);
  border-radius: 999px;
  bottom: 20px;
}
.pm-cs-3 {
  left: 36%;
  width: clamp(100px, 11vw, 180px);
  aspect-ratio: 1;
  background: var(--c-lime);
}
.pm-cs-4 {
  right: 24%;
  width: clamp(60px, 7vw, 110px);
  aspect-ratio: 1;
  background: var(--c-peach);
  border-radius: 999px;
  bottom: 30px;
}
.pm-cs-5 {
  right: 3%;
  width: clamp(110px, 13vw, 200px);
  aspect-ratio: 1;
  background: var(--c-violet);
  border-radius: 0 100% 0 0;
}

/* ============================================================
   T&Cs PAGE — narrow legal layout
   ============================================================ */
.terms-page {
  background: var(--c-beige);
  padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 10vw, 140px);
}
.terms-page .container { max-width: 760px; }
.terms-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-blue);
  margin-bottom: clamp(28px, 3vw, 40px);
  transition: gap 240ms var(--ease-out);
}
.terms-page .back-link:hover { gap: 10px; }
.terms-page h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.terms-page .terms-updated {
  font-size: 13px;
  color: var(--c-charcoal);
  opacity: 0.6;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.terms-page .terms-section {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.terms-page .terms-section .eyebrow {
  margin-bottom: 12px;
  color: var(--c-blue);
}
.terms-page .terms-section h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.terms-page .terms-section p,
.terms-page .terms-section li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-charcoal);
  opacity: 0.9;
}
.terms-page .terms-section p + p { margin-top: 12px; }
.terms-page .terms-section ul,
.terms-page .terms-section ol {
  padding-left: 22px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.terms-page .terms-foot {
  margin-top: clamp(48px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(0,18,32,0.12);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-charcoal);
  opacity: 0.85;
}
.terms-page .terms-foot a { color: var(--c-blue); border-bottom: 1px solid currentColor; font-weight: 600; }

/* ============================================================
   MOBILE TUNING
   ============================================================ */
@media (max-width: 640px) {
  .pm-hero h1 { font-size: clamp(40px, 12vw, 64px); }
  .pm-hero-bullets li { font-size: 15px; }
  .pm-step { min-height: auto; }
  .pm-pillar { padding: 24px; }
  .pm-elig-card { padding: 24px; }
  .pm-form-card { padding: 24px; border-radius: var(--r-lg); }
  .pm-closer h2 { font-size: clamp(44px, 13vw, 72px); }
}
