:root {
  color-scheme: light;
  --blue: #0878b8;
  --blue-dark: #075d91;
  --blue-soft: #eaf7fd;
  --blue-pale: #f4fbff;
  --orange: #ef6500;
  --orange-soft: #fff1e7;
  --ink: #16212b;
  --muted: #5b6876;
  --line: #dbe5ec;
  --soft: #f7fafc;
  --white: #ffffff;
  --shadow: 0 20px 52px rgba(22, 33, 43, 0.09);
  --max-content: 1560px;
  --edge-gutter: max(24px, calc((100vw - var(--max-content)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f2fbff 0, #fbfdff 620px, #ffffff 1420px, #f7fbfd 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

.sprite {
  display: none;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 60;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max-content), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 880px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 229, 236, 0.9);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img,
.footer-brand img {
  width: 162px;
  height: auto;
}

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

.site-nav > a,
.nav-parent,
.nav-drop {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-parent:hover,
.nav-parent:focus-visible,
.nav-drop:hover,
.nav-drop:focus-visible {
  color: var(--blue);
}

.nav-cta {
  margin-left: 6px;
  border-radius: 8px;
  background: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(239, 101, 0, 0.24);
}

.nav-group {
  position: static;
  display: inline-flex;
  align-items: center;
}

.nav-drop {
  width: 28px;
  padding-inline: 0;
}

.nav-drop .icon {
  width: 16px;
  height: 16px;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: min(1180px, calc(100vw - 32px));
  max-height: min(72vh, 680px);
  overflow-y: auto;
  transform: translateX(-50%) translateY(12px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  height: 32px;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu,
.nav-group.is-hovering .mega-menu,
.nav-group.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.mega-area {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.mega-area h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.86rem;
}

.mega-area h3 .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.mega-area-links {
  display: grid;
  gap: 7px;
}

.mega-area-links a {
  display: block;
  padding: 9px;
  border-radius: 10px;
}

.mega-area-links a:hover,
.mega-area-links a:focus-visible {
  background: var(--blue-soft);
}

.mega-area-links strong,
.mega-area-links small {
  display: block;
}

.mega-area-links strong {
  font-size: 0.84rem;
}

.mega-area-links small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mega-links a {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--soft);
}

.mega-links a:hover,
.mega-links a:focus-visible {
  border-color: rgba(8, 120, 184, 0.24);
  background: var(--blue-soft);
}

.mega-links .icon {
  color: var(--blue);
  margin-top: 2px;
}

.mega-links strong,
.mega-links small {
  display: block;
}

.mega-links strong {
  font-size: 0.9rem;
}

.mega-links small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.mega-aside {
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--blue-pale), var(--orange-soft));
}

.mega-aside strong {
  color: var(--blue-dark);
}

.mega-aside p {
  color: var(--muted);
  font-size: 0.9rem;
}

.mega-aside a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--orange);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 112px) 0 138px;
  background:
    radial-gradient(ellipse 56% 62% at 78% 20%, rgba(223, 244, 251, 0.96), transparent 66%),
    radial-gradient(ellipse 58% 34% at 78% 100%, rgba(255, 231, 215, 0.82), transparent 72%),
    linear-gradient(120deg, #f4fbff 0%, #eefaff 54%, #e7f7fc 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12% -12% auto auto;
  width: min(980px, 78vw);
  height: 760px;
  background: rgba(220, 246, 253, 0.9);
  clip-path: ellipse(78% 62% at 82% 32%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -58px;
  width: min(940px, 82vw);
  height: 270px;
  background: rgba(255, 231, 215, 0.95);
  clip-path: ellipse(78% 48% at 58% 54%);
  z-index: -3;
}

.hero-curve {
  position: absolute;
  inset: auto -8% -2px -8%;
  height: 170px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(251, 253, 255, 0.96) 72%, #ffffff 100%);
  clip-path: ellipse(62% 82% at 50% 100%);
  z-index: -1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(34px, 4vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: capitalize;
}

.breadcrumbs a::after {
  content: "›";
  margin-left: 8px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-lead,
.section-head p,
.image-card p,
.why-grid p,
.benefit-grid p,
.article-card p,
.contact-card p,
.info-card p,
.check-list,
.faq-list p,
.testimonial-grid p,
.contact-info p,
.site-footer p {
  color: var(--muted);
}

.hero-lead {
  max-width: 650px;
  font-size: 1.12rem;
}

.hero-actions,
.cta-layout,
.contact-info-grid article,
.contact-card p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(8, 120, 184, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--blue-dark);
}

.hero-visual {
  position: relative;
  min-height: clamp(480px, 35vw, 680px);
  display: grid;
  align-items: center;
  width: calc(100% + var(--edge-gutter));
  margin-right: calc(var(--edge-gutter) * -1);
}

.rounded-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(22, 33, 43, 0.14);
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 34vw, 620px);
  overflow: visible;
  isolation: isolate;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 18% 4% 4% 16%;
  background: radial-gradient(ellipse 62% 42% at 54% 62%, rgba(8, 120, 184, 0.16), transparent 72%);
  filter: blur(28px);
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(24px) scale(0.985);
  transition: opacity 520ms ease, transform 520ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse 74% 58% at 54% 50%, #000 54%, rgba(0, 0, 0, 0.72) 68%, transparent 92%);
}

.slider-controls {
  position: absolute;
  right: 6px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.slider-controls button,
.slider-dots button {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.slider-controls .icon {
  width: 18px;
  height: 18px;
}

.slider-dots {
  position: absolute;
  left: 6px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
}

.slider-dots button::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(8, 120, 184, 0.25);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider-dots button.is-active::before {
  width: 26px;
  background: var(--orange);
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(22, 33, 43, 0.13);
}

.trust-strip {
  grid-column: 1 / -1;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(22, 33, 43, 0.05);
  color: var(--blue-dark);
  font-weight: 900;
}

.experience-band {
  position: relative;
  z-index: 4;
  margin-top: -78px;
  padding: 0 0 54px;
  background: transparent;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.experience-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(22, 33, 43, 0.06);
  backdrop-filter: blur(8px);
}

.experience-grid strong {
  display: block;
  color: var(--orange);
  font-size: 2.05rem;
  line-height: 1;
}

.experience-grid h3 {
  margin: 8px 0 6px;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: 88px 0;
  background: transparent;
}

.experience-band + .section {
  padding-top: 54px;
}

.section-muted {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(234, 247, 253, 0.48), rgba(255, 255, 255, 0.64));
}

.section-muted::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -18%;
  width: 56%;
  height: 330px;
  background: rgba(234, 247, 253, 0.86);
  clip-path: ellipse(62% 50% at 50% 50%);
}

.section > .container,
.section-muted > .container {
  position: relative;
}

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

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

.software-focus-layout,
.store-preview-layout,
.store-catalog-layout,
.mission-vision-layout,
.company-why-layout {
  display: grid;
  align-items: center;
  gap: 46px;
}

.software-focus-layout,
.store-preview-layout,
.store-catalog-layout {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
}

.software-focus-layout figure,
.store-preview-layout figure,
.store-catalog-layout figure,
.mission-vision-layout figure,
.company-why-layout figure {
  margin: 0;
}

.software-focus-layout img,
.store-preview-layout img,
.store-catalog-layout img,
.mission-vision-layout img,
.company-why-layout img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.focus-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.focus-list article,
.company-why-points article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.focus-list .icon,
.company-why-points .icon {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.focus-list p,
.company-why-points p,
.area-showcase-card p,
.area-row-copy p,
.store-category-grid p {
  color: var(--muted);
}

.area-showcase-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse 52% 42% at 86% 14%, rgba(234, 247, 253, 0.9), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
}

.area-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 22px;
}

.area-showcase-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(22, 33, 43, 0.08);
}

.area-showcase-card.is-featured {
  grid-row: span 2;
  min-height: 742px;
}

.area-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-showcase-card::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.94) 48%, #fff 100%);
}

.area-showcase-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.area-showcase-card span,
.mission-vision-cards .icon,
.store-category-grid .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.area-showcase-card span .icon {
  width: 24px;
  height: 24px;
}

.grouped-area-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.82));
}

.area-stack {
  display: grid;
  gap: 30px;
}

.area-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 56px rgba(22, 33, 43, 0.07);
}

.area-row.is-reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.area-row.is-reverse figure {
  order: 2;
}

.area-row figure {
  margin: 0;
}

.area-row img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.area-row-copy {
  padding: clamp(26px, 4vw, 52px);
}

.area-row-copy h3 {
  font-size: 1.45rem;
  line-height: 1.25;
}

.area-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.area-link-list a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--blue-pale);
}

.area-link-list a:hover,
.area-link-list a:focus-visible {
  border-color: rgba(8, 120, 184, 0.36);
  background: var(--blue-soft);
}

.area-link-list .icon {
  color: var(--orange);
  margin-top: 3px;
}

.area-link-list strong,
.area-link-list small {
  display: block;
}

.area-link-list small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.store-preview-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 72% at 12% 22%, rgba(255, 241, 231, 0.86), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 247, 253, 0.62));
}

.store-preview-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
}

.mission-vision-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.86fr) minmax(420px, 1fr);
}

.mission-vision-cards {
  display: grid;
  gap: 18px;
}

.mission-vision-cards article,
.store-category-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(22, 33, 43, 0.06);
}

.values-section {
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.72), rgba(255, 255, 255, 0.98));
}

.company-why-section {
  background:
    radial-gradient(ellipse 42% 56% at 86% 18%, rgba(234, 247, 253, 0.86), transparent 72%),
    linear-gradient(180deg, #fff, rgba(247, 250, 252, 0.9));
}

.company-why-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
}

.company-why-copy {
  max-width: 680px;
}

.company-why-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.store-catalog-section {
  background:
    radial-gradient(ellipse 44% 52% at 82% 10%, rgba(234, 247, 253, 0.94), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.92));
}

.store-catalog-layout {
  margin-bottom: 34px;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
}

.store-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.store-category-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 900;
}

.service-grid,
.mini-grid,
.article-grid,
.testimonial-grid,
.work-grid,
.project-example-grid,
.mission-grid,
.values-grid,
.capability-grid,
.why-grid,
.benefit-grid,
.contact-page-grid {
  display: grid;
  gap: 22px;
}

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

.mini-grid,
.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.article-grid,
.testimonial-grid,
.work-grid,
.contact-page-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.project-example-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mission-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.capability-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid {
  grid-template-columns: repeat(5, 1fr);
}

.image-card,
.work-grid article,
.project-example-grid article,
.mission-grid article,
.values-grid article,
.capability-grid article,
.why-grid article,
.benefit-grid article,
.testimonial-grid article,
.article-card,
.contact-card,
.info-card,
.process-list li,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(22, 33, 43, 0.06);
}

.rich-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 44px;
}

.rich-copy strong {
  color: var(--blue-dark);
}

.rich-copy em {
  color: var(--orange);
  font-style: italic;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.detail-media {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 247, 253, 0.7));
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.detail-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.capabilities-section {
  overflow: hidden;
}

.capabilities-section::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 8%;
  width: 48%;
  height: 300px;
  background: rgba(255, 241, 231, 0.78);
  clip-path: ellipse(62% 45% at 50% 50%);
  z-index: -1;
}

.capability-grid article {
  padding: 24px;
  min-height: 245px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.capability-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(22, 33, 43, 0.1);
}

.capability-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--orange);
}

.capability-grid p {
  color: var(--muted);
}

.work-grid article {
  overflow: hidden;
}

.work-grid img,
.project-example-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-grid article > div,
.project-example-grid article > div {
  padding: 22px;
}

.work-grid .icon,
.mission-grid .icon,
.values-grid .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--blue);
}

.work-grid p,
.project-example-grid p,
.mission-grid p,
.values-grid p {
  color: var(--muted);
}

.project-example-grid article {
  overflow: hidden;
}

.mission-grid article,
.values-grid article {
  padding: 24px;
}

.image-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 390px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card:hover,
.image-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(22, 33, 43, 0.11);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card h3,
.image-card p {
  padding: 0 22px;
}

.image-card h3 {
  margin-top: 42px;
}

.image-card p {
  padding-bottom: 22px;
}

.card-icon {
  position: absolute;
  left: 22px;
  top: calc(62% - 16px);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 16px 34px rgba(22, 33, 43, 0.12);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 44px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list .icon {
  color: var(--orange);
}

.info-card,
.contact-card {
  padding: 28px;
}

.info-card strong {
  display: inline-flex;
  margin: 12px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
}

.process-list li {
  padding: 24px;
}

.process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.why-grid article,
.benefit-grid article,
.testimonial-grid article {
  padding: 24px;
  text-align: center;
}

.why-grid .icon,
.benefit-grid .icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 14px;
  color: var(--blue);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #f7b500;
  margin-bottom: 12px;
}

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

.faq-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.faq-general {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 247, 253, 0.62));
}

.faq-general h3 {
  margin-bottom: 16px;
  color: var(--blue-dark);
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 22px;
}

.cta-band {
  padding: 32px 0;
  background:
    radial-gradient(ellipse 48% 130% at 10% 50%, rgba(255, 241, 231, 0.95), transparent 70%),
    linear-gradient(90deg, rgba(255, 241, 231, 0.72), rgba(234, 247, 253, 0.86));
}

.cta-layout {
  justify-content: space-between;
  gap: 22px;
}

.cta-layout > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-layout .icon {
  width: 48px;
  height: 48px;
  color: var(--orange);
}

.cta-layout h2 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.cta-layout p {
  margin: 0;
  color: var(--muted);
}

.contact-info {
  padding: 38px 0 68px;
  background: transparent;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-info-grid article {
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: start;
}

.contact-panel {
  background:
    radial-gradient(ellipse 58% 80% at 10% 0%, rgba(255, 241, 231, 0.78), transparent 72%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.contact-panel > p {
  font-size: 1.02rem;
}

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

.contact-method-grid a {
  display: grid;
  gap: 6px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.contact-method-grid a:hover,
.contact-method-grid a:focus-visible {
  border-color: rgba(8, 120, 184, 0.32);
  background: var(--blue-soft);
}

.contact-method-grid .icon {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.contact-method-grid strong {
  font-size: 1rem;
}

.contact-method-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-social-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.86rem;
}

.social-links .icon {
  width: 18px;
  height: 18px;
}

.social-links a[href="#"] {
  opacity: 0.78;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card span,
.article-card h2,
.article-card p,
.article-card a {
  margin-inline: 22px;
}

.article-card span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2 {
  font-size: 1.35rem;
}

.article-card a {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 900;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 58px 0 22px;
  background:
    radial-gradient(ellipse 42% 80% at 82% 0%, rgba(8, 120, 184, 0.22), transparent 70%),
    #101820;
  color: rgba(255, 255, 255, 0.78);
}

.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-hero h2 {
  max-width: 760px;
  margin: 16px 0 8px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.footer-hero p {
  max-width: 720px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr 1fr 1fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.footer-layout nav {
  display: grid;
  gap: 8px;
}

.footer-layout p {
  margin-bottom: 10px;
}

.footer-layout .icon,
.footer-hero .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: -3px;
}

.footer-about strong {
  color: var(--white);
}

.site-footer a,
.site-footer h3 {
  color: var(--white);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact p .icon {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-social .icon {
  margin: 0;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(22, 33, 43, 0.22);
}

.whatsapp-float .icon {
  width: 34px;
  height: 34px;
}

.js [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1040px) {
  .hero-layout,
  .split-layout,
  .rich-detail-grid,
  .software-focus-layout,
  .store-preview-layout,
  .store-catalog-layout,
  .mission-vision-layout,
  .company-why-layout,
  .footer-hero,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    margin-right: 0;
    min-height: 430px;
  }

  .hero-slider {
    min-height: 430px;
  }

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

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

  .service-grid,
  .article-grid,
  .testimonial-grid,
  .work-grid,
  .project-example-grid,
  .mission-grid,
  .experience-grid,
  .capability-grid,
  .area-showcase-grid,
  .store-category-grid,
  .contact-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .area-showcase-card.is-featured {
    grid-row: auto;
    min-height: 420px;
  }

  .area-row,
  .area-row.is-reverse {
    grid-template-columns: 1fr;
  }

  .area-row.is-reverse figure {
    order: 0;
  }

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

  .mini-grid,
  .benefit-grid,
  .why-grid,
  .values-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100vh - 68px);
    display: none;
    align-content: start;
    padding: 12px 14px 26px;
    overflow-y: auto;
    background: var(--white);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .nav-parent,
  .nav-drop {
    width: 100%;
    justify-content: space-between;
    min-height: 50px;
    padding-inline: 8px;
  }

  .nav-group {
    display: grid;
    grid-template-columns: 1fr 42px;
    border-bottom: 1px solid var(--line);
  }

  .mega-menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: none;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px 0 16px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu::before {
    display: none;
  }

  .nav-group.is-open .mega-menu {
    display: grid;
    transform: none;
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .mega-area-grid {
    grid-template-columns: 1fr;
  }

  .mega-aside {
    display: none;
  }

  .nav-cta {
    margin: 12px 0 0;
  }

  .hero {
    padding: 52px 0 118px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-image {
    object-fit: contain;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-slider {
    min-height: 330px;
  }

  .experience-band {
    margin-top: -64px;
    padding-bottom: 38px;
  }

  .hero-badge {
    right: auto;
    left: 12px;
    bottom: 8px;
    max-width: calc(100% - 96px);
    font-size: 0.9rem;
  }

  .trust-strip,
  .experience-grid,
  .work-grid,
  .capability-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .mini-grid,
  .benefit-grid,
  .why-grid,
  .values-grid,
  .area-showcase-grid,
  .area-link-list,
  .store-category-grid,
  .company-why-points,
  .process-list,
  .article-grid,
  .testimonial-grid,
  .project-example-grid,
  .mission-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .rich-detail-grid,
  .detail-columns {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .cta-layout,
  .cta-layout > div {
    display: grid;
    justify-items: start;
  }

  .cta-layout .btn,
  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* =========================================================
   ESAMSoft Roadmap seguro - NO reemplaza el home completo
   ========================================================= */
.esam-roadmap-safe{
  position:relative;
  padding:95px 0 90px;
  overflow:hidden;
  background:
    radial-gradient(circle at 0% 25%, rgba(8,127,195,.10), transparent 28%),
    radial-gradient(circle at 100% 60%, rgba(255,107,0,.12), transparent 28%),
    linear-gradient(135deg,#f5fbff 0%,#ffffff 48%,#fff7ef 100%);
}
.esam-roadmap-safe::before,
.esam-roadmap-safe::after{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  opacity:.35;
  background-image:radial-gradient(#9cc6df 1.4px, transparent 1.4px);
  background-size:15px 15px;
  pointer-events:none;
}
.esam-roadmap-safe::before{left:35px;top:90px;}
.esam-roadmap-safe::after{right:45px;bottom:90px;}
.roadmap-safe-head{
  max-width:900px;
  margin:0 auto 55px;
  text-align:center;
  position:relative;
  z-index:2;
}
.roadmap-safe-head h2{
  max-width:850px;
  margin:10px auto 16px;
  color:#14202d;
  font-size:clamp(32px,4.2vw,56px);
  line-height:1.05;
  letter-spacing:-1.5px;
}
.roadmap-safe-head h2 span{color:#087fc3;}
.roadmap-safe-head > p:last-child{
  max-width:760px;
  margin:0 auto;
  color:#667085;
  font-size:17px;
  line-height:1.7;
}
.roadmap-safe-flow{
  position:relative;
  z-index:2;
  max-width:1500px;
  margin:0 auto;
  display:grid;
  gap:28px;
}
.roadmap-safe-row{
  display:grid;
  grid-template-columns:minmax(320px,1fr) minmax(290px,420px) minmax(320px,1fr);
  align-items:center;
  gap:0;
  min-height:165px;
}
.roadmap-safe-card{
  position:relative;
  z-index:3;
  min-height:138px;
  background:rgba(255,255,255,.96);
  border:1px solid #cfe0ec;
  border-radius:24px;
  box-shadow:0 18px 36px rgba(15,35,55,.08);
  padding:28px 32px;
  display:grid;
  grid-template-columns:70px 1fr;
  gap:6px;
  align-items:start;
}
.roadmap-safe-card h3{
  margin:0 0 8px;
  color:#13202d;
  font-size:23px;
  line-height:1.15;
}
.roadmap-safe-card p{
  margin:0;
  color:#566577;
  font-size:15px;
  line-height:1.6;
}
.roadmap-safe-number{
  font-size:30px;
  font-weight:900;
  line-height:1;
  color:var(--road-color);
}
.roadmap-safe-center{
  min-height:150px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.roadmap-safe-line{
  position:absolute;
  left:-12%;
  right:-12%;
  top:50%;
  height:34px;
  transform:translateY(-50%);
  background:linear-gradient(90deg,var(--road-color),var(--road-color-2));
  border-radius:999px;
  box-shadow:0 18px 25px rgba(15,35,55,.10);
}
.roadmap-safe-line::before{
  content:"";
  position:absolute;
  inset:6px 12px;
  border-top:2px dashed rgba(255,255,255,.62);
  border-radius:999px;
}
.roadmap-safe-line.reverse{
  transform:translateY(-50%) rotate(-3deg);
}
.roadmap-safe-row:nth-child(odd) .roadmap-safe-line{
  transform:translateY(-50%) rotate(3deg);
}
.roadmap-safe-icon{
  position:relative;
  z-index:4;
  width:104px;
  height:104px;
  border-radius:50%;
  background:#fff;
  border:4px solid var(--road-color);
  color:var(--road-color);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 38px rgba(15,35,55,.13);
}
.roadmap-safe-icon svg{
  width:46px;
  height:46px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.row-orange{--road-color:#ff6b00;--road-color-2:#ff9c3f;}
.row-blue{--road-color:#168ede;--road-color-2:#39b7ff;}
.row-green{--road-color:#20c4ad;--road-color-2:#49d6c3;}
.row-pink{--road-color:#ec2f83;--road-color-2:#ff6baa;}
.roadmap-safe-values{
  max-width:1280px;
  margin:50px auto 0;
  background:#fff;
  border:1px solid #dbe8f2;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(15,35,55,.08);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  position:relative;
  z-index:2;
}
.roadmap-safe-values article{
  padding:28px 32px;
  display:grid;
  grid-template-columns:64px 1fr;
  column-gap:18px;
  align-items:center;
  border-right:1px solid #e3edf5;
}
.roadmap-safe-values article:last-child{border-right:0;}
.roadmap-safe-values span{
  grid-row:1 / span 2;
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef8ff;
  color:#087fc3;
  font-size:27px;
}
.roadmap-safe-values strong{color:#13202d;font-size:17px;}
.roadmap-safe-values p{margin:4px 0 0;color:#667085;font-size:14px;line-height:1.45;}
@media(max-width:1050px){
  .roadmap-safe-row{
    grid-template-columns:1fr;
    gap:14px;
    min-height:0;
  }
  .roadmap-safe-center{
    min-height:84px;
    order:2;
  }
  .roadmap-safe-row .roadmap-safe-card:first-child{order:1;}
  .roadmap-safe-row .roadmap-safe-card:last-child{order:3;}
  .roadmap-safe-line{
    left:10%;
    right:10%;
    height:22px;
  }
  .roadmap-safe-icon{width:82px;height:82px;}
  .roadmap-safe-icon svg{width:36px;height:36px;}
  .roadmap-safe-values{grid-template-columns:1fr 1fr;}
}
@media(max-width:640px){
  .esam-roadmap-safe{padding:70px 0;}
  .roadmap-safe-flow{gap:18px;}
  .roadmap-safe-card{
    grid-template-columns:55px 1fr;
    padding:22px;
    border-radius:20px;
  }
  .roadmap-safe-number{font-size:24px;}
  .roadmap-safe-card h3{font-size:20px;}
  .roadmap-safe-line{display:none;}
  .roadmap-safe-center{min-height:0;margin:-8px 0;}
  .roadmap-safe-icon{width:68px;height:68px;border-width:3px;}
  .roadmap-safe-icon svg{width:30px;height:30px;}
  .roadmap-safe-values{grid-template-columns:1fr;}
  .roadmap-safe-values article{border-right:0;border-bottom:1px solid #e3edf5;}
  .roadmap-safe-values article:last-child{border-bottom:0;}
}


/* =========================================================
   FIX PageSpeed + Slider soluciones ESAMSoft
   ========================================================= */
.experience-grid .experience-title {
  margin: 8px 0 6px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
}

.products-section .container {
  position: relative;
}

.products-carousel {
  position: relative;
  width: 100%;
  margin-top: 28px;
}

.products-viewport {
  overflow: hidden;
  width: 100%;
  padding: 4px 2px 18px;
}

.products-track {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
  will-change: transform;
}

.products-track .product-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.products-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(8,120,184,.16);
  background: rgba(255,255,255,.96);
  color: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(22,33,43,.14);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}

.products-arrow .icon {
  width: 22px;
  height: 22px;
}

.products-prev {
  left: -22px;
}

.products-next {
  right: -22px;
}

.products-arrow:hover {
  color: #fff;
  background: var(--orange);
}

.image-card img,
.product-slide img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .products-track .product-slide {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 720px) {
  .products-track {
    gap: 16px;
  }
  .products-track .product-slide {
    flex-basis: 100%;
  }
  .products-arrow {
    width: 48px;
    height: 48px;
    top: auto;
    bottom: -8px;
    transform: none;
  }
  .products-prev {
    left: 12px;
  }
  .products-next {
    right: 12px;
  }
  .products-viewport {
    padding-bottom: 58px;
  }
  .slider-dots {
    bottom: 18px;
  }
}
