/* =====================================================================
   Home page sections (v2 design system)
   ===================================================================== */

/* ---------- Destination break (framed editorial photo) ----------
   v1 was full-bleed with a cream backdrop. v2: a contained, hairline-framed
   image — photography presented like a screenshot in a bordered card. */
.destination-break {
  padding: 0 40px clamp(36px, 4.5vw, 56px);
  background: var(--bg);
}
.destination-break img {
  /* match the container's content width so the image's left/right edges line up
     exactly with the visibility + actionability cards above it */
  max-width: calc(var(--container-max) - 80px);
  margin: 0 auto;
  width: 100%;
  height: clamp(300px, 46vh, 520px);
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
}
@media (max-width: 880px) {
  .destination-break { padding: 0 24px 36px; }
  .destination-break img { height: clamp(220px, 38vh, 360px); }
}

/* ---------- Hero (two columns: text + booking widget) ---------- */
.hero { padding: clamp(28px, 3.4vw, 52px) 0 clamp(60px, 7.5vw, 100px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;   /* widget a touch wider so its boxes/card sit thinner */
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero-left { min-width: 0; }
/* Slightly smaller hero headline in the two-column layout so it stays tidy */
.hero-grid .display { font-size: clamp(34px, 4.2vw, 56px); }
.hero-right { min-width: 0; }
.hero-right .chat-mock { margin: 0; max-width: none; }
/* Custom hero widget (embedded) — sits in the same slot as the old chat mock */
.hero-widget-frame {
  width: 100%;
  height: 650px;            /* matches the widget's card; transparent so it sits on the page */
  border: 0;
  display: block;
  background: transparent;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid .display { font-size: clamp(34px, 8vw, 52px); }
  .hero-right .chat-mock { max-width: 560px; margin: 0 auto; }
  .hero-widget-frame { max-width: 560px; margin: 0 auto; height: 650px; }
}

/* ---------- Shift: closing headline (container-aligned) above a wider dashboard ---------- */
.shift-widget { margin-top: clamp(56px, 7vw, 88px); }
.shift-widget-text { margin: 0 0 clamp(28px, 4vw, 44px); max-width: 1100px; }
/* No outer frame — the four cards read as sitting on the page. The frame breaks out to
   container-wide; the dashboard is scaled to 0.85 (width-compensated) so it's a touch
   smaller and shorter while filling more horizontal space. */
.shift-widget-frame {
  min-width: 0;
  overflow: hidden;
  max-width: 1090px;        /* narrower than the page — smaller on both sides (a touch bigger) */
  margin: 0 auto;
  padding: 0 40px;
}
.shift-widget-frame iframe {
  width: 135.135%;          /* 1 / 0.74, so the scaled width fills the wrapper */
  height: 1000px;           /* fallback (unscaled); refined on load */
  transform: scale(0.74);
  transform-origin: top left;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
}

/* ---------- Logo carousel (between hero and Shift) ---------- */
.logo-carousel {
  padding: clamp(26px, 3.4vw, 40px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.logo-carousel-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute);
  margin-bottom: clamp(18px, 2.4vw, 26px);
}
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(44px, 6vw, 84px);
  width: max-content;
  animation: logoMarquee 60s linear infinite;
}
.logo-item {
  flex: none;
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: opacity 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}
.logo-item:hover { opacity: 1; filter: grayscale(0); }
/* Clickable logos (link out to their ChatGPT app) */
.logo-link { flex: none; display: inline-flex; align-items: center; cursor: pointer; }
.logo-link:hover .logo-item { opacity: 1; filter: grayscale(0); }
/* Pause the marquee on hover so the links are easy to click */
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logoMarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* ---------- Stats (massive numerals, hairline source labels) ---------- */
.stat-grid {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
.stat {
  padding: clamp(40px, 5vw, 60px) clamp(20px, 2.6vw, 36px) clamp(36px, 4.6vw, 52px);
  border-right: 1px solid var(--hairline);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--sans);
  font-size: var(--fs-stat);
  letter-spacing: -0.045em;
  line-height: 0.94;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 22px;
  font-feature-settings: var(--tnum);
}
.stat-number .pre { color: var(--blue); }
.stat-label {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
  max-width: 280px;
  margin-bottom: 20px;
}
.stat-source {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.stat-source::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

/* ---------- Pillars (two-up cards, 3px accent bar) ---------- */
.pillars {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  --pa: var(--blue);
  --pa-tint: var(--blue-pale-2);
  --pa-shadow: var(--shadow-blue);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--pa);
  border-radius: var(--r-md);
  padding: clamp(28px, 3vw, 36px);
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
}
.pillar:nth-child(2) {
  --pa: var(--terracotta);
  --pa-tint: var(--terracotta-pale);
  --pa-shadow: var(--shadow-terracotta);
}
.pillar:hover {
  background: var(--pa-tint);
  border-color: var(--pa);
  transform: translateY(-2px);
  box-shadow: var(--pa-shadow);
}
.pillar > .body { flex: 1; color: var(--ink-soft); }
.pillar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--pa);
}
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pillar-title {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}
.pillar-tag {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--pa);
  margin: 10px 0 0;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}
.pillar-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* visibility pillar foot: prompt text + "free audit" CTA, pinned to the bottom of the card */
.pillar-foot {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pillar-foot-text {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}
.auditoria-btn { white-space: nowrap; }

/* ---------- Platform blocks ---------- */
.platform-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
}
/* Platform: blue card → dashboard → orange card, stacked full-width.
   Each card lays its contents out horizontally: title+lead | feature | feature. */
.platform-stack { display: flex; flex-direction: column; gap: 24px; }
.platform-block.platform-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-row: auto;
  column-gap: 36px;
  row-gap: 0;
  align-items: start;
}
.platform-row-head { min-width: 0; }
.platform-row .feature {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  border-left: 1px solid var(--hairline);
  padding-left: 28px;
  min-width: 0;
}
/* when a card has a CTA, the head spans both rows so the CTA hugs the features above it */
.platform-row:has(.platform-cta) .platform-row-head { grid-row: 1 / span 2; }
.platform-row:has(.platform-cta) .feature { grid-row: 1; }
/* dashboard fills the section width; transparent so its four cards float on the off-white */
.platform-dash-frame {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: transparent;
}
.platform-dash-frame iframe {
  /* ~17% smaller content while still filling the section width (width-compensated) */
  width: 120.482%;          /* 1 / 0.83 */
  height: 1000px;           /* refined on load */
  transform: scale(0.83);
  transform-origin: top left;
  border: 0;
  display: block;
  background: transparent;
}

/* orange "try an MCP" CTA inside the actionability card — nav-CTA style, in the card's terracotta */
.platform-cta { grid-column: 2 / 4; grid-row: 2; justify-self: end; align-self: start; margin-top: 8px; }
.platform-mcp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--terracotta);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.platform-mcp-btn:hover { background: var(--terracotta-deep); transform: translateY(-1px); }

/* inline links inside a platform card body (e.g. "tu capa MCP") follow the card accent */
.platform-row .feature a {
  color: var(--pa);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--dur-fast) var(--ease-standard);
}
.platform-row .feature a:hover { opacity: 0.78; }

@media (max-width: 760px) {
  /* stack head -> features -> CTA in source order (matches the blue card; the
     CTA card no longer overlaps because grid-row assignments don't apply to flex) */
  .platform-block.platform-row { display: flex; flex-direction: column; }
  .platform-row .feature {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--hairline); padding-top: 22px; margin-top: 18px;
  }
  .platform-cta { justify-self: start; margin-top: 22px; }
}
.platform-block {
  --pa: var(--blue);
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 36px 34px 32px;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--pa);
  position: relative;
  display: grid;
  grid-row: 1 / -1;
  grid-template-rows: subgrid;
  transition: box-shadow var(--dur-base) var(--ease-standard);
}
.platform-block:hover { box-shadow: var(--shadow-md); }
.platform-block-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pa);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.platform-block-tag .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--pa); }
.feature {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.feature-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pa);
  margin-bottom: 10px;
}
.feature p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.platform-link {
  margin-top: 26px;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}
.platform-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- FAQ (accordion) ---------- */
.faq-list {
  margin-top: clamp(36px, 4.5vw, 56px);
  border-top: 1px solid var(--hairline);
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--dur-base) var(--ease-standard);
}
.faq-q:hover { color: var(--blue); }
.faq-chev { position: relative; flex: none; width: 16px; height: 16px; margin-top: 4px; }
.faq-chev::before, .faq-chev::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-base) var(--ease-standard);
}
.faq-chev::before { left: 0; right: 0; top: 7px; height: 2px; }
.faq-chev::after { top: 0; bottom: 0; left: 7px; width: 2px; }
.faq-item.open .faq-chev::after { transform: scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-item.open .faq-a { max-height: 900px; }
.faq-a p {
  margin: 0;
  padding: 0 0 26px;
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .stat:last-child { border-bottom: 0; }
  .pillars { grid-template-columns: 1fr; gap: 20px; }
  .platform-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .platform-block { grid-row: auto; grid-template-rows: none; display: block; }
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--blue-pale);
  padding-top: clamp(52px, 6vw, 80px);
  padding-bottom: clamp(52px, 6vw, 80px);
}
.pricing-toggle {
  display: inline-flex;
  margin: clamp(30px, 3.5vw, 44px) 0 clamp(36px, 4.5vw, 52px);
  padding: 4px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--bg);
  gap: 2px;
}
.pt-opt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 22px;
  border-radius: 999px;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.pt-opt.on { background: var(--navy); color: #fff; }
.pt-save {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #DC2626;
  background: #FBE0DD;
  padding: 3px 8px;
  border-radius: 999px;
}
.pt-opt.on .pt-save { color: #fff; background: rgba(255, 255, 255, 0.2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 30px 26px;
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card.featured { border-color: var(--terracotta); box-shadow: var(--shadow-terracotta); }
.price-card.featured:hover { box-shadow: var(--shadow-terracotta); }
/* coloured top accent bar per tier: Visibility blue · Grow orange · Expand blue */
.pricing-grid .price-card:nth-child(1) { border-top: 3px solid var(--blue); }
.pricing-grid .price-card:nth-child(2) { border-top: 3px solid var(--terracotta); }
.pricing-grid .price-card:nth-child(3) { border-top: 3px solid var(--blue); }
/* the featured (Grow) card carries the orange accent throughout */
.price-card.featured .price-cta { background: var(--terracotta); color: #fff; }
.price-card.featured .price-cta:hover { background: var(--terracotta-deep); }
.price-card.featured .price-micon { background: var(--terracotta-soft); color: var(--terracotta); }
.price-card.featured .price-features li::before { background: var(--terracotta-soft); color: var(--terracotta); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--terracotta);
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-name { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.price-tag { font-size: 14px; color: var(--ink-soft); line-height: 1.45; margin: 9px 0 0; min-height: 36px; }
.price-amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.price-num {
  font-family: var(--sans);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.price-num.price-custom { font-size: 34px; }
.price-was { font-size: 20px; color: #DC2626; text-decoration: line-through; font-variant-numeric: tabular-nums; }
.price-save {
  align-self: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #DC2626;
  background: #FBE0DD;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-per { font-size: 15px; color: var(--ink-soft); }
.price-bill { font-size: 13px; color: var(--ink-mute); min-height: 18px; margin-bottom: 20px; }
.price-cta { width: 100%; justify-content: center; }
/* property-count selector — sits right above the CTA, smaller than it */
.price-props {
  width: 100%;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background-color: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-sm);
  padding: 8px 34px 8px 12px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23808a97' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--dur-base) var(--ease-standard);
}
.price-props:hover { border-color: var(--ink-mute); }
.price-props:focus-visible { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.price-props-hidden { visibility: hidden; }
.price-features {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-inherit {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.price-inherit-ic { flex: none; display: inline-flex; color: var(--blue); }
.price-card.featured .price-inherit-ic { color: var(--terracotta); }
/* module header: icon + black name + benefit sentence */
.price-mhead { display: flex; align-items: flex-start; gap: 10px; }
.price-micon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.price-fhead {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.price-mbenefit { font-size: 13px; color: var(--ink-soft); line-height: 1.45; margin: 5px 0 0; }
.price-mbody { padding-left: 38px; }
.price-features ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.price-features li { position: relative; padding-left: 27px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ---------- Pricing: feature accordion (dropdown) ---------- */
.price-acc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 2px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.price-card.featured .price-acc-toggle { color: var(--terracotta); }
.price-acc-toggle .price-chev {
  display: inline-flex;
  transition: transform var(--dur-base) var(--ease-standard);
}
.price-acc-toggle[aria-expanded="true"] .price-chev { transform: rotate(180deg); }
.price-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-standard);
}
.price-acc-panel.open { max-height: 520px; }
.price-acc-panel ul { padding-top: 12px; gap: 9px; }
/* smaller checks + text inside the dropdown, matching the prototype */
.price-acc-panel li { font-size: 13px; line-height: 1.45; padding-left: 21px; }
.price-acc-panel li::before {
  width: auto;
  height: auto;
  top: 2px;
  background: none;
  color: var(--blue);
  font-size: 12px;
  border-radius: 0;
}
.price-card.featured .price-acc-panel li::before { background: none; color: var(--terracotta); }

/* ---------- Pricing: comparison table (opens from a divider toggle) ---------- */
.pricing-compare { max-width: 1080px; margin: clamp(34px, 4vw, 52px) auto 0; }
.pc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-top: 1px solid var(--hairline);
  background: none;
  cursor: pointer;
  padding: 22px 0 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pc-toggle-chev {
  display: inline-flex;
  color: var(--ink-soft);
  transition: transform var(--dur-base) var(--ease-standard);
}
.pc-toggle.open .pc-toggle-chev { transform: rotate(180deg); }
.pc-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-standard);
}
.pc-collapse.open { max-height: 1400px; }
.pc-collapse .pc-scroll { margin-top: 24px; }
.pc-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--bg);
}
.pc-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.pc-table th,
.pc-table td {
  padding: 14px 18px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
.pc-table thead th {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.pc-table thead th:first-child { text-align: left; }
.pc-table thead th.pc-plan.featured { color: var(--terracotta); }
.pc-group th {
  text-align: left;
  background: var(--blue-pale);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 18px;
}
.pc-table tbody td { border-bottom: 1px solid var(--hairline); color: var(--ink-soft); }
.pc-table tbody tr:last-child td { border-bottom: 0; }
.pc-row-label { text-align: left; color: var(--ink); font-weight: 500; max-width: 340px; }
.pc-cell.featured { background: rgba(238, 94, 58, 0.045); }
.pc-val { font-size: 13.5px; color: var(--ink-soft); }
.pc-check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.pc-cell.featured .pc-check { background: var(--terracotta-soft); color: var(--terracotta); }
.pc-dash { color: var(--ink-mute); font-size: 16px; }

@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pricing-compare { max-width: 460px; }
}
