﻿:root {
  --bg: #e8edf3;
  --surface: #ffffff;
  --text: #1f2734;
  --muted: #5a6779;
  --line: #d9e0ea;
  --primary: #2b6ea9;
  --primary-deep: #1f5c92;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--surface);
  color: var(--text);
  font-family: "Libre Franklin", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.45;
  font-size: 16px;
  padding: 10px 0 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


.topbar {
  width: min(430px, calc(100% - 12px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand-badge {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 auto;
}

.menu-lines {
  width: 26px;
  display: grid;
  gap: 4px;
}

.menu-lines span {
  height: 3px;
  background: #374760;
}

main {
  width: min(430px, calc(100% - 12px));
  margin: 0 auto;
  margin-top: 0;
  padding: 0 14px 16px;
  background: var(--surface);
}

.card {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

main .card:first-child {
  border-top: 0;
  padding-top: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  color: #1f446d;
  line-height: 1.18;
}

h1 {
  text-align: center;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2rem, 7.6vw, 2.65rem);
  font-weight: 800;
}

h2 {
  font-family: "Libre Franklin", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 5vw, 1.85rem);
  font-weight: 800;
  color: #1f2734;
}

h3 {
  font-family: "Libre Franklin", "Segoe UI", sans-serif;
  font-size: clamp(1.28rem, 4.7vw, 1.75rem);
  font-weight: 800;
  color: #1f2734;
}

p {
  margin: 10px 0 0;
  font-size: 1.02rem;
}

.strong {
  font-weight: 800;
}

.small-note,
.cta-disclaimer,
.footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  padding-bottom: 14px;
}

.between-lines {
  margin-top: 14px;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}

.intro {
  display: block;
}

.intro::after,
.price .split::after,
.generics .split::after {
  content: "";
  display: block;
  clear: both;
}

.intro-copy p {
  margin-top: 0;
}

.intro-photo {
  float: right;
  width: clamp(132px, 42%, 196px);
  margin: 2px 0 8px 12px;
  overflow: hidden;
  position: relative;
}

.intro-photo img {
  width: 100%;
  aspect-ratio: 0.88 / 1;
  object-fit: cover;
}

.intro-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  color: #ffffff;
  background: linear-gradient(to top, rgba(15, 28, 45, 0.93), rgba(15, 28, 45, 0));
  padding: 14px 8px 8px;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.3;
}

.split {
  display: grid;
  gap: 12px;
}

.price .split {
  display: block;
}

.price .split > .price-photo {
  float: right;
  width: clamp(132px, 42%, 220px);
  margin: 2px 0 8px 12px;
}

.generics .split {
  display: block;
}

.generics .split > .generics-photo {
  float: left;
  width: clamp(132px, 42%, 220px);
  margin: 2px 12px 8px 0;
}

figure {
  margin: 0;
}

.price figure,
.generics figure,
.privacy figure,
.result-photos img {
  overflow: hidden;
}

.turning-point h3 {
  color: #234d79;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.price-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.price-compare > div {
  padding: 9px 10px;
  background: #f8fbff;
}

.price-compare .label {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

.price-compare strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(1.52rem, 5.5vw, 1.92rem);
  line-height: 1.1;
  color: #1f5b92;
}

.price-compare small {
  color: var(--muted);
}

.result-photos {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.cta {
  background: transparent;
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(335px, 100%);
  margin: 12px auto 0;
  min-height: 54px;
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(1.05rem, 4.4vw, 1.42rem);
  font-weight: 800;
  background: linear-gradient(180deg, #3b80bf, #2b6ea9);
}

.testimonials ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.testimonials li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.testimonials li:first-child {
  border-top: 0;
  padding-top: 2px;
}

.name {
  color: #1f446d;
  font-weight: 700;
}

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 44px;
}

.comment-content {
  min-width: 0;
}

.comment-content p {
  margin: 0;
}

.comment-content p + p {
  margin-top: 4px;
}

.comment-name {
  font-weight: 700;
  color: #1f446d;
}

.footer {
  padding: 10px 2px 4px;
}

.footer p {
  text-align: center;
  margin: 0;
}

.mobile-sticky-cta {
  display: none;
}

@media (min-width: 700px) {
  .topbar,
  main {
    width: min(760px, calc(100% - 20px));
  }

  main {
    padding: 0 18px 18px;
  }

  .intro-photo {
    width: 250px;
  }

  .price .split > .price-photo,
  .generics .split > .generics-photo {
    width: 265px;
  }

  .privacy .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .result-photos {
    grid-template-columns: 1.25fr 0.75fr;
  }
}
