/* ============================================================
   Light Bridge Electrical — Design System
   ============================================================ */

:root {
  --navy-950: #070d18;
  --navy-900: #0a1322;
  --navy-800: #0f1b30;
  --navy-700: #16263f;
  --navy-600: #1f3252;

  --amber: #ffb91c;
  --amber-dark: #e6a510;
  --amber-soft: #fff4d6;

  --ink: #15202f;
  --muted: #5b6b7e;
  --line: #e3e9f1;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(10, 19, 34, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 19, 34, 0.16);

  --container: 1160px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

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

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.18rem; }

.lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--amber);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(255, 185, 28, 0.35);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 185, 28, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }

.btn-dark {
  background: var(--navy-900);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }

.btn-sm { padding: 11px 20px; font-size: 0.92rem; }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy-950);
  color: #cdd8e6;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--amber); }
.topbar-contacts { display: flex; gap: 22px; align-items: center; }
.topbar-contacts svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; color: var(--amber); }
.topbar-area { display: flex; align-items: center; gap: 6px; }
.topbar-area svg { width: 14px; height: 14px; color: var(--amber); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--amber);
  display: grid;
  place-items: center;
  flex: none;
}
.logo-mark svg { width: 24px; height: 24px; color: var(--navy-900); }
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.logo-text span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--amber); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: #d6deea;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--amber); }

.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255, 185, 28, 0.16), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(31, 80, 154, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero .container { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 185, 28, 0.14);
  border: 1px solid rgba(255, 185, 28, 0.4);
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 { max-width: 700px; }
.hero h1 em { font-style: normal; color: var(--amber); }

.hero .lead { color: #b9c5d6; margin-top: 18px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note { margin-top: 16px; font-size: 0.88rem; color: #93a3b8; display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 15px; height: 15px; color: var(--amber); }

/* ---------- Trust strip ---------- */

.trust-strip {
  background: var(--navy-950);
  color: #fff;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { width: 30px; height: 30px; color: var(--amber); flex: none; }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { font-size: 0.82rem; color: #93a3b8; }

/* ---------- Sections ---------- */

.section { padding: clamp(64px, 8vw, 100px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark .section-head p, .section-dark .lead { color: #b9c5d6; }

/* ---------- Service cards ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 185, 28, 0.6);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--amber-soft);
  display: grid;
  place-items: center;
}
.card-icon svg { width: 26px; height: 26px; color: var(--amber-dark); }

.card p { color: var(--muted); font-size: 0.95rem; flex: 1; }

.card-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
.card-link:hover svg { transform: translateX(4px); }
.card-link:hover { color: var(--amber-dark); }

/* ---------- Values ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.value-item svg { width: 28px; height: 28px; color: var(--amber); margin-bottom: 14px; }
.value-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-item p { font-size: 0.9rem; color: #b9c5d6; }

/* ---------- Process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
}
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--amber);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.gallery-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.gallery-visual svg { width: 56px; height: 56px; color: rgba(255, 255, 255, 0.85); transform: translateY(-16px); }

.g-1 { background: linear-gradient(150deg, #16263f, #1f3a63); }
.g-2 { background: linear-gradient(150deg, #1c2b3a, #2c4a66); }
.g-3 { background: linear-gradient(150deg, #14304a, #1d5a7a); }
.g-4 { background: linear-gradient(150deg, #2b2410, #6b5618); }
.g-5 { background: linear-gradient(150deg, #1a2436, #3a3f6b); }
.g-6 { background: linear-gradient(150deg, #331d14, #7a4020); }
.g-7 { background: linear-gradient(150deg, #112a26, #1e5a4e); }
.g-8 { background: linear-gradient(150deg, #251a33, #4e3a78); }

.gallery-info {
  position: relative;
  width: 100%;
  padding: 18px 18px 16px;
  background: linear-gradient(transparent, rgba(7, 13, 24, 0.92));
  color: #fff;
}
.gallery-info h3 { font-size: 0.98rem; margin-bottom: 3px; }
.gallery-info p { font-size: 0.8rem; color: #b9c5d6; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(255, 185, 28, 0.18), transparent 60%),
    var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { max-width: 560px; }
.cta-band p { color: #b9c5d6; margin-top: 10px; max-width: 520px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Service detail (services page) ---------- */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-of-type { border-bottom: 0; }
.service-detail.reverse > .service-visual { order: 2; }

.service-visual {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
}
.service-visual svg { width: 72px; height: 72px; }

.service-copy h2 { margin-bottom: 12px; }
.service-copy > p { color: var(--muted); margin-bottom: 18px; }

.check-list { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.97rem; }
.check-list svg { width: 19px; height: 19px; color: var(--amber-dark); flex: none; margin-top: 3px; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: clamp(48px, 7vw, 84px) 0;
}
.page-hero .lead { color: #b9c5d6; margin-top: 14px; }

/* ---------- About ---------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split-copy p { color: var(--muted); margin-bottom: 16px; }

.stat-panel {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid;
  gap: 26px;
}
.stat-panel .stat strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--amber); line-height: 1.1; }
.stat-panel .stat span { color: #b9c5d6; font-size: 0.92rem; }

/* ---------- Placeholder notice (accreditations / testimonials) ---------- */

.placeholder-box {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 0.93rem;
  background: #fbfcfe;
}

/* ---------- Quote page ---------- */

.quote-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.quote-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field label .req { color: var(--amber-dark); }
.form-field label .opt { color: var(--muted); font-weight: 400; font-size: 0.82rem; }

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 185, 28, 0.22);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; }
.form-privacy { margin-top: 14px; font-size: 0.82rem; color: var(--muted); text-align: center; }

.form-success {
  display: none;
  background: #ecfbf1;
  border: 1.5px solid #59c982;
  color: #14532d;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 22px;
  font-weight: 600;
}
.form-success.visible { display: block; }

.quote-aside { display: grid; gap: 22px; }

.aside-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
}
.aside-card h3 { margin-bottom: 16px; }
.aside-contact { list-style: none; display: grid; gap: 14px; }
.aside-contact li { display: flex; gap: 12px; align-items: center; }
.aside-contact svg { width: 19px; height: 19px; color: var(--amber); flex: none; }
.aside-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.aside-contact a:hover { color: var(--amber); }
.aside-contact span.label { display: block; font-size: 0.78rem; color: #93a3b8; font-weight: 400; }

.aside-points { list-style: none; display: grid; gap: 12px; }
.aside-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--muted); }
.aside-points svg { width: 18px; height: 18px; color: var(--amber-dark); flex: none; margin-top: 3px; }
.aside-card.light { background: #fff; border: 1px solid var(--line); color: var(--ink); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: #93a3b8;
  padding: 64px 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: #93a3b8; text-decoration: none; }
.footer-grid a:hover { color: var(--amber); }
.footer-about p { margin-top: 14px; max-width: 300px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--amber); flex: none; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* ---------- Sticky mobile CTA bar ---------- */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px 10px; font-size: 0.95rem; }

/* ---------- Hero media background ---------- */

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 13, 24, 0.93) 0%, rgba(10, 19, 34, 0.82) 45%, rgba(10, 19, 34, 0.55) 100%);
}

/* ---------- WhatsApp button ---------- */

.btn-whatsapp {
  background: #1fb355;
  color: #fff;
  box-shadow: 0 8px 22px rgba(31, 179, 85, 0.35);
}
.btn-whatsapp:hover {
  background: #189a47;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 179, 85, 0.45);
}

/* ---------- Emergency strip ---------- */

.emergency-strip {
  background: var(--amber);
  color: var(--navy-900);
  padding: 14px 0;
}
.emergency-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  font-weight: 700;
}
.emergency-strip svg { width: 20px; height: 20px; flex: none; }
.emergency-strip a {
  color: var(--navy-900);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.emergency-strip a:hover { text-decoration-thickness: 2px; }

/* ---------- Photo cards (gallery / service visuals) ---------- */

.gallery-card img,
.service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-visual { position: relative; overflow: hidden; }
.gallery-card:hover img,
.service-visual:hover img { transform: scale(1.06); }

/* ---------- Pricing guide ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 185, 28, 0.6);
}
.price-card h3 { font-size: 1rem; margin-bottom: 6px; }
.price-card .price { font-size: 1.7rem; font-weight: 800; color: var(--navy-900); }
.price-card .price span { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.price-card p { font-size: 0.86rem; color: var(--muted); margin-top: 8px; }
.pricing-note { margin-top: 22px; font-size: 0.88rem; color: var(--muted); text-align: center; }

/* ---------- Testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { color: var(--amber-dark); letter-spacing: 2px; font-size: 1.05rem; }
.testimonial blockquote { font-size: 0.97rem; color: var(--ink); flex: 1; }
.testimonial cite { font-style: normal; font-size: 0.88rem; font-weight: 700; color: var(--muted); }

/* ---------- Areas covered ---------- */

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-chips span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d6deea;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
}
.areas-note { margin-top: 18px; color: #93a3b8; font-size: 0.92rem; }

/* ---------- FAQ accordion ---------- */

.faq-list { max-width: 780px; display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 18px 22px;
  color: var(--ink);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--amber-dark);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Meet the team ---------- */

.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1020px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar-area { display: none; }

  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .header-cta .btn { display: none; }
  .nav-open .header-cta { display: none; }

  .split, .quote-layout, .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse > .service-visual { order: 0; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .site-footer { padding-bottom: 8px; }
}

@media (max-width: 560px) {
  .cards-grid, .values-grid, .process-grid, .gallery-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-contacts { width: 100%; justify-content: space-between; gap: 10px; }
  .topbar-contacts a:nth-child(2) { display: none; }
  .hero-actions .btn { width: 100%; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
}
