:root {
  --terracotta: #c96b55;
  --terracotta-dark: #b85a45;
  --terracotta-soft: #ef9163;
  --sage: #7ba68a;
  --sage-deep: #5e935b;
  --ink: #2a2a2a;
  --ink-soft: #4a4a4a;
  --muted: #6b6b6b;
  --cream: #fdf8f4;
  --peach: #fff1ea;
  --peach-card: #ffe8de;
  --line: #f0dcd3;
  --white: #ffffff;
  --danger: #df3131;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(42, 42, 42, 0.08);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.accent {
  color: var(--sage);
}

.underline-scribble {
  position: relative;
  display: inline-block;
}

.underline-scribble::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8c18-6 36 4 54-2s36-4 52 2' stroke='%23c96b55' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3ece8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  min-width: 0;
  flex-shrink: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--terracotta), #e08a6d);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav-cta {
  background: var(--terracotta);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding: 36px 0 56px;
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 145, 99, 0.12), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(123, 166, 138, 0.12), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.top-pill {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 10px 18px;
  border: 1px solid #f0cbbd;
  background: #fff6f1;
  color: var(--terracotta);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.18;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-sub {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.coach-card {
  position: relative;
  max-width: 340px;
  margin-inline: auto;
}

.coach-frame {
  position: relative;
  background: linear-gradient(160deg, #ffe7dc, #f7d5c7 55%, #ecd0c2);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.coach-photo {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  max-height: 360px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
  background: #d9d9d9;
}

.coach-photo-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background:
    radial-gradient(circle at 50% 28%, #5a6b7a 0%, transparent 42%),
    linear-gradient(160deg, #4a5560 0%, #24303a 55%, #1a2229 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.coach-photo-fallback::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: linear-gradient(180deg, #8a97a3, #3d4a55);
  top: 14%;
  left: 21%;
  opacity: 0.9;
}

.coach-photo-fallback::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 48%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #6b7884, #2c3640);
  bottom: -4%;
  left: 11%;
}

.coach-photo-fallback span {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  margin-top: 58%;
}

.badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-google {
  top: 28px;
  left: 8px;
}

.badge-ig {
  bottom: 110px;
  left: 8px;
}

.badge-trust {
  bottom: 48px;
  right: 12px;
}

.stars {
  color: #f5b400;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.sparkle {
  position: absolute;
  color: #f0a08a;
  font-size: 1.2rem;
}

.sparkle-1 {
  top: -8px;
  right: 28px;
}

.sparkle-2 {
  top: 18px;
  right: -6px;
}

.coach-meta {
  margin-top: 18px;
  text-align: center;
}

.coach-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.coach-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.program-panel h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 800;
}

.program-tag {
  display: inline-block;
  background: var(--terracotta-soft);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.detail-card {
  background: var(--peach);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffd9c8;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.detail-card small {
  display: block;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.detail-card strong {
  font-size: 1rem;
}

.schedule-note {
  margin: 4px 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(201, 107, 85, 0.28);
  text-align: center;
}

.btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
  margin-top: 8px;
}

.btn-lg {
  padding: 18px 34px;
  font-size: 1.05rem;
}

/* Sections */
section {
  padding: 72px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 18px;
  max-width: 860px;
}

.section-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
}

.pain {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.pain-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.pain-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--peach);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.pain-item h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.pain-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.philosophy {
  text-align: center;
  max-width: 820px;
  margin: 40px auto 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.philosophy strong {
  color: var(--ink);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.why {
  background: white;
}

.why .section-title {
  margin-bottom: 10px;
}

.master {
  background:
    radial-gradient(circle at top right, rgba(123, 166, 138, 0.1), transparent 35%),
    #faf7f4;
}

.master-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.master-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid #efe4de;
  box-shadow: var(--shadow);
}

.master-card .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--terracotta);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.master-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.master-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.master-card.full {
  grid-column: 1 / -1;
}

.audience {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.audience-card {
  border-radius: 24px;
  padding: 28px;
}

.audience-card.yes {
  background: linear-gradient(160deg, #eef7f1, #f7fcf8);
  border: 1px solid #d5e8db;
}

.audience-card.no {
  background: linear-gradient(160deg, #fff2f0, #fff8f7);
  border: 1px solid #f0d4cf;
}

.audience-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.check-list,
.x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li,
.x-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
}

.check,
.xmark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.check {
  background: #d9f0e1;
  color: #2f7a4d;
}

.xmark {
  background: #f8d7d2;
  color: #b24438;
}

.coach-section {
  background: white;
}

.testimonials {
  background:
    radial-gradient(circle at top left, rgba(239, 145, 99, 0.1), transparent 40%),
    linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.testimonial-video-card {
  width: fit-content;
  max-width: min(320px, 100%);
  margin: 0 auto;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.testimonial-video-wrap {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  background: #111;
  overflow: hidden;
  line-height: 0;
}

.testimonial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #111;
  border: 0;
}

.testimonial-meta {
  padding: 18px 16px 20px;
  text-align: center;
  background: white;
}

.testimonial-meta h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.testimonial-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.coach-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.coach-portrait {
  border-radius: 28px;
  overflow: hidden;
  background: #e8e8e8;
  box-shadow: var(--shadow);
  max-width: 320px;
  margin-inline: auto;
}

.coach-portrait .coach-photo {
  max-height: 340px;
  aspect-ratio: 1 / 1.1;
}

.coach-portrait .coach-photo-fallback {
  aspect-ratio: 1 / 1.15;
  font-size: 5rem;
}

.coach-copy h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0 0 8px;
}

.coach-copy .role {
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 18px;
}

.cred-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.cred-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.cred-list li::before {
  content: "●";
  color: var(--sage);
  font-size: 0.7rem;
  margin-top: 6px;
}

.quote {
  background: var(--peach);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 16px 16px 0;
  padding: 16px 18px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 22px;
}

.bonuses {
  background:
    linear-gradient(180deg, #fff8f4, #ffffff);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bonus-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.bonus-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--peach);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.bonus-card h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: white;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(239, 145, 99, 0.12), transparent 55%),
    #fffaf7;
  padding: 80px 0;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 0 0 10px;
}

.final-cta p {
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.site-footer {
  background: #1f2428;
  color: #d7dde2;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.site-footer h4 {
  color: white;
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #b8c0c7;
  font-size: 0.92rem;
}

.footer-brand p {
  margin: 10px 0 0;
  max-width: 280px;
  color: #9aa4ad;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid #323a41;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #8b959e;
}

/* Sticky offer bar */
.offer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #fff8ef;
  border-top: 2px solid #e85d4d;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.offer-price .now {
  color: var(--sage-deep);
  font-size: 1.55rem;
  font-weight: 800;
}

.offer-price .was {
  color: #8f8f8f;
  text-decoration: line-through;
  font-size: 1.05rem;
}

.offer-timer {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.offer-timer span {
  color: var(--danger);
  font-weight: 800;
}

.offer-bar .btn {
  padding: 12px 22px;
  box-shadow: none;
  white-space: nowrap;
}

/* ========== Tablet & below ========== */
@media (max-width: 1024px) {
  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .hero-grid {
    gap: 28px;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .badge {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
}

/* ========== Compact tablet / large phone landscape ========== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .coach-layout,
  .audience {
    grid-template-columns: 1fr;
  }

  .master-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: clamp(1.55rem, 4vw, 2.2rem);
  }
}

/* ========== Mobile ========== */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: calc(100% - 28px);
  }

  .nav {
    padding: 10px 0;
    gap: 10px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 24px 0 40px;
  }

  .top-pill {
    font-size: 0.78rem;
    padding: 8px 12px;
    max-width: 100%;
    line-height: 1.35;
  }

  .hero-title {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }

  .hero-grid,
  .coach-layout,
  .audience,
  .master-grid,
  .bonus-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .master-card.full {
    grid-column: auto;
  }

  .program-panel {
    order: -1;
  }

  .coach-frame {
    padding: 14px;
    border-radius: 22px;
  }

  .coach-photo {
    aspect-ratio: 1 / 1.1;
    border-radius: 18px;
  }

  .badge {
    max-width: min(180px, 46vw);
  }

  .badge-google {
    top: 16px;
    left: 4px;
  }

  .badge-ig {
    bottom: 86px;
    left: 4px;
  }

  .badge-trust {
    bottom: 36px;
    right: 4px;
  }

  .coach-meta h3 {
    font-size: 1.3rem;
  }

  .coach-meta p {
    font-size: 0.88rem;
  }

  .program-panel h3 {
    font-size: 1.35rem;
    text-align: center;
  }

  .program-tag {
    display: table;
    margin: 0 auto 14px;
  }

  .btn,
  .btn-lg,
  .btn-block {
    width: 100%;
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .center-cta {
    padding-inline: 0;
  }

  .center-cta .btn {
    width: min(100%, 420px);
  }

  section {
    padding: 52px 0;
  }

  .pain-list {
    gap: 12px;
  }

  .pain-item {
    grid-template-columns: 44px 1fr;
    padding: 14px;
    gap: 12px;
  }

  .pain-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .philosophy {
    font-size: 1rem;
    margin-top: 28px;
  }

  .audience-card {
    padding: 22px 18px;
  }

  .audience-card h3 {
    font-size: 1.45rem;
  }

  .coach-copy h2 {
    font-size: 1.8rem;
  }

  .coach-portrait .coach-photo-fallback {
    aspect-ratio: 1 / 1;
    font-size: 3.5rem;
  }

  .faq details {
    padding: 14px;
  }

  .faq summary {
    font-size: 0.95rem;
    gap: 10px;
  }

  .final-cta {
    padding: 56px 0;
  }

  .site-footer {
    padding: 36px 0 24px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .offer-bar {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .offer-price .now {
    font-size: 1.3rem;
  }

  .offer-price .was {
    font-size: 0.92rem;
  }

  .offer-timer {
    font-size: 0.8rem;
    flex: 1 1 auto;
    text-align: center;
  }

  .offer-bar .btn {
    width: auto;
    flex: 0 0 auto;
    padding: 11px 18px;
    font-size: 0.88rem;
  }
}

/* ========== Small phones ========== */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .logo-text small {
    display: none;
  }

  .top-pill {
    font-size: 0.72rem;
    border-radius: 14px;
  }

  .hero-title {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .badge {
    font-size: 0.68rem;
    padding: 6px 8px;
    border-radius: 10px;
    gap: 5px;
  }

  .badge-ig {
    bottom: 72px;
  }

  .stars {
    font-size: 0.65rem;
  }

  .detail-card {
    padding: 12px;
    gap: 10px;
  }

  .detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .pain-item {
    grid-template-columns: 1fr;
  }

  .pain-icon {
    width: 40px;
    height: 40px;
  }

  .master-card,
  .bonus-card {
    padding: 16px;
  }

  .offer-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "price btn"
      "timer btn";
    align-items: center;
    column-gap: 10px;
    row-gap: 2px;
  }

  .offer-price {
    grid-area: price;
  }

  .offer-timer {
    grid-area: timer;
    text-align: left;
  }

  .offer-bar .btn {
    grid-area: btn;
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

/* ========== Very small phones ========== */
@media (max-width: 360px) {
  .nav-cta {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .btn-block {
    font-size: 0.88rem;
  }
}

/* ========== Prefer reduced motion ========== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
