/* ─── ProSpin landing — responsive single column ───── */
@import url("./colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--fg-default);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-default);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
@media (min-width: 600px) {
  body { background: #eef2f3; }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── App shell — single-column responsive container ─── */
.ps-app {
  background: var(--ps-white);
  color: var(--fg-default);
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .ps-app {
    margin: 32px auto;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    overflow: clip;
  }
}

/* ─── Renovation popup ─── */
.ps-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(16, 22, 24, 0.55);
  display: grid; place-items: center;
  z-index: 100;
  padding: 24px;
  animation: ps-modal-fade 0.18s ease;
}
.ps-modal {
  background: var(--ps-white);
  border-radius: 18px;
  padding: 28px 24px 22px;
  max-width: 420px; width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: ps-modal-pop 0.22s cubic-bezier(.2,.9,.3,1.2);
}
.ps-modal-close {
  position: absolute; top: 8px; right: 8px;
  appearance: none; border: 0; background: transparent;
  width: 32px; height: 32px;
  font-size: 22px; line-height: 1;
  color: var(--fg-muted); cursor: pointer;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.ps-modal-close:hover { background: var(--bg-sunken); color: var(--fg-ink); }
.ps-modal-msg {
  margin: 6px 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-default);
  text-wrap: pretty;
}
.ps-modal-ok {
  display: block; width: 100%;
  appearance: none; border: 0; cursor: pointer;
  background: var(--ps-red-500); color: var(--ps-cream);
  padding: 12px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  letter-spacing: .02em;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.ps-modal-ok:hover { background: var(--ps-red-400); }
.ps-modal-ok:active { transform: scale(.97); }
@keyframes ps-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ps-modal-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Sticky top nav ─── */
.ps-nav {
  position: sticky; top: 0; z-index: 30;
  background: var(--ps-white);
  border-bottom: 1px solid var(--border-hair);
  padding: 12px 16px 10px;
  padding-top: calc(12px + env(safe-area-inset-top));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 8px; align-items: center;
  will-change: transform;
  transform: translateZ(0);
}
.ps-nav .brand {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  color: var(--fg-ink); letter-spacing: -.02em;
  white-space: nowrap;
}
.ps-nav .brand img { width: 24px; height: 24px; }
.ps-nav .brand i { color: var(--ps-mint-300); font-style: normal; font-weight: 800; }

.ps-lang {
  position: relative;
  display: inline-flex;
  justify-self: start;
  margin-left: 2px;
}
.ps-lang-trigger {
  appearance: none; border: 0; cursor: pointer;
  background: var(--bg-sunken);
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  color: var(--fg-default);
  padding: 4px 7px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
  letter-spacing: .02em;
  min-width: 22px;
  transition: background var(--dur-fast);
}
.ps-lang-trigger:hover { background: var(--bg-warm); }
.ps-lang-trigger .chev {
  width: 5px; height: 5px;
  border-bottom: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0.55;
}
.ps-lang-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--ps-white);
  border: 1px solid var(--border-hair);
  border-radius: 10px;
  padding: 3px;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  z-index: 40;
  min-width: 60px;
}
.ps-lang-menu button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  color: var(--fg-default);
  padding: 6px 10px; border-radius: 6px;
  text-align: left;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.ps-lang-menu button:hover { background: var(--bg-sunken); }
.ps-lang-menu button.on {
  background: var(--ps-teal-700); color: var(--ps-cream);
}

.ps-nav .contact {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  color: var(--ps-teal-700);
  padding: 7px 12px; border-radius: 999px;
  border: 1.5px solid var(--ps-teal-700);
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.ps-nav .contact:hover { background: var(--ps-teal-700); color: var(--ps-cream); }
.ps-nav .contact:active { transform: scale(.96); }
@media (max-width: 420px) {
  .ps-nav .contact { padding: 7px 9px; gap: 0; }
  .ps-nav .contact .lbl { display: none; }
}

.ps-nav .book {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  color: var(--ps-cream); background: var(--ps-red-500);
  padding: 8px 12px; border-radius: 999px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform var(--dur-fast), background var(--dur-fast);
}
.ps-nav .book:active { transform: scale(.96); background: var(--ps-red-400); }
.ps-nav .book .out {
  width: 10px; height: 10px;
  border-top: 1.8px solid currentColor; border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

/* ─── Generic section ─── */
.ps-sec { padding: 36px 16px 8px; scroll-margin-top: 80px; }
.ps-sec h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; line-height: 1.02; letter-spacing: -.03em;
  color: var(--fg-ink); margin: 6px 0 10px; text-wrap: balance;
}
.ps-sec .lead {
  font-size: 15px; color: var(--fg-default); line-height: 1.55;
  margin: 0 0 14px; text-wrap: pretty; font-weight: 500;
}
.ps-sec .eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ps-teal-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.ps-sec .eyebrow::before {
  content: ""; width: 20px; height: 2px; background: var(--ps-red-500); border-radius: 2px;
}

/* ─── Advantages tile grid ─── */
.ps-advantages {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ps-advantages li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bg-sunken);
  border-radius: 14px;
  transition: background var(--dur-fast);
}
.ps-advantages li:hover { background: var(--bg-warm); }
.ps-advantages li:last-child:nth-child(odd) { grid-column: span 2; }
.ps-advantages li .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--ps-cream);
  display: grid; place-items: center;
  color: var(--ps-teal-700);
  flex-shrink: 0;
}
.ps-advantages li .lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-ink);
  line-height: 1.25;
  letter-spacing: -.005em;
}
@media (max-width: 480px) {
  .ps-advantages {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ps-advantages li {
    background: transparent;
    padding: 0;
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
  .ps-advantages li:hover { background: transparent; }
  .ps-advantages li:last-child:nth-child(odd) { grid-column: auto; }
  .ps-advantages li .ic {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--bg-sunken);
  }
  .ps-advantages li .lbl {
    font-size: 14px;
    font-weight: 700;
    color: var(--fg-default);
  }
}

/* ─── HERO ─── */
.ps-hero {
  position: relative;
  margin: 16px 16px 22px;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ps-mint-300);
  box-shadow: 0 18px 32px -20px rgba(44,104,123,.45);
}
.ps-hero image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
  border-radius: 22px;
}
.ps-hero-overlay {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  display: flex; flex-direction: column; gap: 8px; color: var(--ps-cream);
  z-index: 2;
}
.ps-hero-overlay h1 {
  margin: 0;
  font-family: var(--font-display); font-weight: 900;
  font-size: 42px; line-height: .94; letter-spacing: -.04em;
  color: var(--ps-cream); text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.ps-hero-overlay h1 .spin {
  color: var(--ps-amber-300); display: inline-block;
}
.ps-hero-overlay p {
  margin: 0; font-size: 14px; color: var(--ps-cream); opacity: .95;
  max-width: 26ch; line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.ps-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.45) 92%);
  pointer-events: none; z-index: 1;
}
.ps-hero-eye {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ps-cream);
  padding: 6px 10px;
  background: rgba(255,246,246,.16);
  border: 1px solid rgba(255,246,246,.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ─── Stat strip ─── */
.ps-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: 0 16px 8px;
  border: 1.5px solid var(--border-hair);
  border-radius: 18px; overflow: hidden;
  background: var(--bg-surface);
}
.ps-stats .cell {
  padding: 14px 8px; text-align: center;
  border-right: 1.5px solid var(--border-hair);
}
.ps-stats .cell:last-child { border-right: 0; }
.ps-stats .num {
  font-family: var(--font-fun); font-size: 28px; line-height: 1; color: var(--ps-teal-700);
}
.ps-stats .lbl {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  color: var(--fg-muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 6px;
}

/* ─── Video card (about section) ─── */
.ps-video {
  position: relative;
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ps-teal-900);
  box-shadow: var(--shadow-md);
}
.ps-video image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: 18px;
}
.ps-video .play {
  position: absolute; inset: 0; display: grid; place-items: center;
  z-index: 3;
  background: linear-gradient(180deg, rgba(29,74,88,.12) 0%, rgba(29,74,88,.55) 100%);
  transition: background var(--dur-med);
}
.ps-video .play:hover { background: linear-gradient(180deg, rgba(29,74,88,.18) 0%, rgba(29,74,88,.65) 100%); }
.ps-video .play .pbutton {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--ps-red-500);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(219,26,26,.6), 0 0 0 6px rgba(255,246,246,.22);
  transition: transform var(--dur-fast) var(--ease-spring);
}
.ps-video .play:active .pbutton { transform: scale(.94); }
.ps-video .play .pbutton::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--ps-cream);
  margin-left: 4px;
}
.ps-video .vcap {
  position: absolute; left: 12px; bottom: 12px; z-index: 3;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .04em;
  color: var(--ps-cream);
  padding: 5px 9px;
  background: rgba(22,25,27,.55);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ─── Photo strip under video ─── */
.ps-photos {
  margin-top: 12px;
  display: grid; gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ps-photos image-slot {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: 12px; display: block;
  min-width: 0;
}

/* ─── Coaches ─── */
.ps-coach-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 6px;
}
.ps-coach-card {
  display: grid; grid-template-columns: 76px 1fr;
  gap: 14px; align-items: start;
  background: var(--bg-surface); border: 1.5px solid var(--border-hair);
  border-radius: 18px; padding: 12px;
  transition: box-shadow var(--dur-fast);
}
.ps-coach-card:hover { box-shadow: var(--shadow-sm); }
.ps-coach-card image-slot {
  width: 76px; height: 76px;
  border-radius: 16px;
  display: block;
}
.ps-coach-card h4 {
  margin: 2px 0 2px; font-family: var(--font-display);
  font-weight: 900; font-size: 17px; color: var(--fg-ink);
  letter-spacing: -.01em;
}
.ps-coach-card .role { font-size: 12px; color: var(--ps-red-500); font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.ps-coach-card .bio { font-size: 13px; color: var(--fg-default); line-height: 1.45; }
.ps-coach-card .tags {
  display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px;
}
.ps-coach-card .tag {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: .04em;
  padding: 3px 7px; border-radius: 999px;
  background: var(--bg-sunken); color: var(--ps-teal-700);
}
.ps-coach-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--ps-cream);
  padding: 10px 16px;
  background: #25d366;
  border: 1.5px solid #25d366;
  border-radius: 999px;
  transition: background var(--dur-fast), transform var(--dur-fast);
  letter-spacing: .01em;
}
.ps-coach-cta:hover { background: #1ebe5d; border-color: #1ebe5d; }
.ps-coach-cta:active { transform: scale(.97); }
.ps-coach-cta .wa-ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
}

/* ─── Group classes ─── */
.ps-classes {
  display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 6px;
}
.ps-class {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 12px; align-items: center;
  border: 1.5px solid var(--border-hair);
  border-radius: 16px;
  padding: 14px 14px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.ps-class.warm { background: var(--bg-warm); border-color: transparent; }
.ps-class.mint { background: var(--bg-sunken); border-color: transparent; }
.ps-class .num {
  font-family: var(--font-fun); font-size: 30px; line-height: 1;
  color: var(--ps-teal-700);
  width: 44px; text-align: center;
}
.ps-class .name {
  font-family: var(--font-display); font-weight: 900; font-size: 15px;
  color: var(--fg-ink); letter-spacing: -.01em; line-height: 1.15;
  margin-bottom: 2px;
}
.ps-class .when {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .04em; color: var(--ps-red-500);
  text-transform: uppercase;
}
.ps-class .who {
  font-size: 12px; color: var(--fg-muted); line-height: 1.4; margin-top: 4px;
}
.ps-class .price {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--fg-ink); white-space: nowrap; align-self: start;
  letter-spacing: -.01em;
}

/* ─── Features strip ─── */
.ps-feat-strip {
  margin: 22px 16px 0;
  background: var(--ps-teal-900);
  border-radius: 22px;
  padding: 22px 18px 18px;
  color: var(--ps-cream);
  position: relative;
  overflow: hidden;
}
.ps-feat-strip::after {
  content: "";
  position: absolute; right: -50px; bottom: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,113,.22) 0%, transparent 70%);
  pointer-events: none;
}
.ps-feat-strip .eye {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ps-mint-300);
  margin-bottom: 14px;
  display: block;
}
.ps-feat-strip .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  position: relative; z-index: 1;
}
.ps-feat-strip .item .ic {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(255,246,246,.10);
  color: var(--ps-amber-300);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.ps-feat-strip .item .t {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--ps-cream); line-height: 1.2; letter-spacing: -.005em;
}
.ps-feat-strip .item .s {
  font-size: 11px; color: var(--ps-mint-300); margin-top: 2px;
  font-weight: 500;
}

/* ─── Pricing tabs ─── */
.ps-pricing-tabs {
  display: flex;
  background: var(--bg-sunken);
  border-radius: 18px;
  padding: 4px;
  margin: 14px 0 16px;
  gap: 4px;
  align-items: stretch;
}
.ps-pricing-tab {
  flex: 1;
  min-width: 0;
  appearance: none; border: 0; background: transparent;
  padding: 10px 14px;
  border-radius: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: .01em;
  text-align: center;
  transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
}
.ps-pricing-tab.on {
  background: var(--ps-white);
  color: var(--fg-ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ps-pricing-tab .savings {
  font-family: var(--font-display); font-weight: 800;
  font-size: 9.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 10px;
  background: var(--ps-red-500);
  color: var(--ps-cream);
  white-space: pre-line;
  line-height: 1.25;
  text-align: center;
}
@media (max-width: 480px) {
  .ps-pricing-tab {
    flex-direction: column;
    gap: 4px;
    padding: 9px 8px;
    font-size: 12px;
    line-height: 1.2;
  }
  .ps-pricing-tab .savings {
    font-size: 8.5px;
    padding: 2px 6px;
    letter-spacing: .02em;
  }
}

/* ─── Pricing ─── */
.ps-plans {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.ps-plan {
  position: relative;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-hair);
  border-radius: 18px;
  padding: 16px 16px 14px;
  transition: box-shadow var(--dur-fast), transform var(--dur-fast);
}
.ps-plan.featured {
  background: var(--ps-teal-900); border-color: transparent;
  color: var(--ps-cream);
  box-shadow: 0 20px 36px -22px rgba(44,104,123,.55);
}
.ps-plan.popular {
  border-color: var(--ps-red-500);
  border-width: 2px;
}
.ps-plan .badge {
  position: absolute; top: -10px; left: 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ps-cream); background: var(--ps-red-500);
  padding: 4px 9px; border-radius: 999px;
}
.ps-plan.featured .badge { background: var(--ps-amber-300); color: var(--ps-teal-900); }
.ps-plan .head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px; margin-bottom: 6px;
}
.ps-plan .head .l {
  font-family: var(--font-display); font-weight: 900; font-size: 19px;
  color: var(--fg-ink); letter-spacing: -.02em;
}
.ps-plan.featured .head .l { color: var(--ps-cream); }
.ps-plan .head .hours {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .04em; color: var(--ps-red-500); text-transform: uppercase;
  margin-top: 2px;
}
.ps-plan.featured .head .hours { color: var(--ps-amber-300); }
.ps-plan .price {
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  color: var(--fg-ink); letter-spacing: -.03em; line-height: 1;
  white-space: nowrap;
}
.ps-plan .price .hourly-suffix {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  color: var(--fg-muted); margin-left: 3px; letter-spacing: 0;
}
.ps-plan.featured .price { color: var(--ps-cream); }
.ps-plan .perhour {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  color: var(--fg-muted); margin-top: 4px; letter-spacing: .02em;
  text-align: right;
}
.ps-plan.featured .perhour { color: var(--ps-mint-300); }
.ps-plan .desc {
  font-size: 12.5px; color: var(--fg-default); margin: 0 0 10px;
  line-height: 1.4;
}
.ps-plan.featured .desc { color: var(--ps-mint-300); }
.ps-plan .row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; line-height: 1.3;
  padding: 5px 0;
  color: var(--fg-default);
}
.ps-plan.featured .row { color: var(--ps-cream); }
.ps-plan .row.muted { color: var(--fg-faint); }
.ps-plan .row.muted .ck { color: var(--fg-faint); }
.ps-plan .row .ck {
  flex-shrink: 0;
  width: 14px; height: 14px;
  display: inline-grid; place-items: center;
  color: var(--ps-teal-700);
}
.ps-plan.featured .row .ck { color: var(--ps-amber-300); }
.ps-plan .horizon {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  color: var(--ps-teal-700);
  padding: 5px 10px;
  background: var(--bg-sunken);
  border-radius: 999px;
  letter-spacing: .03em;
}
.ps-plan.featured .horizon {
  background: rgba(255,246,246,.10); color: var(--ps-amber-300);
}
.ps-plan .cta {
  display: block; width: 100%; text-align: center;
  appearance: none; border: 0;
  margin-top: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: .02em;
  padding: 12px 14px; border-radius: 999px;
  background: var(--ps-red-500); color: var(--ps-cream);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.ps-plan .cta:active { transform: scale(.97); }
.ps-plan .cta:hover { background: var(--ps-red-400); }
.ps-plan .cta.outline {
  background: transparent; color: var(--ps-teal-700);
  border: 1.5px solid var(--ps-teal-700);
}
.ps-plan .cta.outline:hover { background: var(--ps-teal-700); color: var(--ps-cream); }
.ps-plan.featured .cta.outline {
  border-color: var(--ps-amber-300); color: var(--ps-amber-300);
}
.ps-plan.featured .cta.outline:hover {
  background: var(--ps-amber-300); color: var(--ps-teal-900);
}

/* ─── FAQ ─── */
.ps-faq {
  margin-top: 4px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border-hair);
}
.ps-faq-item { border-bottom: 1px solid var(--border-hair); }
.ps-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 16px 4px 16px 4px;
  appearance: none; border: 0; background: transparent;
  text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  color: var(--fg-ink); line-height: 1.3;
  letter-spacing: -.005em;
  gap: 12px;
}
.ps-faq-q .chev {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-sunken);
  display: grid; place-items: center;
  color: var(--ps-teal-700);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast);
}
.ps-faq-item.open .ps-faq-q .chev {
  transform: rotate(45deg);
  background: var(--ps-red-500); color: var(--ps-cream);
}
.ps-faq-a {
  font-size: 13.5px; color: var(--fg-default); line-height: 1.55;
  padding: 0 36px 16px 4px;
  display: none;
}
.ps-faq-item.open .ps-faq-a { display: block; }

/* ─── Contacts card ─── */
.ps-contact-card {
  margin-top: 6px;
  background: var(--ps-teal-700); color: var(--ps-cream);
  border-radius: 22px; padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.ps-contact-card::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,113,.18) 0%, transparent 70%);
  pointer-events: none;
}
.ps-contact-card .open {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  background: rgba(255,246,246,.12); border: 1px solid rgba(255,246,246,.22);
  color: var(--ps-cream); padding: 5px 10px; border-radius: 999px;
  align-self: flex-start;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.ps-contact-card .open .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ps-amber-300);
  box-shadow: 0 0 0 4px rgba(255,200,113,.25);
}
.ps-contact-card h3 {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  margin: 4px 0 10px; color: var(--ps-cream); letter-spacing: -.02em;
}
.ps-info-row {
  display: grid; grid-template-columns: 32px 1fr auto;
  gap: 12px; align-items: center;
  padding: 12px 0; border-top: 1px solid rgba(255,246,246,.14);
  position: relative; z-index: 1;
}
.ps-info-row .ic {
  width: 32px; height: 32px; border-radius: 999px;
  background: rgba(255,246,246,.12);
  display: grid; place-items: center; color: var(--ps-mint-300);
}
.ps-info-row .lbl {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ps-mint-300);
  margin-bottom: 2px;
}
.ps-info-row .val {
  font-size: 13.5px; color: var(--ps-cream); line-height: 1.4;
}
.ps-info-row .chev {
  width: 9px; height: 9px;
  border-top: 2px solid var(--ps-mint-300);
  border-right: 2px solid var(--ps-mint-300);
  transform: rotate(45deg);
}
.ps-info-row .hours-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 2px 12px;
  font-size: 12.5px; color: var(--ps-cream); line-height: 1.5;
}
.ps-info-row .hours-grid .d {
  font-family: var(--font-display); font-weight: 700; color: var(--ps-mint-300);
}

/* ─── Socials strip (icon-only buttons in contacts) ─── */
.ps-socials {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 14px 0 4px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,246,246,.14);
  position: relative; z-index: 1;
}
.ps-socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,246,246,.12);
  display: grid; place-items: center;
  color: var(--ps-mint-300);
  transition: background var(--dur-fast), transform var(--dur-fast), color var(--dur-fast);
}
.ps-socials a:hover { background: rgba(255,246,246,.22); color: var(--ps-cream); }
.ps-socials a:active { transform: scale(.94); }

/* ─── Big bottom CTA ─── */
.ps-cta-block {
  margin: 22px 16px 0;
  background: var(--ps-cream);
  border-radius: 22px;
  padding: 22px;
  position: relative; overflow: hidden;
  border: 1.5px solid var(--ps-line);
}
.ps-cta-block h3 {
  margin: 0 0 6px; font-family: var(--font-display); font-weight: 900;
  font-size: 24px; color: var(--fg-ink); line-height: 1.05; letter-spacing: -.025em;
  max-width: 14ch; text-wrap: balance;
}
.ps-cta-block h3 .line2 { color: var(--ps-red-500); display: block; }
.ps-cta-block p { margin: 0 0 14px; font-size: 13.5px; color: var(--fg-muted); max-width: 26ch; line-height: 1.45; }
.ps-cta-block .ball {
  position: absolute; right: -36px; bottom: -36px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--ps-amber-300); opacity: .9;
}
.ps-cta-block .ball::after {
  content: "";
  position: absolute; inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.55) 0%, transparent 50%);
}
.ps-cta-block .go {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  background: var(--ps-red-500); color: var(--ps-cream);
  padding: 12px 18px; border-radius: 999px;
  letter-spacing: .02em;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.ps-cta-block .go:hover { background: var(--ps-red-400); }
.ps-cta-block .go:active { transform: scale(.97); }
.ps-cta-block .go .out {
  width: 11px; height: 11px;
  border-top: 1.8px solid currentColor; border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

/* ─── Footer ─── */
.ps-foot {
  margin: 22px 16px max(24px, env(safe-area-inset-bottom));
  padding-top: 18px;
  border-top: 1px solid var(--border-hair);
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-muted);
  letter-spacing: .02em;
}
