/* ============ Bandop landing — brand tokens ============ */
:root {
  --navy: #073358;
  --navy-deep: #052540;
  --orange: #EE7426;
  --orange-dark: #D25F15;
  --orange-light: #FFCFB0;
  --blue: #1976D2;
  --ink: #212121;
  --ink-soft: #5a6572;
  --paper: #ffffff;
  --paper-warm: #fdf4ec;
  --radius: 18px;
  --font: 'Manrope', system-ui, sans-serif;
  --font-app: 'Roboto', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* no scroll-behavior:smooth or CSS scroll-snap here: they fight the GSAP
   snap tween of the pinned story (nav links get smooth scroll via JS) */
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-title.left { text-align: left; }

.btn {
  display: inline-block; font-weight: 700; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(238, 116, 38, .35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-small { padding: .55em 1.2em; font-size: .9rem; }

/* ============ Nav ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(5, 37, 64, .85); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.nav-inner {
  width: min(1120px, 94%); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: .8rem 0; color: #fff;
}
.nav-logo { display: flex; align-items: center; gap: .55rem; }
.nav-wordmark { font-size: 1.35rem; font-weight: 500; color: #fff; letter-spacing: .01em; }
.nav-wordmark b { color: var(--orange); font-weight: 700; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a { font-weight: 600; font-size: .95rem; opacity: .85; transition: opacity .15s; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; overflow: hidden; }
.lang-switch > * {
  color: #fff; font: 700 .78rem var(--font);
  padding: .4em .8em; opacity: .6; transition: opacity .15s ease;
}
.lang-switch a:hover, .lang-switch a:focus-visible { opacity: 1; }
.lang-switch .lang-current { background: var(--orange); opacity: 1; }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
  background: radial-gradient(120% 90% at 75% 10%, #0a4a7d 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: #fff; padding: 7rem 0 4rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-plectrum {
  position: absolute; right: -12%; top: 6%; width: 62vmin; opacity: .16;
  transform: rotate(12deg);
}
.hero-inner {
  position: relative; width: min(1120px, 92%); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
}
.eyebrow {
  color: var(--orange-light); font-weight: 700; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem;
}
.hero-title { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; }
.hero-title .accent { color: var(--orange); }
.hero-sub { margin: 1.4rem 0 2rem; font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.6; opacity: .88; max-width: 32rem; }
.store-badges { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.store-badges img { height: 52px; width: auto; border-radius: 8px; transition: transform .15s ease; }
.store-badges a:hover img { transform: translateY(-2px); }
.store-badges.center { justify-content: center; }
.hero-note { margin-top: 1.1rem; font-size: .9rem; opacity: .7; }
.hero-phone-wrap { display: flex; justify-content: center; }
.hero-phone { transform: rotate(6deg); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; opacity: .55; color: #fff;
}
.scroll-cue i {
  width: 1px; height: 34px; background: linear-gradient(#fff, transparent);
  display: block; animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ============ Phone frame ============ */
.phone {
  width: 290px; aspect-ratio: 9 / 19;
  background: linear-gradient(160deg, #2b2b2e, #101013);
  border: 2px solid #c8834b;
  border-radius: 46px; padding: 9px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45), 0 4px 14px rgba(0,0,0,.3);
  position: relative;
}
.phone-notch {
  position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; background: #101013; border-radius: 12px; z-index: 5;
}
.phone-screens {
  position: relative; width: 100%; height: 100%;
  border-radius: 37px; overflow: hidden; background: #f4f4f4;
}
.app-screen {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  font-family: var(--font-app); opacity: 0; visibility: hidden;
}
.app-screen.active { opacity: 1; visibility: visible; }

/* --- in-app UI --- */
.s-header {
  background: var(--orange); color: #fff; flex: 0 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 44px 14px 10px; font-size: 15px; font-weight: 500;
}
.s-hbtn { width: 20px; height: 20px; }
.s-hbtn svg { width: 20px; height: 20px; fill: #fff; }
.s-htitle { letter-spacing: .01em; }
.s-body { flex: 1; overflow: hidden; padding: 10px 10px 4px; position: relative; display: flex; flex-direction: column; gap: 9px; }
.s-card { background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,.09); padding: 10px 11px; }
.s-cardtitle { font-size: 13.5px; font-weight: 500; color: #212121; display: flex; justify-content: space-between; margin-bottom: 6px; }
.s-cardtitle i { color: var(--orange); font-style: normal; font-size: 12px; }
.s-mapcard { border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.09); flex: 0 0 auto; }
.s-mapcard img { width: 100%; height: 108px; object-fit: cover; }
.s-lines { display: flex; flex-direction: column; gap: 2px; font-size: 11.5px; color: #444; }
.s-lines b { font-size: 12.5px; color: #212121; }
.s-dim { color: #888; margin-top: 3px; }
.s-timerow {
  display: flex; align-items: center; gap: 8px; background: #d9d9d9;
  border-radius: 14px; padding: 4px 10px; margin-top: 6px; font-size: 10.5px; color: #333;
}
.s-times { line-height: 1.25; flex: 0 0 34px; }
.s-tlabel { flex: 1; text-align: center; font-size: 12px; }
.s-btnrow { display: flex; justify-content: flex-end; gap: 8px; margin-top: 8px; }
.s-obtn {
  width: 44px; height: 26px; background: var(--orange); border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
}
.s-obtn svg { width: 14px; height: 14px; fill: #fff; }
.s-obtn.sm { width: 36px; height: 24px; flex: 0 0 auto; }
.s-tabbar {
  flex: 0 0 auto; background: #fafafa; border-top: 1px solid #e5e5e5;
  display: flex; justify-content: space-around; padding: 7px 4px 14px;
}
.s-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #757575; }
.s-tab svg { width: 17px; height: 17px; fill: currentColor; }
.s-tab em { font-style: normal; font-size: 8.5px; }
.s-tab.active { color: var(--orange); }
.s-segment { display: flex; justify-content: center; gap: 8px; }
.s-segment span { background: #d9d9d9; color: #666; border-radius: 12px; padding: 3px 12px; font-size: 10.5px; }
.s-segment span.on { background: var(--orange); color: #fff; }
.s-month { text-align: center; font-size: 10.5px; color: #777; }
.s-booking { display: flex; gap: 9px; align-items: flex-start; }
.s-date {
  flex: 0 0 30px; height: 30px; border-radius: 50%; background: var(--orange);
  color: #fff; font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center;
}
.s-booking div { display: flex; flex-direction: column; gap: 1px; font-size: 10.5px; color: #555; }
.s-booking b { font-size: 12px; color: #212121; }
.s-fab {
  position: absolute; right: 12px; bottom: 10px; width: 40px; height: 40px;
  background: var(--orange); color: #fff; border-radius: 12px; font-size: 22px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.s-addrrow { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: #444; }
.s-addrrow span:first-child { flex: 1; }
.s-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.s-chip {
  display: inline-flex; align-items: center; gap: 5px; background: #4CAF50; color: #fff;
  border-radius: 999px; padding: 2px 9px 2px 2px; font-size: 10px; font-weight: 500;
}
.s-avatar {
  width: 20px; height: 20px; border-radius: 50%; color: #fff; font-size: 8.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--font);
}
.s-avatar.big { width: 44px; height: 44px; font-size: 15px; }
.av1 { background: #e08e45; } .av2 { background: #7b6bb5; } .av3 { background: #4a7fa5; } .av4 { background: #5f9e63; }
.s-timegrid { display: flex; gap: 8px; align-items: flex-start; }
.s-tdate { font-size: 10.5px; color: #555; margin-top: 10px; flex: 0 0 62px; }
.s-timegrid > div { flex: 1; }
.s-pdfrow { display: flex; align-items: center; gap: 8px; }
.s-pdficon { width: 26px; height: 26px; background: var(--orange); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; }
.s-pdficon svg { width: 14px; height: 14px; fill: #fff; }
.s-pdfchip {
  border: 1.5px solid var(--orange); color: var(--orange); border-radius: 999px;
  padding: 4px 14px; font-size: 11px; font-weight: 500;
}
.s-pdfchip.wide { flex: 1; text-align: center; }
.s-songlist { display: flex; flex-direction: column; gap: 6px; }
.s-song { border-bottom: 1px solid #eee; padding-bottom: 5px; display: flex; flex-direction: column; }
.s-song b { font-size: 11.5px; color: #212121; }
.s-song span { font-size: 9.5px; color: #777; }
.s-bandrow { display: flex; gap: 8px; align-items: flex-start; }
.s-bandrow .s-chips { flex: 1; }
.s-bandlogo {
  flex: 0 0 52px; height: 52px; border-radius: 50%; background: #f1ede6; color: #555;
  font-size: 7.5px; font-weight: 700; letter-spacing: .08em; text-align: center;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1.4;
  border: 1px solid #e2dcd2;
}
.s-link { color: var(--orange); font-size: 11px; text-align: center; margin-top: 7px; }
.s-accrow { display: flex; gap: 10px; }
.s-accrow .s-lines { flex: 1; }

/* ============ Accessibility helpers ============ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--orange); color: #fff; font-weight: 700;
  padding: .7em 1.4em; border-radius: 0 0 12px 12px; z-index: 200;
  transition: transform .15s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ============ Intro ============ */
.intro { background: var(--paper-warm); padding: 5rem 0; }
.intro .section-title { color: var(--navy); }
.intro-body {
  max-width: 46rem; margin: 1.6rem auto 0; text-align: center;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem); line-height: 1.7; color: var(--ink-soft);
}

/* ============ FAQ ============ */
.faq { background: var(--paper-warm); padding: 6.5rem 0; }
.faq .section-title { color: var(--navy); }
.faq-list { max-width: 46rem; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: #fff; border-radius: 14px; border: 1px solid #eadfd3;
  box-shadow: 0 2px 10px rgba(7, 51, 88, .05); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy); flex: 1; margin: 0;
}
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 700; color: var(--orange);
  line-height: 1; transition: transform .2s ease; flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover h3 { color: var(--orange-dark); }
.faq-answer { padding: 0 1.4rem 1.3rem; }
.faq-answer p { color: var(--ink-soft); line-height: 1.7; font-size: 1rem; }

/* ============ Legal pages ============ */
.legal-page { background: var(--paper); }
.legal { padding: 8.5rem 0 5rem; }
.legal-inner { width: min(46rem, 90%); margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.breadcrumb a { color: var(--orange-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.legal h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem); font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.15;
}
.legal-updated {
  margin-top: .7rem; color: var(--ink-soft); font-size: .92rem;
  padding-bottom: 1.8rem; border-bottom: 2px solid #eef1f4;
}
.legal-body { margin-top: 2.2rem; }
.legal-body h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--navy);
  margin: 2.6rem 0 .9rem; letter-spacing: -0.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 1.08rem; font-weight: 700; color: var(--navy);
  margin: 1.9rem 0 .7rem;
}
.legal-body p { color: var(--ink); line-height: 1.75; margin-bottom: 1.1rem; font-size: 1.02rem; }
.legal-body ul { margin: 0 0 1.3rem 0; padding-left: 1.3rem; display: flex; flex-direction: column; gap: .55rem; }
.legal-body li { color: var(--ink); line-height: 1.7; font-size: 1.02rem; }
.legal-body li::marker { color: var(--orange); }
.legal-body a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--orange); }
.legal-body strong { font-weight: 700; color: var(--navy); }
.legal-back {
  margin-top: 3.2rem; padding-top: 1.8rem; border-top: 2px solid #eef1f4;
}
.legal-back a { color: var(--orange-dark); font-weight: 700; }
.legal-back a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .legal { padding: 6.5rem 0 3.5rem; }
}

/* ============ 404 ============ */
.notfound {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.2rem; text-align: center;
  padding: 2rem; background: var(--navy); color: #fff;
}
.notfound h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; }
.notfound p { max-width: 32rem; opacity: .8; line-height: 1.6; }
.notfound .btn { padding: .8em 1.8em; margin-top: .6rem; }

/* ============ Problem ============ */
.problem { background: var(--paper); padding: 6.5rem 0; }
.problem .section-title { color: var(--navy); }
.bubbles {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem; max-width: 760px; margin: 3rem auto 0;
}
.bubble {
  background: #eef3f8; border-radius: 22px; padding: 1.1rem 1.4rem;
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  position: relative; box-shadow: 0 2px 10px rgba(7, 51, 88, .07);
}
.bubble::after {
  content: ''; position: absolute; bottom: -7px; left: 26px;
  border: 8px solid transparent; border-top-color: #eef3f8; border-bottom: 0;
}
.bubble.b2, .bubble.b4 { background: #fdeadd; }
.bubble.b2::after, .bubble.b4::after { border-top-color: #fdeadd; left: auto; right: 26px; }
.problem-closer { text-align: center; margin-top: 3rem; font-size: 1.3rem; color: var(--ink-soft); line-height: 1.5; }
.problem-closer strong { color: var(--orange); font-weight: 800; }

/* ============ Story ============ */
.story { background: linear-gradient(180deg, var(--navy-deep), var(--navy) 30%, var(--navy) 80%, var(--navy-deep)); color: #fff; padding: 5rem 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.story-phone-col { position: relative; }
.story-phone { position: sticky; top: max(92px, calc(50vh - 305px)); margin: 0 auto; }
.story-steps { display: flex; flex-direction: column; }
.story-step {
  min-height: 88vh; display: flex; flex-direction: column; justify-content: center;
  max-width: 26rem; margin-left: 1rem;
}
.step-num { color: var(--orange); font-weight: 800; font-size: .95rem; letter-spacing: .15em; margin-bottom: .8rem; }
.story-step h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.story-step p { margin-top: 1rem; font-size: 1.08rem; line-height: 1.65; opacity: .85; }

/* --- Pinned story (JS-enhanced): section pins, steps crossfade in place --- */
.story.pinned { padding: 0; }
.story.pinned .story-grid {
  height: 100svh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; gap: 3rem; padding-top: 70px; box-sizing: border-box;
}
.story.pinned .story-phone-col {
  position: static; height: auto;
  display: flex; justify-content: center; align-items: center;
}
.story.pinned .story-phone { position: static; margin: 0; }
.story.pinned .story-steps { position: relative; }
.story.pinned .story-step {
  position: absolute; inset: 0; min-height: 0; padding: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0;
}

/* ============ Availability ============ */
.availability { background: var(--paper); padding: 6.5rem 0; }
.avail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.avail-copy .section-title { color: var(--navy); margin: 1rem 0; }
.avail-copy p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; max-width: 30rem; }
.pill {
  display: inline-block; background: var(--orange); color: #fff; font-size: .75rem;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px; padding: .35em 1em;
}
.avail-card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(7, 51, 88, .16), 0 2px 10px rgba(7, 51, 88, .08);
  max-width: 380px; justify-self: center; width: 100%;
}
.avail-head { font-weight: 800; color: var(--navy); margin-bottom: 1.1rem; }
.avail-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.avail-list li {
  display: flex; align-items: center; gap: .7rem; background: #f2f7f3;
  border-radius: 12px; padding: .55rem .8rem; font-weight: 600; color: var(--ink);
}
.avail-list .avatar {
  width: 30px; height: 30px; border-radius: 50%; color: #fff; font-size: .7rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.avail-list .mark { margin-left: auto; font-style: normal; color: #2e9e44; font-weight: 800; }
.avail-verdict {
  margin-top: 1.2rem; background: #2e9e44; color: #fff; border-radius: 12px;
  text-align: center; font-weight: 800; padding: .7rem;
}

/* ============ Reviews ============ */
.reviews { background: var(--paper-warm); padding: 6.5rem 0; }
.reviews .section-title { color: var(--navy); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.review {
  background: #fff; border-radius: var(--radius); padding: 1.7rem;
  box-shadow: 0 10px 30px rgba(7, 51, 88, .08); display: flex; flex-direction: column; gap: .9rem;
}
.stars { color: #f5a623; letter-spacing: .15em; font-size: 1.05rem; }
.review blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--ink); font-weight: 600; }
.review figcaption { margin-top: auto; color: var(--ink-soft); font-size: .85rem; }

/* ============ Pricing ============ */
.pricing { background: var(--paper); padding: 6.5rem 0; }
.pricing .section-title { color: var(--navy); }
.pricing-sub { text-align: center; color: var(--ink-soft); margin-top: .8rem; font-size: 1.05rem; }
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; align-items: stretch; }
.price-cards.single { grid-template-columns: min(430px, 100%); justify-content: center; }
.pricing-sub { max-width: 38rem; margin-left: auto; margin-right: auto; }
.price-card {
  border: 1.5px solid #e3e9ef; border-radius: var(--radius); padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: .9rem; position: relative; background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(7,51,88,.1); }
.price-card.featured { border-color: var(--orange); box-shadow: 0 14px 40px rgba(238, 116, 38, .18); }
.price-card .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; padding: .35em 1em; white-space: nowrap;
}
.price-card h3 { color: var(--navy); font-size: 1.1rem; }
.price { font-size: 2rem; font-weight: 800; color: var(--ink); }
.price span { font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-left: .2rem; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.price-card li { font-size: .92rem; color: var(--ink-soft); padding-left: 1.3rem; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.pricing-note { text-align: center; margin-top: 2.4rem; font-weight: 800; color: var(--navy); font-size: 1.15rem; }

/* ============ CTA ============ */
.cta { background: var(--navy-deep); padding: 6.5rem 0; }
.cta-panel {
  background: linear-gradient(140deg, var(--orange), var(--orange-dark));
  border-radius: 28px; color: #fff; text-align: center;
  padding: 4rem 2rem; box-shadow: 0 30px 80px rgba(238, 116, 38, .25);
}
.cta-logo { margin: 0 auto 1.4rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,.2)); }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; }
.cta p { margin: 1rem 0 2rem; font-size: 1.1rem; opacity: .92; }

/* ============ Footer ============ */
.footer { background: var(--navy-deep); color: #fff; padding: 2.5rem 0 3rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: .55rem; }
.footer-links { display: flex; gap: 1.6rem; margin-left: auto; flex-wrap: wrap; }
.footer-links a { font-size: .88rem; opacity: .75; }
.footer-links a:hover { opacity: 1; }
.footer-copy { width: 100%; font-size: .8rem; opacity: .45; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-plectrum { right: -30%; top: 2%; width: 90vmin; }
  .story { padding-top: 2.5rem; }
  .story-grid { display: block; }
  .story-phone-col {
    /* real height (= scaled phone) so the sticky phone stops at the end of the
       dark story section instead of sliding over the next section */
    position: sticky; top: 76px; height: 375px; z-index: 2;
    display: flex; justify-content: center; align-items: flex-start; overflow: visible;
  }
  .story-phone { position: static; margin: 0; transform: scale(.6); transform-origin: top center; }
  .story-step {
    min-height: 100vh; padding-top: 470px; justify-content: flex-start;
    margin: 0 auto; text-align: center; align-items: center; max-width: 30rem;
  }
  .avail-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .avail-copy p { margin: 0 auto; }
  .avail-copy .section-title.left { text-align: center; }
  .review-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price-cards { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-left: auto; margin-right: auto; }
  .bubbles { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .price-cards { grid-template-columns: 1fr; }
  .nav-inner { gap: .7rem; }
  .nav-logo .nav-wordmark { display: none; }
  .nav-actions { margin-left: auto; gap: .6rem; }
  .btn-small { padding: .5em .9em; font-size: .8rem; white-space: nowrap; }
  .store-badges img { height: 44px; }
  .story-phone { transform: scale(.55); }
  .story-step { padding-top: 440px; }
}

/* --- Pinned story: mobile/tablet layout --- */
@media (max-width: 960px) {
  .story.pinned .story-grid {
    display: flex; flex-direction: column; align-items: center;
    gap: 0; height: 100svh; padding-top: 70px;
  }
  .story.pinned .story-phone-col { flex: 0 0 auto; height: 372px; align-items: flex-start; }
  .story.pinned .story-phone { transform: scale(.58); transform-origin: top center; }
  .story.pinned .story-steps { flex: 1; width: 100%; position: relative; min-height: 0; }
  .story.pinned .story-step {
    position: absolute; inset: 0; min-height: 0; margin: 0 auto;
    padding: 2.4rem 1.2rem 1.6rem; max-width: 32rem;
    justify-content: flex-start; align-items: center; text-align: center;
  }
  .story.pinned .story-step h3 { font-size: 1.45rem; }
  .story.pinned .story-step p { font-size: 1rem; margin-top: .7rem; }
}
@media (max-width: 960px) and (max-height: 720px) {
  .story.pinned .story-phone { transform: scale(.5); }
  .story.pinned .story-phone-col { height: 322px; }
}

/* ============ Animation helpers ============ */
.reveal { opacity: 0; transform: translateY(30px); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .scroll-cue i { animation: none; }
}
