@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

.hero-slider {
  width: 100%;
  position: relative;
  padding: 0 0 18px;
  overflow: visible;
}

.hero-slider-shell {
  position: relative;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 14px;
  z-index: 2;
}

.hero-slider-track {
  position: relative;
  min-height: clamp(540px, 68vh, 680px);
  width: 100%;
  overflow: visible;
}

.hero-slider-track::before {
  content: none;
  display: none;
}

.hero-slide {
  --hero-bg-color: var(--hero-primary);
  --hero-bg-image: none;
  --hero-primary: #0f4c81;
  --hero-accent: #dc2626;
  --hero-text: #ffffff;
  --hero-text-muted: rgba(255, 255, 255, 0.84);
  --hero-label-bg: rgba(255, 255, 255, 0.14);
  --hero-label-border: rgba(255, 255, 255, 0.18);
  --hero-label-text: #ffffff;
  --hero-cta-bg: #ffffff;
  --hero-cta-text: var(--hero-primary);
  --hero-cta-border: #cbd5e1;
  --hero-cta-hover-bg: #f8fafc;
  --hero-cta-hover-text: #020617;
  --hero-overlay-start: rgba(8, 15, 31, 0.48);
  --hero-overlay-mid: rgba(8, 15, 31, 0.24);
  --hero-overlay-end: rgba(8, 15, 31, 0.12);
  --hero-top-wash: rgba(255, 255, 255, 0.06);
  --hero-shell-glow: rgba(255, 255, 255, 0.08);
  --hero-shell-panel: rgba(255, 255, 255, 0.03);
  --hero-shell-border: rgba(255, 255, 255, 0.08);
  --hero-soft-shade: rgba(15, 23, 42, 0.18);
  --hero-bottom-orb: rgba(220, 38, 38, 0.16);
  --hero-top-orb: rgba(255, 255, 255, 0.12);
  --hero-grid-highlight: rgba(255, 255, 255, 0.06);
  --hero-grid-fade: rgba(255, 255, 255, 0.02);
  position: absolute;
  inset: 0;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(1.015);
  transform-origin: center center;
  transition: none;
  background-color: var(--hero-bg-color);
  background-image:
    var(--hero-bg-image),
    radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--hero-accent) 3%, rgba(255, 255, 255, 0)) 0%, transparent 32%),
    radial-gradient(circle at 86% 10%, color-mix(in srgb, var(--hero-accent) 2.5%, rgba(255, 255, 255, 0)) 0%, transparent 24%),
    linear-gradient(135deg, color-mix(in srgb, var(--hero-bg-color) 98%, #ffffff 2%) 0%, color-mix(in srgb, var(--hero-bg-color) 95%, #f8fafc 5%) 54%, color-mix(in srgb, var(--hero-bg-color) 92%, #eef2f7 8%) 100%);
  background-size: cover, auto, auto, cover;
  background-position: center, 0 0, 0 0, center;
  background-repeat: no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide::before {
  z-index: 0;
  background:
    radial-gradient(ellipse at -8% 108%, color-mix(in srgb, var(--hero-shell-glow) 90%, transparent) 0%, color-mix(in srgb, var(--hero-shell-panel) 74%, transparent) 18%, transparent 44%),
    radial-gradient(ellipse at -8% 108%, color-mix(in srgb, var(--hero-shell-border) 46%, transparent) 0%, transparent 48%),
    linear-gradient(90deg, var(--hero-overlay-start) 0%, var(--hero-overlay-mid) 36%, rgba(255, 255, 255, 0) 64%, var(--hero-overlay-end) 100%),
    linear-gradient(180deg, var(--hero-top-wash), rgba(255, 255, 255, 0));
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);
  opacity: 0.78;
  transition: opacity 0.68s ease, transform 0.68s ease;
}

.hero-slide::after {
  z-index: 0;
  top: -10%;
  right: -6%;
  bottom: auto;
  left: auto;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, color-mix(in srgb, var(--hero-shell-glow) 100%, transparent) 0%, color-mix(in srgb, var(--hero-shell-panel) 80%, transparent) 30%, transparent 72%),
    linear-gradient(180deg, color-mix(in srgb, var(--hero-shell-panel) 85%, transparent) 0%, color-mix(in srgb, var(--hero-shell-panel) 38%, transparent) 100%);
  border: 1px solid color-mix(in srgb, var(--hero-shell-border) 70%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--hero-shell-glow) 44%, transparent),
    0 22px 46px color-mix(in srgb, var(--hero-soft-shade) 34%, transparent);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  filter: none;
  opacity: 0.44;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.hero-slider.is-ready .hero-slide {
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-grid {
  position: relative;
  min-height: clamp(580px, 72vh, 760px);
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(260px, 0.62fr);
  gap: clamp(0px, 0.8vw, 10px);
  align-items: stretch;
  isolation: isolate;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-slide-grid::before,
.hero-slide-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.hero-slide-grid::before {
  left: clamp(-132px, -9vw, -96px);
  bottom: clamp(-132px, -9vw, -96px);
  width: min(31vw, 420px);
  height: min(31vw, 420px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.18) 18%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.02) 66%, transparent 78%),
    linear-gradient(180deg, color-mix(in srgb, var(--hero-shell-panel) 88%, transparent) 0%, color-mix(in srgb, var(--hero-shell-panel) 34%, transparent) 100%);
  border: 1px solid color-mix(in srgb, var(--hero-shell-border) 56%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--hero-shell-glow) 34%, transparent),
    0 18px 42px color-mix(in srgb, var(--hero-soft-shade) 26%, transparent);
  backdrop-filter: blur(52px);
  -webkit-backdrop-filter: blur(52px);
  filter: none;
  opacity: 0.16;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.hero-slide-grid::after {
  content: none;
  display: none;
}

.hero-slide-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(28px, 3.6vw, 44px) clamp(8px, 1vw, 12px) clamp(42px, 5vw, 60px) clamp(10px, 1.2vw, 18px);
  overflow: hidden;
  background: transparent;
  color: var(--hero-text);
  text-align: left;
}

.hero-slide-copy-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.hero-slide-copy-inner > * {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.985);
  will-change: transform, opacity;
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-copy::before {
  content: none;
  display: none;
}

.hero-slide-copy::after {
  content: none;
  display: none;
}

.hero-slide-label {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: max-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--hero-label-bg);
  background-color: var(--hero-label-bg);
  border: 1px solid var(--hero-label-border);
  color: var(--hero-label-text);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--hero-accent) 10%, transparent);
  opacity: 1;
  isolation: isolate;
  mix-blend-mode: normal;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide-title {
  max-width: 13.5ch;
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(3rem, 4.45vw, 4.6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-slide-subtitle {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(1.02rem, 1.15vw, 1.14rem);
  line-height: 1.68;
  color: var(--hero-text-muted);
}

.hero-slide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid var(--hero-cta-border);
  border-radius: 14px;
  background: var(--hero-cta-bg);
  color: var(--hero-cta-text);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-slide-cta:hover,
.hero-slide-cta:focus-visible {
  background: var(--hero-cta-hover-bg);
  color: var(--hero-cta-hover-text);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.18);
}

.hero-slide-cta:focus-visible,
.hero-slider-arrow:focus-visible,
.hero-slider-dot:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--hero-accent) 28%, transparent);
  outline-offset: 3px;
}

.hero-slide-visual {
  position: relative;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(22px, 2.3vw, 30px) clamp(4px, 0.8vw, 10px) clamp(34px, 4vw, 48px) 0;
  background: transparent;
}

.hero-slide-visual > * {
  position: relative;
  z-index: 2;
}

.hero-slide-visual-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  min-height: clamp(340px, 41vw, 590px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.975);
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-visual-stage::before,
.hero-slide-visual-stage::after {
  display: none;
}

.hero-slide-visual::before,
.hero-slide-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: none;
}

.hero-slide-visual::before {
  inset: auto;
  border-radius: 0;
  background: none;
  border: 0;
  opacity: 0;
}

.hero-slide-visual::after {
  width: 0;
  height: 0;
  left: auto;
  bottom: auto;
  border-radius: 0;
  background: none;
  filter: none;
  opacity: 0;
}

.hero-slide-art {
  position: absolute;
  inset: 9% 4% 7% 6%;
  width: auto;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.2;
}

.hero-slide-art::before,
.hero-slide-art::after {
  content: "";
  position: absolute;
  display: none;
  border: 0;
  border-radius: 0;
}

.hero-slide-art::before {
  width: 0;
  height: 0;
  left: auto;
  bottom: auto;
}

.hero-slide-art::after {
  inset: auto;
  border-radius: 0;
}

.hero-slide-product {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-slide-product img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: clamp(350px, 40vw, 560px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 40px rgba(15, 23, 42, 0.18));
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.95);
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-slide-label,
.hero-slide.is-active .hero-slide-title,
.hero-slide.is-active .hero-slide-subtitle,
.hero-slide.is-active .hero-slide-cta {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide.is-active .hero-slide-label {
  transition-delay: 0.04s;
}

.hero-slide.is-active .hero-slide-title {
  transition-delay: 0.1s;
}

.hero-slide.is-active .hero-slide-subtitle {
  transition-delay: 0.18s;
}

.hero-slide.is-active .hero-slide-cta {
  transition-delay: 0.26s;
}

.hero-slide.is-active .hero-slide-visual-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.32s;
}

.hero-slide.is-active .hero-slide-product img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.38s;
}

.hero-slider.is-ready .hero-slide.is-active::after {
  animation: heroOrbTopFloat 6.8s ease-in-out infinite alternate;
}

.hero-slider.is-ready .hero-slide.is-active .hero-slide-grid::before {
  animation: heroOrbBottomFloat 7.4s ease-in-out infinite alternate;
}

.hero-slider.is-ready .hero-slide.is-active::before {
  animation: heroBackdropShift 8.2s ease-in-out infinite alternate;
}

@keyframes heroOrbTopFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-10px, 12px, 0) scale(1.04);
  }
}

@keyframes heroOrbBottomFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(10px, -14px, 0) scale(1.05);
  }
}

@keyframes heroBackdropShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.76;
  }

  100% {
    transform: translate3d(0, -6px, 0) scale(1.015);
    opacity: 0.88;
  }
}

.hero-slider-controls {
  position: absolute;
  inset: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.hero-slider-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  bottom: auto;
  width: 48px;
  height: 48px;
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-50%);
  z-index: 7;
  pointer-events: auto;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.hero-slider-arrow-prev {
  left: clamp(24px, 2.8vw, 40px);
}

.hero-slider-arrow-next {
  right: clamp(24px, 2.8vw, 40px);
}

.hero-slider-dots {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  bottom: clamp(20px, 4vw, 36px);
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  transform: translateX(-50%);
  z-index: 7;
  pointer-events: auto;
}

.hero-slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
}

.hero-slider-dot.is-active {
  width: 28px;
  background: var(--hero-accent);
}

.home-seo-section {
  padding: 8px 0 24px;
}

.home-seo-card {
  display: grid;
  gap: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(220, 38, 38, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.home-seo-copy {
  display: grid;
  gap: 10px;
}

.home-seo-eyebrow {
  margin: 0;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-seo-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-seo-description {
  margin: 0;
  max-width: 78ch;
  color: #475569;
  line-height: 1.8;
}

.home-seo-keywords {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-seo-keyword {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.96);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.home-seo-keyword-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.home-seo-keyword-link:hover,
.home-seo-keyword-link:focus-visible {
  color: #991b1b;
}

.home-faq-section {
  padding: 12px 0 28px;
}

.home-faq-shell {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(15, 76, 129, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.home-faq-head {
  display: grid;
  gap: 12px;
}

.home-faq-eyebrow {
  margin: 0;
  color: #0f4c81;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-faq-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-faq-subtitle {
  margin: 0;
  max-width: 72ch;
  color: #475569;
  line-height: 1.8;
}

.home-faq-list {
  display: grid;
  gap: 14px;
}

.home-faq-item {
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.home-faq-question {
  position: relative;
  display: block;
  padding: 20px 58px 20px 22px;
  list-style: none;
  cursor: pointer;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
}

.home-faq-question::-webkit-details-marker {
  display: none;
}

.home-faq-question::before,
.home-faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #0f4c81;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.home-faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.home-faq-item[open] .home-faq-question::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.4);
}

.home-faq-answer {
  padding: 0 22px 22px;
}

.home-faq-answer p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.home-faq-subtitle p {
  margin: 0;
}

.home-faq-subtitle p + p,
.home-faq-answer p + p,
.home-faq-answer ul,
.home-faq-answer ol {
  margin-top: 12px;
}

.home-faq-answer ul,
.home-faq-answer ol {
  padding-left: 20px;
  color: #475569;
}

.home-faq-answer a,
.home-faq-subtitle a {
  color: #b91c1c;
  font-weight: 700;
  text-decoration: none;
}

.home-faq-answer a:hover,
.home-faq-answer a:focus-visible,
.home-faq-subtitle a:hover,
.home-faq-subtitle a:focus-visible {
  color: #991b1b;
  text-decoration: underline;
}

.home-faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(220, 38, 38, 0.08));
}

.home-faq-cta p {
  margin: 0;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.7;
}

.home-seo-description a,
.home-seo-structure-card-copy a,
.content-link-card a {
  color: #b91c1c;
  font-weight: 700;
  text-decoration: none;
}

.home-seo-description a:hover,
.home-seo-description a:focus-visible,
.home-seo-structure-card-copy a:hover,
.home-seo-structure-card-copy a:focus-visible,
.content-link-card a:hover,
.content-link-card a:focus-visible {
  color: #991b1b;
  text-decoration: underline;
}

.home-seo-structure-section {
  padding: 4px 0 28px;
}

.home-seo-structure-shell {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(15, 76, 129, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.home-seo-structure-head {
  display: grid;
  gap: 12px;
}

.home-seo-structure-eyebrow,
.content-link-hub-eyebrow {
  margin: 0;
  color: #0f4c81;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-seo-structure-title,
.content-link-hub-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-seo-structure-subtitle,
.content-link-hub-subtitle {
  margin: 0;
  max-width: 72ch;
  color: #475569;
  line-height: 1.8;
}

.home-seo-structure-subtitle .home-seo-description,
.home-seo-structure-card-copy .home-seo-description {
  margin: 0;
  max-width: none;
}

.home-seo-structure-card-copy p,
.home-seo-structure-subtitle p {
  margin: 0;
}

.home-seo-structure-card-copy p + p,
.home-seo-structure-subtitle p + p,
.home-seo-structure-card-copy ul,
.home-seo-structure-card-copy ol {
  margin-top: 12px;
}

.home-seo-structure-grid,
.content-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-seo-section,
.home-seo-structure-section,
.best-products-section,
.quick-categories-section,
.home-products-summary-section,
.article-summary-section,
.why-choose-section,
.counters-section,
.order-steps-section,
.testimonials-section,
.home-faq-section,
.client-logos-section {
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

.home-seo-structure-card,
.content-link-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.home-seo-structure-label {
  margin: 0;
  color: #b91c1c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-seo-structure-card-title,
.content-link-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.home-seo-structure-card-copy,
.content-link-card p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.article-seo-block + .article-seo-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.article-seo-block h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.article-seo-intro {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.85;
  font-size: 1.02rem;
}

.article-richtext h3 {
  margin: 1.5rem 0 0.75rem;
  color: #0f172a;
  font-size: 1.18rem;
  line-height: 1.35;
}

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

.article-seo-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.article-seo-card h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 1.02rem;
}

.article-seo-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  line-height: 1.75;
}

.article-seo-list li + li {
  margin-top: 10px;
}

.article-seo-cta-block {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(220, 38, 38, 0.08));
}

.article-seo-cta-block p {
  margin: 0;
  color: #334155;
  line-height: 1.8;
}

.article-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.content-link-hub {
  display: grid;
  gap: 20px;
  margin-top: 32px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.content-link-hub-product {
  margin-top: 28px;
}

.content-link-hub-head {
  display: grid;
  gap: 10px;
}

.content-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.92);
  color: #0f4c81;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .hero-slider {
    padding-bottom: 18px;
  }

  .hero-slider-shell {
    width: 100%;
    padding: 0 14px;
  }

  .hero-slider-track,
  .hero-slide-grid {
    min-height: auto;
  }

  .hero-slide {
    position: relative;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-slide-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide-grid::before,
  .hero-slide-grid::after {
    content: none;
    display: none;
  }

  .hero-slide-copy {
    padding: 28px 16px 16px;
  }

  .hero-slide-copy-inner {
    max-width: min(100%, 760px);
    gap: 16px;
  }

  .hero-slide-title {
    max-width: 13ch;
    font-size: clamp(2.35rem, 6.4vw, 3.1rem);
  }

  .hero-slide-subtitle {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.66;
  }

  .hero-slide-cta {
    min-height: 48px;
    padding: 11px 20px;
    font-size: 0.94rem;
  }

  .hero-slide-visual {
    min-height: 260px;
    padding: 4px 14px 50px;
  }

  .hero-slide-visual-stage {
    width: min(100%, 600px);
    min-height: 344px;
  }

  .hero-slide-art {
    inset: 10% 4% 10% 4%;
  }

  .hero-slide-product {
    width: min(100%, 560px);
  }

  .hero-slide-product img {
    max-height: 350px;
  }

  .hero-slide::after {
    top: -8%;
    right: -8%;
    width: min(48vw, 360px);
    height: min(48vw, 360px);
    opacity: 0.36;
  }

  .hero-slider-controls {
    inset: 0;
    top: 0;
    bottom: 0;
  }

  .hero-slider-arrow-prev {
    left: 18px;
  }

  .hero-slider-arrow-next {
    right: 18px;
  }

  .hero-slider-dots {
    bottom: 18px;
  }

  .home-seo-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .home-faq-shell {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .home-seo-structure-shell,
  .content-link-hub {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .home-seo-structure-grid,
  .content-link-grid {
    grid-template-columns: 1fr;
  }

  .article-seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide::before,
  .hero-slide::after,
  .hero-slide-grid::before,
  .hero-slide-copy-inner > *,
  .hero-slide-visual-stage,
  .hero-slide-product img,
  .hero-slider-arrow {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .hero-slide-copy-inner > *,
  .hero-slide-visual-stage,
  .hero-slide-product img {
    opacity: 1 !important;
  }
}

@media (max-width: 640px) {
  .home-seo-section {
    padding-top: 0;
  }

  .home-seo-card {
    padding: 20px 18px;
  }

  .home-faq-shell {
    gap: 18px;
    padding: 20px 18px;
  }

  .home-seo-structure-shell,
  .content-link-hub {
    gap: 18px;
    padding: 20px 18px;
  }

  .home-faq-question {
    padding: 18px 50px 18px 18px;
    font-size: 0.96rem;
  }

  .home-faq-answer {
    padding: 0 18px 18px;
  }

  .home-faq-cta {
    align-items: stretch;
    padding: 16px;
  }

  .home-faq-cta .best-product-btn {
    width: 100%;
    justify-content: center;
  }

  .home-seo-structure-card,
  .content-link-card {
    padding: 18px;
  }

  .article-seo-card,
  .article-seo-cta-block {
    padding: 18px;
  }

  .hero-slide-grid {
    min-height: auto;
  }

  .hero-slide-grid::before,
  .hero-slide-grid::after {
    content: none;
    display: none;
  }

  .hero-slide-copy {
    padding: 24px 14px 12px;
  }

  .hero-slide-copy-inner {
    gap: 14px;
  }

  .hero-slide-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 8vw, 2.7rem);
  }

  .hero-slide-subtitle {
    font-size: 0.96rem;
    line-height: 1.64;
  }

  .hero-slide-cta {
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 13px;
    font-size: 0.92rem;
    white-space: normal;
  }

  .hero-slide-visual {
    padding: 0 12px 54px;
  }

  .hero-slide-visual-stage {
    min-height: 260px;
  }

  .hero-slide-product img {
    max-height: 285px;
  }

  .hero-slide::after {
    top: -4%;
    right: -16%;
    width: min(58vw, 260px);
    height: min(58vw, 260px);
    opacity: 0.26;
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
  }

  .hero-slide-art {
    inset: 10% 0 8% 0;
  }

  .hero-slider-controls {
    inset: 0;
    top: 0;
    bottom: 0;
  }

  .hero-slider-dots {
    bottom: 16px;
    gap: 8px;
    padding: 8px 12px;
  }

  .hero-slider-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-slider-arrow-prev {
    left: 12px;
  }

  .hero-slider-arrow-next {
    right: 12px;
  }
}

.quick-categories-section {
  padding: 18px 0 8px;
}

.quick-categories-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.quick-categories-eyebrow {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-categories-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quick-categories-subtitle {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.quick-categories-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 196px);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 4px 14px;
  scroll-snap-type: x proximity;
}

.quick-categories-rail::-webkit-scrollbar {
  height: 8px;
}

.quick-categories-rail::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.48);
  border-radius: 999px;
}

.quick-category-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(15, 23, 42, 0.03), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
  transform-origin: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.quick-category-card:hover,
.quick-category-card:focus-visible,
.quick-category-card.is-active {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(220, 38, 38, 0.22);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
}

.quick-category-card.is-active {
  background:
    radial-gradient(circle at top right, rgba(220, 38, 38, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.quick-category-card:focus-visible {
  outline: 0;
}

.quick-category-card.is-active .quick-category-name {
  color: #0f172a;
}

.quick-category-card.is-active .quick-category-subtext {
  color: #b91c1c;
}

.quick-category-card.is-all {
  justify-content: flex-start;
  min-height: 170px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.15), transparent 34%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff7f4 100%);
  border-color: rgba(251, 146, 60, 0.2);
}

.quick-category-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.quick-category-thumb-all {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.85), transparent 24%),
    linear-gradient(135deg, #fff1eb 0%, #ffffff 52%, #eef6ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 28px rgba(15, 23, 42, 0.08);
}

.quick-category-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.quick-category-card:hover .quick-category-thumb img,
.quick-category-card:focus-visible .quick-category-thumb img,
.quick-category-card.is-active .quick-category-thumb img {
  transform: scale(1.05);
}

.quick-category-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dbeafe, #f8fafc);
  color: #1d4ed8;
  font-size: 2rem;
  font-weight: 800;
}

.quick-category-all-icon {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #0f172a;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-category-all-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #9a3412;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
}

.quick-category-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-category-name {
  color: #0f172a;
  font-weight: 800;
  line-height: 1.35;
}

.quick-category-subtext {
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.4;
}

.quick-category-card.is-all .quick-category-name {
  font-size: 1.08rem;
}

.quick-category-card.is-all .quick-category-subtext {
  max-width: 14ch;
  color: #7c2d12;
}

.best-products-section {
  padding: 36px 0 42px;
}

.best-products-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 26px;
}

.best-products-eyebrow {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.best-products-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.best-products-subtitle {
  margin: 12px 0 0;
  max-width: 56ch;
  color: #475569;
  line-height: 1.75;
}

.best-products-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.best-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.best-product-card:hover,
.best-product-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(220, 38, 38, 0.16);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.09);
}

.best-product-media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  display: block;
  background:
    radial-gradient(circle at top right, rgba(220, 38, 38, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.best-product-rating {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 248, 220, 0.96) 0%, rgba(245, 215, 123, 0.92) 52%, rgba(212, 167, 63, 0.95) 100%);
  color: #5f3f00;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(212, 167, 63, 0.42);
  box-shadow:
    0 8px 18px rgba(212, 167, 63, 0.2),
    0 0 18px rgba(245, 215, 123, 0.18);
  backdrop-filter: blur(8px);
}

.best-product-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}

.best-product-rating-star {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  color: rgba(95, 63, 0, 0.22);
}

.best-product-rating-star::before {
  content: '★';
  position: absolute;
  inset: 0 auto 0 0;
  color: #f59e0b;
  overflow: hidden;
  width: 0;
}

.best-product-rating-star--full::before {
  width: 100%;
}

.best-product-rating-star--half::before {
  width: 52%;
}

.best-product-rating-value {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #5f3f00;
}

.best-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-product-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: #1d4ed8;
}

.best-product-placeholder span {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.best-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 18px;
}

.best-product-category {
  margin-bottom: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.best-product-name {
  margin: 0;
  color: #0f172a;
  font-size: 1.06rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
  min-height: 2.8em;
}

.best-product-copy {
  margin: 9px 0 0;
  color: #475569;
  line-height: 1.7;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 5.1em;
}

.best-product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.best-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.best-product-btn:hover,
.best-product-btn:focus-visible {
  transform: translateY(-1px);
}

.best-product-btn-primary {
  background: linear-gradient(180deg, #c20b0b 0%, #a80100 100%);
  color: #fff;
  box-shadow: 0 12px 20px rgba(168, 1, 0, 0.22);
}

.best-product-btn-primary:hover,
.best-product-btn-primary:focus-visible {
  background: linear-gradient(180deg, #d01010 0%, #8f0100 100%);
  box-shadow: 0 16px 24px rgba(168, 1, 0, 0.28);
}

.best-product-btn-secondary {
  border: 1px solid #dbe4f0;
  background: #fff;
  color: #0f172a;
}

.best-products-empty {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed #cbd5e1;
  color: #64748b;
  text-align: center;
  font-weight: 700;
}

.home-products-summary-section {
  padding: 20px 0 12px;
}

.home-products-summary-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.home-products-summary-eyebrow {
  margin: 0 0 10px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-products-summary-title {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.65rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.home-products-summary-meta {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.home-products-summary-subtitle {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.home-products-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-product-card[hidden],
.home-products-summary-pagination[hidden],
.home-products-summary-empty[hidden] {
  display: none !important;
}

.home-products-summary-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.home-products-summary-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-products-summary-page-btn:hover,
.home-products-summary-page-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(185, 28, 28, 0.16);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.home-products-summary-page-btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.home-products-summary-page-info {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.home-product-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.home-product-card:hover,
.home-product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.18);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
}

.home-product-media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  display: block;
  background:
    radial-gradient(circle at top right, rgba(220, 38, 38, 0.06), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
  isolation: isolate;
}

.home-product-media-sheen {
  position: absolute;
  inset: 0 auto auto 0;
  width: 68%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-product-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  will-change: opacity;
}

.home-product-media-quickview {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.home-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.001);
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.home-product-card:hover .home-product-media img,
.home-product-card:focus-within .home-product-media img {
  filter: brightness(1.03) saturate(1.03);
  transform: scale(1.05);
}

.home-product-card:hover .home-product-media-overlay,
.home-product-card:focus-within .home-product-media-overlay {
  opacity: 0;
}

.home-product-card:hover .home-product-media-sheen,
.home-product-card:focus-within .home-product-media-sheen {
  transform: translateX(6px);
  opacity: 0.7;
}

.home-product-card:hover .home-product-media-quickview,
.home-product-card:focus-within .home-product-media-quickview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.68);
  font-size: 2.35rem;
  font-weight: 800;
}

.home-product-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.home-product-category {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.88);
  color: #475569;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-product-name {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.35;
}

.home-product-copy {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.home-product-actions .best-product-btn {
  min-width: 0;
  flex: 1 1 0;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-product-actions .best-product-btn:hover,
.home-product-actions .best-product-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}

.home-product-actions .best-product-btn-secondary {
  border-color: rgba(203, 213, 225, 0.96);
  background: rgba(255, 255, 255, 0.88);
  color: #334155;
}

.home-product-card:hover .home-product-actions .best-product-btn-secondary,
.home-product-card:focus-within .home-product-actions .best-product-btn-secondary {
  border-color: rgba(148, 163, 184, 0.86);
  background: #fff;
}

.home-product-actions .best-product-btn-primary {
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.16);
}

.home-product-card:hover .home-product-actions .best-product-btn-primary,
.home-product-card:focus-within .home-product-actions .best-product-btn-primary {
  box-shadow: 0 16px 28px rgba(220, 38, 38, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .home-product-actions {
    opacity: 0.82;
    transform: translateY(8px);
    transition:
      opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
  }

  .home-product-card:hover .home-product-actions,
  .home-product-card:focus-within .home-product-actions {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-products-summary-empty {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .quick-categories-head,
  .best-products-head,
  .home-products-summary-head {
    grid-template-columns: 1fr;
  }

  .best-products-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-products-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-products-summary-pagination {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .best-products-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-products-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quick-categories-section {
    padding-top: 10px;
  }

  .quick-categories-rail {
    grid-auto-columns: minmax(148px, 148px);
    gap: 12px;
  }

  .quick-category-card {
    padding: 12px;
    border-radius: 20px;
  }

  .quick-category-card:hover,
  .quick-category-card:focus-visible,
  .quick-category-card.is-active {
    transform: translateY(-3px) scale(1.02);
  }

  .best-products-section {
    padding-top: 20px;
  }

  .home-products-summary-section {
    padding-top: 18px;
  }

  .best-products-rail {
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 10px);
    grid-template-columns: none;
    overflow-x: auto;
    gap: 14px;
    padding: 4px 2px 12px;
    scroll-snap-type: x proximity;
  }

  .best-products-rail::-webkit-scrollbar {
    height: 8px;
  }

  .best-products-rail::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.55);
    border-radius: 999px;
  }

  .best-product-card {
    border-radius: 22px;
  }

  .best-product-media {
    aspect-ratio: 1 / 1.02;
  }

  .best-product-body {
    padding: 18px;
  }

  .best-product-category {
    font-size: 0.74rem;
  }

  .best-product-name {
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .best-product-copy {
    font-size: 0.9rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    min-height: 0;
  }

  .best-product-actions {
    gap: 8px;
  }

  .best-product-actions .best-product-btn {
    min-width: 0;
    flex: 1 1 0;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .home-products-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-product-card {
    border-radius: 20px;
  }

  .home-product-media {
    aspect-ratio: 1 / 1.02;
  }

  .home-product-body {
    gap: 10px;
    padding: 14px;
  }

  .home-product-category {
    padding: 5px 10px;
    font-size: 0.74rem;
  }

  .home-product-name {
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .home-product-copy {
    font-size: 0.9rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
  }

  .home-product-actions {
    gap: 8px;
  }

  .home-product-actions .best-product-btn {
    min-width: 0;
    flex: 1 1 0;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .home-products-summary-pagination {
    gap: 10px;
    margin-top: 18px;
  }

  .home-products-summary-page-btn {
    min-width: 0;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .home-products-summary-page-info {
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .home-product-body {
    padding: 12px;
  }

  .home-product-name {
    font-size: 0.92rem;
  }

  .home-product-copy {
    font-size: 0.84rem;
  }
}


.article-summary-section {
  padding: 18px 0 56px;
}

.article-summary-head,
.article-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.article-summary-head-compact {
  margin-bottom: 18px;
}

.article-summary-eyebrow,
.article-page-eyebrow {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-summary-title,
.article-page-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-summary-subtitle,
.article-page-subtitle {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.article-summary-side {
  display: grid;
  gap: 16px;
  align-content: space-between;
}

.article-page-hero-copy,
.article-page-hero-panel {
  border-radius: 30px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.article-page-hero-copy {
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.article-page-copy {
  margin: 16px 0 0;
  max-width: 56ch;
  color: #475569;
  line-height: 1.8;
}

.article-page-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.06)),
    linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
}

.article-page-hero-panel::before,
.article-page-hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.article-page-hero-panel::before {
  width: 220px;
  height: 220px;
  right: -40px;
  top: -36px;
  background: rgba(220, 38, 38, 0.12);
}

.article-page-hero-panel::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -44px;
  background: rgba(255, 255, 255, 0.06);
}

.article-page-hero-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.article-page-hero-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.article-page-hero-stat-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-page-hero-stat strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.article-page-hero-stat small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.article-page-hero-panel-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-page-hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-summary-rail-shell {
  position: relative;
}

.article-summary-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 40px) / 3));
  gap: 20px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.article-summary-grid::-webkit-scrollbar {
  display: none;
}

.article-summary-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.article-summary-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.article-summary-control:hover,
.article-summary-control:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(220, 38, 38, 0.22);
  color: #b91c1c;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.article-summary-control[disabled] {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.article-summary-control span {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.article-summary-card,
.article-list-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  scroll-snap-align: start;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-list-card {
  height: 100%;
}

.article-summary-card:hover,
.article-summary-card:focus-within,
.article-list-card:hover,
.article-list-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.16);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.article-summary-media,
.article-list-media {
  display: block;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
}

.article-list-media {
  aspect-ratio: 1.4 / 1;
}

.article-summary-media img,
.article-list-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-summary-placeholder,
.article-list-media span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #1d4ed8;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #dbeafe, #f8fafc);
}

.article-summary-body,
.article-list-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.article-summary-date,
.article-list-date,
.article-detail-date {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}

.article-summary-card-title,
.article-list-body h2,
.article-list-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #0f172a;
}

.article-list-body h2 {
  min-height: calc(1.35em * 2);
}

.article-summary-card-title a,
.article-list-body h2 a,
.article-list-body h3 a {
  color: inherit;
  text-decoration: none;
}

.article-list-body h2 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-summary-copy,
.article-list-body p {
  margin: 0;
  color: #475569;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-summary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #b91c1c;
  font-weight: 800;
  text-decoration: none;
}

.article-summary-link:hover,

.why-choose-section {
  position: relative;
  padding: 18px 0 70px;
  isolation: isolate;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 300px;
  background:
    radial-gradient(circle at 14% 18%, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(249, 115, 22, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.68) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.72;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: -1;
}

.why-choose-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.why-choose-eyebrow {
  margin: 0 0 10px;
  color: #475569;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-choose-title {
  margin: 0;
  color: #0f172a;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 30px rgba(255, 255, 255, 0.38);
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.why-choose-subtitle {
  margin: 0;
  color: #334155;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.why-choose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.why-choose-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.96) 100%);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.why-choose-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.42) 0%, transparent 68%);
  pointer-events: none;
}

.why-choose-card:hover,
.why-choose-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(203, 213, 225, 0.96);
  box-shadow:
    0 22px 42px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.why-choose-card-variant-2 {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.98) 100%);
}

.why-choose-card-variant-3 {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 56%, rgba(241, 245, 249, 0.96) 100%);
}

.why-choose-icon-shell {
  --why-icon-bg: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  --why-icon-glow: rgba(148, 163, 184, 0.18);
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.28), transparent 42%),
    var(--why-icon-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 26px var(--why-icon-glow);
}

.why-choose-icon-shell img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.why-choose-placeholder {
  color: #0f172a;
  font-size: 1.6rem;
  font-weight: 800;
}

.why-choose-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.why-choose-card-title {
  margin: 0;
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.38;
}

.why-choose-copy {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.68;
}

@media (max-width: 1280px) {
  .why-choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .why-choose-head {
    grid-template-columns: 1fr;
  }

  .why-choose-card {
    padding: 20px;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .why-choose-card {
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .why-choose-icon-shell {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .why-choose-icon-shell img {
    width: 30px;
    height: 30px;
  }

  .why-choose-card-title {
    font-size: 0.92rem;
  }

  .why-choose-copy {
    font-size: 0.86rem;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .why-choose-card {
    padding: 14px;
    border-radius: 18px;
  }

  .why-choose-icon-shell {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .why-choose-icon-shell img {
    width: 28px;
    height: 28px;
  }

  .why-choose-card-title {
    font-size: 0.88rem;
  }

  .why-choose-copy {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

.counters-section {
  padding: 4px 0 70px;
}

.counters-shell {
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.counters-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.counters-eyebrow {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counters-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.counters-subtitle {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.counter-card {
  --counter-icon-bg: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.counter-card:hover,
.counter-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(220, 38, 38, 0.14);
}

.counter-icon-shell {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: var(--counter-icon-bg);
}

.counter-icon-shell img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.counter-placeholder {
  color: #0f172a;
  font-size: 1.45rem;
  font-weight: 800;
}

.counter-value-wrap {
  display: inline-flex;
  align-items: flex-start;
  gap: 3px;
  color: #0f172a;
  line-height: 1;
}

.counter-value {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.counter-suffix {
  padding-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #b91c1c;
}

.counter-label {
  color: #475569;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .counters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .counters-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .counters-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .counters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .counter-card {
    padding: 18px;
    border-radius: 24px;
  }

  .counter-icon-shell {
    width: 56px;
    height: 56px;
  }

  .counter-icon-shell img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 420px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }
}

.order-steps-section {
  padding: 6px 0 74px;
}

.order-steps-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.order-steps-eyebrow {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-steps-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.order-steps-subtitle {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.order-steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.order-steps-timeline::before {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(203, 213, 225, 0.75), rgba(226, 232, 240, 0.95));
  z-index: 0;
}

.order-step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.order-step-card:hover,
.order-step-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.14);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.order-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-step-icon-shell {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.order-step-icon-shell img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.order-step-placeholder {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 800;
}

.order-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: #b91c1c;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.order-step-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.order-step-card-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.35;
}

.order-step-copy {
  margin: 0;
  color: #475569;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .order-steps-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-steps-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .order-steps-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .order-steps-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .order-step-card {
    padding: 20px;
    border-radius: 26px;
  }

  .order-step-icon-shell {
    width: 64px;
    height: 64px;
  }
}

.testimonials-section {
  padding: 8px 0 78px;
}

.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.testimonials-eyebrow {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.testimonials-subtitle {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.review-summary-card {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  margin-bottom: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.review-summary-score {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-summary-value {
  color: #0f172a;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.review-summary-stars,
.testimonial-stars {
  color: #b45309;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.review-summary-copy h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1.08rem;
}

.review-summary-copy p {
  margin: 0;
  color: #475569;
  line-height: 1.72;
}

.review-summary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: #0f172a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.review-summary-link:hover,
.review-summary-link:focus-visible {
  background: #111827;
}

.testimonials-rail {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-gutter: stable;
}

.testimonials-rail::-webkit-scrollbar {
  height: 10px;
}

.testimonials-rail::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.72);
  border-radius: 999px;
}

.testimonials-rail::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.62);
  border-radius: 999px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  scroll-snap-align: start;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.14);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar span {
  color: #0f172a;
  font-weight: 800;
  font-size: 1.05rem;
}

.testimonial-person-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
}

.testimonial-time {
  color: #64748b;
  font-size: 0.9rem;
}

.testimonial-review {
  margin: 0;
  color: #334155;
  line-height: 1.78;
}

@media (max-width: 1100px) {
  .testimonials-rail {
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .review-summary-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-head {
    grid-template-columns: 1fr;
  }

  .testimonials-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84%);
    grid-template-columns: none;
    grid-template-rows: none;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
  }
}

@media (max-width: 640px) {
  .review-summary-card,
  .testimonial-card {
    padding: 20px;
    border-radius: 24px;
  }
}

.client-logos-section {
  padding: 4px 0 84px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
}

.client-logos-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.client-logos-eyebrow {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-logos-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.client-logos-subtitle {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.client-logo-card {
  min-height: 100%;
}

.client-logo-box {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.client-logo-box img {
  display: block;
  width: 100%;
  max-width: 130px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) saturate(0.2);
  opacity: 0.8;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo-card:hover .client-logo-box img,
.client-logo-card:focus-within .client-logo-box img {
  filter: grayscale(0) saturate(1);
  opacity: 1;
  transform: translateY(-1px);
}

.public-site img[data-protected-media="true"] {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.media-lock-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(168, 1, 0, 0.18);
  background: linear-gradient(135deg, rgba(36, 12, 12, 0.97) 0%, rgba(168, 1, 0, 0.94) 100%);
  color: #fff7f7;
  box-shadow: 0 20px 50px rgba(168, 1, 0, 0.22);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.media-lock-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tracking-debug-toast {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10001;
  min-width: 240px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(24, 20, 18, 0.08);
  background: rgba(24, 20, 18, 0.92);
  color: #fff;
  box-shadow: 0 16px 32px rgba(24, 20, 18, 0.18);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.tracking-debug-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tracking-debug-toast.is-success {
  background: rgba(24, 121, 78, 0.96);
}

.tracking-debug-toast.is-error {
  background: rgba(180, 35, 24, 0.96);
}

.media-lock-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffd6d6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.media-lock-toast-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.media-lock-toast-copy {
  color: #fff4f4;
  line-height: 1.55;
}

.client-logo-placeholder {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .client-logos-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .client-logos-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 8px);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .client-logos-grid::-webkit-scrollbar {
    height: 8px;
  }

  .client-logos-grid::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
    border-radius: 999px;
  }

  .client-logo-card {
    scroll-snap-align: start;
  }

  .client-logo-box {
    min-height: 96px;
    padding: 14px;
    border-radius: 18px;
  }

  .client-logo-box img {
    max-width: 108px;
    max-height: 42px;
  }
}

@media (max-width: 420px) {
  .client-logos-grid {
    grid-auto-columns: calc(72% - 8px);
  }
}

