@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Barlow Condensed", sans-serif;
  --font-hero: "Bebas Neue", sans-serif;
  --font-hand: "Segoe Print", "Bradley Hand ITC", cursive;
  --container: min(1240px, 92vw);
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-bright: #fcfcfd;
  --surface-soft: #f0f2f6;
  --surface-clean: #fbfbfc;
  --white: #ffffff;
  --black: #000000;
  --ink: #101218;
  --ink-soft: #1a1d25;
  --ink-strong: #0d1017;
  --muted: #555b67;
  --muted-strong: #4f5766;
  --muted-soft: #b3bac7;
  --muted-faint: #9ca6ba;
  --text-on-dark: #f3f6ff;
  --text-on-dark-muted: #d8dde8;
  --text-on-dark-soft: #dee2ed;
  --line: #d9dde6;
  --line-strong: #d8dde6;
  --line-soft: #e4e8ef;
  --line-card: #e1e5ed;
  --brand: #ee2f3d;
  --brand-dark: #c91a2a;
  --brand-light: #ff5160;
  --dark-surface: #0d0f14;
  --dark-gradient-start: #090b10;
  --dark-gradient-mid: #0f131b;
  --dark-gradient-end: #0b0e14;
  --dark-control: #050505;
  --dark-panel: #07090e;
  --dark-panel-2: #111721;
  --dark-panel-3: #10151d;
  --shadow: 0 16px 36px rgba(7, 10, 18, 0.11);
  --shadow-soft: 0 12px 28px rgba(7, 10, 18, 0.08);
  --shadow-card: 0 18px 42px rgba(7, 10, 18, 0.09);
  --shadow-dark: 0 24px 55px rgba(2, 4, 9, 0.46);
  --radius: 14px;
  --radius-sm: 7px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 18px;
  --radius-round: 50%;
  --radius-pill: 999px;
  --header-height: 78px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 9%, rgba(238, 47, 61, 0.025), transparent 30%),
    radial-gradient(circle at 8% 12%, rgba(9, 20, 48, 0.06), transparent 30%),
    linear-gradient(180deg, var(--surface-bright) 0%, var(--surface-soft) 100%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

@supports (content-visibility: auto) {
  .process,
  .dark-showcase,
  .brands,
  .decision-section,
  .support-section,
  .cta-band,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(250, 251, 253, 0.82);
  border-bottom: 1px solid rgba(16, 18, 24, 0.06);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-size: 2.08rem;
  letter-spacing: 0.03em;
  font-weight: 800;
  line-height: 1;
}

.brand-logo {
  width: 116px;
  height: auto;
}

.brand-mark {
  color: var(--ink);
}

.brand-text {
  color: var(--brand);
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 1.8rem;
}

.main-nav a {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.social-links a:hover {
  color: var(--brand);
  border-color: rgba(238, 47, 61, 0.32);
  background: rgba(238, 47, 61, 0.04);
}

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

.social-links path {
  fill: currentColor;
}

.social-links rect,
.social-links circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  min-width: 58px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.1rem) rotate(45deg);
}

.language-switcher[open] summary,
.language-switcher summary:hover {
  color: var(--brand);
  border-color: rgba(238, 47, 61, 0.32);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 138px;
  padding: 0.45rem;
  display: grid;
  gap: 0.15rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.language-menu a {
  padding: 0.55rem 0.65rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  color: var(--brand);
  background: rgba(238, 47, 61, 0.06);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-soft);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(125deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(238, 47, 61, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(125deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--ink);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.btn-ghost:hover {
  border-color: var(--muted-soft);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.btn-outline-light:hover {
  border-color: var(--brand);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.eyebrow.center,
.section-title.center {
  text-align: center;
}

.hero {
  padding-top: 2.6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: center;
  min-height: 570px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-hero);
  text-transform: uppercase;
  letter-spacing: 0px;
  font-size: clamp(76px, 5.8vw, 104px);
  line-height: 0.96;
  color: var(--black);
  font-weight: 700;
}

.hero-copy h1 span {
  color: var(--brand);
  display: inline;
}

.lead {
  margin: 1.45rem 0 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-strong);
  line-height: 1.62;
  max-width: 52ch;
}

.hero-cta {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-proof {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-round);
  margin-right: -8px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--white);
  border: 2px solid var(--white);
  background: linear-gradient(145deg, #28324a, #161d2d);
}

.stars {
  margin: 0;
  color: var(--brand);
  letter-spacing: 0.12em;
}

.rating-text {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-bg-logo {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 46%;
  width: 112%;
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.shirt-shadow {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.25rem;
  width: 82%;
  height: 46px;
  border-radius: var(--radius-round);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.64) 0%, rgba(7, 9, 15, 0.36) 36%, rgba(7, 9, 15, 0.16) 64%, transparent 86%);
  filter: blur(9px);
  opacity: 0.96;
  transform: translateX(-50%) rotate(-2deg);
  pointer-events: none;
}

.shirt-stage {
  position: relative;
  z-index: 2;
  width: min(470px, 36vw);
  padding-bottom: 3.4rem;
  transform: translate(0.4rem, -0.7rem);
  transform-origin: center right;
}

.hero-shirt {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(10, 13, 22, 0.1));
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: -1.2rem;
  bottom: 2.8rem;
  width: 150px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-hand);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(-4deg);
}

.hero-note::before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 0.35rem;
  width: 2.3rem;
  height: 1.1rem;
  border-bottom: 1px solid rgba(26, 29, 37, 0.6);
  border-left: 1px solid rgba(26, 29, 37, 0.6);
  border-radius: 0 0 0 100%;
  transform: rotate(18deg);
}

.hero-note::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: 0.35rem;
  margin-left: 1rem;
  background: var(--brand);
  border-radius: var(--radius-pill);
}

.feature-strip {
  margin-top: 2.2rem;
  padding: 1.25rem 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.home-features {
  padding-top: 0;
}

.home-features .feature-strip {
  margin-top: 0;
}

.feature-strip article {
  min-height: 82px;
  padding: 0 1.35rem;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  column-gap: 0.95rem;
}

.feature-strip article + article {
  border-left: 1px solid var(--line);
}

.feature-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  grid-row: span 2;
  opacity: 0.9;
}

.feature-strip h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.05;
  align-self: end;
}

.feature-strip p {
  margin: 0.1rem 0 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.1;
  align-self: start;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.85rem, 4vw, 2.95rem);
}

.process {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-clean) 100%);
}

.timeline {
  position: relative;
  margin-top: 2.35rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 72px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  border-top: 3px dotted rgba(238, 47, 61, 0.58);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0 0.85rem;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  order: 2;
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 1rem;
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-soft);
  opacity: 0.92;
}

.step-no {
  order: 1;
  display: block;
  position: static;
  margin-bottom: 0.65rem;
  font-weight: 800;
  color: var(--brand);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.step h3 {
  order: 3;
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.step p {
  order: 4;
  margin: 0.45rem auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  max-width: 150px;
}

.dark-showcase {
  background:
    radial-gradient(
      circle at 70% 45%,
      rgba(238, 47, 61, 0.13),
      transparent 38%
    ),
    linear-gradient(
      120deg,
      var(--dark-gradient-start) 0%,
      var(--dark-gradient-mid) 58%,
      var(--dark-panel) 100%
    );
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.dark-copy {
  color: var(--text-on-dark);
}

.dark-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1;
}

.dark-copy ul {
  margin: 1.1rem 0 1.5rem;
  padding: 0 0 0 1.1rem;
}

.dark-copy li + li {
  margin-top: 0.45rem;
}

.mockup-builder {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 65% 32%, rgba(238, 47, 61, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-dark);
}

.mockup-panel {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  width: 190px;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(9, 12, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.mockup-control + .mockup-control {
  margin-top: 0.85rem;
}

.control-label {
  display: block;
  margin-bottom: 0.42rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.select-control {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
}

.color-swatches {
  display: flex;
  gap: 0.42rem;
}

.swatch {
  width: 17px;
  height: 17px;
  border-radius: var(--radius-round);
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
}

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

.swatch-gray {
  background: #8e9299;
}

.swatch-black {
  background: #11141b;
}

.swatch-red {
  background: var(--brand);
}

.swatch-blue {
  background: #1957b8;
}

.swatch.is-active {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.swatch:disabled {
  cursor: not-allowed;
  opacity: 0.24;
}

.view-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.view-toggle button {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.view-toggle button.is-active {
  border-color: var(--brand);
  color: var(--white);
}

.placement-list {
  display: grid;
  gap: 0.3rem;
}

.placement-list button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.76rem;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.placement-list button::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.38rem;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.25);
  vertical-align: 1px;
}

.placement-list .is-active {
  color: var(--white);
}

.placement-list .is-active::before {
  background: var(--brand);
}

.placement-list button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.logo-preview {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.7rem;
}

.logo-preview img {
  width: 104px;
  max-height: 34px;
  object-fit: contain;
}

.mockup-stage {
  position: absolute;
  inset: 0.4rem 0 5.7rem;
  display: grid;
  place-items: center;
  padding-left: 7.5rem;
}

.mockup-stage::after {
  content: "";
  position: absolute;
  left: 52%;
  bottom: 2.6rem;
  width: min(360px, 55%);
  height: 36px;
  border-radius: var(--radius-round);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18) 56%, transparent 78%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.mockup-canvas {
  position: relative;
  z-index: 1;
  width: min(410px, 72%);
  max-height: 385px;
  aspect-ratio: 900 / 1021;
}

.mockup-shirt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
}

.mockup-logo-layer {
  position: absolute;
  z-index: 2;
  width: 15%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28));
}

.mockup-thumbs {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.thumb {
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 0.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.45rem 0.65rem;
  color: var(--white);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.thumb img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.thumb span {
  line-height: 1.15;
}

.brands {
  background: var(--white);
}

.brands-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.28fr;
  gap: 3rem;
  align-items: center;
}

.brands-copy p:not(.eyebrow) {
  margin: 1rem 0 1.6rem;
  max-width: 340px;
  color: var(--muted);
}

.brand-showcase {
  position: relative;
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.brand-card[hidden] {
  display: none;
}

.brand-card {
  --logo-scale: 1;
  height: 430px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.45rem;
  box-shadow: var(--shadow-card);
}

.brand-logo-box {
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.brand-logo-box-dark {
  background: var(--dark-control);
}

.brand-logo-box img {
  width: min(150px, 72%);
  height: 58px;
  object-fit: contain;
  transform: scale(var(--logo-scale));
  transform-origin: center;
}

.brand-malfini {
  --logo-scale: 0.98;
}

.brand-snickers {
  --logo-scale: 1.04;
}

.brand-craft {
  --logo-scale: 0.92;
}

.brand-cerva {
  --logo-scale: 0.76;
}

.brand-gildan {
  --logo-scale: 0.92;
}

.brand-kariban {
  --logo-scale: 1.12;
}

.brand-rimeck {
  --logo-scale: 1.1;
}

.brand-sols {
  --logo-scale: 1.12;
}

.brand-rating {
  margin: 0 0 0.9rem;
  color: var(--brand);
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-card p {
  margin: 0 0 1rem;
  min-height: 82px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.45;
}

.brand-card small {
  display: block;
  min-height: 62px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.45;
}

.brand-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-round);
  background: var(--ink-strong);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.brand-nav:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.brand-prev {
  left: -1.35rem;
}

.brand-next {
  right: -1.35rem;
}

.brand-dots {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.brand-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-round);
  background: var(--line);
  cursor: pointer;
}

.brand-dots .is-active {
  background: var(--brand);
}

.decision-section {
  padding: 0;
}

.decision-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.decision-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.decision-inner {
  min-height: inherit;
  position: relative;
  padding: clamp(2rem, 3.4vw, 3.2rem);
}

.decision-card-dark .decision-inner {
  margin-left: max(4vw, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 220px);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  padding-left: 0;
  padding-right: clamp(2rem, 3.4vw, 3.2rem);
}

.decision-card-light .decision-inner {
  margin-right: max(4vw, calc((100vw - 1240px) / 2));
}

.decision-card h2 {
  margin: 0;
  max-width: 560px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.decision-card p:not(.eyebrow) {
  margin: 1rem 0 1.6rem;
  max-width: 420px;
}

.decision-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 54%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, var(--dark-panel) 0%, var(--dark-panel-3) 100%);
}

.decision-card-dark p:not(.eyebrow) {
  margin-bottom: 5.4rem;
  color: var(--text-on-dark-muted);
}

.decision-copy {
  position: relative;
  z-index: 2;
}

.decision-card-dark .decision-copy {
  transform: translateX(-1.15rem);
}

.no-shop-visual {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

.no-shop-visual img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.34));
}

.decision-card-light {
  background:
    radial-gradient(circle at 82% 82%, rgba(238, 47, 61, 0.08), transparent 28%),
    var(--white);
}

.decision-card-light p:not(.eyebrow) {
  color: var(--muted-strong);
}

.price-formula {
  margin: 2rem 0 5.4rem;
  display: flex;
  gap: clamp(0.55rem, 1vw, 1rem);
  align-items: center;
  flex-wrap: nowrap;
}

.price-factor {
  min-width: 64px;
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
}

.price-factor img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.86;
}

.decision-card-dark .btn-outline-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink-strong);
}

.decision-card-dark .btn-outline-light:hover {
  background: var(--surface-soft);
  border-color: var(--surface-soft);
  color: var(--ink-strong);
}

.price-factor-result {
  color: var(--brand);
}

.price-factor-result img {
  opacity: 1;
}

.formula-symbol {
  color: var(--muted-soft);
  font-weight: 900;
  text-align: center;
}

.support-section {
  padding: 0;
}

.support-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.support-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.support-inner {
  min-height: inherit;
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(210px, 0.9fr);
  gap: clamp(0.8rem, 1.6vw, 1.8rem);
  align-items: center;
  padding: clamp(1.8rem, 3vw, 2.7rem);
}

.support-card-size .support-inner {
  margin-left: max(4vw, calc((100vw - 1240px) / 2));
  padding-left: 0;
}

.support-card-delivery .support-inner {
  margin-right: max(4vw, calc((100vw - 1240px) / 2));
  grid-template-columns: minmax(380px, 0.82fr) minmax(290px, 1.12fr);
}

.support-card h2 {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 2.6vw, 2.85rem);
  line-height: 1;
}

.title-line {
  display: inline-block;
  white-space: nowrap;
}

.support-card p:not(.eyebrow) {
  margin: 1rem 0 1.6rem;
  max-width: 360px;
  color: var(--muted-strong);
}

.support-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
}

.support-visual img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.size-visual::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  top: 10%;
  bottom: 10%;
  border-left: 1px dashed rgba(238, 47, 61, 0.38);
}

.delivery-visual img {
  max-width: 520px;
  max-height: 300px;
  transform: translateX(1.2rem);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 5% 50%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(115deg, var(--dark-panel) 0%, var(--dark-panel-2) 62%, var(--dark-gradient-end) 100%);
}

.cta-band-inner {
  min-height: 250px;
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.4rem, 5vw, 4.4rem) 0;
}

.cta-bg-logo {
  position: absolute;
  left: -12rem;
  top: 50%;
  width: 390px;
  opacity: 0.08;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-band-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.4vw, 4.9rem);
  line-height: 0.98;
  color: var(--white);
}

.cta-band-inner h2 span {
  color: var(--brand);
}

.cta-band-inner p {
  margin: 0.8rem 0 0;
  color: var(--text-on-dark-soft);
}

.cta-action {
  position: relative;
  min-width: 260px;
  display: grid;
  justify-items: start;
  gap: 0.7rem;
}

.cta-action .btn {
  min-width: 230px;
}

.cta-action p {
  position: relative;
  margin: 0 0 0 4.2rem;
  color: var(--white);
  font-family: var(--font-hand);
  font-size: 0.95rem;
  transform: rotate(-3deg);
}

.cta-action p::before {
  content: "";
  position: absolute;
  left: -3.3rem;
  top: -0.2rem;
  width: 2.6rem;
  height: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  border-left: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 0 0 0 100%;
  transform: rotate(-12deg);
}

.site-footer {
  margin-top: 4rem;
  background: var(--ink-strong);
  color: var(--text-on-dark-soft);
  padding-top: 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.footer-brand {
  width: fit-content;
  margin-bottom: 0.7rem;
}

.footer-brand .brand-logo {
  height: 42px;
}

.site-footer h3 {
  margin: 0 0 0.55rem;
  color: var(--white);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0.3rem 0;
  color: var(--muted-soft);
}

.footer-bottom {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-faint);
  font-size: 0.92rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-legal-links a {
  margin: 0;
}

.footer-legal-links a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  overflow: hidden;
}

.page-hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: center;
}

.page-hero-copy h1 {
  margin: 0;
  max-width: 620px;
  font-family: var(--font-hero);
  text-transform: uppercase;
  font-size: clamp(4.3rem, 5.8vw, 6.5rem);
  line-height: 0.96;
  color: var(--black);
  letter-spacing: 0;
  font-weight: 700;
}

.page-hero-copy h1 span {
  color: var(--brand);
}

.brand-hero-visual {
  position: relative;
  isolation: isolate;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.brand-hero-bg-logo {
  position: absolute;
  z-index: 0;
  right: -0.35rem;
  top: -0.45rem;
  width: min(560px, 43vw);
  height: auto;
  opacity: 1;
  object-fit: contain;
  pointer-events: none;
}

.brand-shirt-stage {
  position: relative;
  z-index: 2;
  width: min(520px, 41vw);
  aspect-ratio: 1 / 1;
  padding-bottom: 3.4rem;
  transform: translate(0.4rem, -0.7rem);
  transform-origin: center right;
}

.brand-hero-shadow {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.25rem;
  width: 82%;
  height: 46px;
  border-radius: var(--radius-round);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.64) 0%, rgba(7, 9, 15, 0.36) 36%, rgba(7, 9, 15, 0.16) 64%, transparent 86%);
  filter: blur(9px);
  opacity: 0.96;
  transform: translateX(-50%) rotate(-2deg);
  pointer-events: none;
}

.brand-hero-garment {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(10, 13, 22, 0.1));
}

.brand-hero-note {
  position: absolute;
  z-index: 4;
  right: -1.2rem;
  bottom: 0.55rem;
  width: 150px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-hand);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(-4deg);
}

.brand-hero-note::before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 0.35rem;
  width: 2.3rem;
  height: 1.1rem;
  border-bottom: 1px solid rgba(26, 29, 37, 0.6);
  border-left: 1px solid rgba(26, 29, 37, 0.6);
  border-radius: 0 0 0 100%;
  transform: rotate(18deg);
}

.brand-hero-note::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: 0.35rem;
  margin-left: 1rem;
  background: var(--brand);
  border-radius: var(--radius-pill);
}

.brand-page-intro {
  background: var(--white);
}

.brand-selector-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.brand-selector-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 520px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.65;
}

.brand-selector-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.45rem, 0.9vw, 0.9rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 86% 74%, rgba(238, 47, 61, 0.08), transparent 28%),
    linear-gradient(180deg, var(--surface-bright) 0%, var(--white) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.brand-selector-panel::before {
  content: "";
  position: absolute;
  inset: auto 2rem 1.35rem 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 47, 61, 0.26), transparent);
}

.selector-factor {
  position: relative;
  z-index: 1;
  min-width: 72px;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.12;
}

.selector-factor img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 0.86;
}

.selector-symbol {
  color: var(--muted-soft);
  font-weight: 900;
}

.selector-result {
  color: var(--brand);
}

.selector-result img {
  opacity: 1;
}

.brand-directory {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-clean) 100%);
}

.brand-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.brand-detail-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.brand-detail-logo {
  height: 90px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
}

.brand-detail-logo-dark {
  background: var(--dark-control);
}

.brand-detail-logo img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.brand-detail-card h2,
.brand-detail-card h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
}

.brand-detail-card h2 {
  font-size: 2rem;
}

.brand-detail-card h3 {
  margin-top: 1rem;
  font-size: 1rem;
}

.brand-detail-card p {
  margin: 0.8rem 0 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.5;
}

.brand-detail-card .brand-lead {
  min-height: 48px;
  color: var(--ink-soft);
  font-weight: 800;
}

.brand-detail-card ul {
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  list-style: none;
}

.brand-detail-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
}

.brand-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: var(--radius-round);
}

.brand-detail-card .ideal {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.brand-choice {
  background: var(--white);
}

.brand-choice-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.brand-choice-inner p:not(.eyebrow) {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.contact-summary {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 90% 12%, rgba(238, 47, 61, 0.08), transparent 28%),
    var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-summary-logo {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 260px;
  opacity: 0.06;
  pointer-events: none;
}

.contact-summary-item {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.contact-summary-item span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-summary-item a,
.contact-summary-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-summary-note {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-form-card,
.contact-help {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-form-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.contact-form {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface-bright);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 0.95rem;
  outline: 0;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(238, 47, 61, 0.55);
  box-shadow: 0 0 0 4px rgba(238, 47, 61, 0.08);
}

.form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted-strong);
  font-weight: 600;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--brand);
}

.form-consent a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.4rem;
}

.legal-page {
  padding-top: clamp(7rem, 10vw, 9rem);
}

.legal-layout {
  max-width: 920px;
}

.legal-layout h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.legal-lead {
  max-width: 720px;
  margin: 0 0 2rem;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-card {
  margin-top: 1rem;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
}

.legal-card p {
  margin: 0.45rem 0;
  color: var(--muted-strong);
  line-height: 1.7;
}

.legal-card a {
  color: var(--brand);
  font-weight: 800;
}

.not-found-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 74% 36%, rgba(238, 47, 61, 0.12), transparent 28%),
    linear-gradient(135deg, var(--surface-dark) 0%, #121722 100%);
  color: var(--white);
}

.not-found-inner {
  max-width: 760px;
}

.not-found-inner h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.not-found-inner p:not(.eyebrow) {
  max-width: 580px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.not-found-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.not-found-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-help {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.contact-help-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.contact-help-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.contact-help-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-help-list img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 0.86;
}

.contact-help-list h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1;
}

.contact-help-list p {
  margin: 0.35rem 0 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.45;
}

.technology-intro {
  background: var(--white);
}

.technology-directory {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-clean) 100%);
}

.technology-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.technology-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.technology-card-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--surface-bright);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-round);
}

.technology-card-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.86;
}

.technology-card h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
}

.technology-card p:not(.eyebrow) {
  margin: 0.9rem 0 0;
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.5;
}

.technology-card ul {
  margin: auto 0 0;
  padding: 1rem 0 0;
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

.technology-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.technology-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: var(--radius-round);
}

.results-section {
  background: var(--white);
}

.results-heading {
  max-width: 720px;
}

.results-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.result-card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.result-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.result-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 250px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.result-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.result-placeholder span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  color: var(--white);
  background: rgba(7, 10, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.result-card h3 {
  margin: 1.15rem 1.2rem 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
}

.result-card p {
  margin: 0.65rem 1.2rem 1.2rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.5;
}

.extras-section {
  background: var(--white);
}

.extras-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.extras-grid p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 520px;
  color: var(--muted-strong);
  line-height: 1.65;
}

.extras-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.extras-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 1rem;
  color: var(--ink-soft);
  background: var(--surface-bright);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  font-weight: 800;
}

@media (max-width: 1200px) {
  .nav-wrap {
    gap: 1.2rem;
  }

  .main-nav {
    gap: 1.25rem;
  }

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

  .decision-card-dark .decision-inner,
  .decision-card-light .decision-inner {
    width: var(--container);
    margin: 0 auto;
    padding-left: clamp(2rem, 3.4vw, 3.2rem);
    padding-right: clamp(2rem, 3.4vw, 3.2rem);
  }

  .decision-card-dark .decision-inner {
    grid-template-columns: minmax(0, 1fr) minmax(140px, 200px);
  }

  .decision-card {
    min-height: 300px;
  }

  .decision-card h2 {
    max-width: 620px;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .dark-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mockup-builder {
    min-height: 560px;
  }

  .hero-visual,
  .brand-hero-visual {
    justify-content: center;
  }

  .hero-bg-logo {
    left: 50%;
    top: 46%;
    width: 112%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .brand-hero-bg-logo {
    right: 50%;
    top: -1.1rem;
    width: min(520px, 84vw);
    opacity: 1;
    transform: translateX(46%);
  }

  .shirt-stage {
    width: min(430px, 68vw);
    padding-bottom: 2.2rem;
    transform: none;
  }

  .brand-shirt-stage {
    width: min(520px, 82vw);
    transform: none;
  }

  .hero-note {
    right: 8%;
    bottom: 2.4rem;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }

  .timeline::before {
    display: none;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.2rem;
  }

  .feature-strip article:nth-child(odd) {
    border-left: 0;
  }

  .feature-strip article:nth-child(n + 3) {
    padding-top: 1.2rem;
    border-top: 1px solid var(--line-strong);
  }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brands-copy p:not(.eyebrow) {
    max-width: 520px;
  }

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

  .decision-card {
    min-height: 300px;
  }

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

  .support-card-size .support-inner,
  .support-card-delivery .support-inner {
    width: var(--container);
    margin: 0 auto;
    padding-left: clamp(2rem, 3.4vw, 3.2rem);
    padding-right: clamp(2rem, 3.4vw, 3.2rem);
  }

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

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

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

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

  .brand-prev {
    left: -0.75rem;
  }

  .brand-next {
    right: -0.75rem;
  }
}

@media (max-width: 900px) {
  .hide-mobile {
    display: none;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .social-links {
    gap: 0.25rem;
  }

  .social-links a {
    width: 32px;
    height: 32px;
  }

  .language-switcher summary {
    min-width: 52px;
    height: 32px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 4vw;
    left: 4vw;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    gap: 0.6rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .mockup-builder {
    min-height: 700px;
  }

  .mockup-panel {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 1rem;
  }

  .mockup-stage {
    inset: 225px 0 5.7rem;
    padding-left: 0;
  }

  .mockup-canvas {
    width: min(420px, 82%);
  }

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

  .price-formula {
    flex-wrap: wrap;
  }

  .formula-symbol {
    display: none;
  }

  .support-card-size .support-inner,
  .support-card-delivery .support-inner {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 220px);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .step p {
    max-width: 190px;
  }

  .cta-band-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .cta-band-inner {
    justify-items: start;
  }

  .cta-action {
    min-width: 0;
  }

  .page-hero-grid,
  .contact-hero-grid,
  .contact-grid,
  .brand-selector-grid,
  .extras-grid,
  .brand-choice-inner {
    grid-template-columns: 1fr;
  }

  .contact-help {
    position: static;
  }

  .brand-hero-visual {
    justify-content: center;
  }

  .brand-hero-bg-logo {
    right: 50%;
    top: -1.1rem;
    width: min(520px, 82vw);
    transform: translateX(46%);
  }

  .brand-shirt-stage {
    width: min(520px, 82vw);
    transform: none;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-copy h1 {
    font-size: 58px;
    line-height: 0.92;
    letter-spacing: 0;
  }

  .lead {
    font-size: 15px;
  }

  .hero-note {
    display: none;
  }

  .brand-hero-note {
    display: none;
  }

  .mockup-builder {
    min-height: 720px;
  }

  .mockup-stage {
    inset: 250px 0 7.2rem;
  }

  .mockup-thumbs {
    grid-template-columns: 1fr;
  }

  .thumb {
    min-height: 72px;
    grid-template-columns: 58px 1fr;
  }

  .thumb img {
    height: 54px;
  }

  .brand-cards {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-hero-copy h1 {
    font-size: 58px;
    line-height: 0.92;
    letter-spacing: 0;
  }

  .brand-hero-visual {
    margin-top: 1rem;
  }

  .brand-detail-card {
    min-height: auto;
  }

  .technology-card {
    min-height: auto;
  }

  .brand-nav {
    display: none;
  }

  .decision-card {
    padding: 0;
  }

  .decision-card-dark .decision-inner,
  .decision-card-light .decision-inner {
    width: var(--container);
    padding: 2rem 0;
  }

  .decision-card-dark .decision-inner {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .decision-card-dark .decision-copy {
    transform: none;
  }

  .no-shop-visual {
    width: 130px;
    opacity: 0.82;
    justify-self: end;
    margin-top: -1rem;
  }

  .price-formula {
    gap: 1rem;
  }

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

  .contact-form-card,
  .contact-help,
  .contact-summary {
    border-radius: var(--radius);
  }

  .brand-selector-panel {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.2rem;
  }

  .brand-selector-panel::before {
    display: none;
  }

  .selector-factor {
    min-width: 92px;
  }

  .support-card-size .support-inner,
  .support-card-delivery .support-inner {
    width: var(--container);
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

  .title-line {
    white-space: normal;
  }

  .support-visual {
    min-height: 150px;
    justify-self: end;
    width: min(260px, 70vw);
  }

  .size-visual::after {
    display: none;
  }

  .timeline,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .step-icon {
    width: 86px;
    height: 86px;
    padding: 0.78rem;
    margin-bottom: 0.8rem;
  }

  .step p {
    max-width: 240px;
  }

  .feature-strip {
    padding: 0.3rem 0 0;
    row-gap: 0;
  }

  .feature-strip article {
    padding: 0.9rem 0;
    border-left: 0;
  }

  .feature-strip article + article,
  .feature-strip article:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }
}
