@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --surface:     #F3F6F5;
  --surface-2:   #E6EDEB;
  --accent:      #0D9B72;
  --accent-glow: rgba(13, 155, 114, 0.10);
  --accent-dim:  rgba(13, 155, 114, 0.08);
  --border:      rgba(0, 0, 0, 0.09);
  --border-acc:  rgba(13, 155, 114, 0.35);
  --text:        #19221F;
  --fg:          #19221F;
  --fg-dim:      #4B5E5A;
  --text-muted:  #7A8E8B;
  --danger:      #DC2626;
  --font-h:      'Syne', sans-serif;
  --font-mono:   'IBM Plex Mono', monospace;
  --font-body:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --r:           6px;
  --max:         1160px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; }
button { cursor: pointer; }
a { text-decoration: none; color: inherit; }

/* ─── Base ───────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}


.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── NAV ────────────────────────────────────────────────── */
.g-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(255,255,255,.90);
}
.g-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.g-nav__logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: var(--text);
}
.g-nav__logo span { color: var(--accent); }
.g-nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.g-nav__links a {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .01em;
  transition: color .2s;
}
.g-nav__links a:hover { color: var(--accent); }
.g-nav__cta {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 8px 18px;
  border: 1.5px solid var(--border-acc);
  background: transparent;
  color: var(--accent);
  border-radius: var(--r);
  transition: background .2s, color .2s;
}
.g-nav__cta:hover { background: var(--accent); color: #fff; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

/* Radial glow behind headline */
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(13,155,114,.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 80px 0 100px;
}
.hero__tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}
.hero__h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
  font-family: var(--font-body);
  font-weight: 400;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  font-family: var(--font-body);
  font-size: .9rem;
  letter-spacing: .01em;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-weight: 600;
  transition: opacity .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-secondary {
  font-family: var(--font-body);
  font-size: .9rem;
  letter-spacing: .01em;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-weight: 500;
  transition: border-color .2s, color .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--border-acc);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .35;
  z-index: 1;
}
.hero__scroll span {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--text-muted), transparent);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── Section shared ─────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 540px;
  font-family: var(--font-body);
}

/* ─── PROBLEM ────────────────────────────────────────────── */
.problem {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.problem__header { margin-bottom: 56px; }
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.problem__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  transition: border-color .3s;
  overflow: hidden;
}
.problem__card:hover { border-color: var(--border-acc); }
.problem__card--before .problem__badge { color: #FF8C8C; border-color: rgba(255,140,140,.25); background: rgba(255,140,140,.06); }
.problem__card--after { border-color: rgba(45,212,160,.18); background: linear-gradient(135deg, var(--surface) 60%, rgba(45,212,160,.04)); }
.problem__card--after .problem__badge { color: var(--accent); border-color: var(--border-acc); background: var(--accent-dim); }

.problem__badge {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
}

.problem__visual {
  height: 160px;
  border-radius: 8px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

/* Before visual — messy boxes using CSS */
.visual-before {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 20px;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  align-content: center;
}
.visual-before__box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
}

/* After visual — perfect grid */
.visual-after {
  display: grid;
  gap: 4px;
  padding: 20px;
  width: 100%;
  height: 100%;
}
.visual-after__cell {
  background: rgba(45,212,160,.12);
  border: 1px solid rgba(45,212,160,.3);
  border-radius: 2px;
}

.problem__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.problem__desc {
  font-size: .9rem;
  color: var(--fg-dim);
  line-height: 1.65;
  font-family: var(--font-body);
}
.problem__list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.problem__list li {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--fg-dim);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.problem__list li::before { content: attr(data-icon); flex-shrink: 0; }
.problem__card--after .problem__list li { color: var(--text); }
.problem__card--after .problem__list li::before { color: var(--accent); }

/* ─── USE CASES ──────────────────────────────────────────── */
.usecases {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.usecases__header { margin-bottom: 56px; }
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.usecase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .25s, background .25s, transform .25s;
  cursor: default;
}
.usecase-card:hover {
  border-color: var(--border-acc);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.usecase-card__icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.usecase-card__name {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}
.usecase-card__desc {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--fg-dim);
  line-height: 1.55;
}

/* ─── PROCESS ────────────────────────────────────────────── */
.process {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.process__header { margin-bottom: 72px; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line */
.process__steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-acc), var(--border-acc));
  opacity: .4;
}

.process-step {
  padding: 0 32px 0 0;
  position: relative;
}
.process-step:last-child { padding-right: 0; }
.process-step__num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -.02em;
  opacity: .9;
}
.process-step__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 12px;
}
.process-step__body {
  font-size: .88rem;
  color: var(--fg-dim);
  line-height: 1.65;
  font-family: var(--font-body);
}
.process-step__tag {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.process-step__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq__header { margin-bottom: 56px; }
.faq__list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-h);
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: -.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s, background .2s;
}
.faq-item__q:hover { background: var(--surface); color: var(--text); }
.faq-item.open .faq-item__q { color: var(--accent); background: var(--surface); }

.faq-item__icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, border-color .2s, background .2s;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent-dim);
}
.faq-item__icon svg { width: 10px; height: 10px; fill: currentColor; }

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-item__a { max-height: 300px; }

.faq-item__a-inner {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--fg-dim);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: 100px 0 120px;
  border-top: 1px solid var(--border);
}
.contact__header { margin-bottom: 56px; }
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Canvas area */
.canvas-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.canvas-block__header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.canvas-block__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.canvas-block__hint {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--text-muted);
}
.canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  cursor: crosshair;
}
.canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.canvas-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity .3s;
}
.canvas-placeholder.hidden { opacity: 0; }
.canvas-placeholder svg { opacity: .15; }
.canvas-placeholder span {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 160px;
  line-height: 1.5;
}
.canvas-block__controls {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}
.btn-canvas {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 5px;
  transition: border-color .2s, color .2s;
}
.btn-canvas:hover { border-color: var(--border-acc); color: var(--accent); }

/* Form area */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--fg-dim);
}
.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--border-acc); }
.form-field textarea { resize: none; height: 100px; line-height: 1.55; }
.form-label-hint { font-family: var(--font-mono); font-size: .62rem; color: rgba(45,212,160,.45); letter-spacing: .04em; margin-left: 5px; }

/* ── upload zone ── */
.upload-zone {
  position: relative;
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  transition: border-color .2s, background .2s;
  overflow: hidden;
}
.upload-zone.drag-over { border-color: var(--border-acc); background: rgba(45,212,160,.05); }
.upload-input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.upload-placeholder {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 22px 16px; text-align: center;
  color: rgba(45,212,160,.4);
}
.upload-placeholder svg { opacity: .5; }
.upload-placeholder span { font-size: .82rem; color: var(--fg-dim); }
.upload-browse {
  background: none; border: none; padding: 0;
  color: var(--accent); font-size: .82rem; cursor: pointer;
  pointer-events: all; text-decoration: underline; text-underline-offset: 2px;
}
.upload-browse:hover { opacity: .8; }
.upload-hint { font-family: var(--font-mono); font-size: .66rem; color: rgba(45,212,160,.35); }
.upload-list { list-style: none; margin: 0; padding: 0; }
.upload-list:empty { display: none; }
.upload-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--fg);
}
.upload-item:first-child { border-top: none; }
.upload-item__icon { font-size: 1rem; flex-shrink: 0; }
.upload-item__name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-item__size { font-family: var(--font-mono); font-size: .68rem; color: rgba(45,212,160,.5); flex-shrink: 0; }
.upload-item__del {
  background: none; border: none; cursor: pointer;
  color: rgba(239,68,68,.6); font-size: .85rem; line-height: 1;
  padding: 2px 4px; border-radius: 4px; flex-shrink: 0;
  transition: color .15s;
}
.upload-item__del:hover { color: #EF4444; }

.btn-send {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-weight: 500;
  transition: opacity .2s, transform .15s;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-send:hover { opacity: .88; transform: translateY(-1px); }

/* Success state */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--surface);
  border: 1px solid var(--border-acc);
  border-radius: 12px;
  gap: 16px;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
}
.success-state h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}
.success-state p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 340px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.g-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
.g-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g-footer__logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .12em;
}
.g-footer__logo span { color: var(--accent); }
.g-footer__copy {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--text-muted);
}

/* ─── BEFORE / AFTER SLIDER ─────────────────────────────── */
.ba-wrap { margin-bottom: 24px; }
.ba-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-layer {
  position: absolute;
  inset: 0;
}
.ba-layer svg { width: 100%; height: 100%; display: block; }
.ba-layer--after { clip-path: inset(0 50% 0 0); }

.ba-badge {
  position: absolute;
  top: 14px;
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 5;
}
.ba-badge--before { left: 14px; background: rgba(255,80,80,.12); border: 1px solid rgba(255,80,80,.28); color: #ff9090; }
.ba-badge--after  { right: 14px; background: var(--accent-dim); border: 1px solid var(--border-acc); color: var(--accent); }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.88);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255,255,255,0.2);
}
.ba-handle-knob {
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.55);
  position: relative;
  z-index: 1;
  color: #0E1010;
}

.ba-hint {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-top: 12px;
}

.ba-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.ba-point {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.ba-point--after { border-color: rgba(45,212,160,.2); background: linear-gradient(135deg, var(--surface), rgba(45,212,160,.03)); }
.ba-point__badge {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.ba-point--before .ba-point__badge { background: rgba(255,80,80,.1); border: 1px solid rgba(255,80,80,.22); color: #ff9090; }
.ba-point--after  .ba-point__badge { background: var(--accent-dim); border: 1px solid var(--border-acc); color: var(--accent); }
.ba-point ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ba-point li { font-family: var(--font-mono); font-size: .78rem; color: var(--text-muted); display: flex; gap: 9px; align-items: flex-start; }
.ba-point--before li::before { content: '✗'; color: #ff9090; flex-shrink: 0; }
.ba-point--after  li::before { content: '✓'; color: var(--accent); flex-shrink: 0; }
.ba-point--after  li { color: var(--text); }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about { padding: 100px 0; border-top: 1px solid var(--border); }
.about__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about__body { font-size: .97rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 16px; }
.about__features { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about__feature { display: flex; gap: 16px; align-items: flex-start; }
.about__feature-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.about__feature-text { display: flex; flex-direction: column; gap: 3px; }
.about__feature-text strong { font-size: .95rem; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.about__feature-text span { font-size: .84rem; color: var(--text-muted); line-height: 1.5; }

.about__visual { display: flex; flex-direction: column; gap: 16px; }
.about__printer-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.about__printer-header { padding: 12px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.about__printer-label { font-family: var(--font-mono); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.about__printer-loc { font-family: var(--font-mono); font-size: .65rem; color: var(--text-muted); }
.about__printer-svg { display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--surface-2); }
.about__printer-spec { padding: 10px 20px; border-top: 1px solid var(--border); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.about__spec-item { font-family: var(--font-mono); font-size: .68rem; color: var(--text-muted); }
.about__spec-dot { color: var(--border-acc); }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about__stat { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; transition: border-color .2s; }
.about__stat:hover { border-color: var(--border-acc); }
.about__stat-num { font-family: var(--font-h); font-size: 1.45rem; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.about__stat-lbl { font-family: var(--font-mono); font-size: .63rem; color: var(--text-muted); line-height: 1.4; }

/* ─── AUTO-FILL TAG ──────────────────────────────────────── */
.form-autofill-tag {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0;
  transition: opacity .3s;
}
.form-autofill-tag.visible { opacity: 1; }

/* ─── TABS ───────────────────────────────────────────────── */
.left-panel { display: flex; flex-direction: column; }
.btn-export-pdf {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 10px 14px 14px;
  padding: 10px 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: rgba(45,212,160,.7);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-export-pdf:hover { border-color: var(--border-acc); color: var(--accent); background: rgba(45,212,160,.06); }

.cfg-tabs {
  display: flex;
  border-bottom: none;
}
.cfg-tab {
  flex: 1;
  padding: 11px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.cfg-tab:first-child { border-radius: 10px 0 0 0; border-right: none; }
.cfg-tab:last-child  { border-radius: 0 10px 0 0; }
.cfg-tab.active {
  color: var(--accent);
  background: var(--surface-2);
  border-color: var(--border-acc);
  border-bottom-color: var(--surface-2);
  position: relative;
  z-index: 1;
}

.cfg-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-acc);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.cfg-tab.active ~ .cfg-tab { border-left-color: var(--border); }

/* first tab active — match its border */
.cfg-tabs:has(.cfg-tab:first-child.active) + .cfg-panel { border-top-left-radius: 0; }
.cfg-tabs:has(.cfg-tab:last-child.active) + .cfg-panel { border-top-right-radius: 0; }

/* ─── CONFIGURATOR BODY ──────────────────────────────────── */
/* ─── Drawer Configurator (two-level) ────────────────── */
.dc-dims { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 14px 14px 0; }
.dc-dim__lbl { display: block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.dc-dim__field { display: flex; align-items: center; gap: 6px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 6px 9px; transition: border-color .2s; }
.dc-dim__field:focus-within { border-color: var(--border-acc); }
.dc-dim__field input { background: none; border: none; outline: none; color: var(--text); font-family: var(--font-mono); font-size: .88rem; width: 100%; min-width: 0; }
.dc-dim__field input::-webkit-inner-spin-button,
.dc-dim__field input::-webkit-outer-spin-button { -webkit-appearance: none; }
.dc-dim__field span { font-family: var(--font-mono); font-size: .68rem; color: var(--text-muted); flex-shrink: 0; }

.dc-nav { display: flex; align-items: center; gap: 8px; padding: 10px 14px 0; min-height: 28px; }
.dc-back { background: var(--surface-2); border: 1px solid var(--border); color: var(--accent); font-family: var(--font-mono); font-size: .7rem; padding: 4px 10px; border-radius: 6px; cursor: pointer; transition: background .15s; }
.dc-back:hover { background: var(--accent-dim); border-color: var(--border-acc); }
.dc-breadcrumb { font-family: var(--font-mono); font-size: .7rem; color: var(--text-muted); letter-spacing: .06em; }
.dc-sect-badge { font-family: var(--font-mono); font-size: .68rem; padding: 2px 9px; border-radius: 999px; background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border-acc); margin-left: auto; }

.dc-canvas { width: 100%; aspect-ratio: 5/3; display: block; cursor: default; background: #141717; }

.dc-controls { padding: 10px 14px 0; }
.dc-ctrl-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dc-ctrl-label { font-family: var(--font-mono); font-size: .68rem; color: var(--text); letter-spacing: .06em; text-transform: uppercase; }
.dc-ctrl-dim { font-family: var(--font-mono); font-size: .8rem; color: var(--text); }
.dc-ctrl-spacer { flex: 1; min-width: 4px; }
.dc-auto-badge { font-family: var(--font-mono); font-size: .68rem; color: var(--accent); background: var(--accent-dim); border: 1px solid var(--border-acc); padding: 2px 9px; border-radius: 999px; transition: color .2s, border-color .2s; }
.dc-box-size { font-family: var(--font-mono); font-size: .7rem; color: rgba(45,212,160,.5); }

.dc-stepper { display: flex; align-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.dc-stepper button { background: none; border: none; color: var(--accent); font-size: 1rem; width: 26px; height: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.dc-stepper button:hover { background: var(--accent-dim); }
.dc-stepper span { font-family: var(--font-mono); font-size: .8rem; color: var(--text); min-width: 24px; text-align: center; }
.dc-sub-info { font-family: var(--font-mono); font-size: .68rem; color: rgba(45,212,160,.6); }
.dc-btn-add { background: var(--accent-dim); border: 1px solid var(--border-acc); color: var(--accent); font-family: var(--font-mono); font-size: .68rem; padding: 4px 10px; border-radius: 6px; cursor: pointer; transition: background .15s; white-space: nowrap; }
.dc-btn-add:hover { background: rgba(45,212,160,.2); }
.dc-btn-icon { background: var(--surface-2); border: 1px solid var(--border); color: rgba(239,68,68,.8); font-size: .75rem; width: 26px; height: 26px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; flex-shrink: 0; }
.dc-btn-icon:hover { background: rgba(239,68,68,.15); border-color: rgba(239,68,68,.4); }
.dc-sub-dims { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 10px 14px; border-top: 1px solid var(--border); }
.dc-sub-dim__lbl { display: block; font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(45,212,160,.5); margin-bottom: 4px; }
.dc-sub-dim__field { display: flex; align-items: center; gap: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 4px; padding: 4px 8px; }
.dc-sub-dim__field input { background: none; border: none; outline: none; color: var(--fg); font-family: var(--font-mono); font-size: .8rem; width: 52px; -moz-appearance: textfield; }
.dc-sub-dim__field input::-webkit-outer-spin-button, .dc-sub-dim__field input::-webkit-inner-spin-button { -webkit-appearance: none; }
.dc-sub-dim__field span { font-family: var(--font-mono); font-size: .7rem; color: rgba(45,212,160,.5); }

/* ─── end Drawer Configurator ─────────────────────────── */

.cfg-body {
  display: grid;
  grid-template-columns: 195px 1fr;
}

.cfg-inputs {
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cfg-group-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cfg-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cfg-lbl {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-muted);
  width: 46px;
  flex-shrink: 0;
}

.cfg-field {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  flex: 1;
  transition: border-color .2s;
}
.cfg-field:focus-within { border-color: var(--border-acc); }

.cfg-field input {
  flex: 1;
  background: none;
  border: none;
  padding: 7px 10px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: .85rem;
  outline: none;
  width: 0;
}
.cfg-field input::-webkit-inner-spin-button,
.cfg-field input::-webkit-outer-spin-button { -webkit-appearance: none; }
.cfg-field input[type=number] { -moz-appearance: textfield; }

.cfg-unit {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--text-muted);
  padding: 0 6px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 32px;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: stretch;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  flex: 1;
  transition: border-color .2s;
}
.stepper:focus-within { border-color: var(--border-acc); }

.stepper-btn {
  width: 30px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .15s, background .15s;
  flex-shrink: 0;
}
.stepper-btn:hover { color: var(--accent); background: var(--accent-dim); }

.stepper-val {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .88rem;
  color: var(--text);
  padding: 7px 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.cfg-hint {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .7;
}

/* Preview canvas */
.cfg-preview-wrap {
  display: flex;
  flex-direction: column;
}
.cfg-preview-wrap canvas {
  display: block;
  width: 100%;
  flex: 1;
}
.cfg-preview-bar {
  padding: 9px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cfg-summary {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--text-muted);
}
.btn-dl {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border-acc);
  color: var(--accent);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.btn-dl:hover { background: var(--accent-dim); }

/* ─── HIDDEN ─────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ─── HERO TRUST STRIP ───────────────────────────────────── */
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--fg-dim);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-item svg { color: var(--accent); flex-shrink: 0; }
.hero__trust-sep { color: var(--border); font-size: 1.1rem; }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery { padding: 100px 0; }
.gallery__header { text-align: center; margin-bottom: 56px; }
.gallery__header .section-label { justify-content: center; }
.gallery__header .section-sub   { margin: 0 auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.gallery-card:hover { border-color: var(--border-acc); transform: translateY(-3px); }
.gallery-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
/* Hide broken image alt-text, show placeholder background instead */
.gallery-card__img img[src=""],
.gallery-card__img img:not([src]) { opacity: 0; }
.gallery-card__img img::before {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: var(--surface-2);
}
.gallery-card:hover .gallery-card__img img { transform: scale(1.04); }
.gallery-card__info { padding: 16px 20px; }
.gallery-card__name {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.gallery-card__desc {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.gallery__note {
  text-align: center;
  font-size: .85rem;
  color: var(--fg-dim);
}
.gallery__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }


/* ─── CONTACT DIRECT EMAIL ───────────────────────────────── */
.contact__direct-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .875rem;
  color: var(--accent);
  font-family: var(--font-body);
  text-decoration: none;
  transition: opacity .15s;
}
.contact__direct-email:hover { opacity: .75; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.g-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 28px; }
.g-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.g-footer__brand { display: flex; flex-direction: column; gap: 10px; }
.g-footer__tagline { font-size: .8rem; color: var(--fg-dim); }
.g-footer__col { display: flex; flex-direction: column; gap: 10px; }
.g-footer__col-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.g-footer__link {
  font-size: .85rem;
  color: var(--fg-dim);
  transition: color .15s;
  text-decoration: none;
}
a.g-footer__link:hover { color: var(--accent); }
.g-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g-footer__copy { font-size: .78rem; color: var(--text-muted); font-family: var(--font-body); }

/* ─── PRICING ────────────────────────────────────────────── */
.pricing { padding: 100px 0; border-top: 1px solid var(--border); }
.pricing__header { text-align: center; margin-bottom: 48px; }
.pricing__header .section-label { justify-content: center; }
.pricing__header .section-sub   { margin: 0 auto; }
.pricing__table { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; max-width: 780px; margin: 0 auto; }
.price-row { display: grid; grid-template-columns: 1fr 1fr 120px 110px; align-items: center; gap: 0; padding: 20px 28px; border-bottom: 1px solid var(--border); background: var(--bg); transition: background .15s; }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--surface); }
.price-row--featured { background: var(--surface); }
.price-row--featured:hover { background: var(--surface-2); }
.price-row__size { font-weight: 700; font-family: var(--font-h); font-size: .95rem; color: var(--text); }
.price-row__size span { display: block; font-weight: 400; font-family: var(--font-mono); font-size: .7rem; color: var(--fg-dim); margin-top: 2px; }
.price-row__example { font-family: var(--font-mono); font-size: .78rem; color: var(--text-muted); }
.price-row__price { font-weight: 800; font-size: 1.05rem; color: var(--accent); font-family: var(--font-h); }
.price-row__cta { background: var(--accent-dim); border: 1px solid var(--border-acc); color: var(--accent); font-family: var(--font-mono); font-size: .72rem; font-weight: 600; padding: 7px 16px; border-radius: 6px; text-decoration: none; text-align: center; transition: background .15s, color .15s; letter-spacing: .04em; }
.price-row__cta:hover { background: var(--accent); color: #fff; }
.pricing__note { text-align: center; font-family: var(--font-mono); font-size: .72rem; color: var(--text-muted); margin-top: 20px; }
.pricing__note--multi { font-size: .82rem; color: var(--text); margin-top: 24px; margin-bottom: 6px; }
.pricing__note--multi a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── BUSINESS ───────────────────────────────────────────── */
.business { padding: 100px 0; border-top: 1px solid var(--border); background: var(--surface); }
.business__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.business__body { font-size: 1rem; color: var(--fg-dim); line-height: 1.75; margin: 16px 0 24px; font-family: var(--font-body); }
.business__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.business__list li { display: flex; align-items: center; gap: 10px; font-size: .93rem; color: var(--text); }
.business__list li svg { color: var(--accent); flex-shrink: 0; }
.business__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.business__stat { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.business__stat-icon { color: var(--accent); }
.business__stat strong { font-family: var(--font-h); font-size: .9rem; color: var(--text); }
.business__stat span { font-family: var(--font-mono); font-size: .72rem; color: var(--text-muted); }

/* ─── CONTACT QUICK ──────────────────────────────────────── */
.contact__quick { margin-bottom: 32px; }
.contact__quick-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px 22px; }
.contact__quick-text { display: flex; flex-direction: column; gap: 3px; }
.contact__quick-text strong { font-size: .9rem; color: var(--text); }
.contact__quick-text span { font-size: .82rem; color: var(--fg-dim); font-family: var(--font-body); }
.btn-sm { font-size: .78rem !important; padding: 8px 16px !important; white-space: nowrap; flex-shrink: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .usecases__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .business__inner { grid-template-columns: 1fr; gap: 40px; }
  .price-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px 20px; }
  .price-row__example { display: none; }
  .price-row__cta { justify-self: end; }
  .process__steps { grid-template-columns: 1fr; gap: 40px; }
  .process__steps::before { display: none; }
  .process-step { padding-right: 0; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; padding-bottom: 0; }
  .contact__layout { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: 1fr; }
  .cfg-body { grid-template-columns: 1fr; }
  .cfg-inputs { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
  .cfg-group-label { width: 100%; margin-bottom: 0; }
  .cfg-hint { display: none; }
  .g-footer__top { grid-template-columns: 1fr 1fr; }
  .g-footer__brand { grid-column: 1 / -1; }
  /* Mobile configurator: bigger touch targets */
  .dc-stepper button { width: 36px; height: 36px; font-size: 1.1rem; }
  .dc-stepper span { min-width: 32px; font-size: .85rem; }
  .dc-btn-add, .dc-btn-icon { height: 36px; padding: 0 14px; }
}

@media (max-width: 768px) {
  .g-nav__links { display: none; }
  .usecases__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 16px; }
  .hero__inner { padding: 60px 0 80px; }
  .pricing { padding: 72px 0; }
  .business { padding: 72px 0; }
  .contact__quick-inner { flex-direction: column; align-items: flex-start; }
  .problem { padding: 72px 0; }
  .usecases { padding: 72px 0; }
  .gallery { padding: 72px 0; }
  .testimonials { padding: 72px 0; }
  .process { padding: 72px 0; }
  .faq { padding: 72px 0; }
  .contact { padding: 72px 0 100px; }
  /* Mobile configurator: hint below canvas */
  .dc-ctrl-row { flex-wrap: wrap; gap: 6px; }
  .dc-canvas { aspect-ratio: 4/3; }
  .hero__trust { gap: 8px; }
  .hero__trust-sep { display: none; }
}

@media (max-width: 480px) {
  .usecases__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .g-footer__top { grid-template-columns: 1fr; }
  .g-footer__brand { grid-column: auto; }
  .g-footer__inner { flex-direction: column; gap: 10px; text-align: center; }
  .hero__h1 { font-size: 2.15rem; letter-spacing: -.025em; }
  .section-h2 { font-size: 1.7rem; }
  .dc-ctrl-row { gap: 4px; }
  .dc-dims { flex-direction: column; gap: 8px; }
  .ba-container { height: 260px; }
}
