@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --blue: #7cbbf2;
  --blue-deep: #5594cc;
  --blue-soft: #eef9ff;
  --orange: #fea23a;
  --ink-2: #1f2d3a;
  --ink: #3f4f5d;
  --text: #3f4f5d;
  --muted: #70808f;
  --line: rgba(31, 45, 58, 0.12);
  --line-soft: #3f4f5d;
  --beige: #f4ede3;
  --beige-deep: #e9dfd1;
  --surface: #ffffff;
  --surface-alt: #fafaf8;
  --footer: #16212a;
  --container: 1320px;
  --container-narrow: 920px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(31, 45, 58, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

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

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

button,
input,
textarea,
select {
  font-family: "Manrope", Arial, sans-serif;
  font: inherit;
}

.site-shell {
  overflow-x: clip;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container,
.container-wide,
.container-narrow {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, 1460px);
}

.container-narrow {
  width: min(100% - 48px, var(--container-narrow));
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title,
.page-title,
.hero-title,
.split-title,
.legal-title,
.trust-number {
  margin: 0;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 0.98;
}

.section-copy,
.hero-copy,
.intro-copy,
.legal-copy,
.contact-copy {
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn,
.btn-ghost,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
  cursor: pointer;
}

.btn {
  background: var(--blue);
  color: #fff;
}

.btn:hover,
.btn:focus-visible {
  background: var(--orange);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 45, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-size: 1.2rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(31, 45, 58, 0.12);
  background: linear-gradient(
    135deg,
    rgba(244, 123, 32, 0.12),
    rgba(124, 203, 242, 0.18)
  );
  color: var(--blue);
}

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

.brand-word .meds {
  color: var(--orange);
}

.brand-word .connect {
  color: var(--blue);
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  flex: 0 0 34px;
}
.hero-title-accent {
  color: #7cbbf2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.mobile-toggle svg {
  width: 18px;
  height: 18px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(31, 45, 58, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 14px;
  padding: 18px 0 24px;
}

.mobile-menu-inner a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(570px, calc(78vh - 74px), 720px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(124, 187, 242, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 82%,
      rgba(254, 162, 58, 0.13),
      transparent 27%
    ),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 54%, #edf7fd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -170px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(124, 187, 242, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(570px, calc(78vh - 74px), 720px);
  padding-bottom: 54px;
}
.hero-copy-panel {
  width: min(100%, 700px);
  padding: 60px 0 90px;
}

.hero-title {
  max-width: 680px;
  font-size: clamp(2.8rem, 5vw, 5.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy {
  max-width: 570px;
  margin-top: 28px;
  font-size: 1.1rem;
}

.hero .button-row {
  margin-top: 34px;
}

.hero .btn-light {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(31, 45, 58, 0.08);
  box-shadow: 0 10px 28px rgba(31, 45, 58, 0.06);
  backdrop-filter: blur(10px);
}

.hero .utility-bar {
  max-width: 690px;
}

.hero > .hero-product-rotator {
  position: absolute;
  top: calc(50% - 27px);
  right: max(32px, calc((100vw - 1460px) / 2 + 64px));
  bottom: auto;
  z-index: 3;
  width: clamp(270px, 25vw, 410px);
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-product-rotator__stage {
  position: absolute;
  inset: -32px;
  overflow: hidden;
}

.hero-product-slide {
  position: absolute;
  inset: 32px;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  transform: translate3d(0, 115%, 0);
  transition:
    transform 0.72s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.42s ease;
  will-change: transform, opacity;
}

.hero-product-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-product-slide.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 115%, 0);
}

.hero-product-slide img {
  width: 88%;
  height: 88%;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 10px 14px rgba(31, 45, 58, 0.15))
    drop-shadow(0 2px 4px rgba(31, 45, 58, 0.08));
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}

.intro-copy {
  max-width: 820px;
  margin-top: 18px;
}

.intro-side {
  display: grid;
  gap: 28px;
  align-self: stretch;
}

.intro-kicker {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.metric-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.metric-item strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.metric-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.feature-band article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.feature-band h3,
.service-item h3,
.process-card h3,
.faq-card h3,
.legal-card h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.feature-band p,
.service-item p,
.process-card p,
.faq-card p,
.legal-card p,
.contact-list p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.8;
}

.panel-bg {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.panel-bg::before {
  content: "";
  position: absolute;
  inset: 0;
}

.panel-bg > * {
  position: relative;
  z-index: 1;
}

.services-section,
.about-section {
  background-image: url("../images/services-bg.webp");
}

.services-section::before,
.about-section::before {
  background: rgba(247, 240, 231, 0.507);
}

.about-section__action {
  display: flex;
  align-self: center;
  justify-content: flex-end;
}

.about-section__action .btn-ghost {
  min-width: 210px;
  min-height: 52px;
  border-color: rgba(31, 45, 58, 0.28);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.about-section__action .btn-ghost span {
  transition: transform 0.25s ease;
}

.about-section__action .btn-ghost:hover,
.about-section__action .btn-ghost:focus-visible {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.about-section__action .btn-ghost:hover span,
.about-section__action .btn-ghost:focus-visible span {
  transform: translateX(4px);
}

.services-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.split-title {
  font-size: clamp(2.6rem, 4.5vw, 5.2rem);
  line-height: 0.95;
}

.split-copy {
  margin-top: 24px;
  max-width: 480px;
  color: #4d5b67;
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 26px;
}

.service-item {
  padding-top: 20px;
  border-top: 1px solid rgba(80, 66, 53, 0.16);
}

.service-item h3 {
  font-size: 1.08rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.process-card {
  min-height: 260px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.process-step {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section {
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.contact-list strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(31, 45, 58, 0.14);
  border-radius: 6px;
  background: #fff;
  padding: 15px 16px;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 28px;
}

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

.footer .brand {
  color: #fff;
}

.footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.page-hero {
  padding: 88px 0 56px;
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}

.legal-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(124, 187, 242, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 82%,
      rgba(254, 162, 58, 0.13),
      transparent 27%
    ),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 54%, #edf7fd 100%);
}

.legal-page-hero::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(124, 187, 242, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.legal-page-hero > .container-narrow {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  max-width: 820px;
}

.page-intro {
  max-width: 720px;
  margin-top: 20px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legal-section {
  padding: 28px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 6px;
}

.legal-nav h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-nav a:hover {
  color: var(--blue);
}

.legal-content {
  display: grid;
  gap: 38px;
}

.legal-card {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.legal-card p,
.legal-card li {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
}

.legal-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.legal-note {
  margin-top: 16px;
  padding: 16px 18px;
  background: #f7fafc;
  border-left: 3px solid var(--blue);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.utility-bar {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.utility-bar span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--orange);
  vertical-align: middle;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
  background: var(--ink-2);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  animation: heroMarquee 28s linear infinite;
  will-change: transform;
}

.hero-marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee-track span::before {
  content: "+";
  display: inline-block;
  margin-right: 12px;
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

@keyframes heroMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(124, 187, 242, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fbfe 0%, #eef6fc 100%);
}
.product-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}
.product-showcase__heading .section-title {
  margin-bottom: 0;
}
.product-showcase__intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}
.product-browser {
  display: grid;
  grid-template-columns: minmax(250px, 31%) minmax(0, 1fr);
  min-height: 590px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
}
.product-browser__nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 28px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.76),
    rgba(225, 240, 252, 0.66)
  );
  border-right: 1px solid rgba(124, 187, 242, 0.3);
}
.product-category {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 13px;
  align-items: center;
  padding: 17px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.product-category:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.64);
}
.product-category.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #7cbbf2);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 16px 30px rgba(22, 136, 211, 0.22);
}
.product-category__icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(124, 187, 242, 0.16);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
}
.product-category.is-active .product-category__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.product-category strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 500;
}
.product-category small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.3;
  font-weight: 400;
}
.product-category.is-active small {
  color: rgba(255, 255, 255, 0.78);
}
.product-category__arrow {
  justify-self: end;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.product-category.is-active .product-category__arrow {
  transform: translateX(3px);
}
.product-browser__stage {
  min-width: 0;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
}
.product-panel {
  animation: productPanelIn 0.48s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.product-panel[hidden] {
  display: none !important;
}
@keyframes productPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.product-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 26px;
}
.product-panel__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-panel__top h3 {
  margin: 0;
  max-width: 590px;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 400;
}
.product-panel__controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.product-panel__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.15rem;
  transition: 0.25s ease;
}
.product-panel__controls button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.product-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 20px 42px;
  margin: -16px -20px -30px;
  scroll-padding-inline: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.product-carousel::-webkit-scrollbar {
  display: none;
}
.product-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(124, 187, 242, 0.3);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 12px 28px rgba(16, 32, 51, 0.08); */
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.13);
}
.product-card__visual {
  min-height: 225px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, #f8fbfe, #eaf4fb);
  position: relative;
  overflow: hidden;
}
.product-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-card__body p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card__body h4 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.25;
}
.product-card__body span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
  font-weight: 400;
}
.product-card__formula {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}
.product-card__details {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
}
.product-pack {
  width: 118px;
  height: 158px;
  padding: 17px 13px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(160deg, #7cbbf2, #1688d3);
  box-shadow: 0 18px 30px rgba(22, 136, 211, 0.24);
  transform: rotate(-3deg);
  position: relative;
  z-index: 1;
}
.product-pack::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 42px;
  background: rgba(255, 255, 255, 0.17);
}
.product-pack span {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}
.product-pack b {
  font-size: 1.38rem;
  margin-top: 5px;
}
.product-pack small {
  margin-top: 6px;
  font-size: 0.55rem;
  opacity: 0.86;
}
.product-pack--orange {
  background: linear-gradient(160deg, #ffad6d, #f47b20);
  box-shadow: 0 18px 30px rgba(244, 123, 32, 0.24);
}
.product-pack--navy {
  background: linear-gradient(160deg, #294c72, #102033);
  box-shadow: 0 18px 30px rgba(16, 32, 51, 0.24);
}
.product-vial {
  width: 78px;
  height: 142px;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(180deg, #fff 0 22%, #d8efff 22%);
  border: 1px solid rgba(22, 136, 211, 0.24);
  box-shadow: 0 18px 30px rgba(16, 32, 51, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 17px 8px;
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.product-vial::before {
  content: "";
  position: absolute;
  top: -12px;
  width: 62px;
  height: 24px;
  border-radius: 7px 7px 3px 3px;
  background: var(--ink);
}
.product-vial span {
  font-size: 0.58rem;
  font-weight: 600;
}
.product-vial b {
  font-size: 0.8rem;
  margin-top: 5px;
  text-align: center;
}
.product-vial--orange {
  background: linear-gradient(180deg, #fff 0 22%, #ffe7d5 22%);
  color: var(--orange);
}
.product-vial--navy {
  background: linear-gradient(180deg, #fff 0 22%, #dfe7ef 22%);
  color: var(--ink);
}
.product-pouch {
  width: 126px;
  height: 154px;
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(160deg, #fefefe, #dbeefd);
  border: 1px solid rgba(124, 187, 242, 0.4);
  box-shadow: 0 18px 30px rgba(16, 32, 51, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ink);
  transform: rotate(2deg);
  position: relative;
  z-index: 1;
}
.product-pouch::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(16, 32, 51, 0.12);
}
.product-pouch span {
  font-size: 0.62rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-pouch b {
  margin-top: 7px;
  font-size: 1.05rem;
}
.product-bottle {
  width: 84px;
  height: 150px;
  border-radius: 18px 18px 22px 22px;
  background: linear-gradient(160deg, #fff, #dceffa);
  border: 1px solid rgba(124, 187, 242, 0.38);
  box-shadow: 0 18px 30px rgba(16, 32, 51, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 8px;
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.product-bottle::before {
  content: "";
  position: absolute;
  top: -9px;
  width: 58px;
  height: 25px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #23384f, #102033);
}
.product-bottle span {
  font-size: 0.58rem;
  font-weight: 800;
}
.product-bottle b {
  font-size: 0.78rem;
  margin-top: 4px;
}
.product-category__icon i {
  font-size: 0.95rem;
  line-height: 1;
}
.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #16734a;
}

.form-status.is-error {
  color: #b42318;
}

.contact-form.is-submitting button[type="submit"] {
  cursor: wait;
  opacity: 0.72;
}

.sms-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.sms-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.sms-consent a,
.form-note a,
.sms-disclosure a {
  color: var(--blue-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sms-disclosure {
  margin: -4px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(124, 187, 242, 0.3);
  border-radius: 6px;
  background: rgba(238, 249, 255, 0.72);
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.65;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .panel-bg {
    background-attachment: fixed;
  }
}

@media (min-width: 1120px) {
  .product-carousel {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .hero > .hero-product-rotator {
    top: calc(50% - 24px);
    right: 18px;
    bottom: auto;
    width: clamp(215px, 27vw, 300px);
    transform: translateY(-50%);
  }
}

@media (max-width: 1180px) {
  .site-nav,
  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .intro-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-panel {
    min-height: 460px;
  }

  .service-list,
  .process-grid,
  .feature-band,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
  .hero,
  .hero-grid {
    min-height: 600px;
  }

  .hero-copy-panel {
    padding: 64px 0 96px;
    width: min(68%, 660px);
  }

  .about-section__action {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .product-showcase__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-browser {
    display: block;
    min-height: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    backdrop-filter: none;
  }
  .product-browser__nav {
    padding: 0;
    gap: 12px;
    background: transparent;
    border: 0;
  }
  .product-category {
    border-color: rgba(124, 187, 242, 0.32);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
  }
  .product-category:hover {
    transform: none;
  }
  .product-category.is-active {
    border-radius: 6px 6px 0 0;
  }
  .product-category__arrow {
    transform: rotate(90deg);
  }
  .product-category.is-active .product-category__arrow {
    transform: rotate(-90deg);
  }
  .product-browser__stage {
    padding: 0;
    background: transparent;
  }
  .product-panel {
    padding: 24px 16px 18px;
    margin: -1px 0 12px;
    border: 1px solid rgba(124, 187, 242, 0.32);
    border-top: 0;
    border-radius: 0 0 6px 6px;
    background: rgba(255, 255, 255, 0.88);
  }
  .product-panel__top {
    align-items: flex-start;
  }
  .product-panel__top h3 {
    font-size: 1.55rem;
  }
  .product-carousel {
    grid-auto-columns: minmax(82%, 1fr);
    padding: 12px 8px 34px;
    margin: -12px -8px -22px;
    scroll-padding-inline: 8px;
  }
  .product-showcase .product-browser,
  .product-showcase .product-browser__nav,
  .product-showcase .product-category,
  .product-showcase .product-category.is-active,
  .product-showcase .product-panel,
  .product-showcase .product-card,
  .product-showcase .product-panel__controls button,
  .product-showcase .product-category__icon,
  .product-showcase .product-pack,
  .product-showcase .product-vial,
  .product-showcase .product-vial::before,
  .product-showcase .product-pouch,
  .product-showcase .product-bottle,
  .product-showcase .product-bottle::before {
    border-radius: 6px !important;
  }

  .product-showcase .product-category.is-active {
    border-radius: 6px 6px 0 0 !important;
  }

  .product-showcase .product-panel {
    border-radius: 0 0 6px 6px !important;
  }
}

@media (max-width: 760px) {
  .container,
  .container-wide,
  .container-narrow {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero-notes,
  .metric-list,
  .service-list,
  .process-grid,
  .feature-band,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-panel {
    min-height: 400px;
  }

  .hero-float {
    right: 18px;
    bottom: 60px;
    width: calc(100% - 36px);
  }

  .page-hero {
    padding: 72px 0 42px;
  }

  .legal-card h2 {
    font-size: 1.4rem;
  }

  .hero-marquee-track span {
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.76rem;
  }
  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11.4vw, 3.55rem);
    max-width: 560px;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-grid {
    min-height: 600px;
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .hero-product-slide {
    padding: 8px 14px 4px;
  }

  .hero-product-slide img {
    width: 100%;
    height: 100%;
    max-height: 220px;
    filter: drop-shadow(0 9px 12px rgba(31, 45, 58, 0.14))
      drop-shadow(0 2px 3px rgba(31, 45, 58, 0.08));
  }

  .hero-copy-panel > .eyebrow,
  .hero-copy-panel > .hero-title,
  .hero-copy-panel > .hero-copy {
    grid-column: 1 / -1;
  }

  .hero .utility-bar {
    display: none;
  }

  .hero .button-row .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    text-align: center;
    line-height: 1.2;
  }
  .hero-copy-panel {
    width: 100%;
    padding: 250px 0 16px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(172px, 48vw, 232px);
    column-gap: 0;
    align-items: end;
  }

  .hero-copy-panel > .hero-product-rotator {
    position: relative;
    grid-column: 2;
    grid-row: 4;
    justify-self: end;
    align-self: end;
    width: calc(100% - 10px);
    height: clamp(158px, 43vw, 204px);
    margin: 6px -8px -14px 0;
    transform: translateY(-20px);
    z-index: 3;
  }

  .hero .button-row {
    position: relative;
    z-index: 5;
    grid-column: 1;
    grid-row: 4;
    align-self: center;
    display: flex;
    width: 100%;
    margin: 0;
    padding-right: 14px;
    transform: translateY(-12px);
  }
}

@media (max-width: 560px) {
  .product-showcase__heading {
    margin-bottom: 26px;
  }
  .product-category {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    padding: 15px 14px;
  }
  .product-category__icon {
    width: 38px;
    height: 38px;
  }
  .product-category small {
    display: none;
  }
  .product-panel {
    padding: 20px 12px 14px;
  }
  .product-panel__top {
    gap: 12px;
    margin-bottom: 20px;
  }
  .product-panel__controls button {
    width: 40px;
    height: 40px;
  }
  .product-carousel {
    grid-auto-columns: 88%;
    gap: 13px;
  }
  .product-card {
    min-height: 380px;
  }
}

@media (max-width: 480px) {
  .hero-grid {
    min-height: 550px;
  }

  .hero .button-row .btn {
    min-height: 52px;
    padding-inline: 10px;
    font-size: 0.8rem;
  }
  .hero-copy-panel {
    padding-top: 80px;
    grid-template-columns: minmax(0, 1fr) 166px;
  }

  .hero-copy-panel > .hero-product-rotator {
    width: 162px;
    height: 158px;
    margin: 6px -8px -12px 0;
  }

  .hero .button-row {
    margin: 0;
    padding-right: 10px;
  }

  .about-section__action,
  .about-section__action .btn-ghost {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-marquee-track {
    animation: none;
  }
  .hero-product-slide {
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
}

.solutions-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(124, 187, 242, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.solutions-section > .container-wide {
  position: relative;
  z-index: 1;
}

.solutions-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.solutions-heading > div:first-child {
  max-width: 840px;
}

.solutions-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.solutions-controls {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
}

.solutions-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 45, 58, 0.14);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.15rem;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.solutions-controls button:hover,
.solutions-controls button:focus-visible {
  color: #fff;
  background: var(--ink-2);
  border-color: var(--ink-2);
  transform: translateY(-2px);
}

.solutions-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.solutions-carousel::-webkit-scrollbar {
  display: none;
}

.solution-card {
  --solution-start: #a9d7fb;
  --solution-end: #6aafe9;
  position: relative;
  isolation: isolate;
  min-height: 410px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(255, 255, 255, 0.36),
      transparent 28%
    ),
    linear-gradient(145deg, var(--solution-start), var(--solution-end));
  box-shadow: 0 18px 42px rgba(31, 45, 58, 0.12);
  scroll-snap-align: start;
  transform: translateZ(0);
}

.solution-card::before,
.solution-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.solution-card::before {
  top: -90px;
  right: -54px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-card::after {
  left: -75px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.08);
}

.solution-card--orange {
  --solution-start: #ffd09a;
  --solution-end: #f29a43;
}

.solution-card--navy {
  --solution-start: #78add8;
  --solution-end: #3d6f99;
}

.solution-card--sky {
  --solution-start: #cceaff;
  --solution-end: #8fc7ef;
}

.solution-card--violet {
  --solution-start: #ffe0b9;
  --solution-end: #e9a65f;
}

.solution-card--teal {
  --solution-start: #a9d6ef;
  --solution-end: #5796bd;
}

.solution-card--slate {
  --solution-start: #91a9bb;
  --solution-end: #3f596d;
}

.solution-card__backdrop {
  position: absolute;
  z-index: 0;
  right: -11%;
  bottom: -4%;
  width: 76%;
  height: 76%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.3;
  filter: saturate(0.75) brightness(1.08)
    drop-shadow(0 18px 18px rgba(24, 43, 58, 0.18));
  transform: rotate(-5deg) scale(1.08);
  transform-origin: right bottom;
  transition:
    opacity 0.45s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card__content {
  position: relative;
  z-index: 2;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 30px;
  transition:
    opacity 0.32s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card__icon {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 1rem;
}

.solution-card__summary {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-card__content h3,
.solution-card__hover h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.solution-card__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.solution-card__button-track {
  display: grid;
  height: 20px;
  overflow: hidden;
}

.solution-card__button-track > span {
  min-height: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card__arrow {
  transition: transform 0.35s ease;
}

.solution-card__hover {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31, 45, 58, 0.08), rgba(31, 45, 58, 0.46)),
    linear-gradient(145deg, var(--solution-start), var(--solution-end));
  transform: translateY(101%);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.solution-card__hover h3 {
  position: relative;
  z-index: 2;
  max-width: 82%;
}

.solution-card__hover img {
  position: absolute;
  right: -5%;
  bottom: 30px;
  width: 76%;
  height: 70%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 24px rgba(20, 38, 52, 0.25))
    drop-shadow(0 5px 7px rgba(20, 38, 52, 0.12));
  transform: translate3d(16%, 24%, 0) scale(0.88) rotate(-3deg);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.solution-card__hover-button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: auto;
  padding: 0 17px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(31, 45, 58, 0.14);
}

.solution-card:hover .solution-card__content,
.solution-card:focus-visible .solution-card__content {
  opacity: 0;
  transform: translateY(22px);
}

.solution-card:hover .solution-card__backdrop,
.solution-card:focus-visible .solution-card__backdrop {
  opacity: 0;
  transform: rotate(-5deg) scale(1.22);
}

.solution-card:hover .solution-card__hover,
.solution-card:focus-visible .solution-card__hover {
  transform: translateY(0);
}

.solution-card:hover .solution-card__hover img,
.solution-card:focus-visible .solution-card__hover img {
  transform: translate3d(0, 0, 0) scale(1) rotate(-3deg);
}

.solution-card:hover .solution-card__button-track > span,
.solution-card:focus-visible .solution-card__button-track > span {
  transform: translateY(-20px);
}

.solution-card:hover .solution-card__arrow,
.solution-card:focus-visible .solution-card__arrow {
  transform: translateX(4px);
}

.solutions-all {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.solutions-all a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px;
  color: var(--ink);
  border-bottom: 1px solid rgba(31, 45, 58, 0.3);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.solutions-all a:hover,
.solutions-all a:focus-visible {
  gap: 17px;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}

#products {
  scroll-margin-top: 88px;
}

@media (min-width: 901px) {
  .solutions-carousel {
    grid-template-rows: repeat(2, 250px);
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 18px 20px;
    padding-bottom: 20px;
    scroll-padding-inline: 2px;
  }

  .solution-card,
  .solution-card__content {
    min-height: 0;
    height: 250px;
  }

  .solution-card__content,
  .solution-card__hover {
    padding: 22px 24px;
  }

  .solution-card__icon {
    top: 20px;
    left: 22px;
    width: 42px;
    height: 42px;
  }

  .solution-card__backdrop {
    right: -4%;
    bottom: -12%;
    width: 58%;
    height: 76%;
  }

  .solution-card__summary {
    max-width: 62%;
    margin-bottom: 7px;
    font-size: 0.67rem;
  }

  .solution-card__content h3,
  .solution-card__hover h3 {
    max-width: 72%;
    font-size: clamp(1.35rem, 1.75vw, 2rem);
    line-height: 1.05;
  }

  .solution-card__button {
    min-height: 40px;
    margin-top: 16px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }

  .solution-card__hover img {
    right: -2%;
    bottom: 8px;
    width: 58%;
    height: 76%;
  }

  .solution-card__hover-button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .solutions-heading {
    align-items: flex-start;
  }

  .solutions-carousel {
    grid-auto-columns: minmax(290px, 72vw);
  }
}

@media (max-width: 760px) {
  .solutions-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px 14px;
    margin-bottom: 28px;
  }

  .solutions-heading > div:first-child {
    grid-column: 1 / -1;
  }

  .solutions-intro {
    margin-top: 17px;
    font-size: 0.96rem;
  }

  .solutions-controls {
    grid-column: 2;
    justify-self: end;
  }

  .solutions-carousel {
    grid-auto-columns: minmax(278px, 86vw);
    gap: 14px;
    margin-right: -14px;
  }

  .solution-card,
  .solution-card__content {
    min-height: 370px;
  }

  .solution-card__content,
  .solution-card__hover {
    padding: 24px;
  }

  .solution-card__icon {
    top: 24px;
    left: 24px;
  }

  .solution-card__content h3,
  .solution-card__hover h3 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }
}

@media (hover: none) {
  .solution-card:active .solution-card__hover {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-carousel {
    scroll-behavior: auto;
  }

  .solution-card__content,
  .solution-card__backdrop,
  .solution-card__hover,
  .solution-card__hover img,
  .solution-card__button-track > span,
  .solution-card__arrow {
    transition: none !important;
  }
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 78px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(124, 187, 242, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 82%,
      rgba(254, 162, 58, 0.13),
      transparent 27%
    ),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 54%, #edf7fd 100%);
}

.catalog-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -170px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(124, 187, 242, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.catalog-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 76px;
  align-items: end;
}

.catalog-breadcrumb {
  display: inline-flex;
  gap: 9px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.catalog-breadcrumb:hover,
.catalog-breadcrumb:focus-visible {
  color: var(--blue-deep);
}

.catalog-hero .page-title {
  max-width: 940px;
  font-size: clamp(3rem, 6vw, 6.25rem);
}

.catalog-hero__copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.8;
}

.catalog-hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 0 4px 28px;
  border-left: 1px solid rgba(31, 45, 58, 0.14);
  color: var(--muted);
  line-height: 1.65;
}

.catalog-hero__number {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.catalog-hero__aside .btn {
  margin-top: 24px;
}

.catalog-section {
  padding: 94px 0 112px;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(254, 162, 58, 0.07),
      transparent 20%
    ),
    #f7fafc;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
}

.catalog-toolbar__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
}

.catalog-result-count {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-result-count strong {
  color: var(--ink);
}

.catalog-filter-bar {
  position: sticky;
  top: 88px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  margin: 34px 0 58px;
  padding: 12px;
  border: 1px solid rgba(31, 45, 58, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(31, 45, 58, 0.07);
  backdrop-filter: blur(16px);
}

.catalog-filters {
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 0 2px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.catalog-filters::-webkit-scrollbar {
  display: none;
}

.catalog-filter-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(31, 45, 58, 0.11);
}

.catalog-filter-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(31, 45, 58, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.catalog-filter-controls button:hover,
.catalog-filter-controls button:focus-visible {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}

.catalog-filter-controls button:disabled {
  cursor: default;
  opacity: 0.34;
  transform: none;
}

.catalog-filter {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(31, 45, 58, 0.1);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.catalog-filter:hover,
.catalog-filter:focus-visible {
  color: var(--blue-deep);
  border-color: rgba(124, 187, 242, 0.55);
  transform: translateY(-1px);
}

.catalog-filter.is-active {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.catalog-groups {
  display: grid;
  gap: 84px;
}

.catalog-group {
  scroll-margin-top: 170px;
}

.catalog-group[hidden] {
  display: none !important;
}

.catalog-group__header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 920px;
  margin-bottom: 28px;
}

.catalog-group__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    rgba(124, 187, 242, 0.22),
    rgba(124, 187, 242, 0.08)
  );
  color: var(--blue-deep);
  font-size: 1.1rem;
}

.catalog-group__header p {
  margin: 0 0 7px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-group__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.catalog-group__header div > span {
  display: block;
  max-width: 760px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.catalog-product-card {
  min-width: 0;
  min-height: 390px;
}

.catalog-product-card .product-card__visual {
  min-height: 235px;
}

.catalog-product-card .product-card__image {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.catalog-product-card .product-card__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.25;
}

.catalog-bottom-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  margin-top: 96px;
  padding: 42px 44px;
  border-radius: 10px;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(255, 255, 255, 0.19),
      transparent 23%
    ),
    linear-gradient(135deg, var(--ink-2), #2d526a);
  color: #fff;
}

.catalog-bottom-cta .eyebrow {
  color: var(--orange);
}

.catalog-bottom-cta h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
}

.catalog-bottom-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .catalog-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .catalog-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .catalog-hero__aside {
    max-width: 420px;
  }

  .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog-hero {
    padding: 72px 0 60px;
  }

  .catalog-hero .page-title {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .catalog-hero__copy {
    font-size: 1rem;
  }

  .catalog-section {
    padding: 72px 0 84px;
  }

  .catalog-toolbar {
    display: block;
  }

  .catalog-result-count {
    margin-top: 18px;
  }

  .catalog-filter-bar {
    top: 76px;
    display: block;
    margin: 26px -14px 48px;
    padding: 12px 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .catalog-filters {
    padding: 0;
  }

  .catalog-filter-controls {
    display: none;
  }

  .catalog-groups {
    gap: 68px;
  }

  .catalog-group__header {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }

  .catalog-group__icon {
    width: 48px;
    height: 48px;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-product-card {
    min-height: 370px;
  }

  .catalog-product-card .product-card__visual {
    min-height: 220px;
  }

  .catalog-bottom-cta {
    display: grid;
    padding: 34px 26px;
  }

  .catalog-bottom-cta .btn {
    justify-self: start;
  }
}

.how-it-works-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background: #fff;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}

.how-it-works-content {
  min-width: 0;
}

.how-it-works-intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.how-it-works-steps {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-top: 30px;
}

.how-it-works-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(124, 187, 242, 0.5),
    rgba(254, 162, 58, 0.35)
  );
}

.how-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  padding: 16px 18px 16px 0;
  border-radius: 10px;
  transition:
    background-color 0.28s ease,
    transform 0.28s ease;
}

.how-step:hover {
  background: rgba(255, 255, 255, 0.68);
  transform: translateX(6px);
}

.how-step__marker {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 187, 242, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(31, 45, 58, 0.08);
}

.how-step__marker span {
  position: absolute;
  top: -8px;
  right: -4px;
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.how-step__marker i {
  color: var(--blue-deep);
  font-size: 1.1rem;
}

.how-step__content {
  padding-top: 5px;
}

.how-step__content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.how-step__content p {
  max-width: 620px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.how-it-works-actions {
  align-items: center;
  margin-top: 24px;
}

.how-it-works-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(31, 45, 58, 0.25);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    gap 0.22s ease;
}

.how-it-works-link:hover,
.how-it-works-link:focus-visible {
  gap: 15px;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}

.how-it-works-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.how-visual__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.how-visual__orb--blue {
  top: 2%;
  right: -7%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(124, 187, 242, 0.3),
    rgba(124, 187, 242, 0)
  );
}

.how-visual__orb--orange {
  left: -12%;
  bottom: 2%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(254, 162, 58, 0.2),
    rgba(254, 162, 58, 0)
  );
}

.how-visual__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(124, 187, 242, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 70px rgba(31, 45, 58, 0.14);
  backdrop-filter: blur(18px);
}

.how-visual__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.64),
    rgba(238, 249, 255, 0.2)
  );
  pointer-events: none;
}

.how-visual__top,
.how-visual__progress,
.how-visual__copy,
.how-visual__products,
.how-visual__note {
  position: relative;
  z-index: 1;
}

.how-visual__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.how-visual__eyebrow {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.how-visual__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.how-visual__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37a36c;
  box-shadow: 0 0 0 5px rgba(55, 163, 108, 0.12);
}

.how-visual__progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}

.how-visual__progress span {
  height: 5px;
  border-radius: 999px;
  background: rgba(31, 45, 58, 0.1);
}

.how-visual__progress span.is-complete {
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
}

.how-visual__copy {
  max-width: 380px;
  margin-top: 20px;
}

.how-visual__copy strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.how-visual__copy p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.how-visual__products {
  position: relative;
  height: 185px;
  margin-top: 8px;
}

.how-visual__product {
  position: absolute;
  display: grid;
  place-items: center;
  width: 150px;
  height: 180px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-visual__product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(31, 45, 58, 0.16))
    drop-shadow(0 4px 6px rgba(31, 45, 58, 0.08));
}

.how-visual__product--back {
  left: 2%;
  bottom: 0;
  opacity: 0.72;
  transform: translateX(-8px) rotate(-7deg) scale(0.88);
}

.how-visual__product--main {
  left: 50%;
  bottom: 0;
  z-index: 2;
  transform: translateX(-50%) scale(1.05);
}

.how-visual__product--front {
  right: 0;
  bottom: -4px;
  z-index: 1;
  opacity: 0.82;
  transform: translateX(10px) rotate(7deg) scale(0.88);
}

.how-visual__panel:hover .how-visual__product--back {
  transform: translateX(-18px) rotate(-10deg) scale(0.92);
}

.how-visual__panel:hover .how-visual__product--main {
  transform: translateX(-50%) translateY(-8px) scale(1.08);
}

.how-visual__panel:hover .how-visual__product--front {
  transform: translateX(18px) rotate(10deg) scale(0.92);
}

.how-visual__note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 45, 58, 0.1);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.how-visual__note i {
  color: var(--blue-deep);
}

#how-it-works {
  scroll-margin-top: 88px;
}

@media (max-width: 1080px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-visual {
    min-height: auto;
  }

  .how-visual__panel {
    width: min(100%, 680px);
  }
}

@media (max-width: 760px) {
  .how-it-works-section {
    padding: 68px 0;
  }

  .how-it-works-grid {
    gap: 36px;
  }

  .how-it-works-intro {
    font-size: 0.98rem;
  }

  .how-it-works-steps {
    margin-top: 24px;
  }

  .how-it-works-steps::before {
    left: 23px;
  }

  .how-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
  }

  .how-step:hover {
    background: transparent;
    transform: none;
  }

  .how-step__marker {
    width: 48px;
    height: 48px;
  }

  .how-step__marker span {
    min-width: 23px;
    height: 23px;
    font-size: 0.6rem;
  }

  .how-step__content {
    padding-top: 2px;
  }

  .how-it-works-actions {
    display: grid;
    justify-items: start;
  }

  .how-visual__panel {
    min-height: 420px;
    padding: 20px;
  }

  .how-visual__top {
    align-items: flex-start;
  }

  .how-visual__products {
    height: 170px;
  }

  .how-visual__product {
    width: 128px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 58px 0;
  }

  .how-visual__panel {
    min-height: 390px;
  }

  .how-visual__copy strong {
    font-size: 1.5rem;
  }

  .how-visual__products {
    height: 155px;
  }

  .how-visual__product {
    width: 116px;
    height: 145px;
  }

  .how-visual__note {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-step,
  .how-visual__product,
  .how-it-works-link {
    transition: none !important;
  }
}

.care-cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(hsla(202, 58%, 23%, 0.35), rgba(25, 68, 93, 0.35)),
    url("../images/recommendation-bg.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.recommendation-cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(25, 68, 93, 0.5), rgba(25, 68, 93, 0.5)),
    url("../images/privacy-bg.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.care-cta-section::before,
.recommendation-cta-section::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.care-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.care-cta__content {
  max-width: 820px;
}

.care-cta-section .eyebrow,
.recommendation-cta-section .eyebrow {
  color: var(--orange);
}

.care-cta__content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.care-cta__content p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.care-cta__action {
  display: flex;
  justify-content: flex-end;
}

.care-cta__action .btn-ghost {
  min-width: 210px;
  min-height: 52px;
  white-space: nowrap;
}

.care-cta__action .btn-ghost span {
  transition: transform 0.25s ease;
}

.care-cta__action .btn-ghost:hover span {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .care-cta-section,
  .recommendation-cta-section {
    background-attachment: scroll;
  }
}

@media (max-width: 820px) {
  .care-cta {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .care-cta__action {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .care-cta__action,
  .care-cta__action .btn-ghost {
    width: 100%;
  }

  .care-cta__content h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }
}

.product-panel__controls button:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.product-panel__controls button:disabled:hover {
  background: #fff;
  color: var(--ink);
  transform: none;
}

/* Product detail links */
.product-card__body {
  flex: 1;
}

.product-card__visual {
  color: inherit;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition:
    color 0.22s ease,
    gap 0.22s ease;
}

.product-card__link:hover,
.product-card__link:focus-visible {
  gap: 13px;
  color: var(--blue-deep) !important;
}

/* Medication detail pages */
.medication-page {
  --medication-accent: var(--blue-deep);
  --medication-accent-soft: rgba(124, 187, 242, 0.16);
  background: #fff;
}

.medication-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background:
    radial-gradient(
      circle at 78% 18%,
      var(--medication-accent-soft),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 82%,
      rgba(254, 162, 58, 0.12),
      transparent 24%
    ),
    linear-gradient(135deg, #fff 0%, #f8fbfd 54%, #eff7fb 100%);
}

.medication-hero::before {
  content: "";
  position: absolute;
  right: -170px;
  top: -230px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(31, 45, 58, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.medication-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
}

.medication-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.medication-breadcrumb a {
  transition: color 0.2s ease;
}

.medication-breadcrumb a:hover,
.medication-breadcrumb a:focus-visible {
  color: var(--medication-accent);
}

.medication-hero__content .eyebrow {
  color: var(--medication-accent);
}

.medication-hero__content h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 6.3vw, 6.75rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.medication-hero__formula {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--medication-accent);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
}

.medication-hero__summary {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.82;
}

.medication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.medication-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(31, 45, 58, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.medication-meta i {
  color: var(--medication-accent);
}

.medication-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.medication-hero__actions .btn {
  background: var(--medication-accent);
}

.medication-hero__actions .btn:hover,
.medication-hero__actions .btn:focus-visible {
  background: var(--orange);
}

.medication-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.medication-text-link:hover,
.medication-text-link:focus-visible {
  gap: 13px;
  color: var(--medication-accent);
}

.medication-hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.medication-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.medication-hero__orb--blue {
  width: 360px;
  height: 360px;
  background: var(--medication-accent-soft);
}

.medication-hero__orb--orange {
  right: 4%;
  bottom: 6%;
  width: 150px;
  height: 150px;
  background: rgba(254, 162, 58, 0.19);
}

.medication-product-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 46px 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0 30px 70px rgba(31, 45, 58, 0.12);
  backdrop-filter: blur(20px);
}

.medication-product-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(31, 45, 58, 0.07);
  border-radius: 18px;
  pointer-events: none;
}

.medication-product-frame__label {
  position: absolute;
  top: 24px;
  left: 30px;
  color: var(--medication-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.medication-product-frame img {
  position: relative;
  z-index: 1;
  width: min(88%, 390px);
  height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 25px 28px rgba(31, 45, 58, 0.16));
  transition: transform 0.45s ease;
}

.medication-product-frame:hover img {
  transform: translateY(-6px) scale(1.015);
}

.medication-product-frame__footer {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 45, 58, 0.09);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.medication-disclosure {
  border-top: 1px solid rgba(31, 45, 58, 0.08);
  border-bottom: 1px solid rgba(31, 45, 58, 0.08);
  background: #fff;
}

.medication-disclosure__inner {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 28px;
}

.medication-disclosure__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--medication-accent-soft);
  color: var(--medication-accent);
}

.medication-disclosure strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.9rem;
}

.medication-disclosure p {
  max-width: 1160px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.medication-content {
  padding: 104px 0 112px;
  background:
    radial-gradient(
      circle at 8% 12%,
      var(--medication-accent-soft),
      transparent 20%
    ),
    #fff;
}

.medication-content__grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  justify-content: center;
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.medication-nav {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 3px;
  padding: 22px 0;
  border-top: 1px solid rgba(31, 45, 58, 0.11);
  border-bottom: 1px solid rgba(31, 45, 58, 0.11);
}

.medication-nav p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.medication-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.medication-nav a:hover,
.medication-nav a:focus-visible {
  color: var(--medication-accent);
  transform: translateX(4px);
}

.medication-article {
  min-width: 0;
}

.medication-copy-section {
  scroll-margin-top: 130px;
  padding: 0 0 74px;
  margin-bottom: 74px;
  border-bottom: 1px solid rgba(31, 45, 58, 0.1);
}

.medication-copy-section:last-child {
  margin-bottom: 0;
}

.medication-section-kicker {
  margin: 0 0 14px !important;
  color: var(--medication-accent) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.medication-copy-section h2 {
  margin: 0 0 25px;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}

.medication-copy-section > p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.86;
}

.medication-copy-section > p:last-child {
  margin-bottom: 0;
}

.medication-note {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(31, 45, 58, 0.09);
  border-radius: 12px;
  background: #f7fafc;
}

.medication-note i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--medication-accent-soft);
  color: var(--medication-accent);
}

.medication-note p {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.medication-list li {
  position: relative;
  padding: 15px 18px 15px 46px;
  border: 1px solid rgba(31, 45, 58, 0.08);
  border-radius: 10px;
  background: #fbfcfd;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.65;
}

.medication-list li::before {
  position: absolute;
  left: 17px;
  top: 15px;
  color: var(--medication-accent);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.medication-list--side-effects li::before {
  content: "\f06a";
}

.medication-list--safety li::before {
  content: "\f00c";
}

.medication-fine-print {
  margin-top: 24px !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  line-height: 1.72 !important;
}

.medication-ingredients {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.medication-ingredient {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 15px 18px;
  border: 1px solid rgba(31, 45, 58, 0.09);
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #f8fbfd);
}

.medication-ingredient span {
  color: var(--medication-accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.medication-ingredient strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.medication-process {
  padding: 104px 0;
  border-top: 1px solid rgba(124, 187, 242, 0.18);
  border-bottom: 1px solid rgba(124, 187, 242, 0.18);
  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(254, 162, 58, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 88%,
      rgba(124, 187, 242, 0.2),
      transparent 32%
    ),
    linear-gradient(135deg, #fbfdff 0%, #f1f8fd 58%, #fffaf4 100%);
  color: var(--ink);
}

.medication-process__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.medication-process__heading .eyebrow {
  color: var(--orange);
}

.medication-process__heading h2 {
  max-width: 850px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.medication-process__heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.medication-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.medication-process__steps article {
  position: relative;
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(124, 187, 242, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(31, 45, 58, 0.07);
  backdrop-filter: blur(8px);
}

.medication-process__steps article > span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(85, 148, 204, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.medication-process__steps i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(124, 187, 242, 0.18);
  color: var(--blue-deep);
  font-size: 1.15rem;
}

.medication-process__steps h3 {
  margin: 48px 0 12px;
  color: var(--ink-2);
  font-size: 1.12rem;
  font-weight: 600;
}

.medication-process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.72;
}

.medication-related {
  padding: 108px 0;
  background: #f6f9fb;
}

.medication-related__heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.medication-related__heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.medication-related__heading > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.medication-related__heading > a:hover,
.medication-related__heading > a:focus-visible {
  gap: 14px;
  color: var(--medication-accent);
}

.medication-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.medication-related__grid .product-card {
  min-height: 420px;
}

.medication-cta {
  padding: 38px 0 108px;
  background: #f6f9fb;
}

.medication-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 46px;
  align-items: center;
  padding: 54px 58px;
  border: 1px solid rgba(124, 187, 242, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(254, 162, 58, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 100%,
      rgba(124, 187, 242, 0.2),
      transparent 34%
    ),
    linear-gradient(135deg, #ffffff 0%, #f2f9fe 62%, #fff9f2 100%);
  box-shadow: 0 22px 60px rgba(31, 45, 58, 0.08);
  color: var(--ink);
}

.medication-cta .eyebrow {
  color: var(--orange);
  opacity: 1;
}

.medication-cta h2 {
  max-width: 800px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}

.medication-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.medication-cta .btn {
  flex: 0 0 auto;
  background: var(--blue-deep);
  color: #fff;
}

.medication-cta .btn:hover,
.medication-cta .btn:focus-visible {
  background: var(--orange);
  color: #fff;
}

@media (max-width: 1100px) {
  .medication-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 40px;
  }

  .medication-hero__visual {
    min-height: 480px;
  }

  .medication-product-frame {
    min-height: 460px;
  }

  .medication-product-frame img {
    height: 320px;
  }

  .medication-content__grid {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 54px;
  }
}

@media (max-width: 900px) {
  .medication-hero__grid {
    grid-template-columns: 1fr;
  }

  .medication-hero__visual {
    min-height: auto;
  }

  .medication-product-frame {
    width: min(100%, 600px);
  }

  .medication-content__grid {
    grid-template-columns: 1fr;
  }

  .medication-nav {
    position: relative;
    top: auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 18px;
    border-top: 0;
    scrollbar-width: none;
  }

  .medication-nav::-webkit-scrollbar {
    display: none;
  }

  .medication-nav p {
    display: none;
  }

  .medication-nav a {
    flex: 0 0 auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(31, 45, 58, 0.1);
    border-radius: 999px;
    background: #fff;
  }

  .medication-nav a:hover,
  .medication-nav a:focus-visible {
    transform: none;
  }

  .medication-process__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .medication-process__steps {
    grid-template-columns: 1fr;
  }

  .medication-process__steps article {
    min-height: auto;
  }

  .medication-process__steps h3 {
    margin-top: 34px;
  }

  .medication-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .medication-cta__inner {
    display: grid;
  }

  .medication-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .medication-hero {
    padding: 66px 0 70px;
  }

  .medication-breadcrumb {
    margin-bottom: 28px;
  }

  .medication-hero__content h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
  }

  .medication-hero__summary {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .medication-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .medication-product-frame {
    min-height: 410px;
    padding: 48px 24px 24px;
    border-radius: 18px;
  }

  .medication-product-frame img {
    width: min(90%, 320px);
    height: 280px;
  }

  .medication-product-frame__footer {
    display: grid;
    gap: 5px;
  }

  .medication-disclosure__inner {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .medication-disclosure__icon {
    width: 38px;
    height: 38px;
  }

  .medication-content {
    padding: 76px 0 84px;
  }

  .medication-copy-section {
    padding-bottom: 56px;
    margin-bottom: 56px;
  }

  .medication-copy-section > p {
    font-size: 0.96rem;
  }

  .medication-ingredients {
    grid-template-columns: 1fr;
  }

  .medication-process,
  .medication-related {
    padding: 82px 0;
  }

  .medication-related__heading {
    display: grid;
    align-items: start;
  }

  .medication-related__heading > a {
    justify-self: start;
  }

  .medication-related__grid {
    grid-template-columns: 1fr;
  }

  .medication-cta {
    padding: 20px 0 82px;
  }

  .medication-cta__inner {
    padding: 38px 26px;
  }
}
/* Product strength and reserved pricing areas */
.product-card__strength {
  display: block;
  margin-top: 7px;
  color: var(--ink) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.product-card__price {
  width: 100%;
  min-height: 20px;
  display: flex;
  align-items: flex-end;
  margin-top: 8px;
  color: var(--orange) !important;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
}

.product-card__price span {
  color: var(--orange) !important;
  font-size: 1.1rem;
}

.product-card__price.is-empty {
  visibility: hidden;
}

.catalog-product-card {
  min-height: 425px;
}

.medication-related__grid .product-card {
  min-height: 435px;
}

.medication-hero__strength {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  font-weight: 750;
  line-height: 1.5;
}

.medication-hero__price {
  min-height: 26px;
  display: flex;
  align-items: flex-end;
  margin-top: 12px;
  color: var(--orange);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.medication-hero__price.is-empty {
  visibility: hidden;
}

.medication-hero__price + .medication-hero__actions {
  margin-top: 12px;
}

.medication-copy-section__strength {
  margin: -4px 0 22px !important;
  color: var(--medication-accent) !important;
  font-size: 0.95rem !important;
  font-weight: 750;
  letter-spacing: 0.01em;
}

/* Product popularity badges */
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(31, 45, 58, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-card__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
}

.product-card__badge.is-most-popular {
  color: var(--ink-2);
  border-color: rgba(124, 187, 242, 0.64);
  background: rgba(238, 249, 255, 0.94);
}

.product-card__badge.is-most-popular::before {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 162, 58, 0.16);
}

.product-card__badge.is-best-seller {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(135deg, var(--orange), #ff8c32);
  box-shadow: 0 8px 20px rgba(254, 162, 58, 0.24);
}

.product-card__badge.is-best-seller::before {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

@media (max-width: 480px) {
  .product-card__badge {
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    font-size: 0.62rem;
  }
}
