:root {
  --bg: #070915;
  --bg-2: #0d1224;
  --panel: #11182c;
  --panel-2: #151e35;
  --surface: #f6f8fb;
  --surface-2: #ffffff;
  --text: #dfe8f4;
  --text-dark: #102033;
  --muted: #94a3b8;
  --muted-dark: #5c6a7f;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: #dce5ef;
  --magenta: #e11e79;
  --violet: #662d80;
  --coral: #ff4a24;
  --rose: #f06767;
  --purple: #8f3fe3;
  --purple-deep: #2b163b;
  --teal: #e11e79;
  --cyan: #ff4a24;
  --gold: #f2b84b;
  --danger: #f25d7a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 74px);
  color: #ffffff;
  background: rgba(7, 9, 21, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(220px, 23vw, 320px);
  height: auto;
  max-height: 58px;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(225, 30, 121, 0.18));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
}

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

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(310px, 86vw);
  display: grid;
  gap: 4px;
  padding: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0%, rgba(225, 30, 121, 0.18), transparent 32%),
    rgba(9, 12, 27, 0.96);
  border: 1px solid rgba(225, 30, 121, 0.32);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  width: 100%;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
}

.nav a:hover,
.nav-action {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav .nav-link--store {
  color: #070915;
  background: #ffd400;
  border: 1px solid rgba(255, 212, 0, 0.86);
  box-shadow: 0 10px 26px rgba(255, 212, 0, 0.2);
}

.nav .nav-link--store:hover {
  color: #070915;
  background: #ffe15a;
}

.nav-action {
  color: #f5f8ff;
  background: linear-gradient(135deg, rgba(225, 30, 121, 0.16), rgba(255, 74, 36, 0.1));
  border: 1px solid rgba(225, 30, 121, 0.42);
}

.customer-access {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(225, 30, 121, 0.16);
  border: 1px solid rgba(225, 30, 121, 0.48);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
}

.hero-stage {
  padding: clamp(16px, 3vw, 30px) clamp(18px, 5vw, 74px) 0;
  background: var(--bg);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2000 / 560;
  min-height: 0;
  background: #0b1020;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-track {
  height: 100%;
  display: flex;
  transition: transform 560ms ease;
}

.hero-slide {
  position: relative;
  isolation: isolate;
  flex: 0 0 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 5vw, 72px);
  color: #ffffff;
  background: #0b1020;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  opacity: 0.52;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 21, 0.96) 0%, rgba(7, 9, 21, 0.82) 54%, rgba(7, 9, 21, 0.42) 100%),
    linear-gradient(110deg, rgba(225, 30, 121, 0.36), transparent 44%),
    linear-gradient(0deg, rgba(255, 74, 36, 0.1), transparent 55%);
}

.hero-copy {
  max-width: 810px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-copy h1,
.studio-copy h1,
.section-heading h2,
.backoffice-section h2,
.certification-feature h2 {
  margin: 0;
  color: inherit;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 880px;
  font-size: clamp(42px, 7vw, 88px);
}

.hero-copy p:not(.eyebrow),
.studio-copy p,
.section-heading p:not(.eyebrow),
.backoffice-section p,
.certification-feature p:not(.eyebrow) {
  max-width: 760px;
  color: inherit;
  opacity: 0.82;
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--magenta), var(--coral));
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-side {
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero-side strong,
.hero-stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-side strong {
  display: block;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.12;
}

.hero-stat small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.hero-stat b {
  display: block;
  color: var(--gold);
  font-size: 38px;
}

.hero-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  color: #ffffff;
  background: rgba(7, 9, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-controls button {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 950;
}

.hero-dots {
  display: flex;
  gap: 6px;
}

.hero-dots button {
  min-width: 8px;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-dots button.is-active {
  width: 24px;
  background: linear-gradient(90deg, var(--magenta), var(--coral));
}

.brand-shortcuts {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px clamp(18px, 5vw, 74px) 34px;
  background: var(--bg);
}

.brand-shortcuts h2 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
}

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

.shortcut-grid a {
  min-height: 112px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 18px;
  color: #ffffff;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--teal));
  border-radius: 8px;
}

.shortcut-grid strong {
  font-size: 20px;
  line-height: 1.1;
}

.shortcut-grid span {
  color: var(--muted);
  font-weight: 800;
}

.store-nav-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 74px) 38px;
  color: #ffffff;
  background: var(--bg);
}

.store-nav-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.06;
}

.store-nav-grid,
.store-banner-grid,
.highlight-grid,
.offer-products {
  display: grid;
  gap: 14px;
}

.store-nav-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-nav-card {
  min-height: 132px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
  color: #ffffff;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--teal));
  border-radius: 8px;
}

.store-nav-card strong,
.highlight-card strong {
  font-size: 21px;
  line-height: 1.12;
}

.store-nav-card span,
.highlight-card span {
  color: var(--muted);
  font-weight: 800;
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(58px, 7vw, 98px) clamp(18px, 5vw, 74px);
  color: #ffffff;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.studio-copy h1 {
  max-width: 840px;
  font-size: clamp(36px, 5.2vw, 66px);
}

.studio-panel {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.studio-panel > img {
  width: min(360px, 100%);
  display: block;
  margin-bottom: 20px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(102, 45, 128, 0.2)) padding-box,
    linear-gradient(135deg, rgba(225, 30, 121, 0.82), rgba(102, 45, 128, 0.68), rgba(255, 74, 36, 0.62)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  filter: drop-shadow(0 14px 28px rgba(225, 30, 121, 0.16));
}

.signal-grid {
  display: grid;
  gap: 12px;
}

.signal-grid article,
.service-card,
.certification-grid article,
.process-card,
.product-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signal {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 999px;
}

.signal-teal {
  background: var(--teal);
}

.signal-cyan {
  background: var(--cyan);
}

.signal-gold {
  background: var(--gold);
}

.signal-grid strong,
.service-card strong,
.certification-grid strong,
.process-card strong,
.product-card strong {
  display: block;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.12;
}

.signal-grid p,
.service-card span,
.certification-grid span,
.process-card span,
.product-card span {
  display: block;
  margin: 9px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #ffffff;
  background: var(--panel-2);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(58px, 7vw, 98px) clamp(18px, 5vw, 74px);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2,
.backoffice-section h2,
.certification-feature h2 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
}

.services-section,
.catalog-section {
  color: var(--text-dark);
  background: var(--surface);
}

.services-section .section-heading p:not(.eyebrow),
.catalog-section .section-heading p:not(.eyebrow) {
  color: var(--muted-dark);
  opacity: 1;
}

.catalog-section--technology {
  color: #f8f4ee;
  background:
    radial-gradient(circle at 14% 16%, rgba(225, 30, 121, 0.14), transparent 28%),
    linear-gradient(180deg, #101010 0%, #090a11 46%, #1c0615 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-store-heading {
  display: grid;
  gap: 12px;
  max-width: 1180px;
  margin-bottom: 42px;
}

.catalog-store-heading .eyebrow {
  color: #ffd400;
  letter-spacing: 0.24em;
}

.catalog-store-heading h2 {
  max-width: 1180px;
  color: #f8f4ee;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
}

.catalog-store-heading p {
  max-width: 820px;
  margin: 0;
  color: #f0ece6;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
}

.catalog-section--technology .catalog-tabs {
  gap: 10px;
  margin-bottom: 22px;
}

.catalog-section--technology .catalog-tabs button {
  min-height: 46px;
  padding: 11px 16px;
  color: #ffd400;
  background: rgba(255, 212, 0, 0.04);
  border: 1px solid rgba(255, 212, 0, 0.28);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 212, 0, 0.04);
}

.catalog-section--technology .catalog-tabs button.is-active {
  color: #0b0b0d;
  background: #ffd400;
  border-color: #ffd400;
  box-shadow: 0 14px 30px rgba(255, 212, 0, 0.2);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.service-layout aside {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 10px;
  padding: 22px;
  color: #ffffff;
  background: var(--bg-2);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
}

.service-layout aside strong {
  font-size: 24px;
  line-height: 1.1;
}

.service-layout aside span {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
}

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

.service-card {
  background: #ffffff;
  border-color: var(--line-dark);
  border-top: 5px solid var(--accent, var(--teal));
}

.service-card small,
.process-card small,
.product-card small {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent, var(--teal));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card strong,
.product-card strong {
  color: var(--text-dark);
}

.service-card span,
.product-card span {
  color: var(--muted-dark);
}

.section-heading--compact {
  margin-bottom: 18px;
}

.section-heading--compact h2 {
  max-width: 840px;
  font-size: clamp(28px, 4vw, 46px);
}

.finance-tools {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 32, 51, 0.12);
}

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

.finance-tool-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 20px;
  color: var(--text-dark);
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-top: 5px solid var(--magenta);
  border-radius: 8px;
}

.finance-tool-card small {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.finance-tool-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 23px;
  line-height: 1.08;
}

.finance-tool-card p,
.finance-tool-card span {
  margin: 0;
  color: var(--muted-dark);
  font-weight: 800;
}

.finance-tool-card label {
  display: grid;
  gap: 7px;
  color: var(--text-dark);
  font-weight: 900;
}

.finance-tool-card input,
.finance-tool-card select {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  color: var(--text-dark);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.finance-tool-card > strong {
  display: block;
  margin-top: 4px;
  color: var(--magenta);
  font-size: 31px;
  line-height: 1;
}

.unit-faq-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 79, 157, 0.18), transparent 32%),
    linear-gradient(145deg, #080915 0%, #11182c 48%, #2b0c24 100%);
  border-top: 1px solid var(--line);
}

.unit-faq-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.unit-faq-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(113, 22, 63, 0.16)) padding-box,
    linear-gradient(135deg, rgba(255, 111, 176, 0.48), rgba(255, 255, 255, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
}

.unit-faq-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--magenta), var(--coral));
  border-radius: 8px;
  font-weight: 950;
}

.unit-faq-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.unit-faq-card details {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.unit-faq-card summary {
  cursor: pointer;
  color: #ffb6d2;
  font-weight: 950;
}

.unit-faq-card p {
  margin: 9px 0 0;
  color: #f2dbe6;
  font-size: 14px;
  font-weight: 780;
}

.certification-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: 20px;
  align-items: stretch;
  color: #ffffff;
  background: var(--bg-2);
}

.certification-feature {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.certification-feature img {
  width: 100%;
  aspect-ratio: 16 / 7;
  display: block;
  object-fit: cover;
}

.certification-feature div {
  padding: clamp(22px, 4vw, 36px);
}

.certification-grid {
  display: grid;
  gap: 14px;
}

.certification-grid article {
  display: grid;
  align-content: center;
  min-height: 140px;
}

.implementation-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, #10152a 0%, #1b1744 55%, #12293c 100%);
}

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

.process-card {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.platform-demo-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  color: #ffffff;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(225, 30, 121, 0.12)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(225, 30, 121, 0.36)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
}

.platform-demo-grid small {
  color: #ff7fba;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.platform-demo-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.08;
}

.platform-demo-grid p {
  margin: 0;
  color: #dfe8f4;
  font-weight: 800;
}

.store-banners-section {
  color: #ffffff;
  background: var(--bg);
}

.store-banner-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.store-banner-card,
.highlight-card,
.offer-panel,
.offer-product-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.store-banner-card {
  position: relative;
  min-height: 0;
  aspect-ratio: var(--banner-ratio, 2000 / 560);
  display: grid;
  align-content: end;
  padding: 22px;
  isolation: isolate;
}

.store-banner-card[data-location="home-page-tira"] {
  grid-column: 1 / -1;
  aspect-ratio: var(--banner-ratio, 3800 / 140);
}

.store-banner-size {
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 6px 8px;
  color: #f5f8ff;
  background: rgba(7, 9, 21, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 950;
}

.store-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--banner-image) center / cover no-repeat;
  opacity: 0.58;
}

.store-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 9, 21, 0.1), rgba(7, 9, 21, 0.9));
}

.store-banner-card small,
.highlight-card small {
  color: var(--teal);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-banner-card strong {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.store-banner-card span {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.featured-store-section {
  color: var(--text-dark);
  background: var(--surface);
}

.featured-store-section .section-heading p:not(.eyebrow) {
  color: var(--muted-dark);
  opacity: 1;
}

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

.highlight-card {
  background: #ffffff;
  border-color: var(--line-dark);
}

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

.highlight-card div {
  padding: 18px;
}

.highlight-card strong {
  display: block;
  color: var(--text-dark);
}

.highlight-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted-dark);
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  color: #ffffff;
  background: linear-gradient(135deg, #10152a, #171d35);
}

.offer-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  border-top: 5px solid var(--gold);
}

.offer-panel h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.offer-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.offer-countdown span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: #06111d;
  background: var(--gold);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 950;
  text-align: center;
}

.offer-countdown small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}

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

.offer-product-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 150px;
}

.offer-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-product-card div {
  padding: 16px;
}

.offer-product-card strong,
.offer-product-card b {
  display: block;
}

.offer-product-card b {
  margin-top: 8px;
  color: var(--gold);
  font-size: 22px;
}

.tech-brand-banners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.tech-brand-banners a {
  min-height: 156px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 212, 0, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(72, 18, 52, 0.92), rgba(13, 18, 36, 0.96));
  border: 1px solid rgba(255, 212, 0, 0.28);
  border-radius: 8px;
}

.tech-brand-banners small {
  color: #ffd400;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tech-brand-banners strong {
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.tech-brand-banners span {
  color: #f3dbe7;
  font-weight: 850;
}

.catalog-filter-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin: 0 0 20px;
  padding: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 212, 0, 0.22);
  border-radius: 8px;
}

.catalog-filter-panel label {
  display: grid;
  gap: 7px;
  color: #f0ece6;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.catalog-filter-panel input,
.catalog-filter-panel select,
.catalog-filter-panel button {
  min-height: 42px;
  width: 100%;
  padding: 10px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.catalog-filter-panel button {
  color: #0b0b0d;
  background: #ffd400;
  border-color: #ffd400;
  font-weight: 950;
}

.pc-builder-mini {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr) minmax(220px, 0.26fr);
  gap: 14px;
  align-items: stretch;
  margin: 0 0 22px;
  padding: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 4% 12%, rgba(255, 212, 0, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(11, 12, 18, 0.96), rgba(65, 13, 44, 0.9));
  border: 1px solid rgba(255, 212, 0, 0.26);
  border-radius: 8px;
}

.pc-builder-mini h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.pc-builder-mini p {
  margin: 8px 0 0;
  color: #f3dbe7;
  font-weight: 800;
}

.pc-builder-mini form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pc-builder-mini label {
  display: grid;
  gap: 7px;
  color: #f0ece6;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pc-builder-mini select {
  min-height: 44px;
  width: 100%;
  padding: 10px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.pc-builder-mini aside {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.pc-builder-mini aside span,
.pc-builder-mini aside small {
  color: #f3dbe7;
  font-weight: 850;
}

.pc-builder-mini aside strong {
  color: #ffd400;
  font-size: 34px;
  line-height: 1;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.catalog-tabs button {
  min-height: 40px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.catalog-tabs button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--magenta), var(--coral));
  border-color: var(--teal);
}

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

.catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 212, 0, 0.24);
  border-radius: 8px;
}

.catalog-empty strong {
  color: #ffffff;
  font-size: 24px;
}

.catalog-empty span {
  color: #f3dbe7;
  font-weight: 850;
}

.product-card {
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 99, 158, 0.28), transparent 34%) padding-box,
    linear-gradient(155deg, #71163f 0%, #4b102f 52%, #2b0c24 100%) padding-box,
    linear-gradient(135deg, rgba(255, 91, 154, 0.82), rgba(255, 74, 36, 0.5), rgba(255, 255, 255, 0.12)) border-box;
  border-color: transparent;
  box-shadow: 0 18px 46px rgba(17, 5, 18, 0.34);
}

.product-image-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 430px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 111, 176, 0.24), transparent 34%),
    linear-gradient(145deg, #f5edf3 0%, #eceff7 54%, #eadde7 100%);
  border-bottom: 1px solid rgba(255, 111, 176, 0.38);
}

.product-image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain !important;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.04);
}

.product-card > div {
  padding: 18px;
}

.product-card small {
  color: #ff6fb0;
}

.product-card strong {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.product-card .product-meta {
  color: #f3bfd6;
  font-weight: 900;
}

.product-card p,
.product-card span,
.product-card .product-specs {
  color: #f2dbe6;
}

.product-description {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 850;
}

.product-specs {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 800;
}

.product-source {
  color: #d9abc0;
  font-size: 12px;
  font-weight: 850;
}

.product-card b {
  display: block;
  margin-top: 14px;
  color: #ff4f9d;
  font-size: 24px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.price-note {
  display: block;
  margin-top: 5px;
  color: #f7c5db;
  font-size: 12px;
  font-weight: 900;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-links a,
.product-links button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(255, 79, 157, 0.18);
  border: 1px solid rgba(255, 111, 176, 0.42);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.product-links button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 16px;
}

.product-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 111, 176, 0.44);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.product-action--ghost {
  background: rgba(255, 255, 255, 0.07);
}

.product-action--primary {
  background: linear-gradient(135deg, var(--magenta), var(--coral));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(225, 30, 121, 0.22);
}

.product-action--detail,
.product-action--checkout {
  background: rgba(82, 24, 55, 0.82);
  border-color: rgba(255, 139, 190, 0.5);
}

.product-action:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.cart-summary {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
  padding: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 111, 176, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(91, 15, 52, 0.92), rgba(38, 11, 35, 0.96));
  border: 1px solid rgba(255, 111, 176, 0.32);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(15, 4, 19, 0.28);
}

.cart-summary small {
  display: block;
  color: #ff7fba;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-summary strong,
.cart-summary span {
  display: block;
}

.cart-summary__head,
.cart-summary__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary__head button,
.cart-summary__controls button {
  min-height: 34px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 111, 176, 0.36);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.cart-summary__items {
  display: grid;
  gap: 10px;
}

.cart-summary__items article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.cart-summary__items img {
  width: 74px;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  background: #f2e8ef;
  border-radius: 8px;
}

.cart-summary__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.cart-summary__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cart-summary__actions form {
  margin: 0;
}

.cart-summary__actions .product-action {
  min-width: 168px;
}

.product-modal[hidden] {
  display: none;
}

.has-product-modal {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
}

.product-modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 10, 0.78);
  border: 0;
  backdrop-filter: blur(8px);
}

.product-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
  gap: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 111, 176, 0.22), transparent 30%),
    linear-gradient(145deg, #71163f 0%, #3a102d 58%, #110817 100%);
  border: 1px solid rgba(255, 111, 176, 0.42);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 950;
}

.product-modal__media {
  padding: 22px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 111, 176, 0.2), transparent 36%),
    linear-gradient(145deg, #f5edf3 0%, #eceff7 54%, #eadde7 100%);
}

.product-modal__main-image {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 0;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(113, 22, 63, 0.12);
  border-radius: 8px;
}

.product-modal__main-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  user-select: none;
}

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

.product-modal__gallery button {
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(113, 22, 63, 0.18);
  border-radius: 8px;
}

.product-modal__gallery button.is-active {
  border-color: rgba(225, 30, 121, 0.78);
  box-shadow: 0 0 0 2px rgba(225, 30, 121, 0.18);
}

.product-modal__gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 6px;
  mix-blend-mode: multiply;
  user-select: none;
}

.product-modal__copy {
  padding: clamp(24px, 4vw, 42px);
}

.product-modal__copy small {
  color: #ff7fba;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal__copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.02;
}

.product-modal__copy p,
.product-modal__copy li {
  color: #f3dbe7;
  font-weight: 800;
}

.product-modal__copy ul {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding-left: 18px;
}

.product-modal__meta {
  color: #f7c5db;
}

.product-summary {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 127, 186, 0.26);
  border-radius: 8px;
}

.product-summary__head {
  display: grid;
  gap: 6px;
}

.product-summary__head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.product-summary__head p,
.product-summary__description,
.product-summary__block p,
.product-summary__note {
  margin: 0;
  color: #f3dbe7;
  font-size: 14px;
  font-weight: 800;
}

.product-summary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.product-summary__grid div {
  padding: 10px;
  background: rgba(13, 18, 36, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.product-summary__grid dt {
  color: #ff7fba;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-summary__grid dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.product-summary__block {
  display: grid;
  gap: 8px;
}

.product-summary__block strong {
  color: #ffffff;
  font-size: 15px;
}

.product-summary__block ul {
  margin: 0;
  padding-left: 18px;
}

.product-summary__note {
  padding-top: 10px;
  color: #ffd6e8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.product-modal__facts div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.product-modal__facts dt {
  color: #ff7fba;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-modal__facts dd {
  margin: 4px 0 0;
  color: #ffffff;
  font-weight: 900;
}

.customer-modal[hidden] {
  display: none;
}

.customer-modal {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
}

.customer-modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 10, 0.78);
  border: 0;
  backdrop-filter: blur(8px);
}

.customer-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 111, 176, 0.22), transparent 34%),
    linear-gradient(145deg, #71163f 0%, #3a102d 58%, #110817 100%);
  border: 1px solid rgba(255, 111, 176, 0.42);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
}

.customer-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 950;
}

.customer-modal__panel small,
.customer-modal__panel p,
.customer-session span {
  color: #f3dbe7;
  font-weight: 850;
}

.customer-modal__panel small {
  color: #ff7fba;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.customer-modal__panel h2 {
  margin: 6px 0 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.customer-form,
.customer-session,
.distributor-fields {
  display: grid;
  gap: 12px;
}

.distributor-fields[hidden] {
  display: none;
}

.distributor-fields {
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.customer-form label {
  display: grid;
  gap: 7px;
  color: #ffffff;
  font-weight: 900;
}

.customer-form input,
.customer-form select {
  width: 100%;
  padding: 12px;
  color: var(--text-dark);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.customer-form small {
  color: #ffd2dd;
  font-weight: 900;
}

.customer-session {
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.customer-session strong,
.customer-session b {
  color: #ffffff;
}

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

.product-actions--detail form {
  margin: 0;
}

.product-actions--detail .product-action {
  width: 100%;
}

.checkout-status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 111, 176, 0.24), transparent 34%),
    linear-gradient(145deg, #070915 0%, #2b0c24 48%, #070915 100%);
}

.checkout-status-card {
  width: min(760px, 100%);
  padding: clamp(26px, 5vw, 48px);
  color: #ffffff;
  background: linear-gradient(145deg, rgba(113, 22, 63, 0.92), rgba(22, 8, 27, 0.96));
  border: 1px solid rgba(255, 111, 176, 0.38);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.checkout-status-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.checkout-status-card p,
.checkout-status-card dd {
  color: #f2dbe6;
  font-weight: 800;
}

.checkout-status-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.checkout-status-card dl div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.checkout-status-card dt {
  color: #ff7fba;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-status-card dd {
  margin: 4px 0 0;
}

.contact-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 79, 157, 0.22), transparent 34%),
    linear-gradient(145deg, #090714 0%, #2b0c24 44%, #070915 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 22px;
  align-items: end;
}

.section-note {
  padding: 18px;
  color: #f2dbe6;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 111, 176, 0.28);
  border-radius: 8px;
  font-weight: 850;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) repeat(3, minmax(220px, 0.8fr));
  gap: 16px;
}

.contact-card {
  min-width: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(113, 22, 63, 0.92), rgba(43, 12, 36, 0.96)) padding-box,
    linear-gradient(135deg, rgba(255, 111, 176, 0.62), rgba(255, 74, 36, 0.34)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.contact-card--primary {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 111, 176, 0.28), transparent 35%) padding-box,
    linear-gradient(145deg, #811b49, #4b102f 58%, #210a1d) padding-box,
    linear-gradient(135deg, rgba(255, 111, 176, 0.78), rgba(255, 74, 36, 0.42)) border-box;
}

.contact-card small {
  color: #ff6fb0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  color: #ffffff;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  font-size: clamp(21px, 1.82vw, 32px);
  line-height: 1.05;
}

.contact-card p {
  margin: 0;
  color: #f2dbe6;
  font-weight: 800;
}

.contact-actions,
.contact-link {
  margin-top: auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-actions .button {
  white-space: normal;
  text-align: center;
}

.contact-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  width: fit-content;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(255, 79, 157, 0.16);
  border: 1px solid rgba(255, 111, 176, 0.38);
  border-radius: 8px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(102, 45, 128, 0.12)) padding-box,
    linear-gradient(135deg, rgba(255, 111, 176, 0.5), rgba(255, 74, 36, 0.28)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #f2dbe6;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-form textarea,
.contact-form button,
.hidden-field {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.backoffice-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  color: #ffffff;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.72);
  background: #050711;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.admin-access {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
}

.admin-access summary {
  cursor: pointer;
  list-style: none;
}

.admin-access summary::-webkit-details-marker {
  display: none;
}

.admin-access a {
  display: inline-flex;
  margin-top: 8px;
  padding: 7px 9px;
  color: #f5f8ff;
  background: rgba(225, 30, 121, 0.14);
  border: 1px solid rgba(225, 30, 121, 0.34);
  border-radius: 7px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-access {
    margin-left: 0;
  }

  .brand-shortcuts,
  .store-nav-section,
  .studio-section,
  .certification-section,
  .service-layout,
  .pc-builder-mini,
  .backoffice-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .shortcut-grid,
  .store-nav-grid,
  .process-grid,
  .platform-demo-grid,
  .finance-tool-grid,
  .tech-brand-banners,
  .unit-faq-grid,
  .contact-grid,
  .catalog-grid,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-filter-panel,
  .pc-builder-mini form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading--row {
    grid-template-columns: 1fr;
  }

  .service-layout aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav,
  .nav-group,
  .nav a {
    width: 100%;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    justify-content: flex-start;
  }

  .nav-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .hero-stage,
  .brand-shortcuts,
  .studio-section,
  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-slider {
    aspect-ratio: auto;
    min-height: 620px;
  }

  .hero-slide {
    min-height: 620px;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .shortcut-grid,
  .store-nav-grid,
    .service-grid,
    .finance-tool-grid,
    .process-grid,
    .platform-demo-grid,
    .unit-faq-grid,
    .store-banner-grid,
    .tech-brand-banners,
    .catalog-filter-panel,
    .pc-builder-mini,
    .pc-builder-mini form,
    .highlight-grid,
    .offer-products,
    .contact-grid,
    .catalog-grid,
    .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .offer-product-card {
    grid-template-columns: 1fr;
  }

  .offer-product-card img {
    aspect-ratio: 16 / 9;
  }

  .store-banner-card,
  .store-banner-card[data-location="home-page-tira"] {
    aspect-ratio: 16 / 9;
  }

  .hero-controls {
    right: 12px;
    bottom: 12px;
  }

  .product-actions,
  .product-actions--detail,
  .cart-summary__head,
  .cart-summary__actions,
  .product-modal__panel,
  .product-summary__grid,
  .product-modal__facts {
    grid-template-columns: 1fr;
  }

  .cart-summary__head,
  .cart-summary__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-summary__actions .product-action {
    width: 100%;
  }

  .product-modal {
    align-items: start;
    overflow: auto;
  }

  .product-modal__panel {
    max-height: none;
  }

}
