/* Iron Paws LP - 6 Reasons listicle (PetLab-style wide layout) */
:root {
  --green: #2C5530;
  --green-deep: #12301C;
  --green-mid: #388573;
  --sage: #6FA973;
  --sage-light: #E7F0E4;
  --ink: #101B13;
  --body: #3A443C;
  --bg: #FFFFFF;
  --band: #F4F5F7;
  --line: #DFE4DE;
  --amber: #DD803E;
  --amber-soft: #FBEEDF;
  --star: #F5A623;
  --radius: 16px;
  --shadow: 0 8px 28px rgba(16, 27, 19, 0.09);
  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-head); color: var(--ink); line-height: 1.22; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
.center { text-align: center; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Header */
.adv-header {
  display: flex; justify-content: center;
  padding: 14px 0 10px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 60; background: #fff;
}
.logo { height: 48px; width: auto; }

/* Stars */
.stars { color: var(--star); letter-spacing: 2px; }
.stars-line { display: flex; align-items: center; font-size: 0.86rem; font-weight: 600; color: var(--body); margin-top: 12px; }
.stars-line.center { justify-content: center; }

/* CTA */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  background: var(--green); color: #fff;
  border: none; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  padding: 16px 24px;
  transition: transform 0.15s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(44, 85, 48, 0.28);
}
.cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.cta s { opacity: 0.6; font-weight: 500; }
.cta-inline { width: auto; padding: 15px 40px; }
.cta-small { width: auto; padding: 12px 20px; font-size: 0.9rem; flex: 0 0 auto; }
.cta-amber { background: var(--amber); box-shadow: 0 6px 18px rgba(221, 128, 62, 0.35); }
.cta-amber:hover { background: #c66f30; }

/* HERO */
.hero { background: var(--band); padding: clamp(28px, 4vw, 56px) 0; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.hero-media { position: relative; }
.hero-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; max-height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute; top: 14px; left: 14px;
  background: #fff; border-radius: 10px;
  box-shadow: var(--shadow);
  font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; color: var(--ink);
  padding: 8px 12px; max-width: 200px; line-height: 1.35;
}
.hero-copy h1 {
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.hero-sub { font-size: 1rem; margin-bottom: 20px; }
.join-line { font-size: 0.86rem; font-weight: 600; color: var(--ink); margin-top: 14px; }

/* REASON ROWS */
.reason { padding: clamp(24px, 2.5vw, 44px) 0; }
.reason-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 64px);
  align-items: center;
}
.reason-grid.flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); }
.reason-grid.flip .reason-copy { order: 2; }
.reason-grid.flip .reason-media { order: 1; }
.reason-copy h2 {
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.8rem);
  font-weight: 700; margin-bottom: 14px;
}
.reason-copy p { margin-bottom: 12px; }
.reason-media { position: relative; }
.reason-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%; max-width: 460px; display: block; margin-inline: auto;
  aspect-ratio: 1/1; object-fit: cover;
}
.media-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green-deep); color: #fff;
  border-radius: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  padding: 9px 14px; line-height: 1.35;
}
.media-badge.badge-tr { left: auto; right: 14px; }
.media-badge span { display: block; font-weight: 500; font-size: 0.68rem; color: #B9C8B6; }
.media-card {
  background: var(--green-deep);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.media-card img { border-radius: 10px; aspect-ratio: 1/1; width: 100%; object-fit: cover; box-shadow: none; }
.media-card-caption {
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  text-align: center; padding: 12px 4px 2px;
}
.pull-cred {
  border-left: 3px solid var(--green);
  background: var(--sage-light);
  border-radius: 0 10px 10px 0;
  padding: 12px 18px; margin-top: 16px;
}
.vet-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.vet-title { font-size: 0.84rem; }
.check-list { list-style: none; margin: 4px 0 18px; }
.check-list li {
  padding-left: 30px; position: relative; margin-top: 12px;
}
.check-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.check-list strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 0.95rem; }
.check-list span { display: block; font-size: 0.88rem; }

/* JOIN BAND */
.join-band {
  background: var(--sage-light);
  text-align: center;
  padding: clamp(44px, 5vw, 80px) 0;
}
.join-band h2 {
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2rem);
  max-width: 760px; margin: 0 auto 8px;
}
.join-band-sub { font-weight: 600; color: var(--green); margin-bottom: 18px; }
.band-quote {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 520px; margin: 0 auto 24px;
  padding: 20px 26px;
}
.band-quote blockquote { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1rem; }
.band-quote figcaption { font-size: 0.78rem; color: #737d74; margin-top: 8px; }

/* OFFER */
.offer { background: var(--band); padding: clamp(44px, 5vw, 80px) 0; }
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.promo-card {
  background: var(--sage-light);
  border-radius: var(--radius);
  padding: clamp(22px, 2.5vw, 34px);
  text-align: center;
  position: sticky; top: 96px;
}
.promo-off {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 2rem + 2vw, 3.4rem);
  color: var(--green); line-height: 1;
}
.promo-sub { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--ink); margin: 6px 0 10px; }
.promo-line { font-size: 0.88rem; margin-bottom: 16px; }
.promo-card img { border-radius: 12px; box-shadow: var(--shadow); }
.sold-ticker {
  margin-top: 16px; font-size: 0.86rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-mid);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Buy box */
.buy-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 2.5vw, 30px);
}
.eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--amber); margin-bottom: 6px;
}
.buy-title { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--ink); line-height: 1.25; }
.buy-box .stars-line { margin: 8px 0 10px; }
.buy-blurb { font-size: 0.95rem; margin-bottom: 12px; }
.mini-cred {
  background: var(--sage-light); border-radius: 10px;
  padding: 10px 14px; font-size: 0.86rem; margin-bottom: 18px;
}
.option-group { margin-bottom: 18px; }
.option-label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 8px; }
.flavor-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.flavor {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 8px 12px; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--ink);
}
.flavor img { width: 40px; height: 52px; object-fit: contain; }
.flavor.is-active { border-color: var(--green); background: var(--sage-light); }
.size-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.size {
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 10px 6px; font-family: var(--font-head); font-weight: 600; font-size: 0.84rem; color: var(--ink);
}
.size.is-active { border-color: var(--green); background: var(--sage-light); }
.size-note { font-size: 0.8rem; margin-top: 8px; }
.plan-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--band); border-radius: 10px; padding: 4px; gap: 4px;
}
.plan-tab {
  border: none; background: none; border-radius: 8px;
  padding: 10px 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; color: var(--body);
}
.plan-tab.is-active { background: var(--green); color: #fff; }
.plan-panel {
  border: 1.5px solid var(--green); border-radius: 12px;
  padding: 14px 16px; margin-top: 12px; background: #fff;
}
.plan-panel.is-hidden { display: none; }
.plan-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.plan-name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.plan-per { font-size: 0.8rem; color: var(--green-mid); font-weight: 600; }
.save-pill {
  background: var(--amber); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.plan-price { margin: 8px 0 6px; }
.price-now { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--ink); }
.price-was { font-size: 1rem; color: #98a099; text-decoration: line-through; margin-left: 6px; }
.perks { list-style: none; }
.perks li { font-size: 0.85rem; padding-left: 24px; position: relative; margin-top: 6px; }
.perks li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green-mid); font-weight: 700; }
.guarantee-strip {
  display: flex; align-items: center; gap: 12px;
  background: var(--amber-soft);
  border-radius: 10px; padding: 10px 14px;
  font-size: 0.84rem; margin-bottom: 16px;
}
.g-badge {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
}
.trust-row { list-style: none; margin-top: 14px; }
.trust-row li { font-size: 0.78rem; color: #737d74; text-align: center; margin-top: 3px; }

.buy-accordions { margin-top: 20px; border-top: 1px solid var(--line); }
.buy-accordions details { border-bottom: 1px solid var(--line); }
.buy-accordions summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--ink);
  padding: 14px 26px 14px 0; position: relative;
}
.buy-accordions summary::-webkit-details-marker { display: none; }
.buy-accordions summary::after {
  content: "\25BE"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%); color: var(--green);
}
.buy-accordions details[open] summary::after { content: "\25B4"; }
.buy-accordions details p { padding: 0 0 14px; font-size: 0.88rem; }

/* REVIEWS BAND */
.reviews-band { background: var(--band); padding: clamp(44px, 5vw, 80px) 0; }
.reviews-band h2 { font-size: clamp(1.4rem, 1rem + 1.8vw, 2rem); margin-bottom: clamp(24px, 3vw, 40px); }
.review-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}
.review {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex; flex-direction: column;
}
.review .stars { font-size: 0.85rem; margin-bottom: 10px; }
.review blockquote { font-size: 0.9rem; color: var(--ink); flex: 1; }
.review figcaption { margin-top: 12px; font-size: 0.78rem; color: #737d74; font-weight: 600; }

/* FAQ */
.faq { padding: clamp(44px, 5vw, 80px) 0; }
.faq-grid {
  display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.faq h2 { font-size: clamp(1.4rem, 1rem + 1.6vw, 1.9rem); }
.faq-list details {
  background: #fff; border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--ink);
  padding: 16px 28px 16px 0; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "\25BE"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 1rem; color: var(--green);
}
.faq-list details[open] summary::after { content: "\25B4"; }
.faq-list details p { padding: 0 0 16px; font-size: 0.92rem; }

/* FINAL BAND */
.final-band {
  background: var(--green-deep); color: #B9C8B6;
  text-align: center;
  padding: clamp(48px, 5vw, 88px) 0;
}
.final-band h2 { color: #fff; font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem); margin-bottom: 10px; }
.final-band p { max-width: 560px; margin: 0 auto 22px; }

/* Sticky CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(16, 27, 19, 0.12);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  padding: 10px clamp(14px, 4vw, 28px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta.is-visible { transform: none; }
.sticky-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.sticky-name { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.sticky-price { font-size: 0.8rem; }
.sticky-price s { color: #98a099; }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(16, 27, 19, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; border-radius: 18px;
  max-width: 420px; width: 100%;
  padding: 32px 28px 28px;
  text-align: center; position: relative;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-backdrop.is-open .modal { transform: none; }
.modal-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; font-size: 1.7rem; color: #98a099; line-height: 1;
}
.modal-logo { height: 44px; width: auto; margin: 0 auto 14px; }
.modal h3 { font-size: 1.2rem; margin-bottom: 10px; }
.modal p { font-size: 0.92rem; margin-bottom: 10px; }
.modal-sub a { color: var(--green); font-weight: 600; }
.modal .cta { margin-top: 8px; }

/* Footer */
.site-footer { background: var(--green-deep); color: #8FA48C; padding: 48px 0 32px; }
.footnotes p { font-size: 0.74rem; margin-bottom: 6px; }
.footer-logo { height: 40px; width: auto; margin: 26px 0 18px; }
.disclaimer { font-size: 0.74rem; max-width: 860px; }
.copyright { font-size: 0.78rem; margin-top: 18px; color: #B9C8B6; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .reason-grid, .reason-grid.flip, .offer-grid, .faq-grid { grid-template-columns: 1fr; }
  .reason-grid.flip .reason-copy { order: 0; }
  .reason-grid.flip .reason-media { order: -1; }
  .reason-grid .reason-media { order: -1; }
  .hero-img { max-height: 360px; }
  .reason-media img { max-width: 400px; }
  .media-card { max-width: 400px; margin-inline: auto; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card { position: static; }
  body { padding-bottom: 76px; }
}
@media (max-width: 520px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* Quantity cards + recurring disclosure */
.qty-cards { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.qty-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 10px 14px; text-align: left; width: 100%;
}
.qty-card.is-active { border-color: var(--green); background: var(--sage-light); }
.qty-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.qty-name em { display: block; font-style: normal; font-weight: 500; font-size: 0.76rem; color: var(--green-mid); }
.qty-price { font-size: 0.86rem; white-space: nowrap; }
.qty-price s { color: #98a099; margin-right: 4px; }
.qty-price strong { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.recur-note {
  font-size: 0.8rem; line-height: 1.55;
  background: var(--sage-light); border-radius: 8px;
  padding: 9px 12px; margin-top: 10px;
}
.recur-note + .perks { margin-top: 10px; }
