/* דפוס הדרום — homepage wow (print brand, plotter motion) */
:root {
  color-scheme: light;
  --paper: #FFFFFF;
  --paper-2: #F5F7FB;
  --sheet: #FFFFFF;
  --ink: #262727;
  --ink-2: #4A4B4B;
  --ink-3: #7A7B7B;
  --line: rgba(38, 39, 39, 0.12);
  --line-soft: rgba(38, 39, 39, 0.06);
  --blue: #025DEA;
  --coral: #F47556;
  --pink: #F597CA;
  --green: #6CCC91;
  --gold: #FFC026;
  --accent: #025DEA;
  --accent-2: #F47556;
  --accent-soft: rgba(2, 93, 234, 0.12);
  --coral-soft: rgba(244, 117, 86, 0.14);
  --pink-soft: rgba(245, 151, 202, 0.16);
  --green-soft: rgba(108, 204, 145, 0.16);
  --gold-soft: rgba(255, 192, 38, 0.18);
  --on-accent: #FFFFFF;
  --draft: rgba(2, 93, 234, 0.45);
  --kerf: #1a4a9a;
  --grid: rgba(2, 93, 234, 0.035);
  --grid-major: rgba(2, 93, 234, 0.08);
  --shadow: 0 1px 0 rgba(255,255,255,.7), 0 18px 40px -22px rgba(38,39,39,.28);
  --radius: 14px;
  --hdr: 72px;
  --f-body: "Open Sans", "Arial Hebrew", Arial, sans-serif;
  --f-display: "Open Sans", "Arial Hebrew", Arial, sans-serif;
  --f-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; margin: 0; font-family: var(--f-display); font-weight: 700; }
p { text-wrap: pretty; margin: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
::selection { background: var(--accent); color: #fff; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 36px); }
.skip {
  position: absolute; inset-inline-start: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: 8px; text-decoration: none;
}
.skip:focus { top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding-inline: 22px; border-radius: 999px;
  font: 600 16px/1.2 var(--f-body); text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, box-shadow .25s, transform .15s, border-color .2s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--blue); color: var(--on-accent); box-shadow: 0 10px 28px -12px var(--blue); }
.btn-primary:hover { box-shadow: 0 0 0 4px var(--accent-soft), 0 14px 34px -10px var(--blue); transform: translateY(-1px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 28px -12px #25D366; }
.btn-wa:hover { box-shadow: 0 0 0 4px rgba(37,211,102,.2), 0 14px 34px -10px #25D366; transform: translateY(-1px); }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-sm { min-height: 42px; padding-inline: 16px; font-size: 15px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px; background: var(--sheet); color: var(--ink); cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.icon-btn:hover { border-color: var(--ink-3); box-shadow: 0 0 0 3px var(--accent-soft); }
.icon-btn svg { width: 18px; height: 18px; }

/* Header */
.hdr {
  position: sticky; top: env(safe-area-inset-top, 0);
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.3) blur(12px);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.hdr.is-scrolled { box-shadow: 0 8px 24px -18px rgba(26,23,20,.45); }
.hdr .wrap { display: flex; align-items: center; gap: 16px; height: var(--hdr); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; }
.brand-logo { height: 48px; width: auto; }
.brand-text { display: grid; gap: 2px; }
.brand-name { font-family: var(--f-display); font-weight: 700; font-size: 18px; line-height: 1.1; }
.brand-tag { font-size: 12px; color: var(--ink-3); }
.nav { display: flex; gap: 2px; margin-inline-start: auto; }
.nav a {
  padding: 8px 12px; text-decoration: none; font-size: 15px; font-weight: 500;
  color: var(--ink-2); border-radius: 8px; transition: background .2s, color .2s;
}
.nav a:hover { color: var(--ink); background: var(--line-soft); }
.hdr-actions { display: flex; gap: 8px; align-items: center; }
.menu-btn { display: none; }
.btn-nav-wa { padding-inline: 12px; min-width: 42px; }
.mnav {
  position: fixed; inset-inline: 0; top: calc(var(--hdr) + env(safe-area-inset-top, 0));
  z-index: 49; background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 8px 16px 20px; display: grid; box-shadow: var(--shadow);
}
.mnav a {
  padding: 14px 4px; border-bottom: 1px dashed var(--line);
  text-decoration: none; font-size: 18px; font-weight: 500;
}
.mnav-ctas { display: grid; gap: 10px; margin-top: 16px; }
@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .hdr-actions { margin-inline-start: auto; }
}
@media (max-width: 560px) {
  .hdr .btn-nav-cta { display: none; }
  .brand-tag { display: none; }
}

/* Hero — 2 col + subtle grid */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-major) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-major) 1px, transparent 1px),
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 12px 12px, 12px 12px;
}
.hero-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding-block: clamp(36px, 6vw, 88px) clamp(40px, 6vw, 84px);
}
.hero-copy { min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; border-top: 1.5px solid currentColor; }
.hero-title {
  font-size: clamp(42px, 7.5vw, 86px);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero-title .stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
  paint-order: stroke fill;
}
.hero-title .fill { display: block; color: var(--ink); }
.hero-title .dot {
  display: inline-block;
  width: .14em; height: .14em;
  margin-inline-start: .06em;
  vertical-align: .12em;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 .12em var(--coral), 0 0 .4em color-mix(in srgb, var(--coral) 55%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 .06em var(--coral), 0 0 .18em color-mix(in srgb, var(--coral) 40%, transparent); }
}
.hero-lead {
  font-size: clamp(16px, 1.45vw, 19px); line-height: 1.7;
  color: var(--ink-2); max-width: 34em; margin-bottom: 26px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-facts {
  display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; padding: 0; list-style: none;
  font-size: 14.5px; color: var(--ink-3);
}
.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts li::before {
  content: ""; width: 7px; height: 7px; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg);
}

/* Hero entrance (transform+opacity only) */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: enterUp .75s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 80ms);
}
@keyframes enterUp { to { opacity: 1; transform: none; } }

/* Machine / plotter visual */
.machine {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.m-top {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}
.m-top .live { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-2); }
.m-top .num { font-family: var(--f-mono); font-size: 12px; direction: ltr; unicode-bidi: isolate; }
.led {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.machine.cutting .led {
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}
.m-view { position: relative; }
.m-view svg { display: block; width: 100%; height: auto; aspect-ratio: 4/3; max-width: 100%; }
.dro {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line); direction: ltr;
}
.dro div { padding: 9px 12px; border-left: 1px solid var(--line); min-width: 0; }
.dro div:first-child { border-left: 0; }
.dro b { display: block; font: 500 10.5px/1.3 var(--f-mono); letter-spacing: .12em; color: var(--ink-3); }
.dro span {
  display: block; font: 600 15px/1.4 var(--f-mono); font-variant-numeric: tabular-nums;
  color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.m-status {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 10px 14px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2); background: var(--paper-2);
}
.m-status .code {
  font-family: var(--f-mono); font-size: 12px; color: var(--blue);
  direction: ltr; unicode-bidi: isolate;
}

.sv-draft { fill: none; stroke: var(--draft); stroke-width: 1; stroke-dasharray: 5 3; transition: opacity .6s; }
.sv-dim { fill: none; stroke: rgba(38,39,39,.28); stroke-width: .8; }
.sv-dimtext { fill: var(--ink-3); font: 500 10px var(--f-mono); }
.sv-cut {
  fill: none; stroke: var(--blue); stroke-width: 1.9; stroke-linecap: round;
  filter: url(#glow); transition: stroke .9s, stroke-width .9s;
}
.sv-cut.cool { stroke: var(--kerf); stroke-width: 1.1; filter: none; }
.sv-part {
  fill: color-mix(in srgb, var(--blue) 14%, #fff);
  fill-rule: evenodd; opacity: 0; transition: opacity .7s;
  stroke: var(--blue); stroke-width: 1.2;
}
.sv-part.on { opacity: 1; }
.sv-spark { stroke-linecap: round; }

@media (max-width: 900px) {
  .hero-grid-layout { grid-template-columns: minmax(0, 1fr); }
  .machine { order: 1; }
  .hero-copy { order: 0; }
}

/* Specs strip */
.specs { border-bottom: 1px solid var(--line); background: var(--paper-2); }
.spec-grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px; background: var(--line); border-inline: 1px solid var(--line);
}
.spec {
  background: var(--sheet); padding: 18px 14px;
  display: grid; gap: 4px; min-width: 0;
}
.spec .v { font-weight: 700; font-size: 16px; color: var(--ink); }
.spec .k { font-size: 13px; color: var(--ink-3); line-height: 1.4; }
@media (max-width: 900px) { .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Sections */
.sec { padding-block: clamp(56px, 8vw, 104px); border-bottom: 1px solid var(--line); }
.sec-alt { background: var(--paper-2); }
.sec-head { margin-bottom: clamp(28px, 4vw, 48px); max-width: 40em; }
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  color: var(--accent); margin-bottom: 10px;
}
.sec-label .num {
  font-variant-numeric: tabular-nums; direction: ltr; unicode-bidi: isolate;
  padding: 2px 8px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--sheet); color: var(--ink-3); font-size: 12px;
}
.sec h2 { font-size: clamp(30px, 4.6vw, 48px); line-height: 1.12; margin-bottom: 12px; }
.sec-intro { color: var(--ink-2); font-size: 17px; line-height: 1.7; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Interactive services */
.svc {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.5fr);
  border: 1px solid var(--line);
  background: var(--sheet);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.svc-tabs {
  display: flex; flex-direction: column;
  border-inline-end: 1px solid var(--line);
  background: var(--paper-2);
}
.svc-tab {
  appearance: none; border: 0; background: transparent; color: var(--ink);
  text-align: start; font: inherit;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 14px; align-items: center;
  padding: 13px 20px; cursor: pointer;
  border-top: 1px solid var(--line-soft);
  transition: background .2s, box-shadow .2s;
}
.svc-tab:first-child { border-top: 0; }
.svc-tab .t { font-weight: 700; font-size: 15.5px; grid-column: 2; }
.svc-tab .d { font-size: 13px; color: var(--ink-3); grid-column: 2; line-height: 1.4; }
.svc-tab .arr {
  grid-row: span 2; color: var(--blue); opacity: 0;
  transform: translateX(6px); transition: opacity .25s, transform .25s;
}
.balloon {
  width: 28px; height: 28px; border: 1.2px solid var(--ink-3); border-radius: 50%;
  display: grid; place-items: center; font: 600 11px var(--f-mono); color: var(--ink-3);
  grid-row: span 2; transition: all .2s; direction: ltr;
}
.svc-tab:hover { background: color-mix(in srgb, var(--blue) 5%, transparent); }
.svc-tab.is-active {
  background: var(--sheet);
  box-shadow: inset -3px 0 0 var(--blue);
}
.svc-tab.is-active .balloon {
  border-color: var(--blue); background: var(--accent-soft); color: var(--blue);
}
.svc-tab.is-active .arr { opacity: 1; transform: none; }
.svc-panel {
  padding: clamp(20px, 3vw, 32px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 22px; align-content: start; min-width: 0;
}
.svc-fig {
  position: relative; border: 1px solid var(--line); border-radius: 10px;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 12px 12px;
  overflow: hidden; aspect-ratio: 1 / 1; min-height: 180px;
  display: grid; place-items: center;
}
.svc-fig svg { width: 78%; height: auto; max-width: 220px; }
.svc-fig svg .draw {
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: 0;
  animation: draw 1.1s ease-out both;
}
@keyframes draw { from { stroke-dashoffset: var(--len, 600); } }
.svc-tag {
  font: 600 11px/1 var(--f-mono); letter-spacing: .1em;
  color: var(--blue); margin-bottom: 8px; direction: ltr; unicode-bidi: isolate;
}
.svc-body h3 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 10px; }
.svc-body > p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 16px; }
.svc-specs {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px; margin: 0 0 20px; padding: 0; list-style: none;
}
.svc-specs li { display: grid; gap: 2px; font-size: 14px; }
.svc-specs b { color: var(--ink-3); font-weight: 600; font-size: 12px; }
.svc-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr; }
  .svc-tabs {
    flex-direction: row; overflow-x: auto; border-inline-end: 0;
    border-bottom: 1px solid var(--line); gap: 8px; padding: 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .svc-tab {
    flex: none; scroll-snap-align: start;
    grid-template-columns: auto auto;
    border: 1px solid var(--line); border-radius: 999px;
    padding: 8px 14px 8px 8px; column-gap: 8px; background: var(--sheet);
  }
  .svc-tab .d, .svc-tab .arr { display: none; }
  .svc-tab .t { font-size: 14px; grid-column: auto; }
  .balloon { width: 24px; height: 24px; font-size: 10px; grid-row: auto; }
  .svc-tab.is-active { box-shadow: 0 0 0 2px var(--accent-soft); border-color: var(--blue); }
  .svc-panel { grid-template-columns: 1fr; }
  .svc-fig { aspect-ratio: 16/10; max-height: 220px; }
}

/* USP / process / gallery / about — reuse */
.usp-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.usp {
  background: var(--sheet); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.usp:hover { transform: translateY(-4px); box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow); }
.usp img { width: 56px; height: 56px; margin: 0 auto 14px; object-fit: contain; }
.usp h3 { font-size: 18px; margin-bottom: 8px; }
.usp p { font-size: 14.5px; color: var(--ink-2); }
.usp:nth-child(1) { border-top: 3px solid var(--blue); }
.usp:nth-child(2) { border-top: 3px solid var(--coral); }
.usp:nth-child(3) { border-top: 3px solid var(--green); }
.usp:nth-child(4) { border-top: 3px solid var(--gold); }
@media (max-width: 900px) { .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .usp-grid { grid-template-columns: 1fr; } }

.process-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--sheet); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px 20px; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.process-step:hover { transform: translateY(-3px); box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow); }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--f-display); font-weight: 800;
  font-size: 28px; color: var(--accent); margin-bottom: 10px;
  direction: ltr; unicode-bidi: isolate;
}
.process-step:nth-child(1)::before { color: var(--blue); }
.process-step:nth-child(2)::before { color: var(--coral); }
.process-step:nth-child(3)::before { color: var(--green); }
.process-step:nth-child(4)::before { color: var(--gold); }
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* WA tool */
.tool-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px); align-items: start;
}
.tool-card {
  background: var(--sheet); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow); display: grid; gap: 14px;
}
.tool-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tool-preview {
  background: var(--paper-2); border: 1px dashed var(--line); border-radius: 10px;
  padding: 12px 14px;
}
.tool-preview-label { font-size: 12px; font-weight: 700; color: var(--ink-3); margin-bottom: 6px; }
.tool-preview pre {
  margin: 0; white-space: pre-wrap; font: 500 14px/1.55 var(--f-body); color: var(--ink);
}
.tool-area {
  font-size: 13.5px; color: var(--blue); font-weight: 600;
  padding: 8px 10px; background: var(--accent-soft); border-radius: 8px;
}
.tool-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
@media (max-width: 800px) { .tool-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--paper-2);
  transition: box-shadow .25s;
}
.gallery-item:hover { box-shadow: 0 0 0 4px var(--accent-soft); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(38,39,39,.75));
  color: #fff; font-size: 13.5px; font-weight: 600;
}
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/10; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; aspect-ratio: 4/3; }
}

/* About */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(24px, 4vw, 48px); align-items: center;
}
.about-copy p { color: var(--ink-2); font-size: 17px; margin-bottom: 14px; }
.about-panel {
  background: var(--sheet); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
}
.about-panel .big {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px); line-height: 1.2; margin-bottom: 12px;
}
.about-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.about-panel li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.about-panel li::before {
  content: ""; width: 8px; height: 8px; margin-top: 7px; flex: none;
  border-radius: 50%; background: var(--coral);
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(2,93,234,.45), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(244,117,86,.28), transparent 50%),
    #262727;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta-band .sec-label { color: var(--pink); }
.cta-band .sec-label .num { background: transparent; border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.cta-band h2 { color: #fff; }
.cta-band .sec-intro { color: rgba(255,255,255,.75); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; text-decoration: none; color: #fff;
  direction: ltr; unicode-bidi: isolate; transition: color .2s;
}
.cta-phone:hover { color: var(--gold); }

/* Lead form */
.form-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px); align-items: start;
}
.lead-form, .tool-card .field { min-width: 0; }
.lead-form {
  background: var(--sheet); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow); display: grid; gap: 14px;
}
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font: inherit; background: var(--paper); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 13px; color: var(--ink-3); }
.form-feedback { font-size: 14.5px; padding: 10px 12px; border-radius: 8px; }
.form-feedback.is-ok { background: var(--green-soft); color: #1A7A4C; }
.form-feedback.is-err { background: var(--accent-soft); color: var(--accent); }
@media (max-width: 760px) { .form-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: #262727; color: rgba(255,255,255,.78); padding-block: 48px 28px; }
.footer a { color: rgba(255,255,255,.88); text-decoration: none; transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 32px;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 56px; height: auto; background: #fff; border-radius: 12px; padding: 4px; }
.footer-brand strong { display: block; color: #fff; font-size: 18px; margin-bottom: 6px; }
.footer h3 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 14.5px; }

/* Canonical NAP strip — visible site-wide for local SEO / directories */
.footer-nap {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 14.5px;
  line-height: 1.7;
  text-align: center;
}
.footer-nap a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.footer-nap strong { display: inline; color: #fff; }
.footer-nap a:hover { color: var(--gold); }
@media (max-width: 760px) {
  .footer-nap { text-align: start; font-size: 14px; }
}

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  align-items: center; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; color: rgba(255,255,255,.5);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; transition: border-color .2s, background .2s;
}
.socials a:hover { border-color: var(--blue); background: var(--accent-soft); }
.socials svg { width: 18px; height: 18px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* Dual FAB */
.fabs {
  position: fixed; inset-inline-end: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0));
  z-index: 60; display: grid; gap: 10px; justify-items: end;
}
.fab-wa, .fab-call {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; text-decoration: none;
  transition: transform .2s, box-shadow .25s;
}
.fab-wa:hover, .fab-call:hover { transform: translateY(-2px); }
.fab-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.7);
}
.fab-call {
  background: var(--blue); color: #fff;
  box-shadow: 0 12px 28px -8px rgba(2,93,234,.55);
}
.fab-wa svg, .fab-call svg { width: 26px; height: 26px; }
.fab-wa span {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
@media (max-width: 720px) {
  body { padding-bottom: 88px; }
}


.nav a[aria-current="page"] { color: var(--blue); font-weight: 700; }
/* ========== Inner pages (services / order / contact / legal) ========== */
.page-hero {
  padding-block: clamp(52px, 9vw, 96px);
  background:
    radial-gradient(900px 320px at 100% 0%, var(--accent-soft), transparent 60%),
    radial-gradient(700px 280px at 0% 100%, var(--coral-soft), transparent 55%),
    var(--paper-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(#000, transparent 85%);
  pointer-events: none;
  opacity: .9;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 52px); margin-bottom: 14px;
  letter-spacing: -.02em; line-height: 1.15;
}
.page-hero .lead {
  color: var(--ink-2); max-width: 38em; font-size: clamp(16px, 2.2vw, 18.5px);
  line-height: 1.7;
}
.page-hero .page-hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.crumb { font-size: 14px; color: var(--ink-3); margin-bottom: 16px; }
.crumb a { text-decoration: none; color: var(--accent); font-weight: 600; }
.crumb a:hover { text-decoration: underline; }

/* Services hub cards */
.svc-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.svc-hub-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .25s, border-color .2s;
  min-height: 100%;
}
.svc-hub-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--card-accent, var(--blue)) 45%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--card-accent, var(--blue)) 14%, transparent),
              0 22px 44px -24px rgba(38,39,39,.32);
}
.svc-hub-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--card-accent, var(--blue)) 14%, #fff);
  color: var(--card-accent, var(--blue));
  flex: none;
}
.svc-hub-icon svg { width: 32px; height: 32px; }
.svc-hub-card h3 { font-size: 20px; margin: 0; }
.svc-hub-card p { color: var(--ink-2); font-size: 15px; margin: 0; flex: 1; }
.svc-hub-more {
  font-size: 14px; font-weight: 700; color: var(--card-accent, var(--blue));
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-hub-num {
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  color: var(--ink-3); letter-spacing: .06em;
}

/* Service detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
@media (max-width: 860px) {
  .detail-layout { grid-template-columns: 1fr; }
}
.detail-prose { display: grid; gap: 16px; }
.detail-prose p { color: var(--ink-2); font-size: 17px; max-width: 40em; }
.detail-prose h2 {
  font-size: clamp(22px, 3vw, 28px); margin-top: 12px; margin-bottom: 4px;
}
.feature-list {
  margin: 8px 0 0; padding: 0; list-style: none;
  display: grid; gap: 12px;
}
.feature-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.feature-list .fi {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--blue);
}
.feature-list .fi svg { width: 16px; height: 16px; }
.feature-list strong { display: block; font-size: 15.5px; margin-bottom: 2px; }
.feature-list span { color: var(--ink-2); font-size: 14.5px; }

.detail-aside {
  position: sticky; top: calc(var(--hdr) + 16px);
  display: grid; gap: 16px;
}
.aside-card {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.aside-card h3 { font-size: 17px; margin-bottom: 12px; }
.aside-specs {
  margin: 0; padding: 0; list-style: none; display: grid; gap: 10px;
}
.aside-specs li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 14.5px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.aside-specs li:last-child { border-bottom: 0; padding-bottom: 0; }
.aside-specs b { color: var(--ink-3); font-weight: 600; }
.aside-specs span { color: var(--ink); font-weight: 600; text-align: end; }
.aside-actions { display: grid; gap: 10px; margin-top: 4px; }
.aside-actions .btn { width: 100%; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.related-card {
  display: block; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--sheet); text-decoration: none; color: inherit;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.related-card:hover {
  border-color: var(--blue); transform: translateY(-2px);
  box-shadow: 0 12px 28px -18px rgba(2,93,234,.35);
}
.related-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.related-card span { font-size: 13.5px; color: var(--ink-2); }

/* Order page */
.order-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
@media (max-width: 860px) {
  .order-split { grid-template-columns: 1fr; }
}
.order-path {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid; gap: 14px;
}
.order-path h2 { font-size: 22px; }
.order-path > p { color: var(--ink-2); font-size: 15.5px; }
.order-quick {
  display: grid; gap: 10px;
}
.order-quick a.btn { justify-content: flex-start; }

/* Contact NAP */
.nap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.nap-card {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: grid; gap: 8px;
  transition: transform .15s, box-shadow .2s;
}
.nap-card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -22px rgba(38,39,39,.3); }
.nap-card .nap-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--blue); margin-bottom: 4px;
}
.nap-card .nap-icon svg { width: 20px; height: 20px; }
.nap-card .nap-icon.is-wa { background: rgba(37,211,102,.15); color: #128C7E; }
.nap-card .nap-icon.is-coral { background: var(--coral-soft); color: var(--coral); }
.nap-card .nap-icon.is-gold { background: var(--gold-soft); color: #A67A00; }
.nap-card .nap-icon.is-green { background: var(--green-soft); color: #2FA866; }
.nap-card .k { font-size: 13px; font-weight: 700; color: var(--ink-3); letter-spacing: .03em; }
.nap-card .v { font-size: 16.5px; font-weight: 700; color: var(--ink); }
.nap-card a { color: var(--blue); text-decoration: none; font-weight: 700; }
.nap-card a:hover { text-decoration: underline; }
.nap-card .sub { font-size: 14px; color: var(--ink-2); }

.map-ph {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--accent-soft), var(--paper-2) 50%, var(--coral-soft));
  min-height: 220px;
  text-decoration: none; color: inherit;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .2s;
}
.map-ph:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(2,93,234,.35); }
.map-ph-inner {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: 8px; text-align: center;
  padding: 24px;
}
.map-ph strong { font-size: 18px; }
.map-ph span { color: var(--ink-2); font-size: 14.5px; }
.map-ph .map-cta {
  display: inline-flex; margin-inline: auto; margin-top: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--blue); color: #fff; font-size: 14px; font-weight: 700;
}

.contact-form-wrap {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.social-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--sheet);
  text-decoration: none; font-weight: 600; font-size: 14.5px;
  transition: border-color .2s, transform .15s;
}
.social-pill:hover { border-color: var(--blue); transform: translateY(-1px); }
.social-pill svg { width: 18px; height: 18px; }

/* Legal / short pages */
.legal-prose {
  max-width: 42em;
  display: grid; gap: 14px;
  color: var(--ink-2); font-size: 16.5px;
}
.legal-prose h2 { color: var(--ink); font-size: 20px; margin-top: 8px; }
.thanks-box {
  max-width: 540px;
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid; gap: 14px;
}
.thanks-box img { width: 72px; height: auto; }

.page-band {
  background: linear-gradient(135deg, #025DEA 0%, #1a4a9a 100%);
  color: #fff;
  padding-block: clamp(36px, 6vw, 56px);
}
.page-band h2 { color: #fff; font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 10px; }
.page-band p { color: rgba(255,255,255,.88); max-width: 36em; margin-bottom: 18px; }
.page-band .btn-primary { background: #fff; color: var(--blue); }
.page-band .btn-primary:hover { box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.page-band .btn-wa { /* keep green */ }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-anim { opacity: 1; transform: none; animation: none; }
  .hero-title .dot { animation: none; }
  .svc-fig svg .draw { animation: none; stroke-dashoffset: 0; }
  .gallery-item:hover img { transform: none; }
}


/* Honeypot — hide from humans, keep for bots */
.form-field--honey {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
