:root {
  color-scheme: light;
  --blue: #1d4ed8;
  --blue-dark: #1e40af;
  --navy: #0f172a;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #eff6ff;
  --soft-2: #f8fafc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

::selection {
  background: #bfdbfe;
  color: var(--navy);
}

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

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

.container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.container > *,
.hero-grid > *,
.split-grid > *,
.contact-grid > *,
.auth-grid > *,
.product-hero-grid > *,
.cta-grid > *,
.two-grid > *,
.three-grid > *,
.four-grid > *,
.product-grid > *,
.category-grid > *,
.footer-grid > * {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
}

.brand-link,
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: auto;
  max-width: 128px;
  max-height: 78px;
  object-fit: contain;
}

.footer-logo {
  width: auto;
  height: auto;
  max-width: 104px;
  max-height: 62px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: #334155;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(100% - 40px, 1280px);
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  border-radius: 12px;
  padding: 12px 14px;
}

.mobile-nav a:hover {
  background: var(--soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 56px;
  border-radius: 999px;
  padding: 14px 30px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.button.button-primary,
.button.button-primary:visited {
  color: var(--white);
  font-weight: 800;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-primary:active {
  background: var(--blue-dark);
  color: var(--white);
}

.button-primary:disabled {
  cursor: not-allowed;
  background: #60a5fa;
}

.button-outline {
  border-color: #cbd5e1;
  color: #1f2937;
  background: var(--white);
}

.button-outline:hover {
  border-color: #93c5fd;
  color: var(--blue);
}

.button-white {
  background: var(--white);
  color: var(--blue);
}

.button-white:hover {
  background: #eff6ff;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.32);
  outline-offset: 3px;
}

.small-button {
  min-height: 56px;
  padding: 12px 18px;
  font-size: 13px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.09), transparent 31%),
    linear-gradient(135deg, #020617, #071426 52%, #020617);
  color: var(--white);
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
}

.site-intro[hidden] {
  display: none;
}

.site-intro__grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 68%);
}

.site-intro__light {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 760px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 213, 225, 0.15), #f8fafc 46%, #d7b56d 54%, rgba(203, 213, 225, 0.15), transparent);
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.02);
  box-shadow: 0 0 18px rgba(215, 181, 109, 0.22);
}

.site-intro__logo-wrap {
  position: relative;
  width: min(48vw, 260px);
  min-width: 148px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.94);
}

.site-intro__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.35)) blur(3px);
}

.site-intro__logo-shine {
  position: absolute;
  inset: -10% 120% -10% -45%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.52) 48%, rgba(215, 181, 109, 0.22) 55%, transparent 70%);
  transform: skewX(-18deg);
}

.intro-active .site-intro__light {
  animation: introLightSweep 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-active .site-intro__logo-wrap {
  animation: introLogoReveal 0.78s 0.36s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-active .site-intro__logo {
  animation: introLogoSharpen 0.66s 0.42s ease forwards;
}

.intro-active .site-intro__logo-shine {
  animation: introLogoShine 0.82s 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-intro.intro-exit {
  animation: introOverlayExit 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-reveal.hero-reveal-ready .hero-reveal-item {
  opacity: 0;
  transform: translateY(14px);
}

.hero-reveal.hero-reveal-in .hero-reveal-item {
  animation: heroRevealIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-reveal.hero-reveal-in .hero-reveal-item:nth-child(1) {
  animation-delay: 0.06s;
}

.hero-reveal.hero-reveal-in .hero-reveal-item:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-reveal.hero-reveal-in .hero-reveal-item:nth-child(3) {
  animation-delay: 0.26s;
}

.hero-reveal.hero-reveal-in .hero-reveal-item:nth-child(4) {
  animation-delay: 0.36s;
}

.hero-reveal.hero-reveal-in .hero-media.hero-reveal-item {
  animation-delay: 0.48s;
}

@keyframes introLightSweep {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.02);
  }

  36% {
    opacity: 1;
  }

  100% {
    opacity: 0.26;
    transform: translate(-50%, -50%) scaleX(1);
  }
}

@keyframes introLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introLogoSharpen {
  0% {
    filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.35)) blur(3px);
  }

  100% {
    filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.35)) blur(0);
  }
}

@keyframes introLogoShine {
  0% {
    transform: translateX(0) skewX(-18deg);
  }

  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

@keyframes introOverlayExit {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.018);
  }
}

@keyframes heroRevealIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-active .site-intro__light,
  .intro-active .site-intro__logo-wrap,
  .intro-active .site-intro__logo,
  .intro-active .site-intro__logo-shine,
  .site-intro.intro-exit,
  .hero-reveal.hero-reveal-in .hero-reveal-item {
    animation: none;
  }

  .site-intro {
    transition: opacity 120ms ease;
  }

  .site-intro__light,
  .site-intro__logo-shine,
  .site-intro__grid {
    display: none;
  }

  .site-intro__logo-wrap,
  .hero-reveal.hero-reveal-ready .hero-reveal-item,
  .hero-reveal.hero-reveal-in .hero-reveal-item {
    opacity: 1;
    transform: none;
  }

  .site-intro__logo {
    filter: none;
  }
}

.home-hero,
.page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.7), #fff 52%, #fff);
}

.home-hero {
  padding: 80px 0 96px;
}

.page-hero {
  padding: 80px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-hero h1,
.page-hero h1 {
  max-width: 860px;
  margin: 20px 0 0;
  color: #020617;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(38px, 4vw, 56px);
}

.home-hero p:not(.eyebrow),
.page-hero > .container > p:not(.eyebrow),
.split-grid p,
.section-heading p,
.info-card p,
.category-card p,
.product-card p,
.cta-panel p,
.contact-card p,
.form-card p,
.step-card p {
  color: var(--slate);
  line-height: 1.75;
}

.home-hero p:not(.eyebrow),
.page-hero > .container > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 18px;
}

.hero-media {
  position: relative;
  padding-bottom: 28px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 460px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft-2);
  background-image: url("../images/3x-pharma-laboratory-testing.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 60px rgba(23, 37, 84, 0.12);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-media-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 37, 84, 0.12);
}

.hero-media-card strong {
  display: block;
  font-size: 14px;
}

.hero-media-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.slider-arrow:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dot.active {
  width: 22px;
  background: var(--white);
}

.stats-section,
.split-section,
.white-section {
  background: var(--white);
  padding: 80px 0;
}

.soft-section {
  background: var(--soft-2);
  padding: 80px 0;
}

.stats-section {
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid strong {
  color: var(--blue);
  font-size: 24px;
}

.stats-grid p {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.product-showcase {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(219, 234, 254, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.82), rgba(255, 255, 255, 0.96) 34%, rgba(248, 250, 252, 0.88));
  padding: 72px 0 66px;
}

.product-showcase::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(59, 130, 246, 0.08), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(14, 165, 233, 0.06), transparent 28%);
  pointer-events: none;
  content: "";
}

.product-showcase__inner {
  position: relative;
  z-index: 1;
}

.product-showcase.product-showcase--ready .product-showcase__header,
.product-showcase.product-showcase--ready .product-carousel {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-showcase.product-showcase--ready .product-carousel {
  transition-delay: 90ms;
}

.product-showcase.product-showcase--ready.is-visible .product-showcase__header,
.product-showcase.product-showcase--ready.is-visible .product-carousel {
  opacity: 1;
  transform: translateY(0);
}

.product-showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.product-showcase__header > div {
  max-width: 690px;
}

.product-showcase__header h2 {
  margin-top: 10px;
}

.product-showcase__header p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.68;
}

.product-carousel {
  --carousel-visible: 4;
  --carousel-gap: 22px;
  --carousel-transition: 600ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.product-carousel__viewport {
  overflow: hidden;
  border-radius: 28px;
  padding: 10px 4px 6px;
  cursor: grab;
  touch-action: pan-y;
}

.product-carousel__viewport:active {
  cursor: grabbing;
}

.product-carousel__track {
  display: flex;
  gap: var(--carousel-gap);
  will-change: transform;
  transition: transform var(--carousel-transition);
}

.product-carousel.is-dragging .product-carousel__track {
  transition: none;
  user-select: none;
}

.product-carousel__card {
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-visible) - 1))) / var(--carousel-visible));
  flex-direction: column;
  border: 1px solid rgba(203, 213, 225, 0.76);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.94));
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  opacity: 0.9;
  transform: scale(0.985);
  transition: border-color 260ms ease, box-shadow 260ms ease, opacity var(--carousel-transition), transform var(--carousel-transition), background 260ms ease;
}

.product-carousel__card.is-active {
  border-color: rgba(59, 130, 246, 0.62);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(30, 64, 175, 0.16), 0 8px 18px rgba(15, 23, 42, 0.06);
  opacity: 1;
  transform: translateY(-5px) scale(1.015);
}

.product-carousel__card:hover {
  border-color: rgba(59, 130, 246, 0.72);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
  transform: translateY(-4px) scale(1.006);
}

.product-carousel__card.is-active:hover {
  border-color: rgba(37, 99, 235, 0.68);
  box-shadow: 0 28px 64px rgba(30, 64, 175, 0.18), 0 10px 22px rgba(15, 23, 42, 0.07);
  transform: translateY(-6px) scale(1.015);
}

.product-carousel__card .product-visual {
  margin: 14px 14px 0;
  width: auto;
  border-radius: 20px;
  background:
    linear-gradient(145deg, #ffffff 0%, #fbfdff 56%, #f1f7ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), inset 0 10px 24px rgba(255, 255, 255, 0.68), 0 8px 20px rgba(15, 23, 42, 0.04);
}

.product-carousel__image {
  -webkit-user-drag: none;
  padding: clamp(10px, 4.2%, 18px);
  user-select: none;
}

.product-carousel__card.is-active .product-carousel__image {
  transform: translateY(-3px);
}

.product-carousel__card:hover .product-carousel__image {
  transform: translateY(-3px) scale(1.018);
}

.product-carousel__content {
  display: flex;
  min-height: 202px;
  flex: 1;
  flex-direction: column;
  padding: 16px 20px 18px;
}

.product-carousel__badge {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-carousel__content h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.14;
}

.product-carousel__strength {
  margin: 8px 0 0;
  color: #0f172a;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.product-carousel__content p:not(.product-carousel__badge):not(.product-carousel__strength) {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.48;
}

.product-carousel__link {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.product-carousel__link span {
  display: inline-block;
  transition: transform 240ms ease;
}

.product-carousel__link:hover {
  color: var(--blue-dark);
}

.product-carousel__link:hover span {
  transform: translateX(4px);
}

.product-carousel__controls {
  display: grid;
  grid-template-columns: 54px minmax(96px, 1fr) auto 54px;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.product-carousel__arrow {
  display: inline-flex;
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 213, 225, 0.94);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.075);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.product-carousel__arrow:hover {
  border-color: rgba(96, 165, 250, 0.96);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.product-carousel__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.product-carousel__progress {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.86);
}

.product-carousel__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
  transition: width var(--carousel-transition);
}

.product-carousel__count {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.split-grid,
.contact-grid,
.auth-grid,
.product-hero-grid {
  display: grid;
  gap: 48px;
}

.split-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.auth-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 56px;
}

.product-hero-grid {
  grid-template-columns: 1fr 0.8fr;
  align-items: start;
  margin-top: 40px;
}

.product-hero-grid > div:last-child {
  width: min(100%, 520px);
  justify-self: end;
}

h2 {
  margin: 0;
  color: #020617;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.18;
}

h3 {
  margin: 0;
  color: #020617;
  font-size: 20px;
  font-weight: 700;
}

h1,
h2,
h3,
p,
dd,
.composition,
.blue-text,
.mini-products small,
.footer-grid a {
  overflow-wrap: anywhere;
}

.split-grid h2,
.section-heading h2,
.cta-panel h2 {
  margin-top: 16px;
}

.rich-text p {
  margin: 0 0 24px;
  font-size: 16px;
}

.text-link,
a[href^="mailto:"] {
  color: var(--blue);
  font-weight: 700;
}

.section-heading {
  width: min(100% - 40px, 1280px);
  max-width: 760px;
  margin: 0 auto;
}

.section-heading p:last-child {
  margin: 20px 0 0;
}

.category-grid,
.three-grid,
.four-grid,
.two-grid,
.product-grid,
.pillar-grid,
.status-grid {
  display: grid;
  gap: 16px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.two-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 292px), 370px));
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin-top: 36px;
}

.info-card,
.category-card,
.product-card,
.form-card,
.contact-card,
.summary-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.info-card {
  padding: 24px;
}

.info-card i {
  display: block;
  width: 48px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--blue);
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p,
.product-card p,
.category-card p {
  margin: 12px 0 0;
  font-size: 14px;
}

.strong {
  color: #020617 !important;
  font-weight: 700;
}

.pillar-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(239, 246, 255, 0.5);
  font-weight: 700;
}

.blue-cta {
  background: var(--blue);
  color: var(--white);
  padding: 68px 0;
}

.blue-cta .eyebrow {
  color: #dbeafe;
}

.blue-cta h2 {
  color: var(--white);
}

.blue-cta p {
  max-width: 760px;
  color: #eff6ff;
  line-height: 1.75;
}

.blue-cta a[href^="mailto:"] {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-grid > div {
  flex: 1 1 620px;
  min-width: 0;
}

.cta-grid .button {
  flex: 0 1 auto;
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft-2);
}

.cta-panel > div {
  flex: 1 1 560px;
  min-width: 0;
}

.cta-panel .button {
  flex: 0 1 auto;
  width: fit-content;
  min-width: 0;
  max-width: 100%;
}

.white-panel {
  background: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin-top: 22px;
}

.trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
}

.hero-extra-stack p {
  color: var(--slate);
}

.category-card {
  padding: 32px;
  box-shadow: 0 18px 45px rgba(23, 37, 84, 0.05);
}

.category-card-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.category-card-head span {
  height: fit-content;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.mini-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.mini-products a {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft-2);
  transition: border-color 160ms ease, background 160ms ease;
}

.mini-products a:hover {
  border-color: #bfdbfe;
  background: var(--soft);
}

.mini-products strong,
.mini-products small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mini-products strong {
  font-size: 14px;
}

.mini-products small {
  margin-top: 4px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.5;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.product-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 22px 52px rgba(23, 37, 84, 0.09);
  transform: translateY(-2px);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-card-top span {
  margin-top: 24px;
  border-radius: 999px;
  background: var(--soft);
  padding: 5px 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card-top i {
  display: block;
  width: 40px;
  height: 6px;
  margin-top: 32px;
  border-radius: 999px;
  background: var(--blue);
}

.product-card h3 {
  margin-top: 20px;
  font-size: 28px;
}

.product-card .composition {
  color: var(--blue);
  font-weight: 700;
}

.product-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.product-visual {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 4;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 54%, #eef6ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 26px rgba(15, 23, 42, 0.05);
  text-align: center;
}

.product-visual.has-image {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 58%, #eef6ff 100%);
}

.product-visual::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}

.product-visual.hero {
  width: min(100%, 520px);
  max-width: 520px;
  margin-inline: auto;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 28px 70px rgba(23, 37, 84, 0.12);
}

.product-visual.compact {
  width: 72px;
  min-width: 72px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}

.product-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: clamp(14px, 5%, 24px);
  object-fit: contain;
  object-position: center;
  color: transparent;
  transition: transform 280ms ease;
}

.product-visual.hero .product-image {
  padding: clamp(22px, 6%, 38px);
}

.product-visual.compact .product-image {
  padding: 6px;
}

.product-card:hover .product-image,
.mini-products a:hover .product-image {
  transform: scale(1.018);
}

.product-image-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 54%, #eef6ff 100%);
  color: var(--blue);
  text-align: center;
}

.product-image-fallback strong {
  color: #0f172a;
  font-size: 15px;
}

.product-image-fallback span {
  max-width: 260px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
}

.product-visual.compact .product-image-fallback {
  gap: 4px;
  padding: 8px;
}

.product-visual.compact .product-image-fallback strong {
  font-size: 10px;
  line-height: 1.2;
}

.product-visual.compact .product-image-fallback span {
  font-size: 9px;
  line-height: 1.2;
}

.product-visual.image-missing .product-image {
  display: none;
}

.product-visual.image-missing .product-image-fallback,
.product-image-fallback[hidden] {
  display: none;
}

.product-visual.image-missing .product-image-fallback:not([hidden]) {
  display: flex;
}

.product-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.product-visual.hero .product-initials {
  width: 96px;
  height: 96px;
  font-size: 30px;
}

.product-visual.compact .product-initials {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 15px;
}

.product-visual p {
  margin: 20px 0 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-visual.compact p,
.product-visual.compact span {
  display: none;
}

.product-visual span {
  max-width: 270px;
  margin-top: 8px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.hero-top {
  margin-top: 32px;
}

.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
}

.blue-text {
  color: var(--blue) !important;
  font-size: 20px !important;
}

.summary-card {
  margin-top: 20px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(23, 37, 84, 0.1);
}

.summary-card dl,
.result-details {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.summary-card dl div,
.result-details div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft-2);
}

dt,
.info-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  font-weight: 700;
}

.product-spec-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.product-spec-table th,
.product-spec-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  color: #0f172a;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.product-spec-table th {
  width: 34%;
  background: var(--soft-2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td {
  border-bottom: 0;
}

.professional-disclaimer {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: rgba(239, 246, 255, 0.7);
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.contact-card,
.form-card {
  padding: 32px;
}

.contact-card {
  background: rgba(239, 246, 255, 0.7);
}

.email-box,
.verification-note,
.notice {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: var(--white);
}

.email-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #020617;
}

.email-box a {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list div {
  padding: 12px 16px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: var(--white);
  color: var(--slate);
  font-size: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  min-width: 0;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 16px;
  color: #0f172a;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px #dbeafe;
}

textarea {
  resize: vertical;
}

.required-mark {
  color: var(--blue);
}

.field-error {
  min-height: 18px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft-2);
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.form-status.show {
  display: block;
}

.form-status.success {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #064e3b;
}

.form-status.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.contact-form-actions .button {
  min-height: 56px;
}

.contact-token-retry[hidden] {
  display: none;
}

.form-note {
  margin-top: 18px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.65;
}

.visually-hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-card h2,
.contact-card h2 {
  margin-top: 16px;
}

.form-card form,
.form-card .two-grid,
#verification-form {
  margin-top: 28px;
}

.auth-grid > .form-card {
  padding: 38px;
  border-color: rgba(191, 219, 254, 0.9);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(23, 37, 84, 0.1);
}

.auth-grid > .form-card h2 {
  margin-top: 18px;
}

.auth-grid > .form-card > p:not(.eyebrow) {
  margin-top: 18px;
}

.auth-grid .notice {
  margin-top: 24px;
}

#verification-form {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

#verification-form label {
  gap: 11px;
}

#verification-form input {
  min-height: 52px;
  border-radius: 14px;
  padding: 15px 17px;
  background: #ffffff;
}

#verification-form .button {
  margin-top: 4px;
  min-height: 56px;
}

.auth-grid .verification-note {
  margin-top: 28px;
}

.auth-grid .result-column {
  gap: 20px;
}

.auth-grid .result-card {
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.auth-grid .result-head {
  gap: 16px;
  margin-top: 4px;
}

.auth-grid .result-head h3 {
  margin-top: 10px;
}

.auth-grid .result-card > p:not(.result-eyebrow) {
  margin-top: 18px;
}

.auth-grid .result-badge {
  margin-top: 8px;
}

.auth-grid .info-card {
  padding: 26px;
  border-radius: 20px;
}

.auth-grid .status-card {
  padding: 22px;
  border-radius: 20px;
}

.full {
  grid-column: 1 / -1;
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.step-card h2 {
  margin-top: 20px;
  font-size: 18px;
}

.result-column {
  display: grid;
  gap: 16px;
}

.result-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.result-card.verified {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #064e3b;
}

.result-card.invalid {
  border-color: #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
}

.result-card.repeated_warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #78350f;
}

.result-card.blocked {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #020617;
}

.result-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  opacity: 0.75;
  text-transform: uppercase;
}

.result-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-head h3 {
  margin-top: 12px;
}

.result-badge {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
}

.result-details {
  grid-template-columns: repeat(2, 1fr);
}

.result-details div {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
}

.verification-note {
  border-color: var(--line);
  background: var(--soft-2);
  color: var(--slate);
  font-size: 12px;
  line-height: 1.6;
}

.verification-note p {
  margin: 8px 0 0;
}

.status-grid {
  grid-template-columns: 1fr;
}

.status-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.status-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.status-card.verified {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #064e3b;
}

.status-card.invalid {
  border-color: #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
}

.status-card.repeated_warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #78350f;
}

.status-card.blocked {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #020617;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020617;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer-copy,
.footer-grid p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.footer-copy {
  max-width: 440px;
  margin-top: 20px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-tags span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 12px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
}

.footer-grid h2 {
  color: #bfdbfe;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1280px) {
  .product-carousel {
    --carousel-visible: 3;
  }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .auth-grid,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .four-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 370px));
  }

  .cta-grid {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .auth-grid {
    gap: 34px;
  }
}

@media (max-width: 992px) {
  .three-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slider {
    height: 420px;
  }

  .mini-products {
    grid-template-columns: 1fr;
  }

  .product-hero-grid > div:last-child {
    width: min(100%, 520px);
    justify-self: center;
  }

  .footer-grid {
    gap: 32px;
  }

  .brand-logo {
    max-width: 118px;
    max-height: 72px;
  }

  .footer-logo {
    max-width: 100px;
    max-height: 58px;
  }
}

@media (max-width: 820px) {
  .hero-slider {
    height: 380px;
  }

  .product-carousel {
    --carousel-visible: 2;
    --carousel-gap: 16px;
  }

  .product-showcase__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }

  .product-showcase__header .button {
    min-height: 52px;
    padding: 12px 24px;
  }

  .product-carousel__viewport {
    padding: 8px 3px 5px;
  }

  .product-carousel__card .product-visual {
    margin: 12px 12px 0;
    border-radius: 18px;
  }

  .product-carousel__image {
    padding: clamp(10px, 3.9%, 16px);
  }

  .product-carousel__content {
    min-height: 174px;
    padding: 14px 18px 17px;
  }

  .product-carousel__content h3 {
    font-size: 19px;
  }

  .product-carousel__content p:not(.product-carousel__badge):not(.product-carousel__strength) {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 760px) {
  .container,
  .section-heading {
    width: min(100% - 32px, 1280px);
  }

  .home-hero,
  .page-hero,
  .stats-section,
  .split-section,
  .white-section,
  .soft-section,
  .blue-cta,
  .product-showcase {
    padding: 56px 0;
  }

  .product-showcase__header {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
  }

  .product-showcase__header p:not(.eyebrow) {
    font-size: 16px;
  }

  .product-carousel__controls {
    grid-template-columns: 56px 1fr 56px;
  }

  .product-carousel__count {
    display: none;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-slider {
    height: 340px;
  }

  .brand-logo {
    max-width: 112px;
    max-height: 68px;
  }

  .footer-logo {
    max-width: 96px;
    max-height: 56px;
  }

  .header-inner {
    gap: 14px;
    padding: 14px 0;
  }

  .hero-media-card {
    left: 16px;
    right: 16px;
    padding: 16px;
  }

  .stats-grid,
  .category-grid,
  .three-grid,
  .four-grid,
  .two-grid,
  .product-grid,
  .trust-row,
  .mini-products,
  .result-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    justify-items: center;
  }

  .cta-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-grid {
    align-items: center;
    text-align: center;
  }

  .cta-grid > div,
  .cta-panel > div {
    flex-basis: auto;
  }

  .category-card-head {
    flex-direction: column;
  }

  .cta-panel,
  .category-card,
  .form-card,
  .contact-card,
  .summary-card {
    padding: 24px;
  }

  .auth-grid > .form-card,
  .auth-grid .result-card {
    padding: 26px;
    border-radius: 20px;
  }

  .auth-grid .result-column {
    gap: 18px;
  }

  #verification-form {
    gap: 20px;
    margin-top: 28px;
  }

  .auth-grid .verification-note {
    margin-top: 24px;
  }

  .button-row,
  .breadcrumb-row {
    align-items: stretch;
  }

  .cta-grid .button,
  .cta-panel .button {
    width: fit-content;
    min-width: 0;
  }

  .product-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .product-showcase {
    padding: 42px 0 34px;
  }

  .product-showcase__header {
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    text-align: center;
  }

  .product-showcase__header > div {
    max-width: 100%;
  }

  .product-showcase__header p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .product-showcase__header .button {
    min-height: 50px;
    padding: 12px 22px;
  }

  .product-carousel {
    --carousel-visible: 1;
    --carousel-gap: 14px;
  }

  .product-carousel__viewport {
    border-radius: 20px;
    padding: 4px 2px 0;
  }

  .product-carousel__card,
  .product-carousel__card.is-active,
  .product-carousel__card:hover,
  .product-carousel__card.is-active:hover {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: none;
    border-radius: 20px;
    opacity: 1;
    transform: none;
  }

  .product-carousel__card.is-active {
    border-color: rgba(59, 130, 246, 0.54);
    box-shadow: 0 18px 42px rgba(30, 64, 175, 0.12), 0 8px 18px rgba(15, 23, 42, 0.05);
  }

  .product-carousel__card .product-visual {
    width: 42%;
    max-width: 220px;
    min-width: 200px;
    margin: 12px 0 12px 12px;
    border-radius: 16px;
  }

  .product-carousel__image {
    padding: clamp(6px, 3.2%, 10px);
  }

  .product-carousel__card.is-active .product-carousel__image {
    transform: none;
  }

  .product-carousel__card:hover .product-carousel__image {
    transform: scale(1.012);
  }

  .product-carousel__content {
    min-height: 0;
    flex: 1;
    padding: 14px 16px 14px;
  }

  .product-carousel__badge {
    font-size: 10px;
    letter-spacing: 0.17em;
  }

  .product-carousel__content h3 {
    margin-top: 7px;
    font-size: 20px;
    line-height: 1.15;
  }

  .product-carousel__strength {
    margin-top: 7px;
    font-size: 14px;
  }

  .product-carousel__content p:not(.product-carousel__badge):not(.product-carousel__strength) {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .product-carousel__link {
    min-height: 44px;
    margin-top: 8px;
    padding-top: 0;
    font-size: 14px;
  }

  .product-carousel__controls {
    grid-template-columns: 48px minmax(72px, 1fr) 48px;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .product-carousel__arrow {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .container,
  .section-heading,
  .mobile-nav {
    width: min(100% - 24px, 1280px);
  }

  .home-hero,
  .page-hero,
  .stats-section,
  .split-section,
  .white-section,
  .soft-section,
  .blue-cta,
  .product-showcase {
    padding: 44px 0;
  }

  .product-showcase {
    padding-bottom: 36px;
  }


  .home-hero h1,
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  h2 {
    font-size: 26px;
  }

  .home-hero p:not(.eyebrow),
  .page-hero > .container > p:not(.eyebrow) {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .brand-logo {
    max-width: 96px;
    max-height: 58px;
  }

  .footer-logo {
    max-width: 86px;
    max-height: 50px;
  }

  .hero-media {
    padding-bottom: 0;
  }

  .hero-slider {
    height: 280px;
  }

  .hero-media-card {
    position: static;
    margin-top: 14px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }

  .product-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .product-visual.hero {
    border-radius: 18px;
  }

  .product-initials {
    width: 56px;
    height: 56px;
  }

  .product-visual.hero .product-initials {
    width: 82px;
    height: 82px;
  }

  .info-card,
  .product-card,
  .step-card,
  .result-card,
  .status-card,
  .cta-panel,
  .category-card,
  .form-card,
  .contact-card,
  .summary-card {
    border-radius: 16px;
    padding: 20px;
  }

  .product-card {
    width: 100%;
  }

  .product-card .button {
    width: fit-content;
    min-width: 0;
  }

  .auth-grid > .form-card,
  .auth-grid .result-card,
  .auth-grid .info-card,
  .auth-grid .status-card {
    border-radius: 18px;
    padding: 20px;
  }

  #verification-form {
    gap: 18px;
    margin-top: 24px;
  }

  #verification-form input {
    min-height: 50px;
  }

  .auth-grid .notice,
  .auth-grid .verification-note {
    margin-top: 20px;
  }

  .auth-grid .result-card > p:not(.result-eyebrow) {
    margin-top: 14px;
  }

  .footer-tags span,
  .trust-row span {
    width: 100%;
  }
}

@media (max-width: 389px) {
  .hero-slider {
    height: 250px;
  }

  .product-carousel__card,
  .product-carousel__card.is-active,
  .product-carousel__card:hover,
  .product-carousel__card.is-active:hover {
    flex-direction: column;
    align-items: stretch;
  }

  .product-carousel__card .product-visual {
    width: clamp(150px, 50vw, 175px);
    min-width: 0;
    max-width: 175px;
    margin: 10px auto 0;
  }

  .product-carousel__content {
    padding: 12px 16px 15px;
  }

  .product-carousel__content h3 {
    font-size: 19px;
  }
}

@media (max-width: 600px) and (max-height: 700px) {
  .product-showcase {
    padding: 34px 0 30px;
  }

  .product-showcase__header {
    margin-bottom: 20px;
  }

  .product-showcase__header p:not(.eyebrow) {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.5;
  }

  .product-showcase__header .button {
    min-height: 48px;
    padding: 11px 20px;
  }

  .product-carousel__card .product-visual {
    width: clamp(150px, 48vw, 176px);
  }

  .product-carousel__content {
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .product-carousel__content h3 {
    margin-top: 6px;
    font-size: 18px;
  }

  .product-carousel__strength,
  .product-carousel__content p:not(.product-carousel__badge):not(.product-carousel__strength) {
    margin-top: 5px;
  }

  .product-carousel__link {
    min-height: 42px;
    margin-top: 5px;
  }

  .product-carousel__controls {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-showcase.product-showcase--ready .product-showcase__header,
  .product-showcase.product-showcase--ready .product-carousel,
  .product-card,
  .product-image,
  .product-carousel__track,
  .product-carousel__card,
  .product-carousel__progress span,
  .product-carousel__arrow {
    transition: none;
  }

  .product-card:hover,
  .product-card:hover .product-image,
  .mini-products a:hover .product-image,
  .product-carousel__card,
  .product-carousel__card.is-active,
  .product-carousel__card:hover,
  .product-carousel__card.is-active:hover,
  .product-carousel__card.is-active .product-carousel__image,
  .product-carousel__card:hover .product-carousel__image,
  .product-carousel__link:hover span,
  .product-carousel__arrow:hover {
    transform: none;
  }
}
