:root {
  --background: #ffffff;
  --foreground: #141d2e;
  --card: #ffffff;
  --muted: #eef2f6;
  --muted-2: #f5f5f5;
  --muted-foreground: #465063;
  --primary: #c51111;
  --primary-dark: #9d0d0d;
  --accent: #e31919;
  --accent-soft: #fff1f1;
  --border: #dbe3ef;
  --footer: #f5f5f5;
  --shadow: 0 10px 28px rgba(20, 29, 46, 0.12);
  --shadow-sm: 0 4px 16px rgba(20, 29, 46, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

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

img {
  display: block;
  max-width: 100%;
}

.font-display,
h1,
h2,
h3,
h4,
.brand-text {
  font-family: Oswald, Inter, system-ui, sans-serif;
}

.container {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--footer);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.language {
  position: relative;
}

.language-button {
  border: 0;
  background: transparent;
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.language-button:hover,
.language.open .language-button {
  background: rgba(20, 29, 46, 0.08);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 168px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
}

.language.open .language-menu {
  display: grid;
}

.language-menu button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--foreground);
}

.language-menu button:hover,
.language-menu button.active {
  background: var(--muted);
}

.site-nav {
  border-top: 1px solid rgba(20, 29, 46, 0.1);
  background: rgba(20, 29, 46, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(20, 29, 46, 0.1);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
}

.nav-item:hover .dropdown {
  display: grid;
}

.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.dropdown a:hover {
  background: var(--muted);
}

main {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  padding: clamp(78px, 11vw, 132px) 0 92px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 700;
}

.hero p {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: 1px solid transparent;
  border-radius: 6px;
  min-height: 46px;
  padding: 12px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark {
  background: var(--foreground);
  color: #ffffff;
}

.btn-muted {
  background: var(--muted);
  color: var(--foreground);
  border-color: var(--border);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 32px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  padding: 0;
}

.hero-dot.active {
  background: #ffffff;
}

.section {
  padding: 56px 0;
}

.section-tight {
  padding: 36px 0;
}

.section-muted {
  background: var(--muted);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
}

.section-header h1,
.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.section-header p {
  margin: 0;
  color: var(--muted-foreground);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.plain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.image-card img,
.product-card img,
.case-card img {
  width: 100%;
  object-fit: cover;
}

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

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

.factory-card p {
  margin: 0;
  padding: 12px 10px 14px;
  text-align: center;
  font-weight: 700;
}

.custom-panels {
  align-items: stretch;
}

.process-poster {
  padding: 26px;
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 22px;
}

.poster-title {
  font-family: Oswald, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.jersey-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.jersey-demo img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.plus {
  font-family: Oswald, sans-serif;
  font-size: 52px;
  font-weight: 700;
}

.poster-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.poster-steps span,
.flow-step span {
  background: var(--foreground);
  color: #ffffff;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 9px 8px;
  border-radius: 2px;
}

.production-map {
  padding: 26px;
}

.production-map h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  text-align: center;
}

.production-map .sub {
  text-align: center;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  margin: 4px 0 20px;
}

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

.flow-step {
  position: relative;
  background: var(--muted);
  border-radius: 8px;
  overflow: hidden;
  min-height: 112px;
}

.flow-step img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.flow-step span {
  position: absolute;
  left: 10px;
  bottom: 28px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 5px 0 0;
  background: #ff6a00;
}

.flow-step p {
  margin: 7px 8px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.feature-grid {
  margin-top: 24px;
}

.feature {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px 12px;
  text-align: center;
  font-weight: 700;
}

.icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.why-panel {
  background: #eef3f8;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 46px 0;
}

.why-grid .plain-card {
  min-height: 170px;
}

.why-grid h3 {
  margin: 10px 0 8px;
  font-size: 22px;
}

.category-card {
  display: block;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-card img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  background: #f8fafc;
}

.category-card h3 {
  margin: 0;
  padding: 16px;
  font-size: 20px;
}

.certificate-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 24px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
}

.certificate-card {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-width: 250px;
}

.certificate-card button {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  color: inherit;
}

.certificate-card h3 {
  margin: 0;
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.certificate-card img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.lead-band {
  background: var(--foreground);
  color: #ffffff;
}

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

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

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.info-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.form-card {
  background: #ffffff;
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin: 0 0 16px;
  font-size: 26px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.field input,
.field textarea,
.field select,
.faq-search {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--foreground);
  padding: 11px 12px;
  outline: none;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.faq-search:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(197, 17, 17, 0.12);
}

.page-hero {
  background: var(--muted);
  padding: 56px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--foreground);
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.product-section {
  margin-bottom: 36px;
}

.product-section h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.product-card {
  position: relative;
  display: grid;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card img {
  aspect-ratio: 1;
  background: #f8fafc;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.meta-line {
  margin: 8px 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}

.price {
  color: var(--primary);
  font-family: Oswald, sans-serif;
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}

.small-btn {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.detail-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f8fafc;
}

.detail-content h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 58px);
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.spec-list div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: #ffffff;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  overflow: hidden;
  border-radius: var(--radius);
}

.size-table th,
.size-table td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: center;
}

.size-table th {
  background: var(--muted);
}

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

.process-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
}

.process-item b {
  display: block;
  color: var(--primary);
  font-family: Oswald, sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.printing-card {
  position: relative;
  min-height: 290px;
  color: #ffffff;
}

.printing-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.printing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.58));
}

.printing-card h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  font-size: 21px;
}

.fabric-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.fabric-card p {
  margin: 0;
  padding: 12px;
  font-weight: 700;
  text-align: center;
}

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

.moq-card {
  text-align: center;
}

.moq-card h3 {
  color: var(--accent);
  margin: 0 0 8px;
  font-size: 30px;
}

.faq-layout {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: var(--foreground);
  text-align: left;
  padding: 16px;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted-foreground);
}

.faq-item.open .faq-answer {
  display: block;
}

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

.stat {
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 10px;
}

.stat strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 42px;
  color: var(--primary);
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.legal h1 {
  margin-top: 0;
}

.legal h2 {
  margin-top: 28px;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.checkout-summary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f8fafc;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.payment-method {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  font-weight: 700;
}

.site-footer {
  background: var(--footer);
  color: var(--foreground);
  padding: 42px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 20px;
}

.footer-grid p,
.footer-grid li {
  color: var(--muted-foreground);
  font-size: 14px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  margin-top: 26px;
  padding-top: 20px;
  color: var(--muted-foreground);
  font-size: 13px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.wa-button,
.float-form-button {
  border: 0;
  min-height: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
}

.wa-button {
  background: #22c55e;
}

.float-form-button {
  background: var(--primary);
}

.float-panel {
  width: min(360px, calc(100vw - 32px));
  display: none;
}

.float-panel.open {
  display: block;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-bar p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  color: var(--muted-foreground);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(920px, 100%);
  max-height: 92vh;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  background: var(--foreground);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  z-index: 140;
  background: var(--foreground);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: none;
}

.toast.show {
  display: block;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .grid-4,
  .factory-grid,
  .flow-grid,
  .process-row,
  .stats,
  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .grid-2,
  .lead-layout,
  .detail-layout,
  .checkout-summary,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .nav-link {
    width: 100%;
    min-height: 34px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .dropdown {
    display: none !important;
  }

  .brand-text {
    font-size: 16px;
  }

  .custom-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .header-main {
    padding: 10px 12px;
  }

  .brand-text {
    max-width: 220px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: 70px 0 78px;
  }

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

  .grid-4,
  .grid-3,
  .factory-grid,
  .flow-grid,
  .process-row,
  .stats,
  .payment-methods,
  .moq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .poster-steps {
    grid-template-columns: 1fr;
  }

  .jersey-demo {
    grid-template-columns: 1fr;
  }

  .plus {
    text-align: center;
    line-height: 0.8;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .floating-contact {
    right: 12px;
    left: 12px;
    justify-items: stretch;
  }

  .wa-button,
  .float-form-button {
    justify-content: center;
  }
}
