/* =========================================================
   Evopac Solutions — shared stylesheet
   Theme: Graphite & Sky (dark), two-tone accent
   Sky-blue = UI accent · Amber = brand/logo + primary CTA
   ========================================================= */

:root {
  --bg:        #1C2128;
  --bg-alt:    #242C36;
  --card:      #2A313B;
  --border:    #2A313B;
  --border-2:  #323b47;
  --heading:   #F2F4F7;
  --body:      #AEB9C7;
  --caption:   #7C8A9C;

  --accent:        #3DA5FF;            /* sky-blue: links, icons, UI */
  --accent-soft:   rgba(61,165,255,0.12);
  --brand:         #FFA53D;            /* amber: logo + primary CTA */
  --brand-hover:   #FFB85F;
  --brand-ink:     #15110A;            /* dark text on amber */

  --maxw: 1200px;
  --radius: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; }

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

/* ---------- Headings & shared text ---------- */
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--heading); letter-spacing: -0.02em; line-height: 1.12; }
h1 { font-weight: 700; font-size: clamp(36px, 5.2vw, 58px); margin: 0 0 24px; }
h2 { font-weight: 700; font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 24px; }
h3 { font-weight: 700; font-size: 21px; letter-spacing: -0.01em; margin: 0 0 12px; }
.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--body); }

section { border-top: 1px solid var(--border); }
section:first-of-type { border-top: none; }
.section { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.section-alt { background: var(--bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 10px;
  transition: background .18s ease, transform .18s ease, color .18s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { background: var(--brand-hover); }
.btn-ghost { color: var(--heading); font-weight: 600; padding-left: 4px; padding-right: 4px; }
.btn-ghost svg path { stroke: var(--accent); }
.btn-outline {
  background: transparent; color: var(--heading);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 11px 20px; font-size: 15px; }

.link-arrow {
  color: var(--accent); font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow svg path { stroke: var(--accent); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(28,33,40,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: none; color: var(--heading); }
.brand .mark { width: 34px; height: 34px; }
.brand .mark svg { width: 100%; height: 100%; }
.brand .wordmark { font-weight: 800; font-size: 22px; letter-spacing: 0.06em; color: var(--heading); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--body); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--heading); }
.nav-links a.active { color: var(--heading); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: none; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; padding: 9px; border-radius: 9px;
}
.nav-toggle span { display: block; height: 2px; background: var(--heading); border-radius: 2px; transition: .25s; }
.nav-toggle span + span { margin-top: 5px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links, .nav .nav-cta {
    position: fixed; top: 67px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    padding: 0 24px; gap: 0; max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav.open .nav-links { max-height: 320px; padding: 12px 24px; }
  .nav.open .nav-cta { top: auto; position: static; max-height: none; background: none; border: none; padding: 0 24px 20px; }
  .nav .nav-cta { display: none; }
  .nav.open .nav-cta { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero .wrap { padding-top: clamp(56px, 9vw, 104px); padding-bottom: clamp(56px, 9vw, 104px); }
.hero-grid { display: flex; flex-wrap: wrap; gap: 56px; align-items: center; }
.hero-copy { flex: 1 1 440px; min-width: 300px; }
.hero-copy .lead { max-width: 540px; margin: 0 0 36px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-visual { flex: 1 1 380px; min-width: 300px; display: flex; justify-content: center; }

/* dashboard mockup */
.mock { position: relative; width: 100%; max-width: 440px; }
.mock-glow { position: absolute; inset: -24px; background: radial-gradient(circle at 70% 30%, rgba(61,165,255,0.18), transparent 60%); filter: blur(8px); }
.mock-card { position: relative; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
.mock-dots { display: flex; gap: 7px; margin-bottom: 16px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: #3a4452; }
.mock-body { display: flex; gap: 14px; }
.mock-side { flex: none; width: 56px; display: flex; flex-direction: column; gap: 10px; }
.mock-side span { height: 10px; border-radius: 5px; background: var(--card); }
.mock-side span:first-child { height: 34px; border-radius: 8px; background: var(--accent); }
.mock-main { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.mock-stats { display: flex; gap: 10px; }
.mock-stat { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 9px; padding: 12px; }
.mock-stat .lbl { display: block; height: 8px; width: 50%; border-radius: 4px; background: #2f3a47; margin-bottom: 10px; }
.mock-stat .val { display: block; color: var(--heading); font-weight: 700; font-size: 20px; }
.mock-stat .val.accent { color: var(--accent); }
.mock-chart { background: var(--bg); border: 1px solid var(--border); border-radius: 9px; padding: 14px; display: flex; align-items: flex-end; gap: 8px; height: 96px; }
.mock-chart span { flex: 1; background: var(--card); border-radius: 4px; }
.mock-chart span.hi { background: var(--accent); }
.mock-lines { display: flex; flex-direction: column; gap: 8px; }
.mock-lines span { height: 9px; border-radius: 5px; background: var(--card); }

/* ---------- Statement / who-we-are ---------- */
.statement { max-width: 820px; }
.statement p.big { margin: 0 0 28px; color: var(--heading); font-weight: 600; font-size: clamp(22px, 3vw, 30px); line-height: 1.4; letter-spacing: -0.01em; }

/* ---------- Card grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: 32px;
}
.card h3 { margin-bottom: 12px; }
.card p { margin: 0; color: var(--body); font-size: 16px; }
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-soft); margin-bottom: 22px;
}
.icon-badge svg { width: 24px; height: 24px; fill: none; stroke: var(--accent); }
.icon-badge svg [fill]:not([fill="none"]) { fill: var(--accent); }

/* ---------- Stats row ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 24px; }
.stat { flex: 1 1 180px; background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 28px; }
.stat .num { color: var(--heading); font-weight: 800; font-size: clamp(30px, 4vw, 44px); line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { display: block; margin-top: 10px; color: var(--caption); font-size: 14px; }

/* ---------- Credibility / clients ---------- */
.cred { text-align: center; }
.cred .eyebrow { text-align: center; color: var(--caption); }
.client-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; max-width: 860px; margin: 0 auto; }
.client-list span { color: var(--body); font-weight: 600; font-size: 16px; }
.client-list span::after { content: "·"; margin-left: 28px; color: var(--border-2); }
.client-list span:last-child::after { content: ""; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band .box {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 14px;
  padding: clamp(36px, 5vw, 56px);
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between;
}
.cta-band h2 { margin: 0; max-width: 620px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 24px; }
.step .n { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); font-weight: 700; margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 14px; color: var(--caption); }

/* ---------- Solution / detail blocks ---------- */
.block { background: var(--card); border: 1px solid var(--border-2); border-radius: 14px; padding: clamp(28px, 4vw, 44px); margin-bottom: 28px; }
.block .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; }
.block h2 { font-size: clamp(24px, 3vw, 32px); }
.feature-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px 28px; }
.feature-list li { position: relative; padding-left: 28px; color: var(--body); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 4px; background: var(--accent-soft); border: 1px solid var(--accent); }
.meta-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 22px; }
.meta-row .meta { font-size: 14px; }
.meta-row .meta b { color: var(--heading); display: block; margin-bottom: 2px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.field { margin-bottom: 18px; }
.field label { display: block; color: var(--heading); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-2); border-radius: 10px;
  padding: 13px 14px; color: var(--heading); font-family: inherit; font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.office { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.office h3 { font-size: 18px; margin-bottom: 12px; }
.office p { margin: 0 0 10px; font-size: 15px; }
.office a { color: var(--accent); }
.form-note { font-size: 13px; color: var(--caption); margin-top: 4px; }
.form-status { padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; font-size: 15px; display: none; }
.form-status.ok { display: block; background: rgba(61,165,255,0.12); border: 1px solid var(--accent); color: var(--heading); }
.form-status.err { display: block; background: rgba(255,93,93,0.12); border: 1px solid #ff5d5d; color: var(--heading); }
.whatsapp, .office a.whatsapp { background: #25D366; color: #000; }
.whatsapp:hover, .office a.whatsapp:hover { background: #34e177; color: #000; }
.whatsapp svg { fill: #000; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero .wrap { padding-top: clamp(48px, 7vw, 80px); padding-bottom: clamp(32px, 5vw, 48px); }
.page-hero p.lead { max-width: 680px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); }
.site-footer .wrap { padding-top: clamp(48px, 6vw, 72px); padding-bottom: 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--heading); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; margin: 0 0 14px; }
.footer-grid p, .footer-grid a { color: var(--body); font-size: 14px; }
.footer-grid .muted { color: var(--caption); max-width: 250px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--heading); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; color: var(--caption); font-size: 13px; }

/* ---------- Animated loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-cube { width: 84px; height: 84px; }
.loader-cube .face { stroke: var(--heading); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; fill: none;
  stroke-dasharray: var(--len, 200); stroke-dashoffset: var(--len, 200);
  animation: draw 1.15s ease forwards; }
.loader-cube .spokes { stroke: var(--heading); stroke-width: 3.2; stroke-linecap: round; fill: none;
  stroke-dasharray: 120; stroke-dashoffset: 120; animation: draw 0.7s ease 0.9s forwards; }
.loader-cube .top { fill: var(--brand); opacity: 0; animation: fadein 0.5s ease 0.55s forwards; }
.loader-cube { animation: settle 0.8s ease 1.5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadein { to { opacity: 1; } }
@keyframes settle { 0% { transform: scale(1); } 40% { transform: scale(1.06); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .loader-cube .face, .loader-cube .spokes { animation: none; stroke-dashoffset: 0; }
  .loader-cube .top { animation: none; opacity: 1; }
  .loader-cube { animation: none; }
}

/* ---------- Submission dialog ---------- */
.modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none; align-items: center; justify-content: center; padding: 24px;
  background: rgba(10,13,17,0.66); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .35s ease;
}
.modal.open { display: flex; opacity: 1; }
.modal-card {
  background: var(--card); border: 1px solid var(--border-2); border-radius: 16px;
  padding: 40px 34px; max-width: 420px; width: 100%; text-align: center;
  box-shadow: 0 40px 80px -24px rgba(0,0,0,0.7);
  transform: translateY(14px) scale(.96); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
.modal.open .modal-card { transform: translateY(0) scale(1); opacity: 1; }
.modal-cube { width: 64px; height: 64px; margin: 0 auto 22px; display: block; }
.modal-cube .face, .modal-cube .spokes {
  stroke: var(--heading); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.modal-cube .top { fill: var(--brand); opacity: 0; }
.modal.open .modal-cube .top { animation: fadein .6s ease .25s forwards; }
.modal-card.err .modal-cube .top { fill: #ff5d5d; }
.modal-card h3 { margin: 0 0 10px; font-size: 22px; }
.modal-card p { margin: 0 0 26px; color: var(--body); font-size: 15px; }
.modal-card p a { color: var(--accent); }
.modal-card .btn { width: 100%; justify-content: center; }
@media (prefers-reduced-motion: reduce) {
  .modal, .modal-card { transition: none; }
  .modal.open .modal-cube .top { animation: none; opacity: 1; }
}

/* ---------- Keyword emphasis ---------- */
strong { color: var(--heading); font-weight: 600; }
.card p strong { color: var(--heading); }

/* ---------- Status badges (AI cards) ---------- */
.badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.badge-live { color: var(--brand); background: rgba(255,165,61,0.12); }
.badge-next { color: var(--accent); background: var(--accent-soft); }

/* ---------- Coverage / regions ---------- */
.regions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 720px; margin: 0 auto; }
.region { color: var(--heading); font-weight: 600; font-size: 15px; background: var(--card); border: 1px solid var(--border-2); border-radius: 999px; padding: 9px 18px; }
.region.home { border-color: var(--brand); }

/* ---------- Data-driven client list ---------- */
#clientList { min-height: 24px; }
#clientList .pending { color: var(--caption); font-size: 14px; }
.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; max-width: 920px; margin: 0 auto; }
.client-chip { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 20px 22px; text-align: left; transition: border-color .18s, transform .18s; }
.client-chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.client-chip .name { display: block; color: var(--heading); font-weight: 700; font-size: 16px; }
.client-chip .sector { display: block; color: var(--caption); font-size: 13px; margin-top: 4px; }
/* Industry-grouped solutions */
.industry-group { margin-bottom: 44px; }
.industry-group:last-child { margin-bottom: 0; }
.industry-name { color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border-2); }
.solution-chip { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 22px; text-align: left; }
.solution-chip .cust { display: block; color: var(--heading); font-weight: 700; font-size: 17px; }
.solution-chip .proj { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.solution-chip .proj:first-of-type { }
.solution-chip .proj-name { display: block; color: var(--accent); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.solution-chip .proj-desc { margin: 0; color: var(--body); font-size: 14px; line-height: 1.55; }

/* ---------- Captcha ---------- */
.captcha-q { display: flex; align-items: center; gap: 12px; }
.captcha-q .q { color: var(--heading); font-weight: 600; background: var(--card); border: 1px solid var(--border-2); border-radius: 10px; padding: 12px 16px; font-size: 15px; }
.captcha-q input { max-width: 120px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-zoom { opacity: 0; transform: translateY(26px) scale(.97); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-zoom.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-zoom { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Team cards with photo / monogram ---------- */
.team-grid .card { padding: 0; overflow: hidden; }
.team-media { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 18%; display: block; background: var(--bg-alt); }
.team-avatar { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1 / 1;
  background: radial-gradient(120% 120% at 30% 20%, #2f3744, #232a33);
  color: var(--accent); font-weight: 800; font-size: clamp(40px, 7vw, 64px); letter-spacing: 0.04em; }
.team-body { padding: 26px 28px 30px; }
.team-body h3 { margin-bottom: 6px; }

/* ---------- Hero screenshot frame ---------- */
.shot-frame { position: relative; width: 100%; max-width: 540px; border: 1px solid var(--border-2);
  border-radius: 14px; overflow: hidden; background: var(--bg-alt); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
.shot-frame .bar { display: flex; gap: 7px; padding: 12px 14px; background: var(--card); border-bottom: 1px solid var(--border); }
.shot-frame .bar span { width: 10px; height: 10px; border-radius: 50%; background: #3a4452; }
.shot-frame img { width: 100%; display: block; }

/* ---------- Work screenshot gallery ---------- */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; margin: 0; padding: 0; }
.shot { margin: 0; border: 1px solid var(--border-2); border-radius: 12px; overflow: hidden; background: var(--bg-alt);
  transition: border-color .18s, transform .18s; }
.shot:hover { border-color: var(--accent); transform: translateY(-3px); }
.shot .shot-link { display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 10;
  background: var(--bg); padding: 10px; overflow: hidden; position: relative; }
.shot .shot-img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; transition: transform .35s ease; }
.shot .shot-link:hover .shot-img { transform: scale(1.04); }
.shot .zoom-hint { position: absolute; top: 10px; right: 10px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,24,30,0.78); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 10px;
  border-radius: 8px; opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.shot .shot-link:hover .zoom-hint { opacity: 1; }
.shot figcaption { padding: 14px 18px; font-size: 14px; color: var(--caption); border-top: 1px solid var(--border); }
.shot figcaption b { color: var(--heading); font-weight: 600; }

/* ---------- Solution block logos ---------- */
.block-logo { display: flex; align-items: center; margin-bottom: 18px; }
.block-logo img { height: 46px; width: auto; max-width: 100%; }

/* ---------- Industries: 2-column card grid with icons ---------- */
#industries { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 720px) { #industries { grid-template-columns: 1fr; } }
.industry-group { margin: 0; background: var(--card); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 28px; }
.industry-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.industry-head .icon-badge { margin-bottom: 0; width: 44px; height: 44px; flex: none; }
.industry-head .icon-badge svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); }
.industry-name { margin: 0; color: var(--heading); font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  text-transform: none; border: none; padding: 0; }
.industry-group .sol { padding: 12px 0; border-top: 1px solid var(--border); }
.industry-group .sol:first-of-type { border-top: none; padding-top: 4px; }
.industry-group .sol .proj-name { display: block; color: var(--accent); font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.industry-group .sol .proj-desc { margin: 0; color: var(--body); font-size: 14px; line-height: 1.55; }

/* ---------- Technologies grid (About) ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.tech { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: 30px 18px; text-align: center; transition: border-color .18s, transform .18s; }
.tech:hover { border-color: var(--accent); transform: translateY(-3px); }
.tech .tech-logo { height: 44px; width: auto; display: block; }
.tech .tech-chip { display: inline-flex; align-items: center; justify-content: center; background: #fff;
  border-radius: 11px; padding: 8px; width: 52px; height: 52px; }
.tech .tech-chip img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; }
.tech .t-name { color: var(--heading); font-weight: 600; font-size: 14px; }
.tech .t-sub { color: var(--caption); font-size: 12px; margin-top: -8px; }

/* utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.maxw-760 { max-width: 760px; }
