/* Mint Medical landing — visual clone of leandose.co with Mint bones.
   Tokens: ink #0E2620 (near-black green), mint #3EB489, mint wash #EAF7F1,
   display Plus Jakarta Sans / body Inter, 24px card radii, pill buttons. */

:root {
  --ink: #0e2620;
  --ink-soft: #1c3a32;
  --mint: #3eb489;
  --mint-dark: #2f9974;
  --mint-wash: #eaf7f1;
  --mint-band: #bfe8d8;
  --paper: #ffffff;
  --body-text: #3d4a45;
  --muted: #6b7a74;
  --line: #e3ece8;
  --radius: 24px;
  --pill: 999px;
  --display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --body: Inter, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--body-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
}

h1 em, h2 em { font-style: normal; color: var(--mint); }

section { padding: clamp(52px, 7vw, 96px) clamp(20px, 6vw, 80px); }

.kicker {
  margin: 0 0 10px;
  text-align: center;
  color: var(--mint-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.kicker.light { color: var(--mint); }

.section-sub {
  margin: 14px auto 0;
  text-align: center;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

.section-sub.light { color: rgba(255, 255, 255, 0.75); }

.center { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--pill);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); }

.btn-ghost { border-color: rgba(14, 38, 32, 0.25); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }

.btn-mint { background: var(--mint); color: var(--ink); }
.btn-mint:hover { background: #4fc79a; }

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 38s linear infinite;
}

.ticker-track span { display: inline-flex; align-items: center; gap: 48px; }

.ticker-track span::after { content: "·"; color: var(--mint); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 170px; height: auto; }

.site-header nav {
  display: flex;
  gap: 26px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.site-header nav a:hover { color: var(--mint-dark); }

.header-right { display: flex; align-items: center; gap: 18px; margin-left: auto; }

.header-phone { font-size: 14px; font-weight: 700; color: var(--ink); }

.header-right .btn { min-height: 44px; padding: 0 22px; }

/* ---------- Hero ---------- */

.hero { background: var(--mint-wash); padding-top: clamp(44px, 6vw, 80px); }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 480px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #7fd7b4, #3eb489 55%, #16543f);
  padding: 18px 18px 0;
  max-width: 420px;
  justify-self: end;
}

.hero-card img {
  border-radius: 18px 18px 0 0;
  width: 100%;
  height: auto;
}

.hero-chip {
  position: absolute;
  left: 12px;
  bottom: 26px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(14, 38, 32, 0.18);
}

.hero-ba { display: grid; grid-template-columns: 1fr; }
.hero-ba .result-shot { border-radius: 14px; aspect-ratio: 559 / 1000; }
.hero-ba-cap {
  padding: 12px 4px 16px;
  text-align: center;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ---------- Stats ---------- */

.stats { text-align: center; padding-bottom: clamp(36px, 5vw, 64px); }

.stats h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 260px));
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 10px 26px rgba(14, 38, 32, 0.06);
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
}

.stat-card span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--muted); }

/* ---------- Trust band ---------- */

.trust-band {
  overflow: hidden;
  background: var(--mint-band);
  padding: 16px 0;
}

.trust-track {
  display: flex;
  gap: 64px;
  width: max-content;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ---------- Medications ---------- */

.meds h2 { text-align: center; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }

.meds-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1180px;
  margin: 48px auto 0;
  align-items: start;
}

.meds-rail {
  display: grid;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  position: sticky;
  top: 96px;
}

.meds-rail a {
  padding: 11px 14px;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.meds-rail a:hover { background: var(--mint-wash); }

.meds-rail a.active { background: var(--ink); color: #fff; }

.meds-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
}

.med-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 22px;
  box-shadow: 0 14px 34px rgba(14, 38, 32, 0.07);
}

.med-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  min-height: 260px;
  overflow: hidden;
}

.med-photo.sema { background: linear-gradient(150deg, #ffe9d2, #f7c99b); }
.med-photo.tirz { background: linear-gradient(150deg, #d9f4e9, #8fd9bf); }

.med-photo img { width: 62%; max-width: 240px; filter: drop-shadow(0 18px 26px rgba(14, 38, 32, 0.25)); }

.med-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: var(--pill);
}

.med-card h3 { margin: 18px 4px 0; font-size: 20px; font-weight: 800; }

.med-card > p { margin: 8px 4px 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.med-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 4px 0;
}

.med-price strong { font-family: var(--display); font-size: 28px; font-weight: 800; color: var(--ink); }

.med-price span { font-size: 14px; color: var(--muted); }

.meds-note {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- How it works ---------- */

.how { background: var(--mint-wash); }

.how h2 { text-align: center; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 44px auto 0;
}

.how-grid article {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 16px 20px 26px;
  text-align: center;
}

.how-img {
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-wash);
}

.how-img img { width: 100%; height: 100%; object-fit: cover; }

.how-img.product img { width: 60%; height: auto; object-fit: contain; }

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  position: relative;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
}

.how-grid h3 { margin-top: 10px; font-size: 18.5px; font-weight: 800; }

.how-grid article p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- Stories (dark band) ---------- */

.stories { background: var(--ink); }

.stories h2 { text-align: center; color: #fff; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }

.stories-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 300px));
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
}

.story-card {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
}

.story-card video { width: 100%; height: 100%; object-fit: cover; }

.story-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.play-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 20px;
  padding-left: 5px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.play-overlay:hover { transform: scale(1.06); }

.playing .play-overlay, .playing figcaption { display: none; }

/* ---------- Results (before / after) ---------- */

.results { background: var(--mint-wash); }

.results h2 { text-align: center; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }

.results-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 20px;
  max-width: 680px;
  margin: 44px auto 0;
}

.result-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px 16px;
  box-shadow: 0 14px 34px rgba(14, 38, 32, 0.07);
}

.result-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.result-shot { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 5 / 8; }

.result-shot img { width: 100%; height: 100%; object-fit: cover; }

.result-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(14, 38, 32, 0.82);
  color: #fff;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--pill);
}

.result-tag.after { background: var(--mint); color: var(--ink); }

.result-card figcaption {
  margin-top: 12px;
  text-align: center;
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.results-note {
  margin: 26px auto 0;
  text-align: center;
  max-width: 560px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Quotes ---------- */

.quotes h2 { text-align: center; font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; }

.quotes-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 40px auto 0;
}

.quotes-row blockquote {
  margin: 0;
  background: var(--mint-wash);
  border-radius: 18px;
  padding: 24px 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.quotes-row cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mint-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- CTA bands ---------- */

.cta-band {
  background: var(--ink);
  border-radius: var(--radius);
  max-width: 1120px;
  margin: 0 auto clamp(52px, 7vw, 96px);
  text-align: center;
  padding: clamp(44px, 6vw, 72px) 24px;
}

.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }

.cta-band p { margin: 12px auto 26px; max-width: 460px; color: rgba(255, 255, 255, 0.75); }

/* ---------- Doctors ---------- */

.doctors {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.doctors-photo { margin: 0; border-radius: var(--radius); overflow: hidden; }

.doctors h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }

.doctors-copy > p { margin: 16px 0 0; line-height: 1.65; }

.accordion { margin-top: 22px; display: grid; gap: 10px; }

.accordion details, .faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
}

.accordion summary, .faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 28px 15px 0;
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}

.accordion summary::-webkit-details-marker, .faq-list summary::-webkit-details-marker { display: none; }

.accordion summary::after, .faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  color: var(--mint-dark);
  font-size: 19px;
}

details[open] summary::after { content: "\2212"; }

.accordion details p, .faq-list details p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- FAQ ---------- */

.faq { background: var(--mint-wash); }

.faq h2 { text-align: center; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }

.faq-list { max-width: 760px; margin: 36px auto 0; display: grid; gap: 12px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 6vw, 80px) 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(150px, 1fr));
  gap: 36px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-brand img { width: 170px; }

.footer-brand p { margin: 16px 0 0; font-size: 13.5px; line-height: 1.6; max-width: 300px; }

.footer-grid h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-grid a, .footer-grid span { display: block; font-size: 14px; margin-top: 9px; }

.footer-grid a:hover { color: var(--mint); }

.footer-legal {
  max-width: 1120px;
  margin: 40px auto 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy { max-width: 1120px; margin: 14px auto 0; font-size: 12px; color: rgba(255, 255, 255, 0.45); }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .site-header nav { display: none; }
  .meds-layout { grid-template-columns: 1fr; }
  .meds-rail { position: static; display: flex; flex-wrap: wrap; }
  .how-grid { grid-template-columns: 1fr; max-width: 480px; }
  .stories-row { grid-template-columns: repeat(2, minmax(200px, 300px)); }
  .results-row { grid-template-columns: repeat(2, minmax(220px, 1fr)); max-width: 640px; }
  .quotes-row { grid-template-columns: 1fr; max-width: 560px; }
  .doctors { grid-template-columns: 1fr; }
  .doctors-photo { max-width: 480px; }
  .stats-row { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { justify-self: stretch; max-width: none; }
  .header-phone { display: none; }
  .brand img { width: 140px; }
  .meds-cards { grid-template-columns: 1fr; }
  .stories-row { grid-template-columns: 1fr; max-width: 320px; }
  .results-row { grid-template-columns: 1fr; max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Before/after sliders ---------- */

.ba-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  touch-action: pan-y;
}

.ba-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ba-after-img { position: relative; }

.ba-before-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.ba-slider .result-tag { position: absolute; bottom: 10px; left: 10px; z-index: 3; }

.ba-slider .result-tag.after { left: auto; right: 10px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(14, 38, 32, 0.15);
  z-index: 2;
  pointer-events: none;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(14, 38, 32, 0.3);
}

.ba-handle span::before {
  content: "\2194";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.ba-slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  -webkit-appearance: none;
}

/* Equalize static pair cards with slider cards */
.results-row { align-items: stretch; }
.result-card { display: flex; flex-direction: column; }
.result-card .result-pair { flex: 1; align-items: stretch; }
.result-card .result-shot { height: 100%; }
.result-card .result-shot img { width: 100%; height: 100%; object-fit: cover; }
.result-card figcaption { margin-top: auto; }
.slider-card .ba-slider { flex: 1; }
.result-card .result-shot img { object-position: top center; }
