/* ── Service card ─────────────────────────────────── */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
}
.svc-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-ic {
  width: 48px;
  height: 48px;
  background: var(--blue-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: background var(--duration-base) var(--ease), color var(--duration-base) var(--ease);
}
.svc-card:hover .svc-ic { background: var(--blue); color: white; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.svc-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

/* ── Calculator card ──────────────────────────────── */
.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 680px;
}
.calc-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 28px; letter-spacing: -0.01em; }
.calc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }

/* ── Result card ──────────────────────────────────── */
.res-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}
.res-card.hi { border-color: var(--blue); background: var(--blue-tint); }
.res-v {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.res-card.hi .res-v { color: var(--blue); }
.res-l {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Chart box ────────────────────────────────────── */
.chart-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.chart-box h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; margin-bottom: 22px; color: var(--ink); letter-spacing: -0.01em; }

/* ── Product card ─────────────────────────────────── */
.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
}
.prod-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ── Qty stepper (product card) ───────────────────── */
.qty-btn {
  width: 32px; height: 32px;
  border: none; background: var(--surface-raised);
  cursor: pointer; font-size: 1rem; color: var(--text);
  transition: background var(--duration-fast) var(--ease);
  flex-shrink: 0; line-height: 1;
}
.qty-btn:hover { background: var(--border); }
.qty-inp {
  width: 40px; height: 32px;
  border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center; font-size: 0.875rem; font-family: var(--font-mono);
  background: var(--surface); color: var(--ink);
  -moz-appearance: textfield;
}
.qty-inp::-webkit-inner-spin-button,
.qty-inp::-webkit-outer-spin-button { -webkit-appearance: none; }
.prod-price-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.prod-price-row .prod-price { margin-bottom: 0; }
.prod-qty-row {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0;
}

/* ── Quote item qty ───────────────────────────────── */
.qi-qty {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.qi-qty .qty-btn { width: 26px; height: 26px; font-size: 0.85rem; }
.qty-val {
  min-width: 28px; text-align: center;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  padding: 0 4px; line-height: 26px;
}

/* ── Team card ────────────────────────────────────── */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: box-shadow var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.team-nm { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin-bottom: 5px; letter-spacing: -0.01em; }
.team-rl { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

/* ── Office block ─────────────────────────────────── */
.off-blk { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 16px; }
.off-blk h4 { font-family: var(--font-mono); font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 14px; }
.off-blk p { font-size: 0.875rem; color: var(--ink); margin-bottom: 5px; }
.off-blk a { color: var(--blue); text-decoration: none; }
.off-blk__sep { margin-top: 12px; }
.off-blk__note { margin-top: 10px; font-size: 0.82rem; color: var(--text-muted); }
.off-blk--contact p { margin-bottom: 10px; }
/* ── Quote box ────────────────────────────────────── */
.qt-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.qt-hd { padding: 16px 24px; border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); }
.qt-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; border-bottom: 1px solid var(--border); }
.qt-row:last-of-type { border-bottom: none; }
.qi-n { font-weight: 600; font-size: 0.875rem; }
.qi-s { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.qi-r { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.qi-p { font-family: var(--font-mono); font-weight: 600; font-size: 0.875rem; font-variant-numeric: tabular-nums; }
.rm-b { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border: none; background: none; cursor: pointer; color: var(--text-faint); font-size: 0.85rem; border-radius: var(--radius-sm); transition: all var(--duration-fast) var(--ease); }
.rm-b:hover { background: #fef2f2; color: var(--red); }
.qt-tot { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; background: var(--surface-raised); border-top: 1px solid var(--border); }
.qt-tot-l { font-weight: 700; font-size: 0.875rem; }
.qt-tot-v { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 600; color: var(--blue); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.qt-empty { padding: 64px 24px; text-align: center; color: var(--text-muted); }
.qt-empty svg { color: var(--border-dark); margin-bottom: 16px; }
.qt-empty strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 0.95rem; margin-bottom: 8px; }
.qt-empty p { font-size: 0.85rem; line-height: 1.65; }
.qt-empty a { color: var(--blue); cursor: pointer; }

/* ── Quote form card ──────────────────────────────── */
.qt-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; position: sticky; top: calc(var(--nav-height) + 16px); }
.qt-form-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 24px; letter-spacing: -0.01em; }

/* ── Calculator page card ─────────────────────────── */
.calc-card-p { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 920px) {
  .calc-card { padding: 24px; }
  .qt-form-card { position: static; }
}

@media (max-width: 480px) {
  .res-v { font-size: 1.4rem; }
}
