/* ============================================================
   VRIZA SERVICES — Components & layout
   ============================================================ */

.mono-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.mono-label.accent { color: var(--accent); }

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(0.992 0.003 230 / 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 oklch(0.4 0.02 245 / 0.02);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-name {
  font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: 0.02em;
  color: var(--ink); display: inline-flex; align-items: baseline; gap: 6px; line-height: 1;
}
.brand-name.light { color: var(--surface); }
.brand-sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--accent); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14.5px; color: var(--ink-2); font-weight: 450; position: relative; transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--accent); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 10px 18px; font-size: 14px; }

.lang { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; background: var(--surface); }
.lang-btn {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; font-weight: 500;
  border: none; background: transparent; color: var(--ink-3); padding: 5px 11px; border-radius: 999px; cursor: pointer;
  transition: all 0.2s var(--ease);
}
.lang-btn.on { background: var(--accent); color: #fff; }
.lang-btn:not(.on):hover { color: var(--ink); }

.burger { display: none; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink); border-radius: 10px; width: 42px; height: 42px; cursor: pointer; align-items: center; justify-content: center; }

/* ---------------- DRAWER (mobile) ---------------- */
.drawer { position: fixed; inset: 0; z-index: 60; background: oklch(0.2 0.02 245 / 0); visibility: hidden; transition: background 0.3s var(--ease), visibility 0.3s; }
.drawer.open { background: oklch(0.2 0.02 245 / 0.4); visibility: visible; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
  background: var(--bg); padding: 22px; transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-lg);
}
.drawer.open .drawer-panel { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-links { display: flex; flex-direction: column; }
.drawer-links a { font-family: var(--display); font-size: 21px; font-weight: 500; color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line); }
.lang-block { align-self: flex-start; margin: 20px 0 6px; }
.drawer-cta { margin-top: auto; justify-content: center; }

/* ---------------- HERO ---------------- */
.hero { position: relative; padding: 124px 0 var(--section-y); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 88% 0%, var(--accent-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(75% 60% at 80% 8%, #000 0%, transparent 70%);
  opacity: 0.5;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.hero-title { font-size: clamp(38px, 5.6vw, 70px); margin: 22px 0; line-height: 1.02; }
.hero-title .hi { color: var(--accent); }
.hero-sub { font-size: clamp(17px, 1.8vw, 20.5px); color: var(--ink-2); max-width: 540px; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }

.hero-visual { position: relative; }
.hero-panel { padding: 22px; box-shadow: var(--shadow-lg); }
.hero-panel-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.dots { display: inline-flex; gap: 6px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); display: block; }
.dots i:first-child { background: var(--accent); }
.hero-rows { display: flex; flex-direction: column; }
.hero-row { display: flex; align-items: center; gap: 14px; padding: 15px 2px; border-bottom: 1px solid var(--line); }
.hero-row:last-child { border-bottom: none; }
.hr-k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); width: 86px; flex: none; }
.hr-line { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--line-2) 0 4px, transparent 4px 8px); }
.hr-v { font-size: 14.5px; color: var(--ink); font-weight: 500; text-align: right; }
.hero-ph { margin-top: 18px; }

/* ---------- Brand device / dashboard visual ---------- */
.device { position: relative; border-radius: var(--radius); border: 1px solid var(--line-2); background: linear-gradient(165deg, var(--bg-tint), var(--surface)); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 26px; }
.eq-ph.device { min-height: 230px; }
.hero-ph.device { min-height: 150px; }
.device-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(85% 80% at 50% 25%, #000, transparent 78%); opacity: 0.55; }
.device-orb { position: absolute; right: -36px; bottom: -36px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.18; }
.device-screen { position: relative; z-index: 1; width: 80%; max-width: 320px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 11px; box-shadow: var(--shadow-md); padding: 15px 16px; }
.device-top { display: flex; align-items: center; justify-content: space-between; }
.device-dots { display: inline-flex; gap: 5px; }
.device-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); display: block; }
.device-dots i:first-child { background: var(--accent); }
.device-chip { width: 34px; height: 8px; border-radius: 4px; background: var(--accent-soft); }
.device-lines { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.device-lines span { height: 8px; border-radius: 4px; background: var(--accent-soft); display: block; }
.device-lines span:nth-child(1) { width: 68%; background: var(--accent); opacity: 0.85; }
.device-lines span:nth-child(2) { width: 92%; }
.device-lines span:nth-child(3) { width: 54%; }
.device-lines span:nth-child(4) { width: 78%; }
.device-stand { position: relative; z-index: 1; width: 20%; height: 9px; background: var(--line-2); border-radius: 0 0 6px 6px; }

/* ---------------- VALUE ---------------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.value-card { padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.value-card h3 { font-size: 19px; }
.value-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* ---------------- ABOUT ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.about-body { color: var(--ink-2); font-size: 17px; line-height: 1.7; margin-top: 26px; max-width: 520px; }
.values { margin-top: 34px; }
.values-label { display: block; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.value-mini { display: flex; flex-direction: column; gap: 5px; padding-left: 16px; border-left: 2px solid var(--accent-line); }
.value-mini strong { font-family: var(--display); font-weight: 500; font-size: 16px; color: var(--ink); }
.value-mini span { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.about-cards { display: flex; flex-direction: column; gap: 16px; }
.about-card { padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.about-card h3 { font-size: 21px; margin-top: 2px; }
.about-card p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ---------------- SERVICES ---------------- */
.svc-group { margin-top: 48px; }
.svc-group-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.svc-tag { color: var(--accent); border: 1px solid var(--accent-line); padding: 5px 11px; border-radius: 999px; background: var(--accent-soft); }
.svc-group-label { font-family: var(--display); font-weight: 500; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.svc-rule { flex: 1; height: 1px; background: var(--line); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-card { padding: 24px 22px; display: flex; flex-direction: column; gap: 13px; }
.svc-card h3 { font-size: 17.5px; line-height: 1.2; }
.svc-card p { color: var(--ink-2); font-size: 14px; line-height: 1.55; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.mini-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--ink-3); background: var(--bg-tint); border: 1px solid var(--line); border-radius: 6px; padding: 3px 8px; }

/* ---------------- EQUIPMENT ---------------- */
.eq-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.eq-points { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.eq-point { display: flex; gap: 15px; }
.eq-check { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.eq-point strong { font-family: var(--display); font-weight: 500; font-size: 16.5px; color: var(--ink); display: block; margin-bottom: 4px; }
.eq-point span { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.eq-side { display: flex; flex-direction: column; }
.eq-ph { display: block; width: 100%; }
.eq-seg-label { display: block; margin: 28px 0 14px; }
.eq-segs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.eq-seg { padding: 18px 16px; display: flex; flex-direction: column; gap: 6px; }
.eq-seg strong { font-family: var(--display); font-weight: 500; font-size: 16px; color: var(--ink); }
.eq-seg span { color: var(--ink-2); font-size: 13px; line-height: 1.5; }

/* ---------------- SOFTWARE ---------------- */
.sw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 40px; margin-top: 48px; }
.sw-card { display: flex; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); }
.sw-ico { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--accent); flex: none; background: var(--surface); transition: all 0.25s var(--ease); }
.sw-card:hover .sw-ico { background: var(--accent-soft); border-color: var(--accent-line); }
.sw-card h3 { font-size: 17px; margin-bottom: 5px; }
.sw-card p { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.sw-cta { margin-top: 40px; }

/* ---------------- PROCESS ---------------- */
.proc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 56px; counter-reset: none; position: relative; }
.proc-step { position: relative; padding-top: 30px; }
.proc-step::before { content: ""; position: absolute; top: 6px; left: 0; right: 0; height: 1px; background: var(--line-2); }
.proc-step::after { content: ""; position: absolute; top: 2px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.proc-num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--accent); font-weight: 500; }
.proc-step h3 { font-size: 18px; margin: 10px 0 8px; }
.proc-step p { color: var(--ink-2); font-size: 14px; line-height: 1.55; }

/* ---------------- BENEFITS ---------------- */
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 36px; margin-top: 52px; }
.ben-item { display: flex; gap: 14px; }
.ben-check { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.ben-item strong { font-family: var(--display); font-weight: 500; font-size: 16.5px; color: var(--ink); display: block; margin-bottom: 4px; }
.ben-item span { color: var(--ink-2); font-size: 14px; line-height: 1.55; }

/* ---------------- FAQ ---------------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.faq-item { overflow: hidden; transition: border-color 0.25s var(--ease); }
.faq-item.open { border-color: var(--accent-line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--display); font-weight: 500; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.faq-ico { color: var(--accent); transition: transform 0.3s var(--ease); flex: none; display: grid; place-items: center; }
.faq-item.open .faq-ico { transform: rotate(180deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a p { color: var(--ink-2); font-size: 15px; line-height: 1.65; padding: 0 24px 22px; max-width: 90%; }

/* ---------------- FINAL CTA ---------------- */
.cta-section { padding: clamp(40px, 6vw, 80px) 0; }
.cta-band { position: relative; overflow: hidden; background: var(--bg-deep); border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px); text-align: center; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(50% 120% at 50% -10%, oklch(0.55 0.13 230 / 0.45) 0%, transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--surface); font-size: clamp(28px, 4vw, 46px); margin: 18px auto; max-width: 16ch; }
.cta-band p { color: oklch(0.82 0.01 245); font-size: clamp(16px, 1.8vw, 19px); max-width: 52ch; margin: 0 auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.cta-mail { background: oklch(1 0 0 / 0.08); color: var(--surface); border: 1px solid oklch(1 0 0 / 0.18); }
.cta-mail:hover { background: oklch(1 0 0 / 0.14); }

/* ---------------- CONTACT ---------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.contact-line { display: flex; align-items: center; gap: 15px; padding: 18px 20px; }
.cl-k { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.contact-line strong { font-family: var(--body); font-weight: 500; font-size: 15.5px; color: var(--ink); }
.contact-form-wrap { padding: clamp(24px, 3vw, 34px); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-label { font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.field input, .field textarea, .field select {
  font-family: var(--body); font-size: 15px; color: var(--ink); background: var(--bg-tint);
  border: 1px solid var(--line-2); border-radius: 10px; padding: 12px 14px; width: 100%; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 3px var(--accent-soft); }
.field.err input, .field.err textarea, .field.err select { border-color: oklch(0.58 0.16 25); }
.field-msg { font-size: 12.5px; color: oklch(0.55 0.16 25); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; }
.select-ico { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.form-submit { justify-content: center; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--ink-3); line-height: 1.5; }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; padding: 40px 20px; }
.success-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.form-success p { font-size: 17px; color: var(--ink); max-width: 36ch; line-height: 1.55; }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--bg-deep); color: oklch(0.78 0.01 245); padding: clamp(56px, 7vw, 80px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid oklch(1 0 0 / 0.08); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-desc { font-size: 14.5px; line-height: 1.65; max-width: 320px; color: oklch(0.72 0.01 245); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.soc { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: oklch(0.78 0.01 245); border: 1px solid oklch(1 0 0 / 0.14); border-radius: 999px; padding: 6px 13px; transition: all 0.2s var(--ease); }
.soc:hover { border-color: var(--accent); color: var(--surface); background: oklch(1 0 0 / 0.04); }
.footer-col h4 { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--surface); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: oklch(0.74 0.01 245); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--surface); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom span { font-size: 13px; color: oklch(0.64 0.01 245); }
.footer-note { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; }

/* ---------------- MODAL ---------------- */
.modal-overlay { position: fixed; inset: 0; z-index: 80; background: oklch(0.2 0.02 245 / 0.5); backdrop-filter: blur(4px); display: flex; align-items: flex-end; justify-content: center; padding: 0; }
.modal { background: var(--bg); width: 100%; max-width: 760px; max-height: 90vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; display: flex; flex-direction: column; animation: slideUp 0.35s var(--ease); }
@media (min-width: 720px) { .modal-overlay { align-items: center; padding: 24px; } .modal { border-radius: var(--radius-lg); } }
@keyframes slideUp { from { transform: translateY(14px); } }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 28px 30px 18px; border-bottom: 1px solid var(--line); }
.modal-head h2 { font-size: 25px; }
.modal-updated { display: block; margin-top: 8px; }
.modal-close { border: 1px solid var(--line-2); background: var(--surface); color: var(--ink); border-radius: 10px; width: 40px; height: 40px; cursor: pointer; display: grid; place-items: center; flex: none; transition: all 0.2s var(--ease); }
.modal-close:hover { border-color: var(--ink-3); }
.modal-body { padding: 24px 30px 36px; overflow-y: auto; }
.modal-intro { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; margin-bottom: 26px; }
.legal-sec { margin-bottom: 24px; }
.legal-sec h3 { font-size: 17px; margin-bottom: 10px; }
.legal-sec p { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; margin-bottom: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .value-grid, .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .sw-grid { grid-template-columns: repeat(2, 1fr); gap: 4px 32px; }
  .proc-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 14px; }
  .ben-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .hero-grid, .about-grid, .eq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .about-cards { margin-top: 4px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .value-grid, .ben-grid, .eq-segs, .form-row { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .sw-grid { grid-template-columns: 1fr; gap: 0; }
  .proc-grid { grid-template-columns: 1fr; gap: 24px; }
  .proc-step { padding-top: 0; padding-left: 28px; }
  .proc-step::before { left: 4px; top: 4px; bottom: -24px; right: auto; width: 1px; height: auto; }
  .proc-step:last-child::before { display: none; }
  .proc-step::after { left: 0; top: 5px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 100px; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------------- Generated imagery (hero + equipment) ---------------- */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  background: var(--bg-tint);
  line-height: 0;
  aspect-ratio: 4 / 3.4;
}
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: left center; }
/* Compact glassy capabilities panel floats over the bottom of the hero photo */
.hero-visual .hero-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  background: oklch(1 0 0 / 0.86);
  backdrop-filter: saturate(1.3) blur(14px);
  border: 1px solid oklch(1 0 0 / 0.6);
  box-shadow: 0 8px 30px oklch(0.3 0.04 245 / 0.18);
}
.hero-visual .hero-panel-top { padding-bottom: 10px; }
.hero-visual .hero-row { padding: 6px 2px; }
.hero-visual { margin-bottom: 0; }

.eq-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-md);
  line-height: 0;
  background: var(--bg-tint);
}
.eq-photo img { width: 100%; height: auto; display: block; object-fit: cover; }

@media (max-width: 860px) {
  .hero-visual .hero-panel { position: static; margin-top: 14px; left: 0; right: 0; bottom: 0; }
  .hero-visual { margin-bottom: 0; }
}
