:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #fef2f2;
  --red-mid: #fde8e8;
  --navy: #0f1c2e;
  --navy-mid: #1a2e45;
  --white: #ffffff;
  --off-white: #F9F8F6;
  --cream: #F4F1EC;
  --gray-100: #F3F4F6;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --border: #E8E4DC;
  --border-light: #F1EEE9;
  --green: #059669;
  --shadow-sm: 0 1px 3px rgba(15, 28, 46, 0.06), 0 1px 2px rgba(15, 28, 46, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 28, 46, 0.08), 0 2px 8px rgba(15, 28, 46, 0.05);
  --shadow-lg: 0 18px 48px rgba(15, 28, 46, 0.12), 0 6px 18px rgba(15, 28, 46, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.announce-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.76rem;
  padding: 9px 20px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.announce-bar span {
  color: var(--white);
  font-weight: 800;
}

.announce-bar a {
  color: #f87171;
  font-weight: 800;
  text-decoration: none;
}

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 72px;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(232, 228, 220, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-logo,
.nav-links a,
.btn-call,
.btn-book-nav,
.mobile-menu a,
.mob-book,
.mob-call,
.btn-primary,
.btn-secondary {
  text-decoration: none;
}

.nav-logo-text,
.footer-logo {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-logo-text span,
.footer-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--gray-500);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(15, 28, 46, 0.055);
}

.nav-links a.es {
  color: var(--red);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call,
.btn-book-nav,
.btn-primary,
.btn-secondary,
.mob-book,
.mob-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn-call,
.btn-secondary,
.mob-call {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
}

.btn-call {
  padding: 8px 16px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-book-nav,
.btn-primary,
.mob-book {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  box-shadow: 0 8px 18px rgba(192, 57, 43, 0.22);
}

.btn-book-nav {
  padding: 9px 20px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-primary,
.btn-secondary {
  padding: 13px 24px;
  font-size: 0.92rem;
}

.btn-primary:hover,
.btn-book-nav:hover,
.mob-book:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(192, 57, 43, 0.3);
}

.btn-secondary:hover,
.btn-call:hover,
.mob-call:hover {
  border-color: var(--navy);
  background: var(--white);
}

.hamburger {
  display: none;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 199;
  flex-direction: column;
  padding: 18px 22px 24px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 8px;
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 700;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mob-book,
.mob-call {
  padding: 12px 20px;
  text-align: center;
}

.trust-bar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
}

.trust-item strong {
  color: var(--navy);
}

.kit-hero {
  background:
    radial-gradient(circle at 74% 16%, rgba(192, 57, 43, 0.12), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbfaf8 48%, #f1eee8 100%);
  border-bottom: 1px solid var(--border);
}

.kit-hero-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 84px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid var(--red-mid);
  border-radius: 999px;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kit-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.7rem, 5.4vw, 5.1rem);
  line-height: 1.04;
  font-weight: 700;
}

.kit-hero h1 em,
.section-title em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  max-width: 690px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.hero-desc {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions,
.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
}

.proof-card {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.proof-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 0.88rem;
}

.proof-card span {
  display: block;
  color: var(--gray-500);
  font-size: 0.78rem;
  line-height: 1.45;
}

.kit-visual {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  border: 1px solid rgba(232, 228, 220, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 241, 236, 0.94)),
    var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 34px;
}

.kit-visual::before {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.1);
}

.kit-box {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.kit-label {
  width: 180px;
  height: 88px;
  margin-bottom: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(15, 28, 46, 0.08) 0 28%, transparent 28%),
    repeating-linear-gradient(180deg, transparent 0 13px, rgba(15, 28, 46, 0.08) 13px 14px);
}

.kit-rows {
  display: grid;
  gap: 12px;
}

.kit-row {
  height: 14px;
  width: var(--w);
  border-radius: 999px;
  background: rgba(15, 28, 46, 0.1);
}

.tube-rack {
  position: absolute;
  right: 30px;
  top: 36px;
  display: flex;
  gap: 9px;
  align-items: end;
}

.tube {
  width: 22px;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #f8fafc 0 18%, #eef2f7 18% 100%);
  border: 1px solid rgba(15, 28, 46, 0.14);
  box-shadow: inset 0 -10px 0 rgba(192, 57, 43, 0.08);
}

.specimen-bag {
  margin-top: 30px;
  min-height: 150px;
  border-radius: 20px;
  border: 1px dashed rgba(192, 57, 43, 0.28);
  background: rgba(254, 242, 242, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  color: var(--gray-500);
  font-weight: 700;
  line-height: 1.5;
}

.visual-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--gray-500);
  font-size: 0.84rem;
  line-height: 1.6;
}

.section {
  padding: 76px 0;
}

.section.white {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.split {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.12;
}

.section-copy,
.section-head p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.reassurance-panel,
.pricing-panel,
.notes-panel {
  padding: 32px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.reassurance-panel h3,
.pricing-panel h3,
.notes-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.05rem;
}

.reassurance-panel p,
.pricing-panel p,
.notes-panel p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.75;
}

.kit-types-grid,
.ideal-grid,
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kit-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.type-card,
.ideal-card,
.area-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.type-card h3,
.ideal-card h3,
.kit-example-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.98rem;
}

.type-card p,
.ideal-card p,
.area-card p,
.kit-example-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.87rem;
  line-height: 1.65;
}

.kit-example-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.kit-example-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--gray-700);
  font-size: 0.86rem;
  line-height: 1.65;
}

.kit-example-card li + li {
  margin-top: 3px;
}

.brand-note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--cream);
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 0.92rem;
}

.section-link-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section-link-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.section-link-row a:first-child {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.section-link-row.compact {
  margin-top: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  color: var(--navy);
}

.step-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.84rem;
  line-height: 1.6;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.check-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--green);
  font-weight: 900;
}

.check-item span:last-child {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.price-main {
  padding: 34px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.price-main small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-main h2 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.1;
}

.price-number {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 18px;
}

.price-number strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.95;
}

.price-number span {
  padding-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.addon-line {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.price-main .btn-primary {
  width: 100%;
  margin-top: 20px;
}

.pricing-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notes-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.notes-list li {
  position: relative;
  padding-left: 22px;
  color: var(--gray-700);
  line-height: 1.65;
}

.notes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
}

.area-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--gray-500);
  line-height: 1.75;
}

.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta .section-title {
  color: var(--white);
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.final-cta .cta-note {
  margin-top: -12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.final-actions {
  justify-content: center;
}

footer {
  background: #07101C;
  color: rgba(255, 255, 255, 0.54);
  padding: 68px 80px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 42px;
  margin-bottom: 52px;
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-desc {
  max-width: 256px;
  margin: 0 0 22px;
  font-size: 0.8rem;
  line-height: 1.85;
}

.footer-contact {
  margin-bottom: 7px;
  font-size: 0.79rem;
}

.footer-contact a,
.footer-col a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-col a:hover {
  color: var(--white);
}

.footer-col h4 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.79rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28), 0 4px 12px rgba(15, 28, 46, 0.16);
  font-weight: 800;
  font-size: 0.88rem;
}

.wa-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  nav {
    padding: 0 28px;
  }

  .kit-hero-inner,
  .reassurance-grid,
  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .kit-visual {
    min-height: 460px;
  }

  .kit-types-grid,
  .kit-example-grid,
  .ideal-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  footer {
    padding: 56px 48px 28px;
  }
}

@media (max-width: 900px) {
  nav {
    height: 68px;
    padding: 0 20px;
  }

  .nav-links,
  .btn-call,
  .btn-book-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    top: 68px;
  }

  .trust-bar-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .kit-hero-inner {
    padding: 58px 0 54px;
  }

  .hero-proof,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container,
  .kit-hero-inner {
    width: calc(100% - 36px);
  }

  .kit-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .final-actions a {
    width: 100%;
  }

  .hero-proof,
  .kit-types-grid,
  .kit-example-grid,
  .ideal-grid,
  .area-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-link-row {
    flex-direction: column;
  }

  .section-link-row a {
    width: 100%;
  }

  .kit-visual {
    min-height: 390px;
    padding: 22px;
  }

  .tube-rack {
    right: 20px;
    top: 28px;
  }

  .kit-label {
    width: 145px;
  }

  .section {
    padding: 52px 0;
  }

  .reassurance-panel,
  .pricing-panel,
  .notes-panel,
  .price-main {
    padding: 24px;
  }

  .price-number strong {
    font-size: 3.5rem;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wa-float {
    right: 14px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    min-height: 46px;
    justify-content: center;
    padding: 11px;
  }

  .wa-label {
    display: none;
  }
}
