:root {
  --bg: #fffdf9;
  --surface: #ffffff;
  --paper: #fffaf1;
  --line: #eadfd2;
  --line-strong: #d8cdbf;
  --text: #102837;
  --muted: #5a6d75;
  --soft: #84949a;
  --green: #156f61;
  --green-dark: #0d5c51;
  --green-ink: #07443d;
  --green-soft: #e7f2ee;
  --orange: #ff684f;
  --orange-dark: #ef542f;
  --amber: #f48a1a;
  --cream: #f8efe4;
  --shadow: 0 12px 32px rgba(50, 35, 20, 0.1);
  --shadow-soft: 0 8px 20px rgba(46, 35, 26, 0.08);
  --container: 900px;
  --hero-container: 950px;
  --page-x: 32px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 55% 6%, rgba(250, 234, 207, 0.5), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #fffdf9 52%, #fffaf4 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(21, 111, 97, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 111, 97, 0.016) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

main {
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

svg {
  fill: currentColor;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1014px;
  height: 64px;
  margin: 0 auto;
  padding: 14px 28px 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--green-dark);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-check {
  fill: #fff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #102533;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.desktop-nav a,
.site-footer a,
.text-link,
.mini-link {
  transition: color 0.18s ease, transform 0.18s ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.text-link:hover,
.mini-link:hover {
  color: var(--green);
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff745c, #ff5b3e);
  box-shadow: 0 8px 16px rgba(255, 104, 79, 0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.header-cta:hover,
.button-primary:hover,
.plan-button.solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(255, 104, 79, 0.26);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 520px);
  align-items: start;
  max-width: var(--hero-container);
  min-height: 462px;
  margin: 0 auto;
  padding: 5px var(--page-x) 0;
  overflow: visible;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0), #f9efe3);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 430px;
  padding-top: 55px;
}

.hero h1 {
  max-width: 13.8em;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 36px;
  font-weight: 830;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy > p:not(.medical-note) {
  max-width: 390px;
  margin-bottom: 24px;
  color: #425862;
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  background: linear-gradient(135deg, #ff745c, #ff5c3e);
  box-shadow: 0 10px 20px rgba(255, 104, 79, 0.24);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 780;
}

.text-link span,
.mini-link span {
  font-size: 18px;
  line-height: 1;
}

.price-pill {
  display: inline-flex;
  align-items: baseline;
  height: 37px;
  margin-bottom: 23px;
  padding: 0 15px;
  border: 1px solid #c9e4da;
  border-radius: 999px;
  background: #fbfffc;
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(16, 71, 62, 0.07);
  font-size: 13px;
  gap: 5px;
}

.price-pill strong {
  font-size: 21px;
  line-height: 1;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #e2ddd5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(42, 35, 28, 0.07);
  color: #304b53;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
}

.trust-row svg,
.medical-note svg,
.secure-line svg,
.report-disclaimer svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  flex: 0 0 auto;
}

.medical-note {
  position: absolute;
  top: 408px;
  left: 0;
  display: flex;
  align-items: center;
  margin: 0;
  color: #68767c;
  font-size: 10px;
  gap: 6px;
}

.hero-visual {
  position: relative;
  z-index: 3;
  height: 462px;
}

.mock-card {
  border: 1px solid rgba(219, 210, 199, 0.85);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.input-card {
  position: absolute;
  top: 16px;
  left: 82px;
  z-index: 5;
  width: 260px;
  min-height: 392px;
  padding: 14px 16px;
  border-radius: 18px 8px 8px 18px;
  transform: scale(0.88);
  transform-origin: top left;
}

.step-label {
  margin: 0 0 8px;
  color: #233d48;
  font-size: 10px;
  font-weight: 800;
}

.step-label:not(:first-child) {
  margin-top: 13px;
}

.step-label em {
  color: #7f8b91;
  font-style: normal;
  font-weight: 500;
}

.upload-box {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px dashed #cfc7bc;
  border-radius: 7px;
  background: #fffdfa;
  color: var(--green);
  text-align: center;
}

.upload-box svg {
  width: 30px;
  height: 30px;
}

.upload-box strong {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 10px;
}

.upload-box small {
  color: #6d7a80;
  font-size: 8px;
  line-height: 1.35;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.segmented span,
.chip-list span {
  border: 1px solid #ded8d1;
  border-radius: 7px;
  background: #fff;
  color: #304b53;
  font-size: 10px;
  font-weight: 760;
  text-align: center;
}

.segmented span {
  display: grid;
  height: 34px;
  place-items: center;
}

.segmented .active {
  background: linear-gradient(135deg, var(--green), #0f5e54);
  color: #fff;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chip-list span {
  padding: 5px 7px;
  color: #4c5e66;
  font-size: 8px;
}

.mini-rows {
  display: grid;
  overflow: hidden;
  border: 1px solid #e0d9d2;
  border-radius: 8px;
  background: #fff;
}

.mini-rows span {
  position: relative;
  padding: 8px 12px;
  color: #40535b;
  font-size: 9px;
  font-weight: 650;
}

.mini-rows span:not(:last-child) {
  border-bottom: 1px solid #eee8e1;
}

.mini-rows span::after {
  position: absolute;
  right: 10px;
  color: #78878d;
  content: "›";
}

.result-card {
  position: absolute;
  top: 16px;
  right: -42px;
  z-index: 6;
  width: 253px;
  padding: 18px 15px 16px;
  border-radius: 8px 18px 18px 8px;
  transform: scale(0.88);
  transform-origin: top right;
}

.result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.result-head strong {
  display: block;
  margin-bottom: 3px;
  color: #17323e;
  font-size: 14px;
  line-height: 1.15;
}

.result-head small {
  color: #7d878c;
  font-size: 8px;
}

.warning-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff2df;
  color: #d87817;
  font-size: 9px;
  font-weight: 850;
}

.warning-badge::before {
  content: "⚠ ";
}

.attention-box {
  padding: 13px 12px 14px;
  border: 1px solid #eee4da;
  border-radius: 9px;
  text-align: center;
}

.attention-box > strong {
  display: block;
  margin-bottom: 2px;
  color: #334b55;
  font-size: 11px;
  text-align: left;
}

.gauge {
  position: relative;
  display: grid;
  width: 140px;
  height: 82px;
  margin: 4px auto 0;
  place-items: end center;
}

.gauge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gauge path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 9;
}

.gauge-track {
  stroke: #e6e4e1;
}

.gauge-fill {
  stroke: var(--amber);
  stroke-dasharray: 188;
  stroke-dashoffset: 109;
}

.gauge div {
  position: relative;
  z-index: 1;
  padding-bottom: 7px;
  color: #172d38;
  line-height: 1;
}

.gauge span {
  display: block;
  color: #ff6d4d;
  font-size: 32px;
  font-weight: 850;
}

.gauge small {
  font-size: 13px;
  font-weight: 800;
}

.attention-box p {
  margin: -2px 0 0;
  color: #263e49;
  font-size: 11px;
  font-weight: 780;
}

.attention-box > small {
  color: #65767d;
  font-size: 8px;
}

.observation-rows {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.observation-rows div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #efe8e0;
  border-radius: 8px;
  background: #fff;
  gap: 8px;
}

.observation-rows strong {
  color: #304a54;
  font-size: 10px;
}

.observation-rows em {
  color: #50636b;
  font-size: 10px;
  font-style: normal;
  font-weight: 720;
}

.observation-rows em::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #f79a16;
  content: "";
}

.poop {
  display: inline-block;
  width: 25px;
  height: 16px;
  border-radius: 55% 45% 48% 52%;
  background: radial-gradient(circle at 35% 35%, #8d6034 0 12%, transparent 13%), linear-gradient(135deg, #6f3f20, #9c6b3b);
  box-shadow: inset -3px -2px 3px rgba(0, 0, 0, 0.12);
}

.poop-two {
  width: 30px;
  height: 14px;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.poop-three {
  width: 30px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 18% 30%, #b97837 0 10%, transparent 11%),
    radial-gradient(circle at 45% 35%, #8b5328 0 10%, transparent 11%),
    radial-gradient(circle at 70% 55%, #b97837 0 11%, transparent 12%),
    radial-gradient(circle at 38% 70%, #73421f 0 11%, transparent 12%),
    #d09a5c;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  margin-top: 13px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 820;
  gap: 6px;
}

.pets-hero {
  position: absolute;
  left: -150px;
  bottom: 0;
  z-index: 4;
  width: 282px;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(70, 50, 34, 0.15));
}

.plant {
  position: absolute;
  right: -4px;
  bottom: 20px;
  z-index: 1;
  width: 68px;
  height: 180px;
  opacity: 0.55;
}

.plant::before {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 22px;
  height: 58px;
  border-radius: 5px 5px 14px 14px;
  background: #d5c2a7;
  content: "";
}

.plant::after {
  position: absolute;
  right: 38px;
  bottom: 48px;
  width: 3px;
  height: 118px;
  background: #8aa376;
  content: "";
}

.plant span {
  position: absolute;
  width: 32px;
  height: 16px;
  border-radius: 50% 8px 50% 8px;
  background: #8ea66f;
}

.plant span:nth-child(1) {
  right: 40px;
  top: 12px;
  transform: rotate(-22deg);
}

.plant span:nth-child(2) {
  right: 8px;
  top: 38px;
  transform: rotate(28deg);
}

.plant span:nth-child(3) {
  right: 44px;
  top: 74px;
  transform: rotate(-32deg);
}

.plant span:nth-child(4) {
  right: 10px;
  top: 104px;
  transform: rotate(26deg);
}

.section {
  max-width: var(--container);
  margin: 42px auto 0;
  padding: 0 var(--page-x);
}

.section h2,
.guide-section h2 {
  margin-bottom: 18px;
  color: #132a36;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.steps {
  margin-top: 18px;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  max-width: 690px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  min-height: 101px;
  padding: 16px 18px;
  border: 1px solid #e8ded4;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  gap: 10px;
}

.step-card svg {
  width: 45px;
  height: 45px;
  color: var(--green);
}

.step-number {
  position: absolute;
  top: 9px;
  left: 9px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.step-card strong {
  display: block;
  margin-bottom: 3px;
  color: #233b47;
  font-size: 13px;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  color: #586a72;
  font-size: 9px;
  line-height: 1.35;
}

.connector {
  position: relative;
  height: 1px;
  border-top: 2px dotted #8aa49c;
}

.connector::after {
  position: absolute;
  top: -6px;
  right: -1px;
  color: #8aa49c;
  font-size: 16px;
  line-height: 1;
  content: "›";
}

.report {
  margin-top: 26px;
}

.report-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.25fr 1.15fr;
  padding: 10px;
  border: 1px solid #e8ded4;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  gap: 10px;
}

.report-shell article {
  min-height: 0;
  padding: 9px 9px;
  border: 1px solid #e8ded6;
  border-radius: 8px;
  background: #fff;
}

.report-shell h3 {
  margin: 0 0 7px;
  color: #21414d;
  font-size: 11px;
  line-height: 1.2;
}

.summary-card span,
.summary-card p,
.observations-card p,
.observations-card em,
.advice-card li,
.alert-card li {
  color: #53656d;
  font-size: 8px;
  line-height: 1.34;
}

.summary-card b {
  display: block;
  margin-bottom: 2px;
  color: #334b55;
  font-size: 10px;
}

.summary-card p {
  margin-bottom: 9px;
}

.report-score {
  margin: 4px 0 0;
  color: var(--text);
}

.report-score strong {
  color: var(--amber);
  font-size: 28px;
  line-height: 1;
}

.report-score small {
  font-size: 12px;
  font-weight: 800;
}

.score-bar {
  position: relative;
  height: 7px;
  border: 1px solid #cfd8d7;
  border-radius: 999px;
  background: linear-gradient(90deg, #39a67c 0 34%, #f1a51e 34% 68%, #ec6347 68%);
}

.score-bar::before,
.score-bar::after {
  position: absolute;
  top: 11px;
  color: #7b8689;
  font-size: 8px;
}

.score-bar::before {
  left: 0;
  content: "0";
}

.score-bar::after {
  right: 0;
  content: "100";
}

.score-bar span {
  position: absolute;
  top: -3px;
  left: 42%;
  width: 2px;
  height: 15px;
  border-radius: 999px;
  background: #102837;
}

.observations-card > div {
  display: grid;
  grid-template-columns: 30px 48px 1fr;
  align-items: center;
  padding: 3px 0;
  border-bottom: 1px solid #eee7df;
  column-gap: 7px;
}

.observations-card > div:last-child {
  border-bottom: 0;
}

.observations-card b {
  color: #334b55;
  font-size: 9px;
}

.observations-card em {
  font-style: normal;
  font-weight: 700;
}

.observations-card p {
  grid-column: 3;
  margin: 0;
}

.advice-card ul,
.alert-card ul,
.pricing-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 5px;
}

.advice-card li,
.pricing-card li {
  position: relative;
  padding-left: 20px;
}

.advice-card li::before,
.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 12px;
  height: 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 8px;
  content: "✓";
}

.alert-card {
  border-color: #f3a946 !important;
  background: #fffaf2 !important;
}

.alert-card h3 {
  color: #b35d0c;
}

.alert-card h3::before {
  color: #f39a1f;
  content: "⚠ ";
}

.alert-card li {
  position: relative;
  padding-left: 16px;
}

.alert-card li::before {
  position: absolute;
  left: 0;
  color: #f39a1f;
  content: "•";
}

.report-disclaimer,
.secure-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
  color: #69787e;
  font-size: 10px;
  gap: 7px;
}

.pricing {
  margin-top: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 745px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  min-height: 0;
  padding: 15px 15px 12px;
  border: 1px solid #e5dbd1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, #fffaf2, #fff);
}

.pricing-card > svg {
  width: 22px;
  height: 22px;
  margin-bottom: 7px;
  color: var(--green);
}

.pricing-card h3 {
  margin-bottom: 8px;
  color: #1d3844;
  font-size: 14px;
  line-height: 1.25;
}

.price {
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1;
}

.price strong {
  font-size: 30px;
  font-weight: 850;
}

.price span {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.pricing-card p {
  margin-bottom: 7px;
  color: #65747a;
  font-size: 10px;
}

.pricing-card li {
  color: #304b53;
  font-size: 9px;
  line-height: 1.34;
}

.plan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-top: 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.plan-button.ghost {
  border: 1px solid var(--green);
  color: var(--green-dark);
}

.plan-button.ghost:hover {
  background: var(--green-soft);
}

.plan-button.solid {
  background: linear-gradient(135deg, #ff745c, #ff5c3e);
  box-shadow: 0 8px 14px rgba(255, 104, 79, 0.22);
  color: #fff;
}

.popular-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  min-width: 128px;
  padding: 3px 15px 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  text-align: center;
  transform: translateX(-50%);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 1.2fr 1.15fr;
  max-width: 912px;
  height: 58px;
  min-height: 58px;
  margin: 16px auto 0;
  padding: 6px 22px;
  border: 1px solid #e8ded4;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 5px 16px rgba(48, 36, 26, 0.06);
  gap: 16px;
}

.trust-strip div {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
}

.trust-strip svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.trust-strip p {
  margin: 0;
}

.trust-strip strong {
  display: block;
  color: #263e49;
  font-size: 10px;
  line-height: 1.2;
}

.trust-strip span:not(.flag) {
  color: #66777e;
  font-size: 8px;
  line-height: 1.35;
}

.flag {
  display: inline-block;
  width: 31px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2454a6 0 33%, #fff 33% 66%, #ef3f42 66%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.faq {
  margin-top: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  margin: 0 auto;
  gap: 6px 16px;
}

.faq-grid details {
  border: 1px solid #e7dfd6;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(44, 34, 26, 0.04);
}

.faq-grid summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 24px;
  padding: 0 32px 0 14px;
  color: #2b4550;
  cursor: pointer;
  font-size: 9px;
  font-weight: 820;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  position: absolute;
  right: 13px;
  color: #435b64;
  content: "⌄";
}

.faq-grid details[open] summary::after {
  transform: rotate(180deg);
}

.faq-grid p {
  margin: 0;
  padding: 0 14px 12px;
  color: #62727a;
  font-size: 10px;
  line-height: 1.45;
}

.guide-section {
  position: relative;
  order: 8;
  max-width: var(--container);
  margin: 28px auto 0;
  padding: 0 var(--page-x);
  overflow-x: clip;
}

.guide-section::before {
  position: absolute;
  top: 78px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 111, 97, 0.22), transparent);
  content: "";
}

.guide-kicker {
  width: max-content;
  margin: 0 auto 9px;
  padding: 5px 12px;
  border: 1px solid #cfe5dd;
  border-radius: 999px;
  background: #f4fbf8;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.guide-section h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: 30px;
}

.guide-intro {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #465c65;
  font-size: 15px;
  line-height: 1.78;
  text-align: center;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 28px;
}

.guide-details {
  min-width: 0;
  border: 1px solid #d8e9e2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.guide-details summary {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 48px 18px 20px;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
}

.guide-details summary::-webkit-details-marker {
  display: none;
}

.guide-details summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  content: "+";
  font-size: 18px;
  font-weight: 850;
  line-height: 24px;
  text-align: center;
}

.guide-details[open] summary::after {
  content: "−";
}

.guide-details summary span {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.guide-details summary strong {
  color: #334b55;
  font-size: 15px;
  line-height: 1.45;
}

.guide-copy {
  min-width: 0;
  padding: 0 20px 20px;
}

.guide-copy h3 {
  margin: 29px 0 9px;
  color: #122c38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
}

.guide-copy h3:first-child {
  margin-top: 0;
}

.guide-copy p {
  margin-bottom: 16px;
  color: #425861;
  font-size: 14px;
  line-height: 1.78;
}

.glossary {
  position: relative;
  display: inline;
  border-bottom: 1px dotted rgba(21, 111, 97, 0.55);
  color: var(--green-dark);
  cursor: help;
  font-weight: 800;
}

.glossary.danger {
  border-bottom-color: rgba(255, 104, 79, 0.75);
  color: #ba4a2e;
}

.glossary::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 12;
  width: min(280px, 82vw);
  max-width: calc(100vw - 44px);
  padding: 12px 14px;
  border: 1px solid rgba(23, 104, 89, 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(29, 42, 38, 0.15);
  color: #2c444d;
  content: attr(data-tip);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.glossary::before {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 3px);
  z-index: 13;
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow: 1px 1px 0 rgba(23, 104, 89, 0.12);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity 0.16s ease;
}

.glossary:hover::after,
.glossary:focus::after,
.glossary:hover::before,
.glossary:focus::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.glossary:hover::before,
.glossary:focus::before {
  transform: translateX(-50%) rotate(45deg);
}

.astuce-box,
.note-ribbon {
  margin: 24px 0;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(31, 45, 40, 0.08);
}

.astuce-box {
  padding: 18px 20px;
  border: 1px solid #cfe5dd;
  background: linear-gradient(135deg, #f3fbf8, #fff);
}

.astuce-box strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 13px;
}

.astuce-box p,
.note-ribbon p {
  margin: 0;
  font-size: 13px;
}

.note-ribbon {
  display: grid;
  grid-template-columns: 116px 1fr;
  overflow: hidden;
  border: 1px solid #f1caa1;
  background: #fffaf2;
}

.note-ribbon span {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f6a322, #ee7c17);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.note-ribbon p {
  padding: 16px 18px;
  color: #5c4f40;
}

.led-panel {
  position: sticky;
  top: 18px;
  padding: 18px;
  border: 1px solid rgba(104, 204, 180, 0.32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 10%, rgba(63, 206, 171, 0.2), transparent 40%),
    linear-gradient(180deg, #0b2b30, #0b1f25);
  box-shadow: 0 18px 38px rgba(3, 30, 35, 0.22);
  color: #dffaf2;
}

.led-panel::before {
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  background-image: linear-gradient(rgba(223, 250, 242, 0.05) 1px, transparent 1px);
  background-size: 100% 8px;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.led-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.led-header span {
  color: #8ed9c9;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.led-header strong {
  font-size: 14px;
}

.led-meter {
  position: relative;
  z-index: 1;
  display: grid;
  width: 178px;
  height: 178px;
  margin: 0 auto 14px;
  place-items: center;
}

.led-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #24d49c 0 28%, #f1a61e 28% 43%, rgba(255, 255, 255, 0.1) 43% 100%);
  filter: drop-shadow(0 0 14px rgba(36, 212, 156, 0.28));
}

.led-arc::after {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #0b2025;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.25);
  content: "";
}

.led-score {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.led-score strong {
  display: block;
  color: #ffb74a;
  font-size: 48px;
  line-height: 1;
}

.led-score span {
  color: #c9e7df;
  font-size: 14px;
  font-weight: 850;
}

.signal-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signal-list div {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 8px;
}

.signal-list span {
  color: #e4fbf5;
  font-size: 12px;
  font-weight: 820;
}

.signal-list b {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-list b::after {
  position: absolute;
  inset: 0;
  width: calc(var(--value) * 1%);
  border-radius: inherit;
  background: linear-gradient(90deg, #24d49c, #ffb74a);
  box-shadow: 0 0 12px rgba(255, 183, 74, 0.45);
  content: "";
}

.signal-list em {
  grid-column: 2;
  margin-top: -8px;
  color: #99cfc3;
  font-size: 10px;
  font-style: normal;
}

.led-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 18px;
}

.led-timeline span {
  padding: 6px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #9cd8ca;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.led-timeline .active {
  border-color: rgba(36, 212, 156, 0.7);
  background: rgba(36, 212, 156, 0.12);
  color: #e8fff8;
}

.led-panel p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #b6dcd3;
  font-size: 12px;
  line-height: 1.55;
}

.bottom-cta {
  position: relative;
  order: 7;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 900px;
  min-height: 97px;
  margin: 22px auto 0;
  padding: 22px 36px;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.11), transparent 25%),
    linear-gradient(135deg, #0f6a5d, #0a4b44);
  box-shadow: 0 16px 34px rgba(15, 83, 74, 0.18);
  color: #fff;
}

.bottom-cta h2 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.15;
  text-align: left;
}

.bottom-cta p {
  margin: 0;
  color: #dcf4ed;
  font-size: 14px;
}

.bottom-cta .button {
  z-index: 2;
  min-width: 215px;
}

.bottom-price {
  z-index: 2;
  align-self: end;
  justify-self: center;
  margin-bottom: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.bottom-cta img {
  position: absolute;
  right: 10px;
  bottom: -80px;
  width: 205px;
  height: auto;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.16));
}

.paw-bg {
  position: absolute;
  right: 218px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  opacity: 0.2;
}

.paw-bg::before,
.paw-bg::after {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.paw-bg::before {
  left: 14px;
  bottom: 6px;
  width: 24px;
  height: 21px;
}

.paw-bg::after {
  top: 0;
  left: 4px;
  width: 12px;
  height: 12px;
  box-shadow: 16px -4px 0 #fff, 32px 0 0 #fff, 7px 18px 0 #fff, 26px 18px 0 #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1.1fr 1.1fr;
  align-items: start;
  max-width: 900px;
  margin: 16px auto 0;
  padding: 0 var(--page-x) 24px;
  color: #596b73;
  gap: 26px;
}

.footer-brand {
  font-size: 21px;
}

.footer-brand .brand-mark,
.footer-brand .brand-mark svg {
  width: 28px;
  height: 28px;
}

.site-footer p,
.site-footer a,
.site-footer address {
  margin: 0;
  color: #5f7077;
  font-size: 9px;
  line-height: 1.55;
  font-style: normal;
}

.site-footer nav {
  display: grid;
  gap: 4px;
}

.site-footer address a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid rgba(255, 104, 79, 0.38);
  outline-offset: 3px;
}

@media (max-width: 880px) {
  :root {
    --page-x: 22px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    max-width: 620px;
    min-height: 0;
    padding-top: 18px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero h1 {
    max-width: 11.5em;
    font-size: 34px;
  }

  .hero-copy > p:not(.medical-note) {
    max-width: 36ch;
    font-size: 15px;
  }

  .medical-note {
    position: static;
    margin-top: 18px;
  }

  .hero-visual {
    height: 500px;
    margin-top: 18px;
  }

  .input-card {
    left: 0;
  }

  .result-card {
    right: 0;
  }

  .pets-hero {
    left: -122px;
    width: 230px;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .connector {
    display: none;
  }

  .report-shell,
  .pricing-grid,
  .trust-strip,
  .faq-grid,
  .guide-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-right: 22px;
    margin-left: 22px;
  }

  .led-panel {
    position: relative;
    top: 0;
    max-width: 360px;
    margin: 0 auto;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-right: 22px;
    margin-left: 22px;
    padding-right: 190px;
  }

  .bottom-cta .button,
  .bottom-price {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  :root {
    --page-x: 20px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 58px;
    padding: 12px 18px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    max-width: 10.5em;
    font-size: 32px;
  }

  .hero-actions,
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .trust-row span {
    justify-content: center;
  }

  .hero-visual {
    height: auto;
    padding-top: 0;
  }

  .input-card,
  .result-card,
  .pets-hero,
  .plant {
    position: relative;
    inset: auto;
  }

  .input-card,
  .result-card {
    width: 100%;
    border-radius: 12px;
    transform: none;
  }

  .hero h1 span {
    display: inline;
    white-space: normal;
  }

  .hero h1 span:not(:last-child)::after {
    content: " ";
  }

  .result-card {
    margin-top: 12px;
  }

  .pets-hero {
    width: min(250px, 78vw);
    margin: -6px auto 0;
  }

  .plant {
    display: none;
  }

  .section,
  .guide-section {
    margin-top: 42px;
  }

  .steps {
    margin-top: 42px;
  }

  .section h2,
  .guide-section h2 {
    font-size: 25px;
  }

  .step-card {
    grid-template-columns: 56px 1fr;
    padding: 18px 16px;
  }

  .report-shell article,
  .pricing-card {
    min-height: 0;
  }

  .pricing-card {
    padding: 22px 18px 18px;
  }

  .pricing-card.featured {
    order: -1;
  }

  .pricing-card li,
  .pricing-card p,
  .report-shell h3,
  .summary-card span,
  .summary-card p,
  .observations-card p,
  .observations-card em,
  .advice-card li,
  .alert-card li {
    font-size: 11px;
  }

  .faq-grid summary {
    min-height: 36px;
    font-size: 11px;
  }

  .guide-section h2 {
    font-size: 28px;
  }

  .guide-intro,
  .guide-copy p {
    text-align: left;
  }

  .guide-copy h3 {
    font-size: 22px;
  }

  .note-ribbon {
    grid-template-columns: 1fr;
  }

  .note-ribbon span {
    padding: 9px 12px;
  }

  .glossary::after {
    left: 0;
    width: min(280px, calc(100vw - 44px));
    transform: translate(0, 6px);
  }

  .glossary:hover::after,
  .glossary:focus::after {
    transform: translate(0, 0);
  }

  .glossary::before {
    left: 12px;
  }

  .bottom-cta {
    min-height: 0;
    padding: 24px 20px 150px;
  }

  .bottom-cta h2 {
    font-size: 28px;
  }

  .bottom-cta img {
    right: 50%;
    bottom: -94px;
    width: 188px;
    transform: translateX(50%);
  }

  .bottom-cta .button,
  .bottom-price {
    justify-self: stretch;
  }

  .paw-bg {
    right: 18px;
    bottom: 32px;
  }

  .site-footer {
    gap: 14px;
    padding-bottom: 28px;
  }
}

/* Production full-page refresh */
:root {
  --container: 1180px;
  --hero-container: 1440px;
  --page-x: clamp(24px, 4vw, 72px);
  --shadow: 0 24px 70px rgba(25, 43, 39, 0.13);
  --shadow-soft: 0 16px 38px rgba(46, 35, 26, 0.09);
}

body {
  font-size: 16px;
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: none;
  height: 76px;
  padding: 14px var(--page-x);
  border-bottom: 1px solid rgba(225, 216, 205, 0.72);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 30px;
}

.brand-mark,
.brand-mark svg {
  width: 38px;
  height: 38px;
}

.desktop-nav {
  gap: clamp(24px, 3vw, 46px);
  font-size: 15px;
}

.header-cta {
  min-height: 48px;
  padding: 0 24px;
  font-size: 15px;
}

.hero {
  width: 100%;
  max-width: none;
  display: block;
  grid-template-columns: none;
  align-items: initial;
  min-height: min(860px, calc(100svh - 140px));
  margin: 0;
  padding: clamp(22px, 3vw, 44px) var(--page-x) clamp(34px, 4vw, 58px);
  background:
    radial-gradient(circle at 77% 20%, rgba(255, 104, 79, 0.13), transparent 30%),
    radial-gradient(circle at 50% 92%, rgba(21, 111, 97, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(248, 252, 248, 0.96));
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(440px, 0.88fr) minmax(620px, 1.12fr);
  grid-template-rows: auto auto;
  align-items: center;
  width: 100%;
  max-width: var(--hero-container);
  min-height: min(720px, calc(100svh - 130px));
  margin: 0 auto;
  gap: 22px clamp(36px, 4vw, 58px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 670px;
  padding-top: 0;
}

.hero-assurance {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(21, 111, 97, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 4.4vw, 62px);
  font-weight: 860;
  line-height: 1.06;
}

.hero h1 span {
  display: inline;
  white-space: normal;
}

.hero-copy > p:not(.medical-note) {
  max-width: 620px;
  margin-bottom: 32px;
  color: #405864;
  font-size: clamp(19px, 1.35vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  gap: 18px;
  margin-bottom: 0;
}

.button {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 16px;
}

.button svg {
  width: 22px;
  height: 22px;
}

.text-link {
  font-size: 16px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-proof-row > span {
  color: #536a73;
  font-size: 15px;
  font-weight: 750;
}

.price-pill {
  height: 44px;
  margin-bottom: 0;
  padding: 0 17px;
  font-size: 15px;
}

.price-pill strong {
  font-size: 25px;
}

.trust-row {
  gap: 10px;
}

.trust-row span {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.trust-row svg,
.medical-note svg,
.secure-line svg,
.report-disclaimer svg {
  width: 18px;
  height: 18px;
}

.medical-note {
  position: static;
  max-width: 620px;
  margin-top: 22px;
  color: #61727b;
  font-size: 14px;
  line-height: 1.55;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 250px;
}

.hero-media::before {
  position: absolute;
  right: 4%;
  bottom: 22px;
  left: 4%;
  height: 44%;
  border-radius: 999px 999px 36px 36px;
  background:
    radial-gradient(circle at 55% 10%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(180deg, rgba(236, 226, 212, 0.72), rgba(211, 194, 173, 0.5));
  content: "";
}

.hero-media .pets-hero {
  position: relative;
  inset: auto;
  z-index: 2;
  width: min(44%, 300px);
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 28px rgba(70, 50, 34, 0.17));
}

.pet-badge {
  position: absolute;
  right: 16%;
  bottom: 10%;
  z-index: 3;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-content: center;
  height: auto;
  min-height: 0;
  gap: 16px;
}

.hero-visual::before {
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 1px solid rgba(21, 111, 97, 0.08);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(231, 242, 238, 0.5));
  box-shadow: 0 26px 70px rgba(21, 111, 97, 0.12);
  content: "";
}

.mock-card {
  border-color: rgba(221, 213, 202, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.input-card,
.result-card {
  position: relative;
  inset: auto;
  z-index: auto;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  transform: none;
}

.input-card {
  min-height: 0;
}

.step-label {
  margin-bottom: 12px;
  font-size: 14px;
}

.step-label:not(:first-child) {
  margin-top: 14px;
}

.upload-box {
  min-height: 104px;
  border-radius: 13px;
}

.upload-box svg {
  width: 36px;
  height: 36px;
}

.upload-box strong,
.segmented span,
.chip-list span,
.observation-rows strong,
.observation-rows em {
  font-size: 14px;
}

.upload-box small,
.result-head small,
.attention-box > small {
  font-size: 12px;
}

.segmented {
  gap: 8px;
}

.segmented span {
  height: 44px;
}

.chip-list {
  gap: 8px;
}

.chip-list span {
  padding: 8px 10px;
}

.mini-rows {
  display: none;
}

.result-head strong {
  font-size: 18px;
}

.warning-badge {
  padding: 7px 11px;
  font-size: 12px;
}

.attention-box {
  padding: 18px;
  border-radius: 14px;
}

.attention-box > strong {
  font-size: 14px;
}

.gauge {
  width: 150px;
  height: 88px;
}

.gauge span {
  font-size: 36px;
}

.gauge small {
  font-size: 16px;
}

.attention-box p {
  font-size: 14px;
}

.observation-rows {
  gap: 10px;
}

.observation-rows div {
  min-height: 42px;
  border-radius: 12px;
}

.mini-link {
  font-size: 14px;
}

.plant {
  display: none;
}

.section,
.trust-strip,
.guide-section,
.bottom-cta,
.site-footer {
  width: 100%;
  max-width: none;
}

.section {
  margin-top: clamp(56px, 7vw, 96px);
  padding: 0 var(--page-x);
}

.hero + .section {
  margin-top: clamp(28px, 3vw, 40px);
}

.section h2,
.guide-section h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 3.2vw, 48px);
}

.step-grid,
.report-shell,
.pricing-grid,
.faq-grid {
  max-width: 1180px;
}

.step-grid {
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
}

.step-card {
  min-height: 140px;
  padding: 24px;
  grid-template-columns: 64px 1fr;
}

.step-card strong,
.pricing-card h3 {
  font-size: 20px;
}

.step-card p {
  font-size: 16px;
  line-height: 1.5;
}

.report-shell {
  grid-template-columns: 0.95fr 1.2fr 1.25fr 1.15fr;
  margin: 0 auto;
  padding: 18px;
  gap: 18px;
}

.report-shell article {
  padding: 18px;
}

.report-shell h3 {
  font-size: 16px;
}

.summary-card span,
.summary-card p,
.observations-card p,
.observations-card em,
.advice-card li,
.alert-card li {
  font-size: 14px;
}

.report-score strong {
  font-size: 46px;
}

.pricing-grid {
  margin: 0 auto;
  gap: 22px;
}

.pricing-card {
  padding: 28px;
}

.price strong {
  font-size: 46px;
}

.pricing-card p,
.pricing-card li {
  font-size: 15px;
}

.plan-button {
  min-height: 44px;
  margin-top: 20px;
  font-size: 14px;
}

.secure-line,
.report-disclaimer {
  margin-top: 16px;
  font-size: 14px;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  height: auto;
  min-height: 86px;
  margin-top: 28px;
  padding: 18px 26px;
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip span:not(.flag) {
  font-size: 13px;
}

.faq-grid {
  gap: 12px 18px;
}

.faq-grid summary {
  min-height: 46px;
  font-size: 15px;
}

.faq-grid p {
  font-size: 14px;
}

.bottom-cta {
  max-width: 1180px;
  min-height: 142px;
  margin-top: 44px;
  padding: 32px 44px;
}

.bottom-cta h2 {
  font-size: clamp(34px, 3vw, 48px);
}

.bottom-cta p,
.bottom-price {
  font-size: 17px;
}

.bottom-cta img {
  right: 22px;
  bottom: -96px;
  width: 280px;
}

.guide-section {
  max-width: 1180px;
  margin-top: 48px;
}

.guide-intro,
.guide-copy p {
  font-size: 17px;
}

.guide-details summary strong {
  font-size: 18px;
}

.guide-details summary span,
.guide-copy p,
.astuce-box p,
.note-ribbon p,
.led-panel p {
  font-size: 16px;
}

.led-panel {
  border-radius: 18px;
}

.site-footer {
  grid-template-columns: 1.3fr 1.8fr 1fr 1.15fr 1.15fr;
  margin-top: 56px;
  padding: 42px var(--page-x);
  border-top: 1px solid rgba(202, 224, 216, 0.42);
  background:
    radial-gradient(circle at 15% 20%, rgba(36, 212, 156, 0.1), transparent 32%),
    linear-gradient(135deg, #083f39, #0b262c);
  color: #e8fff8;
  gap: 34px;
}

.footer-brand {
  color: #fff;
  font-size: 26px;
}

.site-footer p,
.site-footer a,
.site-footer address {
  color: #c7e2dc;
  font-size: 14px;
}

.site-footer nav {
  gap: 9px;
}

.site-footer address a {
  color: #fff;
}

@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    grid-template-rows: auto auto auto;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-assurance {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 3;
    min-height: 340px;
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: relative;
    height: 66px;
  }

  .hero {
    min-height: auto;
    padding: 26px 20px 40px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 22px;
  }

  .hero-copy,
  .hero-assurance,
  .hero-media,
  .hero-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero h1 {
    font-size: clamp(40px, 9vw, 54px);
  }

  .hero-copy > p:not(.medical-note) {
    font-size: 18px;
  }

  .hero-media {
    min-height: 256px;
    order: 2;
  }

  .hero-media .pets-hero {
    width: min(62vw, 260px);
  }

  .hero-assurance {
    order: 3;
    max-width: none;
  }

  .hero-visual {
    order: 4;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: -4px;
  }

  .input-card,
  .result-card {
    padding: 16px;
  }

  .upload-box {
    min-height: 116px;
  }

  .observation-rows div {
    min-height: 46px;
  }

  .step-grid,
  .report-shell,
  .pricing-grid,
  .trust-strip,
  .faq-grid,
  .guide-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .step-grid {
    gap: 16px;
  }

  .connector {
    display: none;
  }

  .trust-strip {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .bottom-cta {
    width: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-right: 20px;
    margin-left: 20px;
    padding: 28px 22px 220px;
  }

  .bottom-cta .button,
  .bottom-price {
    justify-self: stretch;
  }

  .bottom-cta img {
    right: 50%;
    bottom: -110px;
    width: 240px;
    transform: translateX(50%);
  }

  .site-footer {
    padding: 34px 20px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 23px;
  }

  .hero {
    padding-bottom: 12px;
  }

  .hero + .section {
    margin-top: 8px;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-copy > p:not(.medical-note) {
    margin-bottom: 26px;
    font-size: 17px;
  }

  .hero-actions,
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-proof-row .price-pill {
    justify-content: center;
    width: max-content;
    min-width: 172px;
  }

  .hero-proof-row > span {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(21, 111, 97, 0.08);
    color: var(--green-dark);
    font-size: 14px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .hero-media {
    min-height: 174px;
  }

  .hero-media .pets-hero {
    width: min(46vw, 166px);
  }

  .medical-note {
    margin-top: 16px;
  }

  .hero-visual {
    display: none;
  }

  .upload-box {
    min-height: 112px;
  }

  .gauge {
    width: 134px;
    height: 78px;
  }

  .gauge span {
    font-size: 34px;
  }

  .result-head {
    margin-bottom: 12px;
  }

  .attention-box {
    padding: 14px;
  }

  .section {
    margin-top: 56px;
    padding: 0 20px;
  }

  .section h2,
  .guide-section h2 {
    font-size: 34px;
  }

  .step-card {
    grid-template-columns: 58px 1fr;
    padding: 20px;
  }

  .pricing-card {
    padding: 24px;
  }

  .faq-grid summary {
    min-height: 48px;
    font-size: 15px;
  }

  .guide-section {
    padding: 0 20px;
  }

  .guide-layout {
    gap: 20px;
  }
}

/* Single tariff card */
.pricing-grid {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  max-width: 760px;
}

.pricing-card.single-plan {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0 26px;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border-color: rgba(255, 104, 79, 0.36);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 104, 79, 0.16), transparent 34%),
    linear-gradient(135deg, #fffaf2, #ffffff 62%, #f4fbf8);
  box-shadow: 0 28px 70px rgba(21, 111, 97, 0.13);
}

.pricing-card.single-plan > svg {
  grid-row: 1 / span 4;
  width: 58px;
  height: 58px;
  margin: 6px 0 0;
  padding: 13px;
  border-radius: 16px;
  background: rgba(21, 111, 97, 0.1);
  color: var(--green-dark);
}

.pricing-card.single-plan h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.pricing-card.single-plan .price {
  margin-bottom: 14px;
  color: var(--green-dark);
}

.pricing-card.single-plan .price strong {
  font-size: clamp(48px, 5vw, 64px);
}

.pricing-card.single-plan p {
  max-width: 570px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.58;
}

.pricing-card.single-plan ul {
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 26px;
}

.pricing-card.single-plan li {
  min-height: 34px;
  font-size: 15px;
  line-height: 1.45;
}

.pricing-card.single-plan .plan-button {
  grid-column: 2;
  width: min(100%, 360px);
  min-height: 54px;
  margin-top: 0;
  border-radius: 10px;
  font-size: 16px;
}

.pricing-card.single-plan .popular-badge {
  top: 18px;
  right: 22px;
  left: auto;
  min-width: 0;
  padding: 7px 15px;
  background: linear-gradient(135deg, #ff745c, #ff5c3e);
  box-shadow: 0 12px 22px rgba(255, 104, 79, 0.22);
  transform: none;
}

@media (max-width: 720px) {
  .pricing-card.single-plan {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 22px;
  }

  .pricing-card.single-plan > svg,
  .pricing-card.single-plan ul,
  .pricing-card.single-plan .plan-button {
    grid-column: auto;
  }

  .pricing-card.single-plan > svg {
    grid-row: auto;
  }

  .pricing-card.single-plan ul {
    grid-template-columns: 1fr;
  }

  .pricing-card.single-plan .popular-badge {
    position: static;
    width: max-content;
    order: -1;
  }
}
