:root {
  --navy: #0b1f33;
  --navy-2: #082844;
  --teal: #0e7c86;
  --teal-2: #0aa6ad;
  --green: #8ac6a3;
  --orange: #f28c28;
  --paper: #f7fafc;
  --white: #ffffff;
  --text: #102033;
  --muted: #5b677a;
  --line: #dfe8ef;
  --shadow: 0 18px 45px rgba(11, 31, 51, .12);
  --soft-shadow: 0 10px 28px rgba(11, 31, 51, .08);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(242, 140, 40, .55); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #061b2e, var(--navy));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.nav-wrap {
  max-width: var(--max);
  min-height: 70px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.45rem; letter-spacing: 0; }
.brand-mark { width: 38px; height: 38px; flex: 0 0 38px; }
.brand span span { color: var(--teal-2); }
.main-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; font-size: .9rem; font-weight: 700; }
.main-nav a { opacity: .92; padding: 24px 0 20px; border-bottom: 3px solid transparent; }
.main-nav a[aria-current="page"], .main-nav a:hover { color: #c6fbff; border-color: var(--teal-2); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: 6px; }
.langs { font-size: .84rem; font-weight: 800; color: #dceaf2; white-space: nowrap; }
.langs a { padding: 4px; }
.langs a[aria-current="true"] { color: var(--white); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); color: var(--white); background: transparent; border-radius: var(--radius); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 19px; height: 2px; margin: 5px auto; background: currentColor; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--teal), #07939c); color: var(--white); box-shadow: 0 12px 26px rgba(14, 124, 134, .28); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 12px 26px rgba(242, 140, 40, .28); }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--line); box-shadow: var(--soft-shadow); }
.btn-outline { color: var(--navy); background: rgba(255,255,255,.75); border-color: rgba(14, 124, 134, .45); }
.icon { width: 20px; height: 20px; flex: 0 0 20px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247,250,252,.98) 0%, rgba(247,250,252,.9) 42%, rgba(230,241,246,.82) 100%);
  min-height: 520px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 4% 10% auto;
  width: 260px;
  height: 140px;
  border: 1px solid rgba(198, 251, 255, .48);
  border-radius: var(--radius);
  background: rgba(8, 40, 68, .32);
  box-shadow: inset 0 0 30px rgba(10, 166, 173, .25);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 22px 92px;
}
.hero-copy { max-width: 620px; }
.kicker { color: var(--teal); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; margin: 0 0 12px; }
h1, h2, h3 { font-family: Manrope, "Inter Tight", Inter, sans-serif; line-height: 1.08; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(2.45rem, 6vw, 4.75rem); color: var(--navy); max-width: 760px; }
h2 { font-size: clamp(1.85rem, 3.4vw, 3rem); color: var(--navy); }
h3 { font-size: 1.2rem; color: var(--navy); }
.lead { font-size: clamp(1.02rem, 1.7vw, 1.25rem); color: var(--text); max-width: 560px; margin: 20px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.trust-row {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: -34px auto 0;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-pill { min-height: 48px; display: flex; align-items: center; gap: 10px; justify-content: center; font-weight: 850; color: var(--navy); }

.section { padding: 70px 0; }
.section-tight { padding: 46px 0; }
.section-white { background: var(--white); }
.section-blue { background: linear-gradient(135deg, #e9f7f8, #f7fafc); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-head p { margin: 10px 0 0; color: var(--muted); max-width: 720px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--soft-shadow);
}
.test-card { min-height: 170px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.badge-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
}
.badge-icon.orange { background: var(--orange); }
.badge-icon.green { background: #4aa361; }
.accent-line { width: 56px; height: 3px; border-radius: 3px; background: currentColor; margin-top: 18px; }
.muted { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.check-list li::before { content: "✓"; color: #3e9a57; font-weight: 900; }

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.compare-panel {
  min-height: 160px;
  background: linear-gradient(135deg, #f6f9fc, #eef4f8);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
}
.compare-panel.fur { background: linear-gradient(135deg, #f3faf5, #eaf6ed); }
.vs { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; border: 1px solid #9fb6c8; font-weight: 900; background: var(--white); color: var(--navy); }
.timeline { height: 2px; background: repeating-linear-gradient(90deg, #bb2c2c 0 9px, transparent 9px 22px); margin: 16px auto 8px; max-width: 170px; position: relative; }
.fur .timeline { background: repeating-linear-gradient(90deg, #438e54 0 9px, transparent 9px 22px); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 14px; align-items: start; position: relative; }
.step:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 28px; width: 20px; height: 2px; background: var(--line); }
.step-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--white); border: 1px solid var(--line); box-shadow: var(--soft-shadow); color: var(--navy); }
.metric-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.metric { text-align: center; padding: 18px 12px; }
.metric .icon { margin: 0 auto 10px; color: var(--teal); width: 30px; height: 30px; }

.report-mock {
  background: #0c1521;
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}
.report-sheet {
  min-height: 330px;
  background: var(--white);
  border-radius: 5px;
  padding: 22px;
  overflow: hidden;
}
.report-top { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 16px; }
.chart { height: 94px; display: flex; align-items: end; gap: 10px; padding: 12px; background: #f4f8fb; border: 1px solid var(--line); border-radius: 6px; }
.bar { flex: 1; background: linear-gradient(180deg, #85c99d, #0e7c86); border-radius: 4px 4px 0 0; min-height: 18px; }
.score { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(#4aa361 0 70%, #f0b456 70% 87%, #e4edf2 87%); margin: 10px auto; }
.score span { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: var(--white); font-weight: 900; color: #3e9a57; }
.mini-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.mini-table th, .mini-table td { border-bottom: 1px solid var(--line); padding: 8px; text-align: left; }

.b2b-band { display: grid; grid-template-columns: 90px 1fr auto; gap: 26px; align-items: center; }
.globe { width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; border: 2px solid rgba(14,124,134,.35); color: var(--teal); }

.page-hero {
  background: linear-gradient(135deg, #082844, #0b1f33 60%, #0e5963);
  color: var(--white);
  padding: 72px 0;
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: #d8e7ef; }
.panel-list { display: grid; gap: 18px; }
.panel-row {
  display: grid;
  grid-template-columns: minmax(250px, 330px) 1fr auto;
  gap: 26px;
  align-items: stretch;
  padding: 26px;
}
.panel-row > div:first-child {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(10, 166, 173, .12), transparent 9rem),
    linear-gradient(135deg, #edf8fa, #f8fcfd);
  border: 1px solid rgba(14, 124, 134, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 14px 30px rgba(11,31,51,.06);
}
.panel-row > div:first-child h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.1;
}
.panel-row > p {
  align-self: center;
  margin: 0;
  padding-left: 4px;
}
.panel-row > .btn {
  align-self: center;
}
.status { display: inline-flex; align-items: center; justify-content: center; min-width: 118px; padding: 9px 14px; border-radius: 999px; font-weight: 900; font-size: .82rem; background: #dff4e6; color: #236335; box-shadow: inset 0 1px 0 rgba(255,255,255,.75); }
.status.soon { background: #fff3e7; color: #9a510d; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; color: var(--navy); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 14px; background: var(--white); color: var(--text); }
.field textarea { min-height: 160px; resize: vertical; }

.site-footer { background: linear-gradient(135deg, #061b2e, var(--navy)); color: var(--white); padding: 42px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap: 32px; }
.site-footer p, .site-footer a { color: #d8e7ef; }
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.lab-badge { width: 112px; height: 112px; border: 2px solid rgba(255,255,255,.75); border-radius: 50%; display: grid; place-items: center; text-align: center; font-weight: 900; line-height: 1.05; margin-left: auto; }
.copyright { border-top: 1px solid rgba(255,255,255,.14); margin-top: 28px; padding-top: 18px; text-align: center; color: #c8dae5; font-size: .88rem; }

@media (max-width: 1020px) {
  .main-nav { position: absolute; left: 0; right: 0; top: 70px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 18px; background: var(--navy); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .header-actions { margin-left: 0; }
  .trust-row, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .b2b-band { grid-template-columns: 70px 1fr; }
  .b2b-band .hero-actions { grid-column: 1 / -1; margin-top: 0; }
}
@media (max-width: 720px) {
  .nav-wrap { min-height: 64px; padding: 0 16px; gap: 10px; }
  .brand { font-size: 1.2rem; }
  .header-actions .btn { display: none; }
  .langs { font-size: .78rem; }
  .main-nav { top: 64px; padding-inline: 16px; }
  .hero { min-height: auto; background: linear-gradient(180deg, rgba(247,250,252,.98), rgba(235,246,248,.94)); }
  .hero::after { display: none; }
  .hero-inner { padding: 54px 16px 82px; }
  .container { padding: 0 16px; }
  .trust-row { margin: -26px 16px 0; grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .section-head, .grid-2, .comparison, .panel-row, .footer-grid { grid-template-columns: 1fr; display: grid; }
  .grid-3, .grid-4, .steps, .metric-grid, .form-grid { grid-template-columns: 1fr; }
  .test-card { grid-template-columns: 1fr; }
  .vs { margin: 0 auto; }
  .b2b-band { grid-template-columns: 1fr; text-align: left; }
  .lab-badge { margin-left: 0; }
}

/* Premium homepage layer */
:root {
  --radius: 22px;
  --radius-lg: 28px;
  --shadow: 0 28px 70px rgba(11, 31, 51, .14);
  --soft-shadow: 0 18px 45px rgba(11, 31, 51, .09);
  --hairline: rgba(127, 156, 174, .24);
}

body {
  background:
    radial-gradient(circle at 12% 2%, rgba(10, 166, 173, .08), transparent 32rem),
    linear-gradient(180deg, #fbfdfe 0%, var(--paper) 52%, #eef7f8 100%);
}

.site-header {
  background: rgba(7, 27, 46, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 34px rgba(4, 18, 31, .24);
  backdrop-filter: blur(18px);
}

.nav-wrap { max-width: 1240px; }
.brand { letter-spacing: -.01em; }
.main-nav { gap: 18px; }
.main-nav a { font-size: .86rem; }

.btn {
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 12px;
  letter-spacing: -.01em;
  box-shadow: 0 1px 0 rgba(255,255,255,.32) inset;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #096f78, var(--teal-2)); box-shadow: 0 18px 34px rgba(14, 124, 134, .27); }
.btn-orange { background: linear-gradient(135deg, var(--orange), #ff9f42); box-shadow: 0 18px 34px rgba(242, 140, 40, .26); }
.btn-light { border-color: rgba(148, 168, 184, .35); box-shadow: 0 18px 34px rgba(11, 31, 51, .12); }
.icon, .icon-lg, .step-icon svg, .badge-icon svg, .globe svg, .compare-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-lg { width: 30px; height: 30px; }

.hero-premium {
  min-height: 680px;
  background:
    linear-gradient(120deg, rgba(247,250,252,.98) 0%, rgba(247,250,252,.96) 38%, rgba(225,239,245,.8) 61%, rgba(10,80,96,.34) 100%),
    radial-gradient(circle at 77% 26%, rgba(10, 166, 173, .2), transparent 28rem),
    linear-gradient(135deg, #edf6f8, #f7fafc);
}
.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,124,134,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,124,134,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
  opacity: .62;
}
.hero-premium::after { display: none; }
.hero-premium .hero-inner {
  max-width: 1240px;
  min-height: 680px;
  padding: 74px 22px 102px;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 38px;
}
.hero-copy {
  max-width: 600px;
  padding: 10px 0 18px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #096f78;
  background: rgba(14, 124, 134, .1);
  border: 1px solid rgba(14, 124, 134, .18);
  letter-spacing: .075em;
}
h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -.035em;
}
h2 { letter-spacing: -.028em; }
h3 { letter-spacing: -.015em; }
.lead {
  color: #26384b;
  font-size: clamp(1.06rem, 1.45vw, 1.24rem);
  line-height: 1.62;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px 28px 38px 26px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 68% 16%, rgba(255,255,255,.92), transparent 12rem),
    linear-gradient(145deg, rgba(255,255,255,.42), rgba(182,215,225,.32));
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 34px 90px rgba(11,31,51,.18);
  z-index: -2;
}
.lab-orbit {
  position: absolute;
  inset: 18px 42px 24px 34px;
  border-radius: 42px;
  background:
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,.42)),
    repeating-linear-gradient(90deg, rgba(14,124,134,.1) 0 1px, transparent 1px 28px);
  border: 1px solid rgba(14,124,134,.13);
  z-index: -3;
}
.animal-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 26px 58px rgba(11,31,51,.18);
}
.animal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.animal-dog { width: 42%; height: 58%; left: 29%; top: 14%; z-index: 3; }
.animal-horse { width: 39%; height: 64%; right: 0; top: 3%; z-index: 2; }
.animal-cat { width: 32%; height: 42%; left: 8%; bottom: 12%; z-index: 4; }
.glass-panel {
  position: absolute;
  color: #d9fbff;
  border: 1px solid rgba(255,255,255,.42);
  background: linear-gradient(135deg, rgba(8,40,68,.64), rgba(14,124,134,.36));
  box-shadow: 0 18px 44px rgba(6, 28, 48, .2);
  backdrop-filter: blur(16px);
  border-radius: 20px;
}
.glass-panel span {
  display: block;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.spectrum-panel {
  width: 230px;
  right: 26px;
  top: 78px;
  padding: 14px 16px 10px;
  z-index: 5;
}
.spectrum-panel svg { color: #9cf5ff; width: 100%; margin-top: 8px; }
.molecule-panel {
  width: 160px;
  left: 22px;
  top: 74px;
  padding: 16px;
  color: #a7f2f4;
  opacity: .92;
}
.result-panel {
  right: 82px;
  bottom: 48px;
  width: 210px;
  padding: 14px;
  z-index: 6;
}
.micro-bars {
  height: 74px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 12px;
}
.micro-bars i {
  flex: 1;
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #bdf7ce, #0aa6ad);
}

/* Hero animal composition v2: no exported collage, only live image cards */
.hero-visual {
  min-height: 590px;
  perspective: 1200px;
}
.hero-visual::before {
  inset: 58px 20px 48px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .96), transparent 12rem),
    radial-gradient(circle at 28% 76%, rgba(138, 198, 163, .18), transparent 14rem),
    linear-gradient(145deg, rgba(255,255,255,.58), rgba(214,232,239,.42));
  box-shadow: 0 28px 90px rgba(46, 84, 110, .16);
}
.lab-orbit {
  inset: 24px 26px 28px 18px;
  border-radius: 38px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.18), rgba(255,255,255,.44)),
    radial-gradient(circle at 82% 18%, rgba(10,166,173,.13), transparent 16rem),
    repeating-linear-gradient(90deg, rgba(14,124,134,.07) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(14,124,134,.05) 0 1px, transparent 1px 32px);
}
.animal-card {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.86);
  background: linear-gradient(180deg, #ffffff, #eef7f9);
  box-shadow:
    0 24px 58px rgba(65, 99, 120, .13),
    0 8px 18px rgba(65, 99, 120, .06),
    inset 0 1px 0 rgba(255,255,255,.92);
  transform-origin: center;
}
.animal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.28), transparent 18rem);
  pointer-events: none;
}
.animal-card img {
  filter: saturate(1.02) contrast(1.02);
}
.animal-dog {
  width: 36%;
  height: 58%;
  left: 33%;
  top: 18%;
  z-index: 5;
  transform: translateZ(24px);
}
.animal-dog img { object-position: center 46%; }
.animal-cat {
  width: 29%;
  height: 45%;
  left: 7%;
  top: 30%;
  z-index: 4;
  transform: translateZ(18px) rotate(-1deg);
}
.animal-cat img { object-position: center 44%; }
.animal-horse {
  width: 30%;
  height: 52%;
  right: 7%;
  top: 24%;
  z-index: 3;
  transform: translateZ(10px) rotate(1deg);
}
.animal-horse img { object-position: 58% 45%; }
.spectrum-panel {
  right: 18px;
  top: 24px;
  z-index: 6;
  box-shadow: 0 18px 44px rgba(17, 72, 92, .12);
}
.molecule-panel {
  left: 28px;
  top: 72px;
  z-index: 2;
  opacity: .58;
  box-shadow: 0 18px 42px rgba(17, 72, 92, .12);
}
.result-panel {
  right: 58px;
  bottom: 70px;
  z-index: 6;
  box-shadow: 0 18px 44px rgba(17, 72, 92, .12);
}
.glass-panel {
  border-color: rgba(255,255,255,.62);
  background:
    linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,.18)),
    linear-gradient(135deg, rgba(8,40,68,.38), rgba(14,124,134,.2));
  color: #d8fbff;
}
.spectrum-panel,
.result-panel {
  width: 198px;
  border-radius: 18px;
  padding: 12px 14px;
}
.spectrum-panel span,
.result-panel span {
  font-size: .68rem;
  letter-spacing: .075em;
  color: #f7ffff;
}
.spectrum-panel svg {
  margin-top: 6px;
  opacity: .9;
}
.result-panel .micro-bars {
  height: 54px;
  margin-top: 10px;
  gap: 8px;
}
.result-panel .micro-bars i {
  border-radius: 7px 7px 2px 2px;
  opacity: .92;
}

.animal-cluster {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.animal-cluster .animal-card {
  position: absolute;
  margin: 0;
}
.animal-card--dog {
  width: 32%;
  height: 52%;
  left: 34%;
  top: 22%;
  z-index: 5;
  transform: translateZ(18px);
}
.animal-card--dog img { object-position: center 46%; }
.animal-card--cat {
  width: 29%;
  height: 44%;
  left: 3%;
  top: 29%;
  z-index: 4;
  transform: translateZ(8px);
}
.animal-card--cat img { object-position: center 44%; }
.animal-card--horse {
  width: 29%;
  height: 44%;
  right: 3%;
  top: 29%;
  z-index: 3;
  transform: translateZ(8px);
}
.animal-card--horse img { object-position: 50% 45%; }

.hero-animal-stage .spectrum-panel,
.hero-animal-stage .result-panel,
.hero-animal-stage .molecule-panel {
  display: none;
}

.hero-animal-stage .animal-card--dog {
  top: 21%;
}
.hero-animal-stage .animal-card--cat,
.hero-animal-stage .animal-card--horse {
  top: 30%;
}

.trust-row {
  max-width: 1000px;
  margin-top: -42px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 24px 58px rgba(11,31,51,.14);
  backdrop-filter: blur(18px);
}
.trust-pill {
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f6fbfc);
  border: 1px solid rgba(223,232,239,.8);
}
.trust-pill .icon { color: var(--teal); }

.section { padding: 86px 0; }
.section-white {
  background:
    radial-gradient(circle at 88% 8%, rgba(138,198,163,.13), transparent 25rem),
    #fff;
}
.section-blue {
  background:
    radial-gradient(circle at 12% 40%, rgba(14,124,134,.16), transparent 20rem),
    linear-gradient(135deg, #e6f5f7, #f7fafc 62%);
}
.container { max-width: 1240px; }
.grid-3 { gap: 22px; }
.grid-2 { gap: 54px; }
.card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,253,254,.95));
  border: 1px solid rgba(210, 224, 233, .84);
  box-shadow: var(--soft-shadow);
}
.premium-test-card {
  min-height: 210px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.premium-test-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -52% 24%;
  height: 160px;
  background: radial-gradient(circle, rgba(10,166,173,.16), transparent 68%);
}
.premium-test-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14,124,134,.28);
  box-shadow: 0 28px 64px rgba(11,31,51,.14);
}
.badge-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #0c7f89, #0aa6ad);
  box-shadow: 0 16px 30px rgba(14,124,134,.22);
}
.badge-icon.orange { background: linear-gradient(135deg, #ef8220, #ffab55); }
.badge-icon.green { background: linear-gradient(135deg, #3f9b56, #8ac6a3); }
.accent-line { width: 66px; height: 4px; margin-top: 22px; }

.premium-comparison {
  gap: 18px;
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fbfd, #edf6f7);
  border: 1px solid rgba(210,224,233,.78);
}
.compare-panel {
  min-height: 220px;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(11,31,51,.07);
}
.compare-panel.fur { background: linear-gradient(135deg, #f4fbf6, #e8f6ed); }
.compare-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(11,31,51,.08);
}
.compare-icon svg { width: 28px; height: 28px; }
.compare-icon.blood { color: #c34034; }
.compare-icon.fur-icon { color: #3f8d53; }
.vs { width: 66px; height: 66px; box-shadow: 0 16px 34px rgba(11,31,51,.11); }
.timeline { height: 4px; border-radius: 999px; }

.premium-steps {
  position: relative;
  gap: 24px;
}
.premium-steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,124,134,.28), transparent);
}
.step {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 0 12px;
}
.step:not(:last-child)::after { display: none; }
.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 22px;
  color: var(--teal);
  background: linear-gradient(180deg, #fff, #f4fafb);
  box-shadow: 0 18px 36px rgba(11,31,51,.1);
  position: relative;
  z-index: 1;
}
.step-icon svg { width: 30px; height: 30px; }

.metric-grid { gap: 16px; }
.metric {
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fbfc);
}
.metric strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.report-section {
  background:
    radial-gradient(circle at 20% 16%, rgba(14,124,134,.08), transparent 26rem),
    linear-gradient(180deg, #f7fafc, #fff);
}
.report-mock-premium {
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(145deg, #091a2b, #102f4d);
  box-shadow: 0 34px 80px rgba(11,31,51,.22);
}
.report-mock-premium .report-sheet {
  min-height: 485px;
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
}
.report-top {
  align-items: center;
  color: var(--navy);
}
.report-top strong { font-size: 1.15rem; }
.report-top span { color: var(--muted); font-weight: 800; }
.report-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}
.report-meta span {
  padding: 8px 10px;
  border-radius: 10px;
  background: #eef6f8;
  color: #2d4458;
  font-size: .78rem;
  font-weight: 800;
}
.report-dashboard {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.score-card, .chart-card, .report-notes > div {
  border: 1px solid rgba(210,224,233,.9);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}
.score { width: 100px; height: 100px; }
.score span { width: 66px; height: 66px; font-size: .86rem; }
.score-card { text-align: center; }
.chart-card strong { display: block; margin-bottom: 8px; }
.chart { height: 112px; border-radius: 14px; background: linear-gradient(180deg, #f6fafc, #eef6f8); }
.bar.low { background: linear-gradient(180deg, #f6c36a, #f28c28); }
.bar.high { background: linear-gradient(180deg, #7ad18f, #0e7c86); }
.chart-labels { display: grid; grid-template-columns: repeat(6, 1fr); color: var(--muted); font-size: .72rem; text-align: center; margin-top: 5px; }
.report-table { background: #fff; border-radius: 14px; overflow: hidden; }
.report-table th {
  background: #eef6f8;
  color: #2d4458;
  font-size: .72rem;
  text-transform: uppercase;
}
.tag {
  display: inline-flex;
  min-width: 62px;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}
.tag.optimal { color: #2e7a42; background: #e9f7ed; }
.tag.high { color: #9a510d; background: #fff1df; }
.tag.alert { color: #9d2f27; background: #fdebea; }
.report-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.report-notes p { margin: 6px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }

.b2b-band {
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 22px 54px rgba(11,31,51,.1);
}
.globe {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11,31,51,.1);
}

.site-footer {
  padding-top: 56px;
  background:
    radial-gradient(circle at 82% 16%, rgba(10,166,173,.22), transparent 20rem),
    linear-gradient(135deg, #061b2e, #0b1f33 62%, #07364a);
}
.lab-badge {
  width: 132px;
  height: 132px;
  border-color: rgba(167,242,244,.86);
  box-shadow: inset 0 0 28px rgba(10,166,173,.16);
}

@media (max-width: 1080px) {
  .hero-premium .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 520px; }
}

@media (max-width: 720px) {
  .hero-premium {
    background:
      linear-gradient(180deg, rgba(247,250,252,.98), rgba(238,247,248,.95)),
      linear-gradient(135deg, #edf6f8, #f7fafc);
  }
  .hero-premium .hero-inner {
    padding: 46px 16px 78px;
    gap: 24px;
  }
  .kicker { font-size: .68rem; line-height: 1.35; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.15rem); }
  .hero-visual {
    min-height: 470px;
    margin-inline: -6px;
  }
  .hero-visual::before { inset: 32px 8px 34px; border-radius: 28px; }
  .animal-card { border-radius: 24px; }
  .animal-dog,
  .animal-horse,
  .animal-cat { width: auto; height: auto; left: auto; right: auto; top: auto; bottom: auto; }
  .animal-card--dog { width: 36%; height: 42%; left: 32%; top: 28%; }
  .animal-card--horse { width: 29%; height: 34%; right: 3%; top: 34%; }
  .animal-card--cat { width: 29%; height: 34%; left: 3%; top: 34%; }
  .spectrum-panel { width: 148px; right: 10px; top: 24px; padding: 10px 11px; }
  .molecule-panel { width: 104px; left: 12px; top: 54px; opacity: .62; }
  .result-panel { width: 138px; right: 18px; bottom: 42px; padding: 10px 11px; }
  .result-panel .micro-bars { height: 46px; gap: 6px; }
  .trust-row { border-radius: 18px; }
  .trust-pill { justify-content: center; }
  .premium-steps::before { display: none; }
  .report-dashboard, .report-meta, .report-notes { grid-template-columns: 1fr; }
  .report-mock-premium .report-sheet { padding: 14px; }
  .report-table { font-size: .72rem; }
  .report-table th, .report-table td { padding: 7px 5px; }
  .b2b-band { padding: 22px; }
}


/* v13: keep premium hero balanced on desktop/tablet and add safe page photo bands */
@media (min-width: 861px) and (max-width: 1080px) {
  .hero-premium .hero-inner {
    grid-template-columns: minmax(330px, .9fr) minmax(390px, 1.1fr) !important;
    gap: 24px;
    padding: 64px 22px 90px;
  }
  .hero-copy { max-width: 100%; }
  .hero-premium h1 { font-size: clamp(2.65rem, 4.7vw, 4rem); }
  .hero-visual { min-height: 500px !important; }
}
@media (max-width: 860px) {
  .hero-premium .hero-inner { grid-template-columns: 1fr !important; }
}
.fa-page-photos {
  padding: 34px 0 0;
  background: linear-gradient(180deg, rgba(245,250,252,.98), rgba(245,250,252,0));
}
.fa-page-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.fa-page-photo {
  margin: 0;
  min-height: 245px;
  border-radius: 30px;
  overflow: hidden;
  background: #e8f1f4;
  box-shadow: 0 24px 55px rgba(13,20,43,.13);
  border: 1px solid rgba(12,43,62,.10);
}
.fa-page-photo img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  display: block;
}
.fa-page-photo--dog img { object-position: center 46%; }
.fa-page-photo--cat img { object-position: center 44%; }
.fa-page-photo--horse img { object-position: 50% 45%; }
.furanalysis-elementor-main {
  background: #fff;
  min-height: 60vh;
}
.furanalysis-elementor-main .elementor-section,
.furanalysis-elementor-main .elementor-container,
.furanalysis-elementor-main .e-con {
  max-width: none;
}
.furanalysis-elementor-blank-template { margin: 0; background: #fff; }
.site-footer a { color: inherit; }
@media (max-width: 760px) {
  .fa-page-photos__grid { grid-template-columns: 1fr; }
  .fa-page-photo, .fa-page-photo img { min-height: 220px; }
}

/* v19 direct photo CSS also injected inline */
