/* ============================================================
   Print Factory Cosenza — style.css
   ============================================================ */
:root {
  --pink: #e6127d;
  --pink-dark: #c40e6a;
  --dark: #0f0f11;
  --dark-2: #17171a;
  --ink: #1c1c1e;
  --grey: #6b6b70;
  --line: #e6e6ea;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 15, 17, .08);
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1240px, 92%); margin-inline: auto; }
.section-pad { padding: 90px 0; }
.accent { color: var(--pink); }

h1, h2, h3 { line-height: 1.12; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 900; text-transform: uppercase; }

.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--grey); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-dark); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-lg { padding: 16px 32px; font-size: .86rem; }
.btn-block { width: 100%; }
.btn .arrow { font-size: 1.1em; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--pink);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
}
.promo-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 7px 0;
}
.promo-msgs {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-socials { display: flex; gap: 6px; flex-shrink: 0; }
.topbar-socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .15s ease;
}
.topbar-socials a:hover { background: rgba(255, 255, 255, .25); }
.topbar-socials svg { width: 15px; height: 15px; }
@media (max-width: 620px) {
  .promo-msgs { gap: 10px; font-size: .68rem; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}
.logo-img { height: 52px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.nav-link {
  font-size: .86rem;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--pink); }
.nav-link.active { color: var(--pink); border-bottom-color: var(--pink); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--ink);
  padding: 6px;
  display: inline-flex;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { color: var(--pink); }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  background: var(--pink);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
.btn-header { padding: 11px 22px; font-size: .74rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "STAMPA CREA INDOSSA RIPETI";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-55%);
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .045);
  width: 3.2em;
  line-height: 1.05;
  text-align: right;
  pointer-events: none;
  text-transform: uppercase;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0 60px;
  position: relative;
}
.hero-text h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 900;
  text-transform: uppercase;
}
.hero-text p {
  margin: 22px 0 30px;
  color: #cfcfd4;
  font-size: 1.05rem;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.hero-features {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .02);
  position: relative;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .85rem;
}
.feature + .feature { border-left: 1px solid rgba(255, 255, 255, .12); padding-left: 20px; }
.feature svg { width: 30px; height: 30px; color: var(--pink); flex-shrink: 0; }
.feature strong { display: block; font-weight: 800; }
.feature span { color: #9c9ca3; font-size: .78rem; }

/* ---------- Page banner ---------- */
.page-banner {
  background: var(--dark);
  color: #fff;
  padding: 54px 0 50px;
  text-align: center;
}
.page-banner h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
}
.page-banner p {
  color: #b9b9c0;
  max-width: 620px;
  margin: 12px auto 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--dark);
  color: #fff;
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); }

.hint-center { text-align: center; margin-top: 12px; font-size: .82rem; }
.hint-center a { color: var(--pink); font-weight: 700; }

/* ---------- Products ---------- */
.products { padding: 56px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pl-name { display: flex; flex-direction: column; line-height: 1.3; }
.pl-price { font-style: normal; color: var(--pink); font-size: .82rem; }
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-img { aspect-ratio: 8 / 5; overflow: hidden; background: var(--bg-soft); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.circle-arrow {
  font-style: normal;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.product-card:hover .circle-arrow,
.sector-card:hover .circle-arrow { transform: translateX(4px); }

/* ---------- Customize ---------- */
.customize { padding: 70px 0 90px; background: var(--bg-soft); }

.customizer {
  display: grid;
  grid-template-columns: 1.15fr .9fr .75fr;
  gap: 22px;
  align-items: stretch;
}
.customizer-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: 420px;
}
.preview-stage { position: relative; width: min(340px, 100%); }
.product-svg { width: 100%; height: auto; display: block; }
.product-svg[hidden] { display: none; }
.product-svg .body {
  fill: var(--prod-color);
  stroke: var(--detail-ink, rgba(0, 0, 0, .25));
  stroke-width: 1.4;
  stroke-linejoin: round;
}
.product-svg .detail { stroke: var(--detail-ink, rgba(0, 0, 0, .3)); stroke-width: 1.4; }
.product-svg .detail-dot { fill: var(--detail-ink, rgba(0, 0, 0, .35)); }
.design-overlay {
  position: absolute;
  inset: 34% 24% 24% 24%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1.5px dashed rgba(230, 18, 125, .55);
  border-radius: 6px;
  pointer-events: none;
}
.preview-stage.is-cap .design-overlay { inset: 22% 30% 42% 30%; }
.preview-stage.is-bag .design-overlay { inset: 50% 28% 12% 28%; }
#designPh {
  font-weight: 900;
  font-size: clamp(.78rem, 1.8vw, 1.15rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--overlay-ink, var(--ink));
  overflow-wrap: break-word;
  hyphens: auto;
  padding: 4px;
}
#designPh[hidden] { display: none; }
.design-overlay em { font-style: normal; color: var(--pink); }
.preview-stage.is-cap #designPh { font-size: clamp(.7rem, 1.6vw, 1rem); }

/* Elementi trascinabili del design */
.dz-el {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: move;
  touch-action: none;
  user-select: none;
  border: 1.5px dashed transparent;
  padding: 2px;
}
.dz-el[hidden] { display: none; }
.dz-el.sel { border-color: var(--pink); }
.dz-el .dz-handle,
.dz-el .dz-del { opacity: 0; pointer-events: none; transition: opacity .15s ease; }
.dz-el.sel .dz-handle,
.dz-el.sel .dz-del { opacity: 1; pointer-events: auto; }
.dz-tspan {
  display: block;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.product-photo { width: 100%; display: block; border-radius: 10px; }
.product-photo[hidden] { display: none; }

.print-picker { display: flex; flex-direction: column; gap: 8px; }
.pm-option.pm-light {
  background: var(--bg-soft);
  border-color: var(--line);
}
.pm-option.pm-light strong { color: var(--ink); font-size: .84rem; }
.pm-option.pm-light small { color: var(--grey); }
.pm-option.pm-light:has(input:checked) { border-color: var(--pink); background: rgba(230, 18, 125, .06); }
.area-label {
  position: absolute;
  right: 4px;
  bottom: -20px;
  font-size: .62rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: .04em;
  white-space: nowrap;
}

.side-picker { display: flex; gap: 8px; }
.side-btn {
  flex: 1;
  padding: 9px 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: .8rem;
  transition: all .15s ease;
}
.side-btn:hover { border-color: #c9c9cf; }
.side-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Livelli testo */
.text-layers { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.layer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  transition: border-color .15s ease;
}
.layer-row:hover { border-color: #c9c9cf; }
.layer-row.active { border-color: var(--pink); background: rgba(230, 18, 125, .06); }
.layer-tag {
  flex-shrink: 0;
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 3px 8px;
}
.layer-row.active .layer-tag { background: var(--pink); color: #fff; }
.layer-label {
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Editor testi */
.text-editor {
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-editor[hidden] { display: none; }
.te-row { display: flex; gap: 8px; align-items: center; }
.te-select {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: .85rem;
  background: #fff;
}
.te-num {
  width: 74px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 8px;
  font-family: inherit;
  font-size: .85rem;
  background: #fff;
}
.te-btn {
  min-width: 36px;
  height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: .9rem;
  display: grid;
  place-items: center;
  padding: 0 8px;
}
.te-btn:hover { border-color: #c9c9cf; }
.te-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.te-auto { font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.te-del { color: #dc2626; margin-left: auto; }
.te-color {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 3px;
  background: #fff;
  cursor: pointer;
}
.dz-img img { display: block; width: 100%; height: auto; pointer-events: none; }
.dz-handle {
  position: absolute;
  right: -9px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  cursor: nwse-resize;
}
.dz-del {
  position: absolute;
  right: -10px;
  top: -12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  font-size: .8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.dz-hint { text-align: center; font-size: .72rem; color: var(--grey); margin-top: 12px; }
.oob-warn {
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
  color: #b91c1c;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 14px;
}
.oob-warn[hidden] { display: none; }
.dz-el.oob { border-color: #dc2626 !important; }
.dz-el.oob .dz-handle { background: #dc2626; }
.dz-note { font-size: .72rem; color: var(--grey); margin-top: 6px; }
.file-input {
  width: 100%;
  border: 2px dashed var(--line);
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  font-size: .8rem;
  background: var(--bg-soft);
}

.customizer-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.customizer-panel h3 {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 18px 0 10px;
}
.customizer-panel h3:first-child { margin-top: 0; }
.product-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 700;
}
.price-line strong { color: var(--pink); font-size: 1rem; white-space: nowrap; }
.qty-input { max-width: 110px; }
.pick {
  width: 58px;
  height: 58px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  overflow: hidden;
  padding: 0;
  transition: border-color .2s ease;
}
.pick img { width: 100%; height: 100%; object-fit: cover; }
.pick:hover { border-color: #c9c9cf; }
.pick.active { border-color: var(--pink); }
.text-input {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  outline: none;
  transition: border-color .2s ease;
}
.text-input:focus { border-color: var(--pink); }
.color-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .12);
  outline: 3px solid transparent;
  outline-offset: 2px;
  transition: outline-color .15s ease;
}
.swatch.active { outline-color: var(--pink); }
.size-picker { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.size {
  min-width: 42px;
  padding: 8px 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  font-size: .8rem;
  transition: all .15s ease;
}
.size:hover { border-color: #c9c9cf; }
.size.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-picker.is-onesize .size { display: none; }
.size-picker.is-onesize::after {
  content: "Taglia unica";
  font-size: .82rem;
  font-weight: 600;
  color: var(--grey);
  padding: 8px 0;
}

.customizer-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.info-item { display: flex; gap: 14px; align-items: flex-start; font-size: .82rem; }
.info-item svg { width: 26px; height: 26px; color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: .86rem; }
.info-item span { color: var(--grey); font-size: .78rem; line-height: 1.45; }

/* ---------- Sectors ---------- */
.sectors { padding: 20px 0 70px; background: var(--bg-soft); }
.sectors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.sector-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark);
}
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .3s ease, opacity .3s ease;
}
.sector-card:hover img { transform: scale(1.07); opacity: 1; }
.sector-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sector-label .circle-arrow { width: 24px; height: 24px; font-size: .8rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(230, 18, 125, .1);
  color: var(--pink);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: .88rem; }

.services-group-title {
  font-size: 1.05rem !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 34px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--pink);
}
.services-group-title:first-child { margin-top: 0; }
a.service-card { display: block; }
.service-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--pink);
  font-weight: 800;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.back-link { color: var(--grey); font-weight: 700; font-size: .85rem; }
.back-link:hover { color: var(--pink); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.service-detail-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--dark);
  display: grid;
  place-items: center;
}
.service-ph svg { width: 90px; height: 90px; color: var(--pink); }
.service-detail-text h2 { margin-bottom: 16px; }
.service-detail-text p { color: var(--grey); margin-bottom: 12px; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
@media (max-width: 860px) { .service-detail { grid-template-columns: 1fr; gap: 28px; } }

.services-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.services-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.services-col:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.services-col h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 16px; }
.service-list { list-style: none; padding: 0; }
.service-list li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: .93rem;
  font-weight: 600;
  border-bottom: 1px dashed var(--line);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--pink) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
@media (max-width: 760px) { .services-cols { grid-template-columns: 1fr; } }

/* ---------- Works ---------- */
.works { background: var(--bg-soft); }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.work:hover img { transform: scale(1.06); }
.work figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8));
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--grey); margin-bottom: 16px; }
.about-text .btn { margin-top: 12px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.stat strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--pink); }
.stat span { font-size: .78rem; color: #b9b9c0; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Contact ---------- */
.contact { background: var(--dark); color: #fff; }
.section-head.light p { color: #a8a8af; }
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; }
.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #b9b9c0;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease;
}
.form-field select option { color: var(--ink); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--pink); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-status { margin-top: 14px; font-size: .88rem; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #f87171; }

.quote-summary {
  background: rgba(230, 18, 125, .08);
  border: 1px solid rgba(230, 18, 125, .4);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.quote-summary h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.link-btn {
  background: none;
  border: none;
  color: var(--pink);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.quote-summary ul { list-style: none; }
.quote-summary li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .12);
}
.quote-summary li:last-child { border-bottom: none; }
.quote-summary li.qs-tot { border-bottom: none; padding: 3px 0; color: #cfcfd4; }
.quote-summary li.qs-tot:first-of-type { margin-top: 4px; }
.quote-summary li.qs-strong { font-weight: 800; color: #fff; font-size: .95rem; border-top: 1px solid rgba(255,255,255,.25); margin-top: 4px; padding-top: 8px; }
.quote-summary li button {
  background: none;
  border: none;
  color: #f87171;
  font-size: 1rem;
  line-height: 1;
}

.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-block h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink);
  margin-bottom: 8px;
}
.contact-block p, .contact-block a { color: #cfcfd4; font-size: .92rem; }
.contact-block a:hover { color: #fff; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #cfcfd4;
  transition: all .2s ease;
}
.socials a:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.socials svg { width: 18px; height: 18px; }

/* ---------- Negozio ---------- */
.shop { background: var(--bg-soft); }
.shop-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.shop-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.shop-text h2 { margin-bottom: 16px; }
.shop-text p { color: var(--grey); margin-bottom: 18px; }
.shop-list { list-style: none; padding: 0; margin: 0 0 26px; }
.shop-list li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-size: .93rem;
  font-weight: 600;
}
.shop-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--pink) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
@media (max-width: 900px) { .shop-inner { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Mappa ---------- */
.map-block { margin-top: 48px; }
.map-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.map-head h3 {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink);
}
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .1);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 20px;
}
.map-cover svg { width: 44px; height: 44px; color: var(--pink); }
.map-cover p { color: #cfcfd4; font-size: .95rem; line-height: 1.5; }
.map-cover strong { color: #fff; }
.map-privacy { color: #8a8a92; font-size: .72rem; max-width: 420px; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0a0c; color: #b9b9c0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}
.footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 16px;
}
.footer-logo img { height: 46px; width: auto; }
.footer-brand p { font-size: .86rem; max-width: 300px; }
.footer-col h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: .88rem;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  font-size: .78rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 1.15rem; font-weight: 800; margin: 32px 0 10px; text-transform: none; }
.legal-body p, .legal-body li { color: #3d3d42; font-size: .95rem; }
.legal-body ul { padding-left: 22px; margin: 10px 0; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--pink); font-weight: 600; }
.legal-body code { background: var(--bg-soft); padding: 2px 6px; border-radius: 6px; font-size: .85em; }

/* ---------- Pagina pagamento ---------- */
.pay-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.pay-card h2 { font-size: 1.25rem; margin-bottom: 14px; text-transform: none; }
.pay-card p { color: var(--grey); font-size: .95rem; }
.pay-items {
  white-space: pre-wrap;
  font-family: inherit;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .88rem;
  margin: 14px 0;
}
.pay-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--ink);
  margin-top: 16px;
  padding-top: 14px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .85rem;
}
.pay-total strong { color: var(--pink); font-size: 1.6rem; }
.pay-sandbox {
  background: #fef3c7;
  color: #92400e;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: .8rem;
  font-weight: 600;
  margin-top: 14px;
}
.pay-note { font-size: .78rem; margin-top: 16px; }

/* ---------- Checkout & account ---------- */
.checkout-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.co-items { list-style: none; padding: 0; }
.co-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .9rem;
}
.co-items li button { background: none; border: none; color: #dc2626; font-size: 1rem; }
.co-totals { margin-top: 12px; font-size: .92rem; }
.co-totals .row { display: flex; justify-content: space-between; padding: 4px 0; color: var(--grey); }
.co-totals .row.tot { border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 10px; font-weight: 900; color: var(--ink); font-size: 1.1rem; }
.co-totals .row.tot span:last-child { color: var(--pink); }
.co-radio { display: flex; align-items: center; gap: 8px; color: #cfcfd4; font-size: .9rem; cursor: pointer; }
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pm-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 11px 13px;
  cursor: pointer;
  transition: border-color .15s ease;
}
.pm-option:has(input:checked) { border-color: var(--pink); background: rgba(230, 18, 125, .1); }
.pm-option input { accent-color: var(--pink); margin-top: 3px; }
.pm-option strong { display: block; color: #fff; font-size: .86rem; }
.pm-option small { color: #b9b9c0; font-size: .72rem; line-height: 1.3; }
.pm-option[hidden] { display: none; }
@media (max-width: 560px) { .pay-methods { grid-template-columns: 1fr; } }
.co-radio input { accent-color: var(--pink); width: 17px; height: 17px; }
#checkoutPage .contact-form { background: var(--dark-2); }
.acc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items: start; }
.acc-field { margin-bottom: 14px; }
.acc-field label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--grey); margin-bottom: 5px; }
.acc-field input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: .92rem;
  outline: none;
}
.acc-field input:focus { border-color: var(--pink); }
.acc-row { display: grid; grid-template-columns: 1fr 2fr; gap: 12px; }
.acc-alert { border-radius: 10px; padding: 12px 16px; font-weight: 600; font-size: .9rem; margin-bottom: 20px; }
.acc-err { background: #fee2e2; color: #991b1b; }
.acc-ok { background: #dcfce7; color: #166534; }
.acc-orders { list-style: none; padding: 0; }
.acc-orders li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .9rem;
  flex-wrap: wrap;
}
.acc-status { font-size: .68rem; font-weight: 800; text-transform: uppercase; padding: 2px 9px; border-radius: 999px; margin-left: 6px; }
.acc-nuovo { background: #fce7f3; color: var(--pink-dark); }
.acc-in_lavorazione { background: #fef3c7; color: #92400e; }
.acc-completato { background: #dcfce7; color: #166534; }
.acc-annullato { background: #e5e5ea; color: #55555c; }
.acc-order-total { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.acc-paid { color: #166534; font-size: .78rem; }
@media (max-width: 900px) { .checkout-grid, .acc-grid { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team { background: var(--bg-soft); padding: 70px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.6rem;
  border: 3px solid var(--pink);
}
.team-card h3 { font-size: 1rem; font-weight: 800; }
.team-card span { color: var(--grey); font-size: .8rem; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 180;
  width: min(420px, calc(100% - 44px));
  background: var(--dark-2, #17171a);
  color: #e6e6ea;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .82rem; line-height: 1.5; margin-bottom: 14px; }
.cookie-banner a { color: var(--pink); font-weight: 700; }
.cookie-actions { display: flex; gap: 14px; align-items: center; }
.btn-sm-c { padding: 9px 20px; font-size: .72rem; }
.btn-plain {
  background: none;
  border: none;
  color: #b9b9c0;
  font-size: .76rem;
  font-weight: 700;
  text-decoration: underline;
  padding: 6px 0;
}
.btn-plain:hover { color: #fff; }

/* ---------- Chat widget ---------- */
.chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: 160; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.chat-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .35);
  transition: transform .15s ease, background .2s ease;
}
.chat-fab:hover { transform: scale(1.08); background: var(--pink-dark); }
.chat-fab svg { width: 28px; height: 28px; }
.chat-fab .fab-close { font-size: 1.8rem; line-height: 1; }
.chat-panel {
  width: min(350px, calc(100vw - 44px));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-panel[hidden] { display: none; }
.chat-head {
  background: var(--dark);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-head strong { flex: 1; font-size: .9rem; }
.chat-icon-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
}
.chat-icon-btn:hover { background: rgba(255, 255, 255, .15); }
.chat-menu { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.chat-menu[hidden] { display: none; }
.chat-option {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.chat-option:hover { border-color: var(--pink); transform: translateX(2px); }
.chat-opt-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.chat-opt-icon svg { width: 20px; height: 20px; }
.chat-option strong { display: block; font-size: .88rem; color: var(--ink); }
.chat-option small { color: var(--grey); font-size: .74rem; line-height: 1.3; display: block; }
.chat-thread { display: flex; flex-direction: column; height: 380px; }
.chat-thread[hidden] { display: none; }
.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-soft);
}
.chat-msg { max-width: 85%; display: flex; flex-direction: column; }
.chat-msg .bubble {
  padding: 9px 13px;
  border-radius: 14px;
  font-size: .86rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}
.chat-msg.mine { align-self: flex-end; align-items: flex-end; }
.chat-msg.mine .bubble { background: var(--pink); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.theirs { align-self: flex-start; }
.chat-msg.theirs .bubble { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.chat-msg .who { font-size: .64rem; color: var(--grey); margin-top: 3px; }
.chat-msg.typing .bubble { color: var(--grey); font-style: italic; }
.chat-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chat-input input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: .88rem;
  outline: none;
}
.chat-input input:focus { border-color: var(--pink); }
.chat-input button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.chat-input button:hover { background: var(--pink-dark); }
.chat-input button svg { width: 18px; height: 18px; }

/* ---------- WhatsApp bubble ---------- */
.wa-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .35);
  z-index: 150;
  transition: transform .15s ease, box-shadow .15s ease;
  animation: wa-pop .4s ease;
}
.wa-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
}
.wa-bubble svg { width: 32px; height: 32px; }
.wa-bubble::before {
  content: "Chatta con noi";
  position: absolute;
  right: 70px;
  background: var(--ink);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.wa-bubble:hover::before { opacity: 1; transform: translateX(0); }
@keyframes wa-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .customizer { grid-template-columns: 1fr 1fr; }
  .customizer-info { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .info-item { flex: 1 1 220px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 4%;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(calc(-100% - 120px));
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s ease, visibility 0s .3s;
    z-index: 90;
  }
  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s ease, visibility 0s;
  }
  .nav-link { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-link.active { border-bottom-color: var(--line); }
  .hamburger { display: flex; }
  .btn-header { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 50px 0 40px; }
  .hero::before { display: none; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .feature + .feature { border-left: none; padding-left: 0; }
  .services-grid, .works-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 620px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .customizer { grid-template-columns: 1fr; }
  .customizer-info { flex-direction: column; }
  .services-grid, .works-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .features-inner { grid-template-columns: 1fr; gap: 14px; }
  .logo-img { height: 44px; }
}
