/* ==========================================================================
   ELECTRO DIGITAL BOIS — Design tokens
   Palette: electric blue (security/tech) + amber orange (craft/energy) + white
   Signature: "viewfinder" corner brackets (surveillance) meet a fine
   blueprint grid (technical drawing), used across cards & hero imagery.
   Type: Space Grotesk (display) / Inter (body) / IBM Plex Mono (labels, specs)
   ========================================================================== */

:root {
  --blue: #3947C4;
  --blue-dark: #131A4A;
  --blue-deep: #0B0F30;
  --orange: #F5941F;
  --orange-light: #FFC168;
  --white: #FFFFFF;
  --off-white: #F6F7FB;
  --ink: #12142B;
  --ink-soft: #565A78;
  --line: rgba(18, 20, 43, 0.10);
  --line-light: rgba(255, 255, 255, 0.16);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 2px;
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- Eyebrow / mono labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  max-width: 14ch;
}
h2 .accent { color: var(--blue); }
p.lede { font-size: 17px; color: var(--ink-soft); max-width: 54ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--blue-deep); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line-light); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 15, 48, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
}
.logo .mark {
  width: 34px; height: 34px;
  position: relative;
  flex-shrink: 0;
}
.logo .mark svg { width: 100%; height: 100%; }
.logo small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn { padding: 11px 20px; font-size: 13.5px; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--blue-deep);
  color: var(--white);
  overflow: hidden;
  padding-top: 78px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 20%, transparent 75%);
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(57,71,196,0.55), transparent 70%);
  filter: blur(10px);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  color: var(--white);
  max-width: 13ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p.lede { color: rgba(255,255,255,0.72); margin: 22px 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
}
.hero-stats .stat span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* Viewfinder frame — the signature element */
.viewfinder {
  position: relative;
  border: 1px solid var(--line-light);
  padding: 18px;
}
.viewfinder::before, .viewfinder::after,
.viewfinder .corner-tl, .viewfinder .corner-br {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--orange);
  border-style: solid;
}
.viewfinder::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.viewfinder::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.viewfinder .corner-tl { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.viewfinder .corner-br { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }

.hero-visual { position: relative; }
.hero-visual .viewfinder { background: rgba(255,255,255,0.03); }
.hero-visual .rec-tag {
  position: absolute;
  top: 34px; left: 34px;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(11,15,48,0.6);
  padding: 5px 10px;
  z-index: 3;
}
.rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FF4D4D;
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 420px;
}
.hero-photo-grid .ph { grid-row: span 2; }

/* ---------- Photo placeholders (used until real photos are dropped in) ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex;
  align-items: flex-end;
  min-height: 140px;
}
.ph.orange-tone { background: linear-gradient(135deg, var(--orange) 0%, #C96A00 100%); }
.ph.ink-tone { background: linear-gradient(135deg, #2A2E52 0%, var(--blue-deep) 100%); }
.ph.light-tone { background: linear-gradient(135deg, #E7EAF7 0%, #CDD3EE 100%); }
.ph img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}
.ph-label {
  position: relative; z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding: 10px 12px;
  text-transform: uppercase;
}
.ph.light-tone .ph-label { color: var(--blue-dark); }
.ph-icon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  opacity: 0.55;
}
.ph-icon svg { width: 22px; height: 22px; stroke: white; }
.ph.light-tone .ph-icon svg { stroke: var(--blue-dark); }

/* ---------- Section scaffolding ---------- */
section { padding: 110px 0; }
.section-off { background: var(--off-white); }
.section-dark { background: var(--blue-deep); color: var(--white); }
.section-dark .ink-soft { color: rgba(255,255,255,0.6); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-dark h2, .section-dark .eyebrow { color: var(--white); }
.section-dark .eyebrow { color: var(--orange-light); }
.section-dark h2 .accent { color: var(--orange-light); }
.section-dark p.lede { color: rgba(255,255,255,0.65); }

/* ---------- Intro / trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust-bar .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.trust-item svg { width: 17px; height: 17px; stroke: var(--orange); flex-shrink: 0; }

/* ---------- Intro block ---------- */
.intro-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.intro-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.intro-list .num {
  font-family: var(--font-mono);
  color: var(--orange);
  font-size: 13px;
}
.intro-list h4 { font-size: 17px; margin: 6px 0 6px; }
.intro-list p { color: var(--ink-soft); font-size: 15px; max-width: 44ch; }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--white);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.2s ease;
  position: relative;
}
.service-card:hover { background: var(--off-white); }
.service-card .icon-wrap {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  color: var(--blue);
}
.service-card .icon-wrap svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 18px; }
.service-card p { font-size: 14px; color: var(--ink-soft); flex-grow: 1; }
.service-card .tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.service-card .tag-list span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-card .card-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--blue);
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase;
}
.service-card .card-link svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- Gallery / projects ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card { position: relative; }
.project-card .ph { aspect-ratio: 4/3; }
.project-card .meta { padding-top: 14px; }
.project-card .meta .eyebrow { margin-bottom: 6px; }
.project-card h4 { font-size: 16.5px; }

@media (max-width: 900px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .project-grid { grid-template-columns: 1fr; }
}

/* Filter pills */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-pill {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.filter-pill.active, .filter-pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ---------- Process steps ---------- */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 1px;
  background: var(--line-light);
}
.process-step { padding-right: 24px; position: relative; }
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  background: var(--blue-deep);
  display: inline-block;
  padding-right: 14px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.process-step h4 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .process-row { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-row::before { display: none; }
}

/* ---------- Testimonials ---------- */
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
  background: var(--white);
}
.testi-card .stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: var(--ink); margin-bottom: 22px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.testi-who b { display: block; font-size: 14px; }
.testi-who span { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft); }

@media (max-width: 900px) { .testi-track { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--blue-deep);
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--blue-deep); max-width: 16ch; }
.cta-band .btn-primary { background: var(--blue-deep); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--blue); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-dark-outline { border: 1px solid var(--blue-deep); color: var(--blue-deep); }
.btn-dark-outline:hover { background: var(--blue-deep); color: var(--white); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  border-radius: var(--radius);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } .form-grid .field { grid-column: 1 / -1; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-light);
}
.footer-grid .logo { margin-bottom: 16px; }
.footer-grid p { font-size: 14px; max-width: 32ch; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 28px; height: 28px; fill: white; }

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: var(--blue-deep);
  color: var(--white);
  padding: 190px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a:hover { color: var(--orange-light); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.6vw, 52px); max-width: 16ch; }
.page-hero p.lede { color: rgba(255,255,255,0.68); margin-top: 18px; }

/* ---------- Sub-nav for detail pages ---------- */
.subnav {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.subnav .wrap { display: flex; gap: 30px; overflow-x: auto; }
.subnav a {
  padding: 18px 0;
  font-size: 13.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.subnav a:hover, .subnav a.active { color: var(--blue); border-color: var(--orange); }

/* ---------- Feature split rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature-row.reverse .feature-visual { order: 2; }
.feature-row .eyebrow { margin-bottom: 16px; }
.feature-row ul.checklist { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.feature-row ul.checklist li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-soft); }
.feature-row ul.checklist svg { width: 18px; height: 18px; stroke: var(--orange); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.reverse .feature-visual { order: 0; }
}

/* ---------- Utility ---------- */
.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Responsive: header/hero ---------- */
@media (max-width: 980px) {
  .main-nav ul, .nav-actions .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .intro-block { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

.mobile-nav {
  position: fixed;
  inset: 78px 0 0 0;
  background: var(--blue-deep);
  z-index: 99;
  padding: 30px 32px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: white;
  border-bottom: 1px solid var(--line-light);
}
.mobile-nav .btn { margin-top: 20px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(11,15,48,0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 26px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid var(--line-light);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.lightbox-close:hover { background: rgba(255,255,255,0.08); }
[data-lightbox] { cursor: zoom-in; }

/* ---------- Value / advantage cards (solar, etc.) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { border: 1px solid var(--line); padding: 30px 26px; }
.value-card .icon-wrap { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--orange); margin-bottom: 18px; }
.value-card .icon-wrap svg { width: 22px; height: 22px; }
.value-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-soft); }
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Team / about ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card .ph { aspect-ratio: 1; margin-bottom: 14px; }
.team-card h4 { font-size: 15.5px; margin-bottom: 2px; }
.team-card span { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
@media (max-width: 800px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.value-strip { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.value-strip div b { display: block; font-family: var(--font-display); font-size: 30px; color: var(--blue); }
.value-strip div span { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; }
.contact-info-card { border: 1px solid var(--line); padding: 30px; margin-bottom: 18px; }
.contact-info-card h4 { font-size: 15px; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 14.5px; color: var(--ink-soft); }
.map-embed { border: 1px solid var(--line); overflow: hidden; margin-top: 18px; height: 260px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-display); font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--orange); font-size: 22px; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 14px; color: var(--ink-soft); font-size: 14.5px; max-width: 60ch; }
