/* Dalzotto V1 - Premium logistics landing */
:root {
  --dz-ink: #0e1726;
  --dz-ink-2: #253044;
  --dz-muted: #647084;
  --dz-line: rgba(14, 23, 38, 0.12);
  --dz-bg: #f8fafc;
  --dz-soft: #eef3f7;
  --dz-surface: #ffffff;
  --dz-blue: #174f8a;
  --dz-green: #087a5f;
  --dz-yellow: #f6c90e;
  --dz-yellow-2: #ffe16a;
  --dz-dark: #08111f;
  --dz-font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dz-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dz-shell: min(1180px, calc(100vw - 40px));
  --dz-radius: 8px;
  --dz-shadow: 0 18px 44px rgba(8, 17, 31, 0.14);
  --dz-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.dz-lp--modern {
  background: var(--dz-bg);
  color: var(--dz-ink);
  font-family: var(--dz-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.dz-lp--modern *,
.dz-lp--modern *::before,
.dz-lp--modern *::after {
  box-sizing: border-box;
}

.dz-lp--modern img {
  display: block;
  max-width: 100%;
}

.dz-lp--modern a {
  color: inherit;
  text-decoration: none;
}

.dz-lp--modern svg {
  width: 1.08em;
  height: 1.08em;
  flex-shrink: 0;
}

.dz-lp--modern :focus-visible {
  outline: 3px solid rgba(246, 201, 14, 0.95);
  outline-offset: 3px;
}

.dz-shell {
  width: var(--dz-shell);
  margin-inline: auto;
}

.dz-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(14, 23, 38, 0.08);
  backdrop-filter: blur(16px);
}

.dz-topbar__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 24px;
}

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

.dz-brand img {
  width: 154px;
  height: auto;
}

.dz-topbar__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.dz-topbar__nav a {
  color: var(--dz-ink-2);
  font-family: var(--dz-font);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.dz-topbar__nav a:hover {
  color: var(--dz-green);
}

.dz-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--dz-radius);
  font-family: var(--dz-font);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.2s var(--dz-ease), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.dz-btn--primary {
  background: var(--dz-yellow);
  color: #111827;
  box-shadow: 0 14px 28px rgba(246, 201, 14, 0.24);
}

.dz-btn--primary:hover {
  background: var(--dz-yellow-2);
  box-shadow: 0 18px 34px rgba(246, 201, 14, 0.30);
}

.dz-btn--light {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.dz-btn--light:hover {
  background: rgba(255, 255, 255, 0.20);
}

.dz-btn--dark {
  background: var(--dz-dark);
  color: #fff;
}

.dz-process .dz-btn--dark {
  background: var(--dz-yellow);
  color: #111827;
  box-shadow: 0 14px 28px rgba(246, 201, 14, 0.24);
}

.dz-process .dz-btn--dark:hover {
  background: var(--dz-yellow-2);
  box-shadow: 0 18px 34px rgba(246, 201, 14, 0.30);
}

.dz-btn--full {
  width: 100%;
}

.dz-burger {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  margin-left: auto;
  border-radius: var(--dz-radius);
  background: var(--dz-dark) !important;
  color: #fff;
  cursor: pointer;
}

.dz-burger span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.dz-topbar.is-open .dz-burger span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.dz-topbar.is-open .dz-burger span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.dz-drawer {
  display: none;
  width: var(--dz-shell);
  margin: 0 auto;
  padding: 0 0 18px;
}

.dz-topbar.is-open .dz-drawer {
  display: grid;
  gap: 8px;
}

.dz-drawer a:not(.dz-btn) {
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(14, 23, 38, 0.08);
  border-radius: var(--dz-radius);
  background: #fff;
  color: var(--dz-ink-2);
  font-family: var(--dz-font);
  font-weight: 900;
}

.dz-hero {
  position: relative;
  min-height: 590px;
  padding: 82px 0 68px;
  overflow: hidden;
  background: #0b1424 url("assets/stock/hero-modern-room.jpg") center center / cover no-repeat;
  color: #fff;
}

.dz-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.74) 42%, rgba(8, 17, 31, 0.22) 78%, rgba(8, 17, 31, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(8, 17, 31, 0.36));
}

.dz-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 56px;
  align-items: end;
  min-height: 438px;
}

.dz-kicker,
.dz-section-head > span,
.dz-process__copy > span,
.dz-storage__copy > span,
.dz-about__copy > span,
.dz-contact__copy > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--dz-yellow-2);
  font-family: var(--dz-font);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dz-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-family: var(--dz-font);
  font-size: 4.55rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.dz-hero__copy > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.dz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dz-hero__panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--dz-radius);
  background: rgba(8, 17, 31, 0.54);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.dz-hero__panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--dz-yellow-2);
  font-family: var(--dz-font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dz-hero__panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--dz-font);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.28;
}

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

.dz-proofbar {
  background: var(--dz-surface);
  border-bottom: 1px solid var(--dz-line);
}

.dz-proofbar__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 1px;
}

.dz-proofbar__grid > div,
.dz-proofbar__grid > a {
  min-height: 86px;
  padding: 18px 26px;
  border-left: 1px solid var(--dz-line);
}

.dz-proofbar__grid > div:first-child {
  border-left: 0;
}

.dz-proofbar strong {
  display: block;
  color: var(--dz-ink);
  font-family: var(--dz-font);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.dz-proofbar span {
  display: block;
  margin-top: 4px;
  color: var(--dz-muted);
}

.dz-proofbar a {
  color: var(--dz-green);
  font-family: var(--dz-font);
  font-weight: 900;
  white-space: nowrap;
}

.dz-services,
.dz-process,
.dz-storage,
.dz-about,
.dz-contact {
  padding: 86px 0;
}

.dz-section-head {
  max-width: 760px;
  margin: 0 0 36px;
}

.dz-section-head h2,
.dz-process__copy h2,
.dz-storage__copy h2,
.dz-about__copy h2,
.dz-contact__copy h2 {
  margin: 0 0 14px;
  color: var(--dz-ink);
  font-family: var(--dz-font);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.dz-section-head > span,
.dz-process__copy > span,
.dz-storage__copy > span,
.dz-about__copy > span,
.dz-contact__copy > span {
  color: var(--dz-green);
}

.dz-section-head p,
.dz-process__copy p,
.dz-storage__copy p,
.dz-about__copy p,
.dz-contact__copy p {
  margin: 0;
  color: var(--dz-muted);
  font-size: 1.04rem;
}

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

.dz-service {
  min-height: 254px;
  padding: 24px;
  border: 1px solid var(--dz-line);
  border-radius: var(--dz-radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(14, 23, 38, 0.05);
  transition: transform 0.2s var(--dz-ease), box-shadow 0.2s ease, border-color 0.2s ease;
}

.dz-service:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 122, 95, 0.30);
  box-shadow: var(--dz-shadow);
}

.dz-service__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--dz-radius);
  background: rgba(8, 122, 95, 0.10);
  color: var(--dz-green);
}

.dz-service__icon svg {
  width: 24px;
  height: 24px;
}

.dz-service h3 {
  margin: 0 0 10px;
  color: var(--dz-ink);
  font-family: var(--dz-font);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
}

.dz-service p {
  margin: 0;
  color: var(--dz-muted);
  font-size: 0.95rem;
}

.dz-showcase {
  padding: 0 0 90px;
}

.dz-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.dz-photo-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--dz-radius);
  background: var(--dz-dark);
  box-shadow: var(--dz-shadow);
}

.dz-photo-card--large {
  min-height: 500px;
}

.dz-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.94;
  transition: transform 0.45s var(--dz-ease), opacity 0.25s ease;
}

.dz-photo-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.dz-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.02), rgba(8, 17, 31, 0.82));
}

.dz-photo-card > div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: #fff;
}

.dz-photo-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--dz-yellow-2);
  font-family: var(--dz-font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dz-photo-card h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--dz-font);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.16;
}

.dz-process {
  background: var(--dz-soft);
}

.dz-process__grid,
.dz-storage__grid,
.dz-about__grid,
.dz-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.dz-process__copy p,
.dz-storage__copy p,
.dz-contact__copy p {
  margin-bottom: 28px;
}

.dz-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dz-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(14, 23, 38, 0.10);
  border-radius: var(--dz-radius);
  background: #fff;
}

.dz-steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--dz-radius);
  background: var(--dz-dark);
  color: var(--dz-yellow);
  font-family: var(--dz-font);
  font-weight: 900;
}

.dz-steps p {
  margin: 0;
  color: var(--dz-ink-2);
  font-size: 1rem;
}

.dz-storage {
  background: var(--dz-dark);
  color: #fff;
}

.dz-storage__copy h2,
.dz-storage__copy p {
  color: #fff;
}

.dz-storage__copy p {
  color: rgba(255, 255, 255, 0.76);
}

.dz-storage__copy > span {
  color: var(--dz-yellow-2);
}

.dz-storage__logo {
  width: 168px;
  height: auto;
  margin-bottom: 22px;
  border-radius: var(--dz-radius);
}

.dz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.dz-chips span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--dz-radius);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--dz-font);
  font-size: 0.86rem;
  font-weight: 800;
}

.dz-storage__media img,
.dz-about__media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--dz-radius);
  box-shadow: var(--dz-shadow);
}

.dz-about__copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dz-about__copy li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--dz-ink-2);
  font-weight: 700;
}

.dz-about__copy li svg {
  margin-top: 4px;
  color: var(--dz-green);
}

.dz-contact {
  background: linear-gradient(180deg, #f8fafc, #eef3f7);
}

.dz-channel {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid var(--dz-line);
  border-radius: var(--dz-radius);
  background: #fff;
  transition: transform 0.2s var(--dz-ease), box-shadow 0.2s ease;
}

.dz-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(14, 23, 38, 0.08);
}

.dz-channel svg {
  width: 25px;
  height: 25px;
  color: var(--dz-green);
}

.dz-channel strong,
.dz-channel span {
  display: block;
}

.dz-channel strong {
  color: var(--dz-muted);
  font-family: var(--dz-font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dz-channel span {
  color: var(--dz-ink);
  font-family: var(--dz-font);
  font-weight: 900;
}

.dz-contact address {
  max-width: 390px;
  margin-top: 18px;
  color: var(--dz-muted);
  font-style: normal;
}

.dz-form-card {
  padding: 28px;
  border: 1px solid var(--dz-line);
  border-radius: var(--dz-radius);
  background: #fff;
  box-shadow: var(--dz-shadow);
}

.dz-form-card h3 {
  margin: 0 0 20px;
  font-family: var(--dz-font);
  font-size: 1.35rem;
  font-weight: 900;
}

.dz-cf7-wrap label {
  display: block;
  margin-bottom: 6px;
  color: var(--dz-ink-2);
  font-family: var(--dz-font);
  font-size: 0.84rem;
  font-weight: 800;
}

.dz-cf7-wrap p {
  margin: 0 0 14px;
}

.dz-cf7-wrap input,
.dz-cf7-wrap textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(14, 23, 38, 0.16);
  border-radius: var(--dz-radius);
  background: #fff;
  color: var(--dz-ink);
  font-family: var(--dz-body);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dz-cf7-wrap textarea {
  min-height: 116px;
  resize: vertical;
}

.dz-cf7-wrap input:focus,
.dz-cf7-wrap textarea:focus {
  outline: none;
  border-color: var(--dz-green);
  box-shadow: 0 0 0 3px rgba(8, 122, 95, 0.16);
}

.dz-cf7-wrap input[type="submit"] {
  min-height: 50px;
  border-color: var(--dz-dark);
  background: var(--dz-dark);
  color: #fff;
  font-family: var(--dz-font);
  font-weight: 900;
  cursor: pointer;
}

.dz-footer {
  padding: 36px 0 24px;
  border-top: 1px solid var(--dz-line);
  background: #fff;
}

.dz-footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.dz-footer img {
  width: 140px;
  height: auto;
}

.dz-footer p,
.dz-footer__copy {
  margin: 0;
  color: var(--dz-muted);
  font-size: 0.92rem;
}

.dz-footer__social {
  display: flex;
  gap: 8px;
}

.dz-footer__social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--dz-radius);
  background: var(--dz-soft);
  color: var(--dz-ink);
}

.dz-footer__social a:hover {
  background: var(--dz-yellow);
}

.dz-footer__social svg {
  width: 20px;
  height: 20px;
}

.dz-footer__copy {
  margin-top: 22px;
}

.dz-fab {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 94;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366 0%, #087a5f 92%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 122, 95, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s var(--dz-ease), box-shadow 0.2s ease;
  isolation: isolate;
}

.dz-fab::before,
.dz-fab::after {
  position: absolute;
  content: "";
}

.dz-fab::before {
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.52);
  border-radius: inherit;
  animation: dz-fab-pulse 1.9s ease-out infinite;
}

.dz-fab::after {
  right: 72px;
  top: 50%;
  transform: translate(8px, -50%);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  content: "WhatsApp";
  font-family: var(--dz-font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s var(--dz-ease);
}

.dz-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 48px rgba(8, 122, 95, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.dz-fab:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.dz-fab svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.18));
}

@keyframes dz-fab-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }
  70% {
    opacity: 0;
    transform: scale(1.28);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.dz-stick-cta {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 91;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--dz-line);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.25s var(--dz-ease);
}

.dz-stick-cta.is-on {
  transform: translateY(0);
}

.dz-stick-cta a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--dz-radius);
  background: var(--dz-yellow);
  color: var(--dz-ink);
  font-family: var(--dz-font);
  font-weight: 900;
}

.dz-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--dz-ease), transform 0.55s var(--dz-ease);
}

.dz-in.is-on {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .dz-in,
  .dz-photo-card img,
  .dz-btn,
  .dz-service,
  .dz-channel {
    transition: none;
  }

  .dz-in {
    opacity: 1;
    transform: none;
  }

  .dz-photo-card:hover img,
  .dz-btn:hover,
  .dz-service:hover,
  .dz-channel:hover,
  .dz-fab:hover {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .dz-hero h1 {
    font-size: 3.55rem;
  }

  .dz-hero__grid,
  .dz-process__grid,
  .dz-storage__grid,
  .dz-about__grid,
  .dz-contact__grid {
    grid-template-columns: 1fr;
  }

  .dz-hero__panel {
    max-width: 520px;
  }

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

  .dz-showcase__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .dz-topbar__nav,
  .dz-topbar__inner > .dz-btn {
    display: none;
  }

  .dz-burger {
    display: flex;
  }

  .dz-topbar__inner {
    min-height: 66px;
  }

  .dz-brand img {
    width: 132px;
  }

  .dz-hero {
    min-height: 650px;
    padding: 58px 0 52px;
    background-position: 58% center;
  }

  .dz-hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.72) 54%, rgba(8, 17, 31, 0.56)),
      linear-gradient(90deg, rgba(8, 17, 31, 0.82), rgba(8, 17, 31, 0.30));
  }

  .dz-hero__grid {
    min-height: 540px;
    gap: 28px;
  }

  .dz-hero h1 {
    font-size: 2.7rem;
    line-height: 1.04;
  }

  .dz-hero__copy > p {
    font-size: 1rem;
  }

  .dz-hero__actions,
  .dz-hero__actions .dz-btn {
    width: 100%;
  }

  .dz-hero__panel {
    padding: 18px;
  }

  .dz-proofbar__grid,
  .dz-services__grid,
  .dz-footer__grid {
    grid-template-columns: 1fr;
  }

  .dz-proofbar__grid > div,
  .dz-proofbar__grid > a {
    min-height: 66px;
    border-left: 0;
    border-top: 1px solid var(--dz-line);
  }

  .dz-proofbar__grid > div:first-child {
    border-top: 0;
  }

  .dz-section-head h2,
  .dz-process__copy h2,
  .dz-storage__copy h2,
  .dz-about__copy h2,
  .dz-contact__copy h2 {
    font-size: 2.2rem;
  }

  .dz-photo-card,
  .dz-photo-card--large {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .dz-shell,
  .dz-drawer {
    width: min(100% - 28px, 1180px);
  }

  .dz-hero {
    min-height: 680px;
    padding-top: 46px;
  }

  .dz-hero__grid {
    min-height: 580px;
  }

  .dz-hero h1 {
    font-size: 2.35rem;
  }

  .dz-hero__panel strong {
    font-size: 1.05rem;
  }

  .dz-services,
  .dz-process,
  .dz-storage,
  .dz-about,
  .dz-contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .dz-service {
    min-height: 0;
  }

  .dz-steps li {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .dz-steps span {
    width: 44px;
    height: 44px;
  }

  .dz-storage__media img,
  .dz-about__media img {
    min-height: 320px;
  }

  .dz-form-card {
    padding: 20px;
  }

  .dz-stick-cta {
    display: block;
  }

  .dz-fab {
    display: none;
  }

  .dz-contact {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

body.page-id-7 .site-header,
body.page-id-7 .site-footer,
body.dalzotto-landing-active .site-header,
body.dalzotto-landing-active .site-footer {
  display: none !important;
}

body.page-id-7 .entry-content,
body.page-id-7 .site-main {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-7,
body.dalzotto-landing-active.dz-v1 {
  margin: 0;
  background: var(--dz-bg);
}
