/* Staywell Pharmacy — design v2.1
   Airy / illustration-led · Navy #0056A7 + teal/cyan · Amazon Pharmacy–inspired spirit (not a clone)
   v2.1: official-looking social + store badges, softer blobs on more pages, quieter copyright */

:root {
  --navy: #0056A7;
  --navy-deep: #003d78;
  --navy-soft: #e8f1fa;
  --cyan: #00b4c8;
  --cyan-bright: #1ad4e8;
  --teal: #0a9eaf;
  --teal-soft: #e6f8fb;
  --mint: #d8f0ec;
  --lavender: #ede6f5;
  --warm: #f08a3a;
  --ink: #1a2b3c;
  --muted: #5a6b7c;
  --line: #e2ebf3;
  --bg: #ffffff;
  --bg-soft: #f7fafc;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 4px 24px rgba(0, 61, 120, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 61, 120, 0.1);
  --shadow-lg: 0 24px 60px rgba(0, 61, 120, 0.12);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --max: 1140px;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--teal); }
ul { margin: 0; padding: 0; list-style: none; }
button, .btn { font-family: inherit; cursor: pointer; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(0, 61, 120, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: .75rem 0;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.header-phone {
  display: none;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  font-size: .95rem;
}
.header-phone:hover { color: var(--teal); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0 11px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.5rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: .25s var(--ease);
  box-shadow: var(--shadow-md);
}
.site-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.site-nav a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--navy-soft);
  color: var(--navy);
}
.nav-cta {
  margin-top: .5rem !important;
  background: linear-gradient(135deg, var(--navy), var(--teal)) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 999px !important;
}
.nav-cta:hover { filter: brightness(1.05); color: #fff !important; }

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-left: auto;
    margin-right: 1rem;
  }
  .site-nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: .1rem;
  }
  .site-nav a {
    padding: .45rem .7rem;
    font-size: .875rem;
  }
  .nav-cta {
    margin-top: 0 !important;
    margin-left: .4rem !important;
    padding: .55rem 1.15rem !important;
  }
  .logo-link img { height: 58px; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s, filter .2s, background .2s, color .2s;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 86, 167, .28);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 86, 167, .34);
  filter: brightness(1.04);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.btn-secondary:hover {
  background: var(--navy-soft);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0, 86, 167, .28);
}
.btn-ghost:hover {
  background: var(--navy-soft);
  color: var(--navy-deep);
}
.btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-ghost.on-dark:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ========== Hero (light / airy v2) ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  padding: 3.5rem 0 2.5rem;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .85;
  animation: blob-float 12s ease-in-out infinite;
}
.hero-blobs .blob-a {
  width: 420px;
  height: 420px;
  background: var(--mint);
  top: -80px;
  right: -60px;
  animation-delay: 0s;
}
.hero-blobs .blob-b {
  width: 320px;
  height: 320px;
  background: var(--lavender);
  bottom: -40px;
  left: -80px;
  animation-delay: -4s;
}
.hero-blobs .blob-c {
  width: 200px;
  height: 200px;
  background: var(--navy-soft);
  top: 40%;
  left: 40%;
  animation-delay: -7s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.04); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--navy-soft);
  border: 1px solid #c8daf0;
  color: var(--navy);
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 1.15rem;
}
.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.15rem, 5.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--navy-deep);
}
.hero h1 span {
  color: var(--teal);
}
.hero-sub {
  margin: 0 0 1.85rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.chip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: .45rem .85rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img,
.hero-visual svg {
  width: min(100%, 380px);
  height: auto;
}

@media (min-width: 900px) {
  .hero { padding: 4.75rem 0 3.5rem; }
  .hero-grid { grid-template-columns: 1.15fr .95fr; gap: 3rem; }
}

/* Watch link */
.watch-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 2rem;
  transition: color .2s, transform .2s;
}
.watch-link:hover {
  color: var(--teal);
  transform: translateX(2px);
}
.watch-link .play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.watch-link:hover .play {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.watch-link .play svg { width: 14px; height: 14px; margin-left: 2px; }

/* ========== Sections ========== */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-airy { padding: 5.75rem 0; }
.section-alt { background: var(--bg-soft); }
.section-divider-soft {
  padding-top: 4.25rem;
  padding-bottom: 5rem;
  border-top: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(247,250,252,.65) 0%, #fff 42%);
}
.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.section-head h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  font-weight: 800;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .55rem;
}

/* ========== How it works ========== */
.how-it-works {
  background: var(--bg);
}
.how-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.75rem;
  }
}
.how-step {
  text-align: center;
  padding: .5rem 1rem 1rem;
}
.how-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  min-height: 200px;
}
.how-art .blob-bg {
  position: absolute;
  width: 200px;
  height: 180px;
  border-radius: 50%;
  z-index: 0;
  animation: blob-float 10s ease-in-out infinite;
}
.how-art .blob-bg.gray { background: #e8eef4; }
.how-art .blob-bg.lavender { background: var(--lavender); animation-delay: -3s; }
.how-art .blob-bg.mint { background: var(--mint); animation-delay: -6s; }
.how-art img {
  position: relative;
  z-index: 1;
  width: min(100%, 260px);
  height: auto;
}
.how-step h3 {
  margin: 0 0 .55rem;
  font-size: 1.2rem;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  font-weight: 800;
}
.how-step h3 .step-num {
  color: var(--teal);
  font-weight: 800;
}
.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  max-width: 18rem;
  margin-inline: auto;
}
.how-step a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== Cards ========== */
.card-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.45rem;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #c5d8ea;
}
.card-illust {
  width: 72px;
  height: 72px;
  margin-bottom: 1.1rem;
}
.card-illust img {
  width: 72px;
  height: 72px;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-soft), var(--navy-soft));
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
.card h3 {
  margin: 0 0 .5rem;
  font-size: 1.12rem;
  color: var(--navy-deep);
  font-weight: 700;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.card a.more {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  font-size: .9rem;
}

/* ========== Nimble band ========== */
.nimble-band {
  background: linear-gradient(125deg, var(--navy-deep) 0%, var(--navy) 48%, var(--teal) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.nimble-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -80px;
  right: -60px;
  pointer-events: none;
}
.nimble-band h2 { margin: 0 0 .55rem; font-size: clamp(1.45rem, 3.5vw, 1.95rem); position: relative; }
.nimble-band p { margin: 0 0 1.25rem; opacity: .92; position: relative; }
.nimble-band .hero-ctas { position: relative; }
.nimble-steps {
  display: grid;
  gap: .75rem;
  position: relative;
}
.nimble-step {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: .95rem 1.1rem;
  backdrop-filter: blur(8px);
}
.nimble-step .num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cyan-bright);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: .85rem;
  display: grid;
  place-items: center;
}
@media (min-width: 800px) {
  .nimble-band {
    grid-template-columns: 1.1fr .9fr;
    padding: 2.75rem;
  }
}

/* CTA strip */
.cta-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-strip h2 { margin: 0 0 .4rem; font-size: 1.45rem; color: var(--navy-deep); }
.cta-strip p { margin: 0; color: var(--muted); }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: .65rem; }
@media (min-width: 760px) {
  .cta-strip {
    grid-template-columns: 1fr auto;
    padding: 2.25rem 2.5rem;
  }
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-soft) 0%, var(--teal-soft) 55%, var(--lavender) 100%);
  padding: 3.25rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  right: -60px;
  top: -80px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 0 0 .55rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  color: var(--navy-deep);
  letter-spacing: -0.025em;
  font-weight: 800;
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.08rem;
}

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.65rem;
  box-shadow: var(--shadow);
}
.form-note {
  background: var(--navy-soft);
  color: var(--navy-deep);
  border-radius: 12px;
  padding: .8rem 1rem;
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .35rem;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  padding: .8rem .95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--bg-soft);
  color: var(--ink);
  transition: .15s;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(0, 180, 200, .45);
  border-color: var(--cyan);
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }

.req { color: var(--teal); font-weight: 700; }
.optional { font-weight: 500; color: var(--muted); font-size: .8rem; }

.form-check {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.45;
}
.form-check input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
  padding: 0;
  background: var(--bg-soft);
}

.form-error {
  margin: .85rem 0 0;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: #fef2f2;
  color: #991b1b;
  font-size: .9rem;
  border: 1px solid #fecaca;
}

.form-success {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #ecfdf5;
  color: #065f46;
  font-size: .95rem;
  border: 1px solid #a7f3d0;
  line-height: 1.5;
}
.form-success-tip {
  display: block;
  margin-top: .55rem;
  color: var(--navy-deep);
  font-weight: 600;
}
.form-success-tip a { color: var(--navy); }

.transfer-layout {
  display: grid;
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 860px) {
  .transfer-layout {
    grid-template-columns: 1.25fr .75fr;
    align-items: start;
  }
}

.info-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}
.info-box h3 { margin: 0 0 .85rem; color: var(--navy-deep); }
.info-box dl { margin: 0; display: grid; gap: .7rem; }
.info-box dt {
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--teal);
}
.info-box dd { margin: 0; color: var(--ink); }

.split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .split { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .split.reverse { grid-template-columns: .9fr 1.1fr; }
}

.fact-list { display: grid; gap: 1rem; }
.fact {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.fact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.fact strong { display: block; color: var(--navy-deep); }
.fact span, .fact a { color: var(--muted); font-size: .95rem; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-soft);
  min-height: 280px;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.steps { display: grid; gap: 1.1rem; counter-reset: step; }
.step {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.35rem 4.4rem;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 1.2rem;
  top: 1.35rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: .95rem;
}
.step h3 { margin: 0 0 .4rem; color: var(--navy-deep); font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Legacy text store-badge (kept for compatibility; prefer .store-badge-img) */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #111827;
  color: #fff;
  padding: .55rem .9rem;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.15;
}
.store-badge:hover { color: #fff; filter: brightness(1.1); }
.store-badge small { display: block; font-weight: 400; opacity: .75; font-size: .65rem; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.85);
  padding: 3.25rem 0 1.5rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand > img {
  height: 48px;
  width: auto;
  margin-bottom: .9rem;
  filter: drop-shadow(0 0 0.5px rgba(255,255,255,.3));
  background: #fff;
  border-radius: 12px;
  padding: .4rem .6rem;
}
.footer-brand p {
  margin: 0;
  font-size: .9rem;
  opacity: .85;
  max-width: 22rem;
}
.footer-col h4 {
  margin: 0 0 .9rem;
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.8);
  padding: .28rem 0;
  font-size: .92rem;
}
.footer-col a:hover { color: var(--cyan-bright); }
.socials {
  display: flex;
  gap: .65rem;
  margin-top: 1.1rem;
}
.social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  transition: transform .25s var(--ease), background .2s;
}
.social:hover {
  background: var(--cyan);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .82rem;
  opacity: .75;
}
.footer-bottom a { color: rgba(255,255,255,.85); }
.footer-bottom a:hover { color: var(--cyan-bright); }

/* Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.prose { max-width: 42rem; }
.prose p { color: var(--muted); }
.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--muted);
  margin: .75rem 0;
}
.prose li { margin: .35rem 0; }
.check-list { display: grid; gap: .6rem; }
.check-list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
  font-size: .75rem;
  display: grid;
  place-items: center;
  margin-top: .1rem;
}

.legal h2 {
  color: var(--navy-deep);
  font-size: 1.25rem;
  margin: 1.75rem 0 .65rem;
}
.legal p { color: var(--muted); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-blobs .blob,
  .how-art .blob-bg,
  .soft-blob {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .card:hover,
  .btn:hover,
  .fact:hover,
  .step:hover,
  .social:hover {
    transform: none;
  }
}


/* ========== v2.1 polish ========== */
.watch-meta {
  font-weight: 600;
  color: var(--muted);
  font-size: .88rem;
}

.soft-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section-soft-blobs > .container { position: relative; z-index: 1; }
.soft-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .7;
  animation: blob-float 14s ease-in-out infinite;
}
.soft-blob-a {
  width: 340px;
  height: 340px;
  background: var(--lavender);
  top: -60px;
  right: -80px;
}
.soft-blob-b {
  width: 280px;
  height: 280px;
  background: var(--mint);
  bottom: 10%;
  left: -100px;
  animation-delay: -5s;
}
.soft-blob-c {
  width: 180px;
  height: 180px;
  background: var(--navy-soft);
  top: 45%;
  right: 18%;
  animation-delay: -9s;
}

.card-lift {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
}

.illust-card {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.illust-card-art {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.illust-card-art .blob-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
}
.illust-card-art img {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
}
.illust-card h3 {
  margin: 0 0 .35rem;
  color: var(--navy-deep);
  font-size: 1.05rem;
}
.illust-card p { color: var(--muted); font-size: .95rem; }

.cta-strip-soft {
  background: linear-gradient(145deg, var(--navy-soft) 0%, #fff 48%, var(--teal-soft) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

/* Store badges (SVG approximations — download links only) */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}
.store-row-center { justify-content: center; }
.store-badge-link {
  display: inline-flex;
  line-height: 0;
  border-radius: 10px;
  transition: transform .25s var(--ease), filter .2s, opacity .2s;
}
.store-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.store-badge-img {
  height: 49px;
  width: auto;
  display: block;
}
.store-badge-img-sm {
  height: 40px;
}

/* Social icons — pre-rendered brand badge PNGs */
.social.social-badge,
.social {
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 50%;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.social:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  background: transparent !important;
}
.social img {
  width: 40px !important;
  height: 40px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  display: block;
  filter: none !important;
  border-radius: 50%;
  box-shadow: none !important;
}
.social:hover img { filter: none !important; }
.social-on-light {
  background: transparent !important;
}


@media (prefers-reduced-motion: reduce) {
  .soft-blob { animation: none !important; }
  .store-badge-link:hover { transform: none; }
}

/* ========== Patient contact helpers (vCard + quick actions) ========== */
.contact-tip {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: 0 0 1.15rem;
  padding: .75rem 1rem;
  background: var(--teal-soft);
  border: 1px solid #b8e4ec;
  border-radius: var(--radius-sm);
  color: var(--navy-deep);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.4;
}
.contact-tip-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.btn-save-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(0, 86, 167, .26);
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s, filter .2s;
  text-align: center;
  line-height: 1.2;
}
.btn-save-contact:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 86, 167, .32);
  filter: brightness(1.04);
}
.btn-save-contact-sm {
  padding: .55rem 1rem;
  font-size: .82rem;
  box-shadow: 0 6px 16px rgba(0, 86, 167, .2);
}
.btn-save-contact-footer {
  padding: .4rem .85rem;
  font-size: .78rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
  color: #fff !important;
  margin-top: .85rem;
}
.btn-save-contact-footer:hover {
  background: rgba(255,255,255,.2);
  color: #fff !important;
  filter: none;
  transform: translateY(-1px);
}
.footer-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .75rem;
  margin-top: .85rem;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .55rem;
  margin: 0 0 1.35rem;
  padding: .85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 72px;
  padding: .55rem .35rem;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .01em;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s var(--ease), color .2s;
}
.quick-action:hover {
  background: var(--navy-soft);
  border-color: #c8daf0;
  color: var(--navy);
  transform: translateY(-2px);
}
.quick-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-soft), var(--navy-soft));
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1;
}
.quick-action.is-share {
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.share-toast {
  position: fixed;
  left: 50%;
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(12px);
  background: var(--navy-deep);
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  z-index: 220;
  transition: opacity .25s, transform .25s var(--ease);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.share-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Sticky mobile quick bar — small screens only */
.mobile-action-bar {
  display: none;
}
@media (max-width: 767px) {
  body.has-mobile-actions {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .15rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: .45rem .4rem calc(.45rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(0, 61, 120, 0.1);
  }
  .mobile-action-bar a,
  .mobile-action-bar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    min-height: 52px;
    padding: .3rem .15rem;
    border: 0;
    background: transparent;
    border-radius: 12px;
    color: var(--navy-deep);
    font-family: inherit;
    font-weight: 700;
    font-size: .65rem;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-action-bar a:hover,
  .mobile-action-bar a:focus-visible,
  .mobile-action-bar button:hover,
  .mobile-action-bar button:focus-visible {
    background: var(--navy-soft);
    color: var(--navy);
  }
  .mobile-action-bar .mab-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--teal-soft), var(--navy-soft));
    font-size: .95rem;
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-save-contact:hover,
  .quick-action:hover {
    transform: none;
  }
  .share-toast { transition: none; }
}
