*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f7fa;
  --bg2: #eeeef3;
  --surface: #ffffff;
  --surface2: #e8e8ee;
  --border: rgba(0, 0, 0, 0.08);
  --text: #0a0a10;
  --muted: rgba(0, 0, 0, 0.45);
  --dim: rgba(0, 0, 0, 0.25);
  --accent: #5a3fd8;
  --accent2: #7c5cfc;
  --font: 'Geist', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  background: none;
  border: none;
}

::selection {
  background: rgba(90, 63, 216, 0.15);
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

#root {
  min-height: 100vh;
}

.is-hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.16, 1, .3, 1), transform 0.75s cubic-bezier(.16, 1, .3, 1);
}

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

.fade-delay-0 { transition-delay: 0s; }
.fade-delay-0-06 { transition-delay: 0.06s; }
.fade-delay-0-07 { transition-delay: 0.07s; }
.fade-delay-0-1 { transition-delay: 0.1s; }
.fade-delay-0-12 { transition-delay: 0.12s; }
.fade-delay-0-14 { transition-delay: 0.14s; }
.fade-delay-0-15 { transition-delay: 0.15s; }
.fade-delay-0-18 { transition-delay: 0.18s; }
.fade-delay-0-2 { transition-delay: 0.2s; }
.fade-delay-0-21 { transition-delay: 0.21s; }
.fade-delay-0-24 { transition-delay: 0.24s; }
.fade-delay-0-25 { transition-delay: 0.25s; }
.fade-delay-0-28 { transition-delay: 0.28s; }
.fade-delay-0-3 { transition-delay: 0.3s; }
.fade-delay-0-35 { transition-delay: 0.35s; }

.section-wrap {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.section-wrap--alt {
  background: var(--bg2);
}

.section-shell,
.products-page-hero,
.products-page-grid-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.section-eyebrow {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}

.section-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.section-title--medium {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}

.section-copy {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.section-copy--narrow {
  max-width: 480px;
}

.section-copy--side {
  max-width: 360px;
  line-height: 1.7;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.2s ease;
}

.btn--primary {
  background: var(--text);
  color: #fff;
  font-weight: 600;
}

.btn--primary:hover {
  opacity: 0.8;
}

.btn--secondary {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 500;
}

.btn--secondary:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 64px);
  height: 68px;
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  height: 56px;
  background: rgba(247, 247, 250, 0.97);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.site-nav__brand,
.site-nav__links,
.site-nav__link,
.site-nav__cta,
.site-nav__menu-btn,
.products-page-nav,
.products-page-nav__brand,
.products-page-nav__filters,
.products-filter-btn,
.products-showcase__actions,
.hero-actions,
.hero-cta-row,
.client-band__item,
.vendira-feature__item,
.footer-inner,
.site-footer__links,
.contact-cta__actions,
.contact-copy__meta,
.clients-marquee-item,
.products-page-nav__brand {
  display: flex;
  align-items: center;
}

.site-nav__brand,
.products-page-nav__brand {
  gap: 8px;
}

.site-nav__logo,
.products-page-nav__logo {
  height: 28px;
  object-fit: contain;
}

.site-nav__links {
  gap: 4px;
}

.site-nav__link {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.site-nav__link:hover,
.site-footer__link:hover,
.contact-copy__email:hover {
  color: var(--text);
}

.site-nav__cta {
  margin-left: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.site-nav__cta:hover {
  opacity: 0.8;
}

.site-nav__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
}

.site-nav__menu-btn i {
  font-size: 18px;
  line-height: 1;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface);
}

.mobile-drawer__link {
  padding: 12px 24px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) clamp(20px, 5vw, 72px) clamp(60px, 8vw, 100px);
}

.hero-section__glow {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(90, 63, 216, 0.1) 0%, rgba(90, 63, 216, 0.03) 45%, transparent 70%);
}

.hero-section__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 60%, black 20%, transparent 100%);
}

.hero-section__content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(90, 63, 216, 0.5);
  animation: pulse 2s infinite;
}

.hero-kicker__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.hero-h1,
.hero-title {
  font-size: clamp(32px, 8vw, 128px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title {
  animation: fadeUp 1s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-title__dim {
  color: var(--dim);
}

.hero-cta-row {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-copy {
  max-width: 460px;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  animation: fadeUp 1s cubic-bezier(.16, 1, .3, 1) 0.15s both;
}

.hero-actions {
  gap: 12px;
  flex-shrink: 0;
  animation: fadeUp 1s cubic-bezier(.16, 1, .3, 1) 0.25s both;
}

.client-band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.client-band__inner {
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track,
.marquee-track-r {
  display: flex;
  width: max-content;
}

.marquee-track {
  animation: marquee 30s linear infinite;
}

.marquee-track-r {
  animation: marqueeR 35s linear infinite;
}

.marquee-track:hover,
.marquee-track-r:hover {
  animation-play-state: paused;
}

.client-band__item {
  gap: 10px;
  flex-shrink: 0;
  padding: 0 36px;
}

.client-band__logo {
  height: 24px;
  max-width: 80px;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(1);
}

.client-band__name {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--dim);
}

.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-bento__lead,
.about-bento__card,
.about-bento__stat {
  border-radius: 20px;
}

.about-bento__lead {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.about-bento__card {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.about-bento__card--stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-bento__stat {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-bento__stat--dark {
  background: var(--text);
}

.about-bento__stat--accent {
  background: var(--accent);
}

.about-bento__number {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-bento__number--light {
  font-size: 80px;
  color: #fff;
}

.about-bento__meta {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.about-bento__meta--light {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.about-bento__pillars {
  color: #fff;
}

.about-bento__pillar {
  font-size: 15px;
  font-weight: 700;
}

.about-bento__divider {
  width: 100%;
  height: 1px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.15);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-tags__item {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg2);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  background: var(--bg);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

.service-card--0 { border-radius: 20px 0 0 0; }
.service-card--2 { border-radius: 0 20px 0 0; }
.service-card--3 { border-radius: 0 0 0 20px; }
.service-card--5 { border-radius: 0 0 20px 0; }

.service-card__tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 10px;
  border: 1px solid rgba(90, 63, 216, 0.15);
  border-radius: 6px;
  background: rgba(90, 63, 216, 0.08);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.service-card__title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card__desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 300;
}

.vendira-slider {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 700px);
  gap: 14px;
}

.vendira-slider__frame {
  width: clamp(290px, 32vw, 360px);
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(90, 63, 216, 0.16);
}

.vendira-slider__track {
  display: flex;
  width: 400%;
  height: clamp(500px, 54vw, 620px);
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.vendira-slider__track--0 { transform: translateX(0%); }
.vendira-slider__track--1 { transform: translateX(-25%); }
.vendira-slider__track--2 { transform: translateX(-50%); }
.vendira-slider__track--3 { transform: translateX(-75%); }

.vendira-slider__image {
  width: 25%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  flex-shrink: 0;
  background: #efeefe;
}

.vendira-slider__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-align: center;
}

.vendira-slider__dots {
  display: flex;
  gap: 6px;
}

.vendira-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(90, 63, 216, 0.18);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vendira-slider__dot.is-active {
  width: 24px;
  background: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.lightbox__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__image {
  max-height: 75vh;
  max-width: 85vw;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.lightbox__image--products {
  max-height: 72vh;
  border-radius: 16px;
  padding: 24px;
}

.lightbox__title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.lightbox__title--products {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
}

.lightbox__count {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.lightbox__nav,
.lightbox__close {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 22px;
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.products-showcase__actions {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.circle-nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.circle-nav:disabled {
  background: transparent;
  color: var(--dim);
  box-shadow: none;
  cursor: default;
}

.products-showcase__more {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.products-showcase__more:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.2);
}

.products-showcase__viewport {
  overflow: hidden;
  scroll-behavior: smooth;
}

.products-showcase__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.products-showcase__track--visible-3 .products-showcase__item {
  flex: 0 0 calc((100% - 48px) / 3);
}

.products-showcase__track--visible-1 .products-showcase__item {
  flex: 0 0 100%;
}

.products-showcase__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  cursor: zoom-in;
  transition: opacity 0.3s;
}

.products-showcase__item:hover {
  opacity: 0.85;
}

.products-showcase__image {
  display: block;
  max-width: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.products-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.products-showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-showcase__dot.is-active {
  width: 24px;
  background: var(--accent);
}

.vendira-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 1.08fr);
  overflow: hidden;
  margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
  align-items: stretch;
}

.vendira-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(36px, 5vw, 56px);
  max-width: 560px;
}

.vendira-feature__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.vendira-feature__copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
}

.vendira-feature__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vendira-feature__item {
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.vendira-feature__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.vendira-feature__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.vendira-feature__link:hover {
  text-decoration: underline;
}

.vendira-feature__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 620px;
  padding: 28px 24px 22px;
  background: linear-gradient(135deg, #f0eeff 0%, #e8e4ff 100%);
}

.vendira-feature__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(90, 63, 216, 0.12) 0%, transparent 70%);
}

.clients-section {
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg2);
}

.clients-heading {
  margin-bottom: 60px;
  padding: 0 clamp(20px, 5vw, 72px);
  text-align: center;
}

.clients-marquee-row {
  overflow: hidden;
  margin-bottom: 2px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.clients-marquee-row:last-child {
  border-bottom: 1px solid var(--border);
}

.clients-marquee-item {
  gap: 16px;
  flex-shrink: 0;
  padding: 16px 40px;
  border-right: 1px solid var(--border);
}

.clients-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.clients-logo-box__img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.clients-marquee-item__name {
  white-space: nowrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: clamp(48px, 6vw, 80px);
  border-radius: 24px;
  background: var(--text);
  color: #fff;
}

.contact-cta__title {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.contact-cta__actions {
  gap: 12px;
  flex-wrap: wrap;
}

.contact-cta__primary,
.contact-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-cta__primary {
  background: #fff;
  color: #000;
  font-weight: 600;
}

.contact-cta__primary:hover {
  opacity: 0.85;
}

.contact-cta__secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-copy__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-copy__label {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.contact-copy__text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-copy__text--small {
  font-size: 13px;
}

.contact-copy__divider {
  height: 1px;
  background: var(--border);
}

.contact-copy__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-copy__email {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: block;
}

.contact-form__title {
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form__field--message {
  margin-bottom: 24px;
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.contact-form__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.contact-form__input:focus {
  border-color: rgba(0, 0, 0, 0.25);
}

.contact-form__textarea {
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form__submit:hover {
  opacity: 0.8;
}

.contact-form-card__success {
  padding: 60px 0;
  text-align: center;
}

.contact-form-card__success-icon {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 40px;
}

.contact-form-card__success-title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.contact-form-card__success-copy {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

.site-footer__logo {
  height: 26px;
  object-fit: contain;
}

.site-footer__copy,
.site-footer__link {
  color: var(--dim);
  font-size: 12px;
}

.site-footer__links {
  gap: 20px;
}

.products-page-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 247, 250, 0.92);
  backdrop-filter: blur(20px);
}

.products-page-nav__back {
  color: var(--muted);
  font-size: 13px;
}

.products-page-nav__filters {
  gap: 8px;
}

.products-filter-btn {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.products-filter-btn.is-active {
  background: var(--text);
  color: #fff;
}

.products-page-hero {
  padding: 120px clamp(20px, 5vw, 72px) 60px;
}

.products-page-hero__title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.products-page-hero__title-dim {
  color: var(--dim);
}

.products-page-grid-wrap {
  padding: 0 clamp(20px, 5vw, 72px) 120px;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-card:hover {
  opacity: 0.85;
  transform: translateY(-8px);
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
}

.product-card__image {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.15));
}

.product-card__text {
  text-align: center;
}

.product-card__category {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.product-card__name {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.product-image-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.product-image-fallback--card {
  height: 380px;
}

.product-image-fallback--showcase {
  height: 460px;
}

.product-image-fallback__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: #e0e0e8;
  color: #666;
  font-size: 24px;
  font-weight: 700;
}

.product-image-fallback--showcase .product-image-fallback__icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
}

.product-image-fallback__label {
  padding: 0 12px;
  color: #888;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento,
  .about-bento {
    grid-template-columns: 1fr !important;
  }

  .bento-big,
  .about-bento__lead {
    grid-column: 1 !important;
    min-height: auto !important;
  }

  .svc-grid,
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    border-radius: 12px !important;
  }

  .products-header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .vendira-card,
  .vendira-feature {
    grid-template-columns: 1fr !important;
  }

  .vendira-feature__content {
    max-width: none;
  }

  .vendira-feature__visual {
    min-height: auto;
    padding: 28px 18px 20px;
  }

  .vendira-slider__frame {
    width: min(100%, 320px);
  }

  .vendira-slider__track {
    height: 520px;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .contact-cta {
    padding: 32px 24px !important;
  }

  .contact-cta__title {
    font-size: 24px !important;
  }

  .section-wrap {
    padding: 60px 20px !important;
  }

  .hero-h1,
  .hero-title {
    font-size: clamp(32px, 9vw, 52px) !important;
    line-height: 1.05 !important;
  }

  .hero-cta-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .hero-copy {
    max-width: 100% !important;
  }

  .clients-heading {
    padding: 0 20px !important;
  }

  .clients-marquee-item {
    padding: 12px 16px !important;
  }

  .clients-logo-box {
    width: 36px !important;
    height: 36px !important;
  }

  .footer-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .products-page-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .products-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .products-page-hero {
    padding-top: 104px !important;
  }

  .site-nav__links,
  .products-page-nav__filters {
    gap: 6px;
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__menu-btn {
    display: flex;
  }

  .site-nav__link,
  .site-nav__cta,
  .products-filter-btn {
    font-size: 11px !important;
  }

  .products-showcase__track--visible-3 .products-showcase__item,
  .products-showcase__track--visible-1 .products-showcase__item {
    flex-basis: 100%;
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
  }

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