/* Eclipsun Solar — Premium Design System */
:root {
  --gold: #FDB813;
  --navy: #0A2540;
  --blue: #00AEEF;
  --green: #15a36d;
  --ink: #132033;
  --white: #FFFFFF;
  --bg: #f4f7f4;
  --text: #1e293b;
  --muted: #64748b;
  --border: rgba(10, 37, 64, 0.08);
  --glass: rgba(255, 255, 255, 0.82);
  --shadow: 0 20px 54px rgba(19, 32, 51, 0.12);
  --shadow-sm: 0 10px 28px rgba(19, 32, 51, 0.08);
  --radius: 8px;
  --radius-lg: 8px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 88px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(244, 247, 244, 0.95), rgba(255, 255, 255, 0.98) 34rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-narrow { width: min(760px, 92vw); margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(2.1rem, 3.8vw, 3.55rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 2.55vw, 2.45rem); font-weight: 700; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 52ch; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #ffd15c, var(--gold));
  color: #18220a;
  box-shadow: 0 12px 28px rgba(253, 184, 19, 0.26);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(253, 184, 19, 0.34); }
.btn-ghost {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(10px);
}
.btn-outline {
  background: #fff;
  border-color: rgba(19, 32, 51, 0.18);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(19, 32, 51, 0.08);
  box-shadow: 0 10px 30px rgba(19, 32, 51, 0.06);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: #fff;
  border-bottom-color: rgba(19, 32, 51, 0.08);
  box-shadow: 0 12px 32px rgba(19, 32, 51, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}
.logo img {
  width: 156px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-list a, .nav-dropdown-btn {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.site-header.hero-nav .nav-list a,
.site-header.hero-nav .nav-dropdown-btn { color: var(--navy); }
.nav-list a:hover, .nav-list a.active,
.nav-dropdown-btn:hover { color: var(--green); background: rgba(21, 163, 109, 0.08); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  border: 1px solid rgba(19, 32, 51, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
}
.dropdown a:hover { background: var(--bg); color: var(--blue); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; width: 100%; align-items: stretch; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 1rem;
  }
  .has-dropdown.open .dropdown { display: block; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #0b1d18;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(9,27,23,0.95) 0%, rgba(9,27,23,0.78) 42%, rgba(9,27,23,0.35) 72%, rgba(253,184,19,0.12) 100%),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(253,184,19,0.22) 0%, transparent 68%);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 2.75rem 0 3.25rem;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-height: 280px; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.36);
}
.hero-content .lead { color: rgba(255,255,255,0.92); margin-bottom: 1.6rem; font-size: 1.05rem; }
.hero-visual {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.hero .reveal,
.page-hero .reveal,
.hero .reveal.visible {
  opacity: 1;
  transform: none;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.25rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.stat-item {
  min-width: 0;
  min-height: 104px;
  padding: 1rem 0.85rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.stat-item span { display: block; margin-top: 0.55rem; font-size: 0.8125rem; color: rgba(255,255,255,0.74); }
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: #fff; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin: 0.5rem auto 0; }
.section-header p { color: var(--muted); margin-top: 1rem; max-width: 56ch; margin-inline: auto; }

/* Glass cards */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(19, 32, 51, 0.09);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.glass-card h2,
.glass-card h3,
.glass-card p { color: var(--text); }
.glass-card .stat-item span { color: var(--muted) !important; }
.glass-card .stat-item strong { color: var(--navy) !important; }
.glass-card--dark {
  background: rgba(10, 37, 64, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.glass-card--dark h2,
.glass-card--dark h3,
.glass-card--dark p { color: #fff; }

/* Reveal animations */
.reveal {
  opacity: 1;
  transform: none;
}
.js-enabled .reveal {
  opacity: 1;
  transform: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  transition-delay: var(--delay, 0s);
}
.js-enabled .reveal.visible { opacity: 1; transform: translateY(0); }

/* Trusted */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.trusted-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.trusted-item:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 163, 109, 0.25);
  box-shadow: var(--shadow-sm);
}

/* Service cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid rgba(19, 32, 51, 0.09);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card .card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.service-card .card-image::after {
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.18));
}
.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card .card-image::after,
.project-card::after,
.blog-card a::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.service-card:hover .card-image img { transform: scale(1.05); }
.service-card .card-body {
  min-height: 210px;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card > h3,
.service-card > p,
.service-card > .btn {
  margin-left: 2rem;
  margin-right: 2rem;
}
.service-card > h3 { margin-top: 1.6rem; }
.service-card > .btn { margin-bottom: 1.6rem; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 163, 109, 0.22);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,174,239,0.12), rgba(253,184,19,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.service-card .card-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--ink); }
.service-card .card-body p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }

/* Calculator */
.calculator-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .calculator-wrap { grid-template-columns: 1fr; } }
.calculator-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--navy);
}
.calculator-form input,
.calculator-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(19, 32, 51, 0.14);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 1rem;
}
.calculator-results {
  background:
    linear-gradient(145deg, rgba(10, 37, 64, 0.96), rgba(15, 76, 65, 0.96)),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=900&q=80') center/cover;
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 100%;
}
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.result-item strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-head);
  color: var(--gold);
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.why-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(19, 32, 51, 0.09);
  transition: 0.3s;
}
.why-card:hover { border-color: rgba(21, 163, 109, 0.28); box-shadow: 0 12px 36px rgba(21, 163, 109, 0.10); }
.why-card h3 { font-size: 1rem; margin: 0.75rem 0 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--muted); }

/* Projects */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--navy);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(19, 32, 51, 0.09);
  transition: 0.35s;
  position: relative;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(21, 163, 109, 0.2); }
.project-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.project-card-body { padding: 1.25rem; }
.project-card .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

/* Process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(19, 32, 51, 0.09);
}
.process-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.8125rem; color: var(--muted); }

/* Testimonials */
.testimonials-slider { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card .roi { font-size: 0.875rem; color: var(--blue); font-weight: 600; margin-top: 1rem; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.09);
  transition: 0.35s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(21, 163, 109, 0.2); }
.blog-card a { display: block; position: relative; height: 100%; }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.blog-card-body { padding: 1.5rem; }
.blog-card .cat { font-size: 0.75rem; color: var(--blue); font-weight: 600; text-transform: uppercase; }

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.accordion-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  transition: 0.3s;
}
.accordion-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.accordion-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.accordion-item.open .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.accordion-item.open .accordion-panel { max-height: 200px; }
.accordion-panel p { padding-bottom: 1.25rem; color: var(--muted); }

/* CTA band */
.cta-band {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d3a5c 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-band-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(253,184,19,0.15), transparent 60%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 48ch; margin-inline: auto; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); }
.footer-top { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-logo {
  width: 190px;
  height: auto;
  padding: 0.45rem;
  border-radius: var(--radius);
  background: #fff;
}
.footer-brand p { margin: 1rem 0; font-size: 0.9375rem; opacity: 0.85; }
.footer-grid h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.9375rem; }
.footer-grid ul li { margin-bottom: 0.5rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { opacity: 0.8; transition: 0.2s; }
.footer-social a:hover { opacity: 1; color: var(--gold); }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 0.875rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-bottom ul { display: flex; gap: 1.5rem; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, #0b1d18, #0f4c41);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,27,23,0.92), rgba(9,27,23,0.68)),
    var(--page-hero-image, none) center/cover no-repeat;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--white);
  margin: 1rem 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.page-hero .lead { color: rgba(255,255,255,0.92); }
.page-hero .eyebrow { color: var(--gold); }
.breadcrumbs { font-size: 0.875rem; margin-bottom: 1rem; opacity: 0.8; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; list-style: none; padding: 0; margin: 0; }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumbs a:hover { color: var(--gold); }
.page-hero .breadcrumbs,
.page-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.88); }
.page-hero .breadcrumbs a:hover { color: var(--gold); }
.page-hero-content { max-width: 720px; }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}
.quote-wizard input,
.quote-wizard select {
  width: 100%;
  max-width: 420px;
  min-height: 48px;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(19, 32, 51, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  margin-top: 0.8rem;
}
.quote-wizard input:focus,
.quote-wizard select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.calculator-form input:focus,
.calculator-form select:focus {
  outline: 3px solid rgba(21, 163, 109, 0.16);
  border-color: var(--green);
}
.quote-wizard .wizard-panel h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* Quote wizard */
.quote-wizard { max-width: 640px; margin: 0 auto; }
.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.wizard-step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}
.wizard-step-dot.active { background: var(--gold); color: var(--navy); }
.wizard-step-dot.done { background: var(--blue); color: var(--white); }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Detail page hero image */
.detail-hero-media {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 900px;
  box-shadow: var(--shadow);
}
.detail-hero-media img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}
.section-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.section-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.about-stats-card .hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.about-stats-card .stat-item span { color: var(--muted) !important; }
.about-stats-card .stat-item strong { color: var(--navy) !important; font-size: clamp(1.7rem, 2.5vw, 2.15rem); }
.about-stats-card .stat-item {
  align-items: flex-start;
}
.about-stats-card .stat-item {
  background: linear-gradient(145deg, #fff, #f4faf7);
  border: 1px solid rgba(21, 163, 109, 0.12);
  box-shadow: 0 16px 36px rgba(19, 32, 51, 0.08);
}
@media (max-width: 640px) {
  .about-stats-card .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* About timeline */
.timeline { position: relative; padding-left: 2rem; border-left: 2px solid var(--border); }
.timeline-item { margin-bottom: 2rem; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-5px);
}

/* 404 */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.error-page h1 { font-size: 8rem; color: var(--gold); line-height: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; border-radius: var(--radius); }

/* Blog post */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  z-index: 1001;
  width: 0%;
}

/* Benefits detail */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.benefit-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(19, 32, 51, 0.09);
}
.benefit-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}
.benefit-check::after {
  content: '';
  position: absolute;
  left: 7px; top: 4px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Flash messages */
.flash {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.flash-success { background: #d1fae5; color: #065f46; }
.flash-error { background: #fee2e2; color: #991b1b; }

.blog-content {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}
.blog-content p,
.blog-content ul,
.blog-content ol {
  margin-bottom: 1.2rem;
}

/* Visual polish overrides */
.site-header.hero-nav:not(.scrolled) .nav-cta .btn-primary {
  box-shadow: none;
}

.site-header.scrolled .site-header.hero-nav,
.site-header.scrolled .nav-list a,
.site-header.scrolled .nav-dropdown-btn {
  color: var(--ink);
}

.hero-actions .btn {
  min-height: 46px;
}

.trusted-grid,
.why-grid,
.process-timeline,
.cards-grid,
.projects-grid,
.blog-grid,
.testimonials-slider {
  align-items: stretch;
}

.service-card,
.project-card,
.blog-card,
.testimonial-card,
.why-card,
.process-step,
.trusted-item,
.benefit-item {
  box-shadow: 0 1px 0 rgba(19, 32, 51, 0.03);
}

.project-card img,
.blog-card img,
.service-card .card-image img,
.section-media img,
.detail-hero-media img {
  background: #dfe8e1;
}

.project-card-body h3,
.blog-card-body h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.08rem;
}

.project-card-body p,
.blog-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

.accordion {
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.08);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  box-shadow: var(--shadow-sm);
}

.accordion-item:last-child {
  border-bottom: 0;
}

.newsletter-form .btn,
.calculator-form input,
.calculator-form select,
.form-group input,
.form-group select,
.form-group textarea {
  min-height: 46px;
}

@media (max-width: 1024px) {
  .site-header.hero-nav .nav-toggle span {
    background: var(--ink);
  }

  .site-header.scrolled .nav-toggle span,
  .main-nav.open + .nav-toggle span {
    background: var(--ink);
  }

  .main-nav {
    align-items: stretch;
  }

  .site-header.hero-nav .main-nav .nav-list a,
  .site-header.hero-nav .main-nav .nav-dropdown-btn {
    color: var(--ink);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }

  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.2rem; }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 2.25rem 0 3.5rem;
    gap: 2rem;
  }

  .hero-actions {
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual img {
    min-height: 240px;
  }

  .cards-grid,
  .projects-grid,
  .blog-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .calculator-wrap,
  .glass-card {
    padding: 1.25rem;
  }
}

@media (max-width: 520px) {
  .container,
  .container-narrow {
    width: min(100% - 2rem, 1200px);
  }

  .hero-stats,
  .result-grid,
  .about-stats-card .hero-stats {
    gap: 0.9rem;
  }

  .stat-item strong,
  .result-item strong {
    font-size: 1.45rem;
  }

  .trusted-item,
  .why-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* Homepage why section redesign */
.why-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f4 100%);
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 163, 109, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 163, 109, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) 1.45fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.why-proof {
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 30, 25, 0.93), rgba(13, 70, 58, 0.83)),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1000&q=85') center/cover;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.why-proof .eyebrow { color: var(--gold); }
.why-proof h2 {
  color: #fff;
  max-width: 11ch;
}
.why-proof p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
}
.why-proof-stats {
  display: grid;
  gap: 0.75rem;
}
.why-proof-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.why-proof-stats strong {
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--gold);
}
.why-proof-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-align: right;
}
.why-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.why-header p {
  margin-inline: auto;
}
.why-section .why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.why-section .why-card {
  min-height: 134px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(19, 32, 51, 0.09);
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.why-section .why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 163, 109, 0.28);
  box-shadow: 0 16px 40px rgba(21, 163, 109, 0.12);
}
.why-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(21, 163, 109, 0.12), rgba(253, 184, 19, 0.22));
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
}
.why-section .why-card h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}
.why-section .why-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 980px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-proof h2 {
    max-width: 15ch;
  }
}

@media (max-width: 640px) {
  .why-section .why-grid {
    grid-template-columns: 1fr;
  }

  .why-proof-stats div {
    display: block;
  }

  .why-proof-stats span {
    display: block;
    text-align: left;
  }
}

/* About page */
.about-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.about-hero-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.about-hero-card span {
  display: block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-hero-card strong {
  display: block;
  margin: 0.2rem 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
}
.about-hero-card p {
  color: var(--muted);
}
.about-intro {
  background: #fff;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-story-copy p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 64ch;
}
.about-story-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.about-metrics div {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f5fbf7);
  border: 1px solid rgba(21, 163, 109, 0.12);
  box-shadow: 0 18px 42px rgba(19, 32, 51, 0.09);
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-metrics strong {
  display: block;
  color: var(--green);
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}
.about-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.about-mission-section {
  background:
    linear-gradient(145deg, rgba(7, 30, 25, 0.94), rgba(15, 76, 65, 0.94)),
    url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1600&q=85') center/cover;
  color: #fff;
}
.about-mission-section h2,
.about-mission-section h3 {
  color: #fff;
}
.about-mission-section .section-header p {
  color: rgba(255, 255, 255, 0.76);
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-pillar {
  min-height: 230px;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}
.about-pillar span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(253, 184, 19, 0.18);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.about-pillar p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 0.75rem;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-team-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.about-avatar {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), rgba(21, 163, 109, 0.8));
  color: #142116;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.about-team-card h3 {
  margin-bottom: 0.4rem;
}
.about-team-card p:last-child {
  color: var(--muted);
  margin-top: 0.75rem;
}
.about-timeline-section {
  background: #fff;
}
.about-timeline-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.about-timeline {
  position: relative;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(19, 32, 51, 0.1);
}
.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.about-timeline-item strong {
  color: var(--green);
  font-family: var(--font-head);
  font-size: 1.15rem;
}
.about-timeline-item div {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #f7faf7;
  border: 1px solid rgba(19, 32, 51, 0.08);
}
.about-timeline-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.about-timeline-item p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-grid,
  .about-story-grid,
  .about-timeline-layout {
    grid-template-columns: 1fr;
  }

  .about-metrics,
  .about-pillars,
  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .about-metrics,
  .about-pillars,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-card strong {
    font-size: 3rem;
  }

  .about-timeline::before {
    left: 0;
  }

  .about-timeline-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-left: 1rem;
  }
}

/* Services pages */
.services-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.services-hero-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.94));
  border: 1px solid rgba(21, 163, 109, 0.12);
  box-shadow: var(--shadow);
}
.services-hero-panel strong {
  display: block;
  color: var(--green);
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
}
.services-hero-panel span {
  display: block;
  margin: 0.4rem 0 0.8rem;
  color: var(--ink);
  font-weight: 800;
}
.services-hero-panel p {
  color: var(--muted);
}
.services-proof {
  background: #fff;
}
.services-proof-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.services-proof-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f7faf7);
  border: 1px solid rgba(21, 163, 109, 0.12);
  box-shadow: 0 16px 34px rgba(19, 32, 51, 0.07);
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-proof-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.services-proof-card strong span,
.projects-hero-proof strong span,
.project-detail-card strong span,
.project-stat-row b span {
  color: inherit;
  font: inherit;
}
.services-proof-card span {
  color: var(--muted);
  font-size: 0.92rem;
}
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-feature-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.service-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.service-feature-card > div {
  padding: 1.4rem;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-index {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(21, 163, 109, 0.12), rgba(253, 184, 19, 0.22));
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 1rem;
}
.service-feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.service-feature-card p {
  color: var(--muted);
}
.service-feature-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.2rem;
  color: var(--ink);
}
.service-feature-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
}
.service-feature-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.service-list-card {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.service-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 163, 109, 0.28);
  box-shadow: var(--shadow);
}
.service-list-card img {
  width: 132px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-list-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.service-list-card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.service-list-card > span {
  color: var(--green);
  font-weight: 800;
  padding-right: 0.6rem;
}
.services-process-band {
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(15, 76, 65, 0.9)),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1600&q=85') center/cover;
  color: #fff;
  overflow: hidden;
}
.services-process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.services-process-copy {
  max-width: 420px;
}
.services-process-copy .eyebrow {
  color: var(--gold);
}
.services-process-copy h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.services-process-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}
.services-process-band .process-timeline {
  position: relative;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0.75rem;
}
.services-process-band .process-timeline::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(253, 184, 19, 0), rgba(253, 184, 19, 0.75), rgba(253, 184, 19, 0));
}
.services-process-band .process-step {
  position: relative;
  min-height: 250px;
  padding: 1.25rem 1rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.services-process-band .process-num {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #18220a;
  background: linear-gradient(135deg, #ffd15c, var(--gold));
  box-shadow: 0 12px 28px rgba(253, 184, 19, 0.28);
  margin-bottom: 1.1rem;
}
.services-process-band .process-step h3 {
  color: #fff;
  font-size: 1rem;
}
.services-process-band .process-step p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.service-detail-hero {
  min-height: 640px;
}
.service-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.service-detail-summary {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.94));
  border: 1px solid rgba(21, 163, 109, 0.12);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.service-detail-summary span {
  display: block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-detail-summary strong {
  display: block;
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1.2;
}
.service-detail-summary p {
  color: var(--muted);
}
.service-overview-section {
  background: #fff;
}
.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-problem-card,
.service-solution-card {
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(19, 32, 51, 0.09);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-problem-card {
  background: #f7faf7;
}
.service-solution-card {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 30, 25, 0.93), rgba(15, 76, 65, 0.9)),
    url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1000&q=85') center/cover;
}
.service-solution-card h2,
.service-solution-card p {
  color: #fff;
}
.service-solution-card .eyebrow {
  color: var(--gold);
}
.service-problem-card p,
.service-solution-card p {
  margin-top: 1rem;
  font-size: 1.02rem;
}
.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-benefit-card {
  min-height: 112px;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-benefit-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(21, 163, 109, 0.1);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.service-benefit-card p {
  color: var(--ink);
  font-weight: 600;
}
.service-process-section {
  background: #fff;
}
.service-process-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.service-step-list {
  display: grid;
  gap: 0.85rem;
}
.service-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: #f7faf7;
  border: 1px solid rgba(19, 32, 51, 0.08);
}
.service-step strong {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
}
.service-step h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.service-step p {
  color: var(--muted);
}
.service-tech-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(15, 76, 65, 0.94)),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1200&q=85') center/cover;
  box-shadow: var(--shadow);
}
.service-tech-card h2,
.service-tech-card p {
  color: #fff;
}
.service-tech-card .eyebrow {
  color: var(--gold);
}
.service-tech-card p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .services-hero-grid,
  .services-proof-grid,
  .service-detail-hero-grid,
  .service-overview-grid,
  .service-process-layout,
  .services-process-layout {
    grid-template-columns: 1fr;
  }

  .service-feature-grid,
  .service-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .services-process-copy {
    max-width: 680px;
    text-align: center;
    margin-inline: auto;
  }

  .services-process-band .process-timeline {
    grid-template-columns: 1fr;
  }

  .services-process-band .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 184, 19, 0), rgba(253, 184, 19, 0.75), rgba(253, 184, 19, 0));
  }

  .services-process-band .process-step {
    min-height: auto;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    text-align: left;
    align-items: center;
  }

  .services-process-band .process-num {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .services-hero,
  .service-detail-hero {
    min-height: auto;
  }

  .service-feature-grid,
  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-list-card {
    grid-template-columns: 92px 1fr;
  }

  .service-list-card img {
    width: 92px;
  }

  .service-list-card > span {
    grid-column: 2;
    padding-right: 0;
  }

  .service-tech-card {
    display: block;
  }

  .service-tech-card .btn {
    margin-top: 1.5rem;
    width: 100%;
  }
}

/* Solutions pages */
.solutions-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
}
.solutions-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.solutions-hero-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 250, 0.94));
  border: 1px solid rgba(14, 116, 144, 0.14);
  box-shadow: var(--shadow);
}
.solutions-hero-panel span {
  display: block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solutions-hero-panel strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  margin: 0.2rem 0 0.6rem;
}
.solutions-hero-panel p {
  color: var(--muted);
}
.solutions-intro {
  background: #fff;
}
.solutions-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.solution-principle {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #f7faf7;
  border: 1px solid rgba(19, 32, 51, 0.08);
}
.solution-principle strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(21, 163, 109, 0.1);
  color: var(--green);
  font-family: var(--font-head);
  margin-bottom: 1rem;
}
.solution-principle span {
  display: block;
  color: var(--ink);
  font-weight: 700;
}
.solution-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.solution-feature-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.solution-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.solution-feature-card > div {
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-kicker {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.solution-feature-card h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.solution-feature-card p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}
.solution-library-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.solution-card {
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 163, 109, 0.28);
  box-shadow: var(--shadow);
}
.solution-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.solution-card div {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.solution-card p {
  color: var(--muted);
  font-size: 0.88rem;
}
.solution-card > span {
  padding: 0 1rem 1rem;
  color: var(--green);
  font-weight: 800;
}
.solutions-outcome-band {
  background: linear-gradient(180deg, #fff, #f4f8f4);
}
.solution-detail-page .service-detail-summary span,
.solution-detail-page .service-problem-card .eyebrow {
  color: #0ea5a3;
}
.solution-detail-page .service-solution-card {
  background:
    linear-gradient(145deg, rgba(6, 42, 47, 0.94), rgba(14, 116, 144, 0.82)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=85') center/cover;
}
.solution-detail-page .service-step strong {
  background: #0e7490;
}
.solution-detail-page .service-benefit-card span {
  background: rgba(14, 165, 163, 0.1);
  color: #0e7490;
}

@media (max-width: 1100px) {
  .solution-library-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .solutions-hero-grid,
  .solutions-intro-grid {
    grid-template-columns: 1fr;
  }

  .solution-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .solutions-hero {
    min-height: auto;
  }

  .solution-feature-card {
    grid-template-columns: 1fr;
  }

  .solution-feature-card img {
    min-height: 220px;
  }

  .solution-library-grid {
    grid-template-columns: 1fr;
  }
}

/* Industries pages */
.industries-hero {
  min-height: 660px;
  display: flex;
  align-items: center;
}
.industries-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 390px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.industries-hero-card {
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(19, 32, 51, 0.96), rgba(73, 94, 73, 0.9)),
    url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=900&q=85') center/cover;
  box-shadow: var(--shadow);
}
.industries-hero-card > span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.industries-hero-card strong {
  display: block;
  margin: 0.8rem 0;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.12;
}
.industries-hero-card p {
  color: rgba(255, 255, 255, 0.78);
}
.industries-hero-card div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.industries-hero-card small {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.75);
}
.industries-hero-card b {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.35rem;
}
.industries-priority-section {
  background: #fff;
}
.industries-priority-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.industry-priority-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 32, 51, 0.09);
  background: linear-gradient(180deg, #fff, #f8faf7);
  box-shadow: var(--shadow-sm);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-priority-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(197, 142, 55, 0.14);
  color: #a16207;
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 1rem;
}
.industry-priority-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}
.industry-priority-card p {
  color: var(--muted);
  font-size: 0.94rem;
}
.industry-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.industry-feature-card {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.industry-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-feature-card div {
  padding: clamp(1.3rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-feature-card span {
  color: #a16207;
  font-weight: 900;
  margin-bottom: 1rem;
}
.industry-feature-card h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
}
.industry-feature-card p {
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.industries-directory-section {
  background: #fff;
}
.industry-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.industry-directory-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.industry-directory-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 142, 55, 0.35);
  box-shadow: var(--shadow);
}
.industry-directory-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.industry-directory-card div {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-directory-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.industry-directory-card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.industry-directory-card > span {
  padding: 0 1rem 1rem;
  color: #a16207;
  font-weight: 800;
}
.industries-outcome-band {
  background:
    linear-gradient(135deg, rgba(19, 32, 51, 0.96), rgba(80, 93, 58, 0.92)),
    url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1400&q=85') center/cover;
  color: #fff;
}
.industry-outcome-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.industries-outcome-band h2 {
  color: #fff;
}
.industries-outcome-band .eyebrow {
  color: var(--gold);
}
.industry-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.industry-outcome-list span {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}
.industry-detail-page .service-detail-summary span,
.industry-detail-page .service-problem-card .eyebrow {
  color: #a16207;
}
.industry-detail-page .service-solution-card {
  background:
    linear-gradient(145deg, rgba(30, 41, 59, 0.96), rgba(88, 101, 61, 0.82)),
    url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1200&q=85') center/cover;
}
.industry-detail-page .service-step strong {
  background: #7c5c1d;
}
.industry-detail-page .service-benefit-card span {
  background: rgba(197, 142, 55, 0.14);
  color: #a16207;
}
.industry-detail-page .service-tech-card {
  background:
    linear-gradient(135deg, rgba(19, 32, 51, 0.96), rgba(81, 92, 61, 0.9)),
    url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1200&q=85') center/cover;
}

@media (max-width: 1120px) {
  .industry-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .industries-hero-grid,
  .industries-priority-grid,
  .industry-outcome-grid {
    grid-template-columns: 1fr;
  }

  .industry-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .industries-hero {
    min-height: auto;
  }

  .industries-hero-card div,
  .industry-feature-card,
  .industry-directory-grid,
  .industry-outcome-list {
    grid-template-columns: 1fr;
  }

  .industry-feature-card img {
    min-height: 220px;
  }
}

/* Projects, blog, and contact pages */
.projects-hero,
.blog-hero,
.contact-hero,
.project-detail-hero,
.blog-post-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
}
.projects-hero-grid,
.blog-hero-grid,
.contact-hero-grid,
.project-detail-hero-grid,
.blog-post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.projects-hero-proof,
.contact-hero-card,
.project-detail-card,
.blog-search-panel {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.94));
  border: 1px solid rgba(21, 163, 109, 0.12);
  box-shadow: var(--shadow);
}
.projects-hero-proof span,
.contact-hero-card span,
.project-detail-card span,
.blog-search-panel label {
  display: block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.projects-hero-proof strong,
.contact-hero-card strong,
.project-detail-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0.8rem;
  white-space: nowrap;
}
.projects-hero-proof p,
.contact-hero-card p,
.project-detail-card p {
  color: var(--muted);
}
.project-spotlight,
.blog-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.project-spotlight-media,
.blog-feature-card {
  overflow: hidden;
  border-radius: var(--radius);
}
.project-spotlight-media img,
.blog-feature-card > img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}
.project-spotlight-copy,
.blog-feature-card > div {
  padding: clamp(1.25rem, 3vw, 2rem);
}
.project-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.project-stat-row span {
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #fff, #f7faf7);
  border: 1px solid rgba(21, 163, 109, 0.1);
  box-shadow: 0 12px 26px rgba(19, 32, 51, 0.06);
  color: var(--muted);
  font-size: 0.85rem;
}
.project-stat-row b {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.15rem;
}
.project-filter-bar {
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}
.projects-showcase-grid .project-card {
  min-height: 390px;
}
.project-card-body {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: center;
}
.project-card-meta,
.blog-card-footer,
.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.88rem;
}
.project-card-meta span:last-child,
.blog-card-footer strong {
  color: var(--green);
  font-weight: 800;
}
.project-method-band {
  background:
    linear-gradient(135deg, rgba(19, 32, 51, 0.96), rgba(16, 84, 78, 0.9)),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1400&q=85') center/cover;
  color: #fff;
}
.project-method-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.project-method-band h2 {
  color: #fff;
}
.project-method-band .eyebrow {
  color: var(--gold);
}
.project-method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.project-method-list span {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}
.project-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.project-case-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.project-case-card-dark {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(10, 37, 64, 0.96), rgba(21, 111, 83, 0.9)),
    url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1200&q=85') center/cover;
}
.project-case-card-dark h2,
.project-case-card-dark p {
  color: #fff;
}
.project-case-card-dark .eyebrow {
  color: var(--gold);
}
.project-equipment-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.blog-search-panel div {
  display: flex;
  gap: 0.6rem;
}
.blog-search-panel input {
  min-width: 0;
  flex: 1;
  min-height: 46px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(19, 32, 51, 0.12);
  border-radius: var(--radius);
  font: inherit;
}
.blog-search-panel a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--green);
  font-weight: 800;
}
.blog-feature-card {
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.cat {
  display: inline-flex;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-section-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.blog-topic-list span {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.blog-editorial-grid .blog-card {
  min-height: 420px;
}
.blog-editorial-grid .blog-card a,
.blog-card-body {
  display: flex;
  flex-direction: column;
}
.blog-card-body {
  min-height: 235px;
  justify-content: center;
}
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
}
.blog-post-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: center;
}
.blog-post-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.blog-post-image img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}
.blog-reading-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.blog-reading-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #f7faf7;
  border: 1px solid rgba(19, 32, 51, 0.09);
}
.blog-reading-aside span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-reading-aside h3 {
  margin: 0.5rem 0;
}
.blog-reading-aside p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.blog-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.blog-content p,
.blog-content li {
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.8;
}
.blog-content p + p,
.blog-content ul,
.blog-content ol {
  margin-top: 1.1rem;
}
.blog-content h2,
.blog-content h3 {
  margin-top: 1.8rem;
}
.contact-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.contact-quick-row a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-form-panel,
.contact-info-panel {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.contact-form-panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.contact-form-panel h2 {
  margin-bottom: 1.5rem;
}
.contact-info-panel {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}
.contact-info-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #fff, #f7faf7);
  border: 1px solid rgba(21, 163, 109, 0.1);
  box-shadow: 0 12px 26px rgba(19, 32, 51, 0.06);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-card span {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.contact-info-card p {
  color: var(--ink);
  font-weight: 600;
}
.contact-info-panel .btn {
  width: 100%;
}
.contact-status {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}
.contact-status.success {
  background: #ecfdf5;
  color: #047857;
}
.contact-status.error {
  background: #fef2f2;
  color: #b91c1c;
}
.contact-map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 32, 51, 0.09);
  box-shadow: var(--shadow-sm);
}
.contact-map-frame iframe {
  display: block;
  border: 0;
}

@media (max-width: 1040px) {
  .projects-hero-grid,
  .blog-hero-grid,
  .contact-hero-grid,
  .project-detail-hero-grid,
  .blog-post-hero-grid,
  .project-spotlight,
  .blog-feature-card,
  .project-method-grid,
  .contact-layout,
  .blog-reading-layout {
    grid-template-columns: 1fr;
  }

  .blog-reading-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .projects-hero,
  .blog-hero,
  .contact-hero,
  .project-detail-hero,
  .blog-post-hero {
    min-height: auto;
  }

  .project-stat-row,
  .project-method-list,
  .project-case-grid {
    grid-template-columns: 1fr;
  }

  .project-equipment-panel,
  .blog-section-top {
    display: block;
  }

  .project-equipment-panel .btn,
  .blog-feature-card .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .blog-search-panel div {
    display: grid;
  }

  .blog-topic-list {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

/* QA polish: card centering, stat depth, and calmer heading scale */
.page-hero h1,
.hero-content h1 {
  max-width: 16ch;
}
.section-header h2,
.about-story-copy h2,
.service-problem-card h2,
.service-solution-card h2,
.project-case-card h2,
.contact-form-panel h2 {
  max-width: 24ch;
}
.section-header h2 {
  margin-inline: auto;
}
.service-card,
.project-card,
.blog-card,
.solution-card,
.industry-directory-card,
.service-feature-card,
.solution-feature-card,
.industry-feature-card,
.why-card,
.about-pillar,
.about-team-card,
.testimonial-card,
.process-step,
.trusted-item {
  box-shadow: 0 14px 34px rgba(19, 32, 51, 0.08);
}
.service-card .card-body,
.project-card-body,
.blog-card-body,
.solution-card div,
.industry-directory-card div,
.service-feature-card > div,
.solution-feature-card > div,
.industry-feature-card div,
.about-pillar,
.about-team-card,
.testimonial-card,
.process-step,
.trusted-item,
.contact-info-card {
  justify-content: center;
}
.service-card .card-body,
.project-card-body,
.blog-card-body,
.solution-card div,
.industry-directory-card div {
  text-align: left;
}
.stat-item,
.about-metrics div,
.services-proof-card,
.projects-hero-proof,
.contact-hero-card,
.project-detail-card,
.services-hero-panel,
.solutions-hero-panel,
.industries-hero-card small,
.project-stat-row span {
  position: relative;
  overflow: hidden;
}
.stat-item::after,
.about-metrics div::after,
.services-proof-card::after,
.projects-hero-proof::after,
.contact-hero-card::after,
.project-detail-card::after,
.services-hero-panel::after,
.solutions-hero-panel::after,
.industries-hero-card small::after,
.project-stat-row span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%);
  pointer-events: none;
}

@media (max-width: 768px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.32rem); }
  h2 { font-size: clamp(1.55rem, 7vw, 2.05rem); }
  .page-hero h1,
  .hero-content h1 {
    max-width: 16ch;
  }
  .lead {
    font-size: 1rem;
  }
  .section-header h2,
  .about-story-copy h2,
  .service-problem-card h2,
  .service-solution-card h2,
  .project-case-card h2,
  .contact-form-panel h2 {
    max-width: 24ch;
  }
  .service-card .card-body,
  .project-card-body,
  .blog-card-body {
    min-height: auto;
  }
  .service-feature-card > div,
  .solution-feature-card > div,
  .industry-feature-card div {
    min-height: auto;
  }
}
