:root {
  --dlm-ink: #101820;
  --dlm-graphite: #18242e;
  --dlm-slate: #51616d;
  --dlm-paper: #f6f7f2;
  --dlm-white: #fff;
  --dlm-cyan: #13c6d8;
  --dlm-blue: #3678ff;
  --dlm-mint: #bff7e5;
  --dlm-line: rgba(16, 24, 32, 0.13);
  --dlm-line-dark: rgba(255, 255, 255, 0.13);
  --dlm-shadow: 0 22px 70px rgba(16, 24, 32, 0.12);
  --dlm-radius: 28px;
  --dlm-radius-sm: 18px;
  --dlm-shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dlm-paper);
  color: var(--dlm-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > * {
  margin-block-start: 0 !important;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

:focus-visible {
  outline: 3px solid var(--dlm-cyan);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed !important;
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--dlm-white);
  color: var(--dlm-ink);
}

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

body.home main > .section,
body.home main > .cta-band {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--dlm-line-dark);
  background: #101820;
  color: var(--dlm-white);
}

.header-inner {
  display: flex;
  min-height: 82px;
  padding-block: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 218px;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-lockup { display: block; width: 210px; line-height: 0; }
.brand-logo { display: block; width: 100%; height: auto; object-fit: contain; }

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-name {
  color: var(--dlm-white);
  font-size: 1.25rem;
  font-weight: 430;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.brand-name strong { font-weight: 820; }

.brand-payoff {
  margin-top: 7px;
  color: #91a5b2;
  font-size: 0.55rem;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.91rem;
  font-weight: 680;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.primary-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--dlm-cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--dlm-white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dlm-line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--dlm-white);
  cursor: pointer;
}

.button,
.wp-element-button,
button[type="submit"] {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.82rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--dlm-cyan), #72e3d1);
  box-shadow: 0 10px 26px rgba(19, 198, 216, 0.19);
  color: var(--dlm-ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 780;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  box-shadow: 0 15px 34px rgba(19, 198, 216, 0.28);
  transform: translateY(-2px);
}

.button--ghost {
  border: 1px solid currentColor;
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.button--small {
  min-height: 42px;
  padding-inline: 1.05rem;
  font-size: 0.84rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: #0b7c87;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--dlm-cyan);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 76% 28%, rgba(54, 120, 255, 0.28), transparent 30%),
    radial-gradient(circle at 15% 72%, rgba(19, 198, 216, 0.12), transparent 28%),
    var(--dlm-ink);
  color: var(--dlm-white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span {
  background: linear-gradient(115deg, var(--dlm-cyan), #81f1d4 46%, #8eaeff);
  background-clip: text;
  color: transparent;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: #b7c4cc;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 34px 0 0;
  padding: 0;
  color: #9fb0bb;
  font-size: 0.84rem;
  list-style: none;
}

.hero-proof li::before {
  margin-right: 8px;
  color: var(--dlm-cyan);
  content: "✓";
}

.hero-console {
  position: relative;
  min-height: 510px;
}

.console-orbit {
  position: absolute;
  inset: 5% 2% 8% 8%;
  border: 1px solid rgba(19, 198, 216, 0.22);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.console-orbit::before,
.console-orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dlm-cyan);
  box-shadow: 0 0 30px var(--dlm-cyan);
  content: "";
}

.console-orbit::before { top: 15%; left: 8%; }
.console-orbit::after { right: 4%; bottom: 22%; }

.console-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(24, 36, 46, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.console-main {
  z-index: 2;
  top: 72px;
  left: 12px;
  width: min(100%, 440px);
  padding: 22px;
  transform: rotate(-2deg);
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a9bac4;
  font-size: 0.75rem;
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #40515e;
}

.console-dots i:first-child { background: var(--dlm-cyan); }

.console-chart {
  display: flex;
  height: 142px;
  align-items: end;
  gap: 10px;
  margin: 34px 0 20px;
  padding: 18px 18px 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.console-chart i {
  flex: 1;
  min-height: 20px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(to top, var(--dlm-blue), var(--dlm-cyan));
  opacity: 0.78;
}

.console-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.console-metrics div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #8fa2ae;
  font-size: 0.68rem;
}

.console-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--dlm-white);
  font-size: 0.91rem;
}

.console-float {
  z-index: 3;
  right: -10px;
  bottom: 58px;
  width: 230px;
  padding: 18px;
  transform: rotate(4deg);
}

.console-float .status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dlm-mint);
  font-size: 0.72rem;
  font-weight: 750;
}

.console-float .status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #59e8ad;
  box-shadow: 0 0 18px #59e8ad;
  content: "";
}

.console-float strong {
  display: block;
  margin-top: 14px;
  font-size: 1.05rem;
}

.console-float p {
  margin: 6px 0 0;
  color: #9fb0bb;
  font-size: 0.76rem;
}

.trust-strip {
  border-bottom: 1px solid var(--dlm-line);
  background: var(--dlm-white);
}

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

.trust-item {
  min-height: 120px;
  padding: 28px 34px;
  border-right: 1px solid var(--dlm-line);
}

.trust-item:last-child { border-right: 0; }

.trust-item span {
  display: block;
  margin-bottom: 7px;
  color: #0b7c87;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
  padding: clamp(80px, 9vw, 132px) 0;
}

.section--white { background: var(--dlm-white); }
.section--dark { background: var(--dlm-ink); color: var(--dlm-white); }
.section--compact { padding-block: 72px; }

.section-head {
  display: grid;
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.1vw, 5rem);
  letter-spacing: -0.055em;
}

.section-head > p {
  margin: 0;
  color: var(--dlm-slate);
  font-size: 1.05rem;
}

.section--dark .section-head > p { color: #aebdc6; }

.problem-grid,
.solution-grid,
.values-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--dlm-line);
  border-radius: var(--dlm-radius);
  background: rgba(255, 255, 255, 0.72);
}

.card--dark {
  border-color: var(--dlm-line-dark);
  background: rgba(255, 255, 255, 0.045);
}

.card-index {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
  border: 1px solid var(--dlm-line);
  border-radius: 50%;
  color: #0b7c87;
  font-size: 0.72rem;
  font-weight: 800;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.card p {
  margin: 0;
  color: var(--dlm-slate);
}

.card--dark p { color: #aebdc6; }

.solution-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 26px;
  border-color: var(--dlm-line-dark);
  background: #1a2731;
  color: var(--dlm-white);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.solution-card:hover {
  border-color: rgba(19, 198, 216, 0.7);
  transform: translateY(-6px);
}

.solution-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(19, 198, 216, 0.12);
  color: var(--dlm-cyan);
  font-size: 1.25rem;
}

.solution-card h3 {
  margin-top: auto;
}

.solution-card p { color: #9fb0bb; }

.solution-link {
  margin-top: 22px;
  color: var(--dlm-cyan);
  font-size: 0.82rem;
  font-weight: 780;
}

.solution-card--food {
  display: grid;
  min-height: 230px;
  align-items: end;
  gap: 28px;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at 10% 30%, rgba(19, 198, 216, 0.18), transparent 32%),
    linear-gradient(120deg, #172630, #1a2731 58%, #13232b);
}

.solution-card--food h3 { margin: 0 0 10px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.solution-card--food .solution-link { align-self: end; white-space: nowrap; }

.proof-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--dlm-line);
  border-radius: 34px;
  background: var(--dlm-white);
  box-shadow: var(--dlm-shadow);
  grid-template-columns: 0.88fr 1.12fr;
}

.proof-copy {
  padding: clamp(34px, 5vw, 68px);
}

.proof-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.proof-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.proof-list li::before {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--dlm-mint);
  color: var(--dlm-ink);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-visual {
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: 54px;
  background:
    radial-gradient(circle at 80% 18%, rgba(19, 198, 216, 0.35), transparent 25%),
    linear-gradient(140deg, #172630, #0f1820);
}

.case-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #edf2ee;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transform: rotate(2.3deg);
}

.case-window-top {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #fff;
}

.case-window-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cad4cf;
}

.case-layout {
  display: grid;
  min-height: 360px;
  padding: 24px;
  gap: 16px;
  grid-template-columns: 0.65fr 1.35fr;
}

.case-sidebar,
.case-kpi,
.case-table {
  border-radius: 16px;
  background: #fff;
}

.case-sidebar { min-height: 310px; }
.case-content { display: grid; gap: 14px; }
.case-kpi { min-height: 105px; background: linear-gradient(120deg, #bff7e5, #d9f4ff); }
.case-table { min-height: 190px; }

.method-grid {
  display: grid;
  counter-reset: method;
  grid-template-columns: repeat(4, 1fr);
}

.method-step {
  min-height: 290px;
  padding: 32px 26px;
  border-top: 1px solid var(--dlm-line-dark);
  border-right: 1px solid var(--dlm-line-dark);
  counter-increment: method;
}

.method-step:last-child { border-right: 0; }

.method-step::before {
  display: block;
  margin-bottom: 68px;
  color: var(--dlm-cyan);
  content: "0" counter(method);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-step h3 { margin: 0 0 12px; font-size: 1.28rem; }
.method-step p { margin: 0; color: #9fb0bb; font-size: 0.94rem; }

.local-panel {
  display: grid;
  overflow: hidden;
  border-radius: 34px;
  background: #dff5f0;
  grid-template-columns: 1.1fr 0.9fr;
}

.local-copy {
  padding: clamp(38px, 6vw, 76px);
}

.local-copy .eyebrow { color: #076871; }

.local-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}

.local-map {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(28deg, transparent 48%, rgba(16, 24, 32, 0.07) 49%, rgba(16, 24, 32, 0.07) 51%, transparent 52%) 0 0 / 90px 90px,
    linear-gradient(-28deg, transparent 48%, rgba(16, 24, 32, 0.05) 49%, rgba(16, 24, 32, 0.05) 51%, transparent 52%) 0 0 / 110px 110px,
    #cdeae3;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.13);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-pin::before,
.map-pin::after {
  position: absolute;
  border: 1px solid rgba(19, 198, 216, 0.38);
  border-radius: 50%;
  content: "";
}

.map-pin::before { inset: -40px; }
.map-pin::after { inset: -95px; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0;
  background: linear-gradient(125deg, var(--dlm-cyan), #7edfd2 45%, #88aaff);
}

.cta-band::after {
  position: absolute;
  right: -10vw;
  bottom: -38vw;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(16, 24, 32, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 48px;
  grid-template-columns: 1fr auto;
}

.cta-inner h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.6rem, 5.6vw, 5.6rem);
}

.cta-inner .button {
  background: var(--dlm-ink);
  color: var(--dlm-white);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--dlm-ink);
  color: var(--dlm-white);
}

.footer-grid {
  display: grid;
  gap: 60px;
  padding-bottom: 60px;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
}

.footer-brand { display: flex; width: max-content; align-items: center; margin-bottom: 22px; }
.footer-brand picture { display: block; width: 260px; line-height: 0; }
.footer-brand img { display: block; width: 100%; height: auto; object-fit: contain; }
.footer-intro { max-width: 360px; color: #9fb0bb; }
.footer-grid h2 { margin: 0 0 18px; color: #8295a2; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-grid a { color: #d7e0e5; text-decoration: none; }
.footer-grid a:hover { color: var(--dlm-cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--dlm-line-dark);
  color: #8295a2;
  font-size: 0.78rem;
}

.page-hero {
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 78% 18%, rgba(54, 120, 255, 0.2), transparent 24%),
    var(--dlm-ink);
  color: var(--dlm-white);
}

.page-hero .shell { max-width: 980px; margin-left: max(20px, calc((100vw - 1180px) / 2)); }
.page-hero .lead { max-width: 760px; margin: 26px 0 0; color: #b5c2ca; font-size: 1.18rem; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #8fa2ae;
  font-size: 0.76rem;
}

.breadcrumbs a { color: var(--dlm-cyan); text-decoration: none; }

.page-content {
  min-height: 55vh;
}

.content-shell {
  width: min(850px, calc(100vw - 40px));
  margin-inline: auto;
  padding: 80px 0 110px;
}

.content-shell:has(.archive-grid) { width: var(--dlm-shell); }
.content-shell:has(.archive-grid) > .archive-grid { width: 100%; max-width: none; }

.content-shell > :first-child { margin-top: 0; }
.content-shell h2 { margin-top: 2.4em; font-size: clamp(1.9rem, 3vw, 3rem); }
.content-shell h3 { margin-top: 2em; font-size: 1.5rem; }
.content-shell p, .content-shell li { color: #3f505b; }

.service-section {
  padding: 86px 0;
}

.service-section + .service-section { border-top: 1px solid var(--dlm-line); }
.service-section h2 { max-width: 820px; margin: 0 0 36px; font-size: clamp(2rem, 4vw, 3.8rem); }
.service-section .intro { max-width: 760px; margin: -16px 0 40px; color: var(--dlm-slate); font-size: 1.08rem; }

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  padding: 28px;
  border: 1px solid var(--dlm-line);
  border-radius: var(--dlm-radius-sm);
  background: rgba(255, 255, 255, 0.65);
}

.service-item h3 { margin: 0 0 10px; font-size: 1.18rem; }
.service-item p { margin: 0; color: var(--dlm-slate); font-size: 0.93rem; }

.quote-block {
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--dlm-radius);
  background: var(--dlm-ink);
  color: var(--dlm-white);
}

.quote-block h2 { margin-top: 0; }
.quote-block p { color: #b2c0c9; }

.dlm-lead-wrap {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.72fr 1.28fr;
}

.dlm-lead-aside {
  padding: 34px;
  border-radius: var(--dlm-radius);
  background: var(--dlm-ink);
  color: var(--dlm-white);
}

.dlm-lead-aside h2 { margin-top: 0; }
.dlm-lead-aside p, .dlm-lead-aside li { color: #adbdc7; }

.dlm-lead-form {
  display: grid;
  gap: 20px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.form-field legend {
  color: #33444f;
  font-size: 0.82rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #bdc8cd;
  border-radius: 12px;
  background: var(--dlm-white);
  color: var(--dlm-ink);
}

.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--dlm-cyan); outline: 3px solid rgba(19, 198, 216, 0.18); }

.form-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--dlm-slate);
  font-size: 0.8rem;
}

.form-consent input { width: 18px; height: 18px; margin-top: 2px; }
.form-note { color: var(--dlm-slate); font-size: 0.78rem; }
.form-alert { padding: 16px 18px; border-radius: 12px; background: var(--dlm-mint); color: #174c3c; }
.form-alert--error { background: #ffe0dc; color: #7e251b; }
.form-hp { position: absolute !important; left: -9999px !important; }

.local-business-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--dlm-line);
  border-radius: var(--dlm-radius);
  background: var(--dlm-white);
  box-shadow: var(--dlm-shadow);
  grid-template-columns: 1.04fr 0.96fr;
}

.local-business-details { padding: clamp(30px, 6vw, 64px); }
.local-business-details h2 { margin: 0 0 26px; font-size: clamp(2rem, 4vw, 3.7rem); }
.local-business-details address { color: #40525d; font-style: normal; line-height: 1.75; }
.local-business-details address a { color: #126f81; font-weight: 720; }
.local-business-hours { color: var(--dlm-slate); font-size: 0.9rem; }
.local-business-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.local-business-map {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(19, 198, 216, 0.18) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(54, 120, 255, 0.18) 50%, transparent 50.5%),
    radial-gradient(circle at 54% 46%, rgba(19, 198, 216, 0.28), transparent 22%),
    #101820;
  background-size: 72px 72px, 72px 72px, auto, auto;
  color: var(--dlm-white);
  text-decoration: none;
}
.local-business-map::before { position: absolute; width: 180px; height: 180px; border: 1px solid rgba(19, 198, 216, 0.35); border-radius: 50%; content: ""; }
.local-business-marker { position: relative; z-index: 1; display: grid; width: 112px; height: 112px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.26); border-radius: 32px; background: rgba(16, 24, 32, 0.86); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); text-align: center; }
.local-business-marker::before { display: block; color: var(--dlm-cyan); content: "✦"; font-size: 1.45rem; }
.local-business-marker strong { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }

.archive-grid {
  display: block;
}

.archive-grid > .wp-block-post-template {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.archive-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--dlm-line);
  border-radius: var(--dlm-radius);
  background: var(--dlm-white);
}

.archive-card .wp-block-post-featured-image {
  overflow: hidden;
  margin: -12px -12px 24px;
  border-radius: 18px;
}

.archive-card .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
}

.archive-card:hover .wp-block-post-featured-image img { transform: scale(1.025); }

.archive-card h2 { margin: auto 0 12px; font-size: 1.55rem; }
.archive-card .wp-block-post-excerpt { color: var(--dlm-slate); }
.archive-card a { text-decoration: none; }

.blog .archive-card {
  min-height: 300px;
  background:
    radial-gradient(circle at 100% 0, rgba(19, 198, 216, 0.12), transparent 38%),
    var(--dlm-white);
}

.blog .archive-card h2 { margin: 30px 0 12px; }

.article-page { background: var(--dlm-paper); }

.article-hero {
  width: var(--dlm-shell);
  max-width: none !important;
  padding: clamp(64px, 8vw, 112px) 0 70px;
  margin-inline: auto;
}

.article-hero > * { max-width: 920px; margin-inline: auto; }
.article-hero .breadcrumbs { margin-bottom: 34px; color: #52636e; }
.article-hero .breadcrumbs a { color: #176878; }
.article-hero h1 { margin: 0 0 28px; font-size: clamp(2.8rem, 6vw, 5.8rem); letter-spacing: -0.052em; line-height: 0.98; }
.article-lead { color: var(--dlm-slate); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.6; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding-top: 24px;
  margin: 30px auto 0;
  border-top: 1px solid var(--dlm-line);
  color: #60727d;
  font-size: 0.82rem;
}

.article-cover { overflow: hidden; margin-top: 48px !important; border-radius: 28px; box-shadow: var(--dlm-shadow); }
.article-body { width: min(100% - 40px, 790px); max-width: none !important; padding: 14px 0 110px; margin-inline: auto; }
.article-body h2 { margin: 2.1em 0 0.55em; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.04em; line-height: 1.05; }
.article-body h3 { margin: 1.8em 0 0.45em; font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.article-body p,
.article-body li { color: #3f505b; font-size: 1.04rem; line-height: 1.78; }
.article-body li + li { margin-top: 0.55em; }
.article-body a:not(.button) { color: #126f81; font-weight: 720; }

.decision-table {
  display: block;
  overflow-x: auto;
  width: 100%;
  border: 1px solid var(--dlm-line);
  border-spacing: 0;
  border-radius: 18px;
  background: var(--dlm-white);
}

.decision-table th,
.decision-table td { min-width: 150px; padding: 16px 18px; border-bottom: 1px solid var(--dlm-line); text-align: left; vertical-align: top; }
.decision-table th { color: var(--dlm-ink); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }
.decision-table tbody tr:last-child td { border-bottom: 0; }

.empty-state {
  padding: 40px;
  border: 1px dashed #9aa9b2;
  border-radius: var(--dlm-radius);
  background: rgba(255, 255, 255, 0.5);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: transform 180ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .primary-nav { gap: 17px; font-size: 0.82rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 830px; }
  .hero-console { width: min(650px, 100%); margin-inline: auto; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .primary-nav { gap: 15px; }
}

@media (max-width: 820px) {
  body.admin-bar .site-header { top: 46px; }
  .header-inner { min-height: 72px; padding-block: 8px; }
  .brand { width: 192px; }
  .brand-lockup { width: 182px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 24px max(20px, calc((100vw - 1180px) / 2));
    border-top: 1px solid var(--dlm-line-dark);
    background: #101820;
    flex-direction: column;
  }
  .primary-nav[data-open] { display: flex; }
  .primary-nav a { padding: 7px 0; }
  .hero { padding-top: 70px; }
  .section-head,
  .proof-panel,
  .local-panel,
  .cta-inner,
  .dlm-lead-wrap,
  .local-business-card { grid-template-columns: 1fr; }
  .proof-visual { min-height: 460px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-step:nth-child(2) { border-right: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .solution-card--food { align-items: start; grid-template-columns: auto 1fr; }
  .solution-card--food .solution-link { grid-column: 2; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--dlm-line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid,
  .archive-grid > .wp-block-post-template { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
  :root { --dlm-shell: min(100% - 28px, 1180px); --dlm-radius: 22px; }
  .hero { min-height: auto; padding: 58px 0 72px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-console { min-height: 410px; }
  .console-main { top: 34px; left: 0; width: calc(100% - 8px); }
  .console-float { right: 0; bottom: 8px; }
  .section { padding-block: 76px; }
  .section-head { gap: 18px; margin-bottom: 34px; }
  .problem-grid,
  .solution-grid,
  .values-grid,
  .faq-grid,
  .service-grid,
  .archive-grid > .wp-block-post-template,
  .form-row { grid-template-columns: 1fr; }
  .solution-card { min-height: 320px; }
  .solution-card--food { display: flex; min-height: 350px; align-items: stretch; }
  .solution-card--food .solution-link { align-self: auto; white-space: normal; }
  .article-hero { padding: 52px 0 54px; }
  .article-hero h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .article-body { width: min(100% - 28px, 790px); padding-bottom: 82px; }
  .article-meta { display: grid; gap: 5px; }
  .proof-copy, .proof-visual { padding: 28px; }
  .proof-visual { min-height: 380px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-step { min-height: 230px; border-right: 0; }
  .method-step::before { margin-bottom: 42px; }
  .local-map { min-height: 400px; }
  .cta-inner { align-items: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 70px 0 58px; }
  .brand { width: 192px; }
  .brand-lockup { width: 182px; }
  .local-business-map { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

.consent-banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(920px, calc(100% - 40px));
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--dlm-radius-sm);
  background: #101820;
  color: var(--dlm-paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.consent-banner[hidden] { display: none; }
.consent-banner__copy p { max-width: 610px; margin: 6px 0 0; color: rgba(246, 247, 242, 0.78); }
.consent-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-end; }
.consent-banner__actions .button { min-height: 44px; padding: 10px 16px; }
.consent-banner__actions a { color: var(--dlm-cyan); font-size: 0.82rem; }

@media (max-width: 720px) {
  .consent-banner { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .consent-banner__actions { justify-content: flex-start; }
}

@media print {
  .site-header, .site-footer, .cta-band, .hero-console, .consent-banner { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-hero { min-height: auto; padding: 30px 0; background: #fff; color: #000; }
}

/* Area clienti */
.nav-client {
  padding: 8px 12px !important;
  border: 1px solid rgba(191, 247, 229, 0.28);
  border-radius: 999px;
  color: var(--dlm-mint) !important;
}

.client-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0 80px;
  background:
    radial-gradient(circle at 80% 30%, rgba(19, 198, 216, 0.19), transparent 28%),
    radial-gradient(circle at 60% 110%, rgba(54, 120, 255, 0.18), transparent 36%),
    var(--dlm-ink);
  color: var(--dlm-paper);
}

.client-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: 70px;
  align-items: center;
}

.client-hero h1 { max-width: 760px; margin: 10px 0 24px; font-size: clamp(3rem, 6.4vw, 6rem); letter-spacing: -0.055em; line-height: 0.96; }
.client-hero .lead { max-width: 680px; color: rgba(246, 247, 242, 0.74); }
.client-hero__signal { position: relative; width: min(280px, 100%); aspect-ratio: 1; margin-inline: auto; }
.client-hero__signal::before,
.client-hero__signal::after { position: absolute; inset: 20%; border: 1px solid rgba(19, 198, 216, 0.42); border-radius: 40% 60% 58% 42%; content: ""; transform: rotate(18deg); }
.client-hero__signal::after { inset: 34%; border-color: rgba(191, 247, 229, 0.45); transform: rotate(-26deg); }
.client-hero__signal span { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--dlm-cyan); box-shadow: 0 0 30px rgba(19, 198, 216, 0.8); }
.client-hero__signal span:nth-child(1) { top: 18%; left: 42%; }
.client-hero__signal span:nth-child(2) { top: 62%; right: 14%; background: var(--dlm-blue); }
.client-hero__signal span:nth-child(3) { bottom: 10%; left: 24%; background: var(--dlm-mint); }

.client-area { padding-block: clamp(54px, 7vw, 96px) 120px; }
.client-alert { padding: 18px 22px; margin-bottom: 30px; border: 1px solid var(--dlm-line); border-radius: 16px; font-weight: 680; }
.client-alert--success { border-color: #85cfb8; background: #e9fff6; color: #164f40; }
.client-alert--info { border-color: #85cbd5; background: #ecfbfd; color: #174e59; }
.client-alert--error { border-color: #e8a6a2; background: #fff1f0; color: #7a2823; }

.client-login-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 24px; align-items: stretch; }
.client-login-card,
.client-security-card { padding: clamp(30px, 5vw, 58px); border-radius: 28px; }
.client-login-card { border: 1px solid var(--dlm-line); background: var(--dlm-white); box-shadow: 0 22px 70px rgba(16, 24, 32, 0.08); }
.client-login-card h2,
.client-security-card h2 { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.045em; line-height: 1.02; }
.client-login-card > p:not(.eyebrow),
.client-security-card p,
.client-security-card li { line-height: 1.7; }
.client-security-card { background: linear-gradient(145deg, #152632, #101820 68%); color: var(--dlm-paper); }
.client-security-card p,
.client-security-card li { color: rgba(246, 247, 242, 0.76); }
.client-security-card ul { display: grid; gap: 15px; padding: 0; margin: 32px 0; list-style: none; }
.client-security-card li { position: relative; padding-left: 28px; }
.client-security-card li::before { position: absolute; top: 0.52em; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--dlm-cyan); content: ""; box-shadow: 0 0 16px rgba(19, 198, 216, 0.55); }

.client-login-card form { display: grid; gap: 16px; margin-top: 30px; }
.client-login-card form p { margin: 0; }
.client-login-card label { display: block; margin-bottom: 7px; color: var(--dlm-ink); font-size: 0.82rem; font-weight: 760; }
.client-login-card input[type="text"],
.client-login-card input[type="password"] { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #aebac1; border-radius: 12px; background: #fff; color: var(--dlm-ink); font: inherit; }
.client-login-card .login-remember label { display: flex; gap: 9px; align-items: center; }
.client-login-card input[type="submit"] { min-height: 52px; padding: 12px 24px; border: 0; border-radius: 999px; background: var(--dlm-ink); color: #fff; font: inherit; font-weight: 780; cursor: pointer; }
.client-login-links { margin-top: 20px !important; }
.client-login-links a { color: #116f80; font-weight: 720; }

.client-toolbar,
.client-section-head { display: flex; gap: 24px; align-items: flex-end; justify-content: space-between; }
.client-toolbar { padding-bottom: 34px; margin-bottom: 54px; border-bottom: 1px solid var(--dlm-line); }
.client-toolbar h2 { margin: 5px 0 0; font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.045em; }
.client-logout { color: #5b6b75; font-weight: 720; }
.client-section-head { align-items: center; margin-bottom: 24px; }
.client-section-head h2 { margin: 0 0 6px; font-size: clamp(1.8rem, 3.2vw, 2.8rem); letter-spacing: -0.035em; }
.client-section-head p { margin: 0; color: var(--dlm-slate); }
.client-count { display: inline-grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--dlm-ink); color: #fff; font-weight: 800; }
.client-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.client-service-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--dlm-line); border-radius: 24px; background: var(--dlm-white); box-shadow: 0 16px 46px rgba(16, 24, 32, 0.055); }
.client-service-card::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; background: var(--dlm-cyan); content: ""; }
.client-service-card--expiring::before { background: #f3a928; }
.client-service-card--expired::before,
.client-service-card--suspended::before { background: #d85b52; }
.client-service-card__top { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.client-status { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: #e9fbf5; color: #175344; font-size: 0.7rem; font-weight: 830; letter-spacing: 0.045em; text-transform: uppercase; }
.client-service-card--expiring .client-status { background: #fff5de; color: #714c0d; }
.client-service-card--expired .client-status,
.client-service-card--suspended .client-status { background: #fff0ef; color: #782b26; }
.client-service-type { color: #62727c; font-size: 0.76rem; font-weight: 700; }
.client-service-card h3 { margin: 30px 0 7px; font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -0.035em; }
.client-domain { margin: 0; color: #59707c; }
.client-service-data { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 24px 0; margin: 28px 0 0; border-top: 1px solid var(--dlm-line); border-bottom: 1px solid var(--dlm-line); }
.client-service-data div { min-width: 0; }
.client-service-data dt { margin-bottom: 7px; color: #687985; font-size: 0.68rem; font-weight: 760; letter-spacing: 0.05em; text-transform: uppercase; }
.client-service-data dd { margin: 0; color: var(--dlm-ink); font-weight: 760; }
.client-renew-actions { padding-top: 24px; }
.client-renew-actions > p { margin: 0; color: #536570; line-height: 1.55; }
.client-renew-label { margin-bottom: 12px !important; font-size: 0.8rem; font-weight: 740; }
.client-provider-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.client-provider-buttons form { margin: 0; }
.client-provider { min-height: 44px; padding: 10px 16px; border: 1px solid var(--dlm-ink); border-radius: 999px; font: inherit; font-size: 0.8rem; font-weight: 780; cursor: pointer; }
.client-provider--stripe { background: var(--dlm-ink); color: #fff; }
.client-provider--paypal { border-color: #0070ba; background: #fff; color: #00457c; }
.client-provider--bank_transfer { border-color: #27836f; background: #eafff7; color: #155b4b; }
.client-bank-transfer { display: grid; grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr); gap: 28px; padding: clamp(26px, 4vw, 42px); margin-bottom: 54px; border: 1px solid #83cdb8; border-radius: 24px; background: linear-gradient(135deg, #f4fff9, #eafcff); box-shadow: 0 18px 54px rgba(16, 24, 32, 0.08); }
.client-bank-transfer h2 { margin: 6px 0 10px; }
.client-bank-transfer p { color: #4e626d; }
.client-bank-data { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; }
.client-bank-data div { min-width: 0; padding: 14px 16px; border: 1px solid rgba(39, 131, 111, 0.22); border-radius: 14px; background: rgba(255, 255, 255, 0.78); }
.client-bank-data dt { margin-bottom: 6px; color: #526872; font-size: 0.67rem; font-weight: 780; letter-spacing: 0.06em; text-transform: uppercase; }
.client-bank-data dd { margin: 0; color: var(--dlm-ink); font-weight: 760; overflow-wrap: anywhere; }
.client-bank-data code { color: inherit; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.88em; }
.client-bank-copy-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.client-copy-button { flex: 0 0 auto; min-height: 36px; padding: 6px 11px; border: 1px solid #5ba996; border-radius: 999px; background: #fff; color: #155b4b; font: inherit; font-size: 0.72rem; font-weight: 780; cursor: pointer; }
.client-copy-button:hover { background: #e4fff5; }
.client-copy-button:focus-visible { outline: 3px solid var(--dlm-cyan); outline-offset: 3px; }
.client-copy-button[data-copy-state="copied"] { border-color: #27836f; background: #d5faeb; }
.client-bank-note { grid-column: 1 / -1; padding-top: 8px; margin: 0; }
.client-history { margin-top: 80px; }
.client-table-wrap { overflow-x: auto; border: 1px solid var(--dlm-line); border-radius: 18px; background: #fff; }
.client-table-wrap table { width: 100%; min-width: 760px; border-collapse: collapse; }
.client-table-wrap th,
.client-table-wrap td { padding: 16px 18px; border-bottom: 1px solid var(--dlm-line); text-align: left; }
.client-table-wrap th { color: #657680; font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; }
.client-table-wrap tr:last-child td { border-bottom: 0; }
.client-empty { padding: 44px; border: 1px dashed #9aa9b2; border-radius: 22px; background: rgba(255, 255, 255, 0.55); }
.client-empty h3 { margin-top: 0; }
.client-empty-line { padding: 22px; border: 1px solid var(--dlm-line); border-radius: 16px; background: #fff; color: var(--dlm-slate); }

@media (max-width: 900px) {
  .client-hero__inner { grid-template-columns: 1fr; }
  .client-hero__signal { display: none; }
  .client-login-grid { grid-template-columns: 1fr; }
  .client-service-grid { grid-template-columns: 1fr; }
  .client-bank-transfer { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .nav-client { border: 0; padding: 7px 0 !important; }
  .client-hero { padding: 58px 0 60px; }
  .client-hero h1 { font-size: clamp(2.65rem, 14vw, 4.1rem); }
  .client-login-card,
  .client-security-card,
  .client-service-card { padding: 25px; border-radius: 21px; }
  .client-toolbar { align-items: flex-start; flex-direction: column; }
  .client-section-head { align-items: flex-start; }
  .client-service-data { grid-template-columns: 1fr 1fr; }
  .client-service-data div:last-child { grid-column: 1 / -1; }
  .client-bank-data { grid-template-columns: 1fr; }
}
